diff --git a/Themes/stuff.midi b/Themes/stuff.midi deleted file mode 100644 index 51626d7ddc..0000000000 --- a/Themes/stuff.midi +++ /dev/null @@ -1,103 +0,0 @@ -Theme Stuff: Editors Choice Edition ---------------------------------------- - Theme Screen Loops ---------------------------------------- -Honestly, SM-SSC wont really go anywhere until we have the graphical part setup -for it, and fittingly enough, the most brutal: THE THEME(S). This is pretty -much the core problem StepMania has had so far, and we should aim to keep it -simple, stupid, so that everyone who wants a chance at making themes for the -'new age', will be able to. Here, I decide to document some ways to make this -happen, by planning the main loop of theme junk ahead of time, so that way, -when you design the theme, you can create a clear path of what to do, and what -you're going to have to setup. - ---------------------------------------- - The Loops ---------------------------------------- -"Default" -Suited for dance esque gameplay, as stepmania was originally designed for. -fairly easy to modify, but horrid to make usable for other gametypes. do note -that this is using the alpha 4 version of this setup, to include alot of stuff -we might miss. -#-------------------------------------# -[00.A] ScreenCompany -[00.B] ScreenDemonstration -[00.C] ScreenHowToPlay -[00.D] ScreenRanking - # Input -[01.A] ScreenTitleMenu -[01.B] ScreenTitlePay - # -[02.A] ScreenProfileLoad -[02.B] ScreenCaution - # -[03.A] ScreenSelectStyle -[03.B] ScreenSelectPlayMode -[03.C] ScreenSelectMusic - # -[04.A] ScreenPlayerOptions -[04.B] ScreenSongOptions - # -[05.A] ScreenStage -[05.B] ScreenGameplay - # -[06.A] ScreenEvaluation -[06.B] ScreenEvaluationStage -[06.C] ScreenEvaluationNonstop -[06.D] ScreenEvaluationOni -[06.E] ScreenEvaluationRave - # -[07.A] ScreenProfileSave -[07.B] ScreenNameEntry - # -[08.A] ScreenGameOver -[08.B] ScreenEnding -[08.C] ScreenEnding2 -[08.D] ScreenEnding3 - -#-------------------------------------# -"Opttimized" -Suited for generic gameplay. A path that I beleive would be best to use in this -project, simply because it saves everyone time and stress. This might be under -a ton of editing cuz I stewpid. It still appeals to dance, but that might -change. -#-------------------------------------# -[00.A] ScreenBoot - # -[01.A] ScreenSetupPhaseOne -[01.B] ScreenSetupPhaseTwo -[01.C] ScreenSetupPhaseThree - # Input -[02.A] ScreenTitleMenu -[02.B] ScreenTitleMenuAuxiliary - # -[03.A] ScreenCustomizationHome -[03.B] ScreenCustomizationGameplay -[03.C] ScreenCustomizationSystem -[03.D] ScreenCustomizationGraphical - # -[04.A] ScreenProfileLoad -[04.B] ScreenCaution - # -[05.A] ScreenSelectPlayStyle -[05.B] ScreenSelectPlayMode -[05.C] ScreenSelectMusic - # -[06.A] ScreenPlayerOptions -[06.B] ScreenSongOptions - # -[07.A] ScreenStage -[07.B] ScreenGameplay - # -[08.A] ScreenEvaluation -[08.B] ScreenEvaluationStage - # -[09.A] ScreenProfileSave -[09.B] ScreenNameEntryTraditional - # -[10.A] ScreenGameOver -[10.B] ScreenEnding - # -[11.A] ScreenCreditsCondensed -[11.B] ScreenCreditsExpanded -#-------------------------------------# diff --git a/Themes/test-ssclab/BGAnimations/ScreenGameplay overlay.lua b/Themes/test-ssclab/BGAnimations/ScreenGameplay overlay.lua deleted file mode 100644 index ed03d1321b..0000000000 --- a/Themes/test-ssclab/BGAnimations/ScreenGameplay overlay.lua +++ /dev/null @@ -1,40 +0,0 @@ -local t = Def.ActorFrame {}; -local x = Def.ActorFrame { --- Name = 'Scroller'; --- NumItemsToDraw=10; --- NumItemsToDraw=GAMESTATE:GetCurrentSong():GetStepsSeconds() or GAMESTATE:GetCurrentCourse():GetTotalSeconds(GAMESTATE:GetCurrentSteps(GAMESTATE:GetMasterPlayerNumber())); --- InitCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y); --- InitCommand=cmd(SetSecondsPauseBetweenItems,0;SetSecondsPerItem,2;ScrollWithPadding,0,0;SetLoop,true;); --- OnCommand=cmd(z,-256;rotationx,-30;spin;effectmagnitude,0,32,0); --- OnCommand=cmd(x,SCREEN_CENTER_X*2;rotationy,30;bob;effectmagnitude,SCREEN_CENTER_X*4,0,0;effectclock,'beat';effectperiod,32); ---[[ TransformFunction=function(self, offset, itemIndex, numItems) - self:x((itemIndex)*SCREEN_WIDTH); - if itemIndex%2 == 0 then --- self:zoomx(-1); --- self:rotationz(180); --- self:addx(SCREEN_CENTER_X); --- self:addy(-SCREEN_CENTER_Y); --- self:pulse(); - end; --- self:zoom(); - end; --]] -}; -x[#x+1] = Def.ActorFrame { - Def.ActorProxy { - OnCommand=function(self) - self:SetTarget( SCREENMAN:GetTopScreen():GetChild('PlayerP1') ); - self:visible(true); - end; --- OnCommand=cmd(zoom,1); - }; - Def.ActorProxy { - OnCommand=function(self) - self:SetTarget( SCREENMAN:GetTopScreen():GetChild('PlayerP2') ); - self:visible(true); - end; --- OnCommand=cmd(zoom,1); - }; -}; - -t[#t+1] = x; -return t \ No newline at end of file diff --git a/Themes/test-ssclab/BGAnimations/ScreenSelectMusic decorations.lua b/Themes/test-ssclab/BGAnimations/ScreenSelectMusic decorations.lua deleted file mode 100644 index f685735eff..0000000000 --- a/Themes/test-ssclab/BGAnimations/ScreenSelectMusic decorations.lua +++ /dev/null @@ -1,116 +0,0 @@ -local t = LoadFallbackB(); - -t[#t+1] = Def.ActorFrame { - InitCommand=cmd(x,SCREEN_CENTER_X*1.375;y,SCREEN_CENTER_Y); - SetCommand=function(self) - local c = self:GetChildren(); - local SongOrCourse; - local Info = { Title, Genre, Artist, Meter, BPMs }; - if GAMESTATE:GetCurrentSong() then - SongOrCourse = GAMESTATE:GetCurrentSong(); - elseif GAMESTATE:GetCurrentCourse() then - SongOrCourse = GAMESTATE:GetCurrentCourse(); - else - return; - end; - -- - Info.Title = SongOrCourse:GetDisplayFullTitle(); - Info.Artist = SongOrCourse:GetDisplayArtist(); - Info.Genre = SongOrCourse:GetGenre(); - Info.Meter = GAMESTATE:GetCurrentSteps( GAMESTATE:GetMasterPlayerNumber() ):GetMeter(); - Info.BPMS = { 0, 0 }; - -- - c.Title:settext( Info.Title ); - -- Title Size Check. - if c.Title:GetWidth() >= SCREEN_CENTER_X*1.375-48 then - c.Title:zoom(0.75); - c.Title:maxwidth( ( SCREEN_CENTER_X*1.375-48 ) / 0.75); - else - c.Title:zoom(1); - c.Title:maxwidth(SCREEN_CENTER_X*1.375-48); - end ---[[ -- Genre Text Check - if Info.Genre == "" then - Info.Genre = "?"; - else - Info.Genre = Info.Genre; - end; --]] - c.Genre:settext( Info.Genre ); - -- - c.Artist:settext( Info.Artist ); - -- BPM Check - if string.find(tostring(c.BPMDisplay:GetText()),"-") ~= nil then - Info.BPMS = split('-',c.BPMDisplay:GetText()); - c.BPMLow:settext( Info.BPMS[1] ); - c.BPMHigh:settext( Info.BPMS[2] ); - c.BPMLow:visible(true); - -- - c.BPMHigh:x(0); - c.BPMLow:x( -c.BPMHigh:GetWidth() ); - -- - else - Info.BPMS[1] = c.BPMDisplay:GetText(); - c.BPMLow:settext( Info.BPMS[1] ); - c.BPMHigh:settext( Info.BPMS[1] ); - c.BPMLow:visible(false); - -- - c.BPMHigh:x(0); - c.BPMLow:x( -c.BPMHigh:GetWidth() ); - -- - end ---[[ c.BPMLow:visible(false); - c.BPMHigh:settext( c.BPMDisplay:GetText() ); --]] - -- - c.Title:playcommand("Refresh"); - c.Genre:playcommand("Refresh"); - c.Artist:playcommand("Refresh"); - end; - OnCommand=cmd(playcommand,"Set"); - CurrentCourseChangedMessageCommand=cmd(playcommand,"Set"); - CurrentSongChangedMessageCommand=cmd(playcommand,"Set"); - DisplayLanguageChangedMessageCommand=cmd(playcommand,"Set"); - - Def.BPMDisplay { - Name="BPMDisplay"; - File=THEME:GetPathF("BPMDisplay", "bpm"); - InitCommand=cmd(visible,false); - CurrentSongChangedMessageCommand=cmd( SetFromGameState ); - }; - LoadFont("UI","Title Large") .. { - Name="Title"; - Text="!!!"; - InitCommand=cmd(horizalign,right); - RefreshCommand=cmd(finishtweening;diffuse,Color.Blue;decelerate,0.2;diffuse,Color.White); --- ShowCommand=cmd(settext,"!!!";); - }; - LoadFont("UI","Title Small") .. { - Name="Genre"; - Text="!!!"; - InitCommand=cmd(y,-52/2-3;horizalign,right;); - OnCommand=cmd(shadowlength,1); --- ShowCommand=cmd(settext,"!!!";); - }; - LoadFont("UI","Title Small") .. { - Name="Artist"; - Text="!!!"; - InitCommand=cmd(y,52/2+3;horizalign,right;); - OnCommand=cmd(shadowlength,1); --- ShowCommand=cmd(settext,"!!!";); - }; - LoadFont("UI","Title Small") .. { - Name="BPMLow"; - Text="!!!"; - InitCommand=cmd(y,52/2+3+20;horizalign,right;); - OnCommand=cmd(shadowlength,1;zoom,0.75); --- ShowCommand=cmd(settext,"!!!";); - }; - LoadFont("UI","Title Small") .. { - Name="BPMHigh"; - Text="!!!"; - InitCommand=cmd(y,52/2+3+20;horizalign,right;); - OnCommand=cmd(shadowlength,1); --- ShowCommand=cmd(settext,"!!!";); - }; -}; - -return t \ No newline at end of file diff --git a/Themes/test-ssclab/BGAnimations/ScreenSelectProfile overlay.lua b/Themes/test-ssclab/BGAnimations/ScreenSelectProfile overlay.lua deleted file mode 100644 index 8607eb3ccf..0000000000 --- a/Themes/test-ssclab/BGAnimations/ScreenSelectProfile overlay.lua +++ /dev/null @@ -1,219 +0,0 @@ -function GetLocalProfiles() - local ret = {}; - - for p = 0,PROFILEMAN:GetNumLocalProfiles()-1 do - local profile=PROFILEMAN:GetLocalProfileFromIndex(p); - local item = Def.ActorFrame { - Def.Quad { - InitCommand=cmd(zoomto,200,2;y,-40/2); - OnCommand=cmd(diffuse,Color('Outline');); - }; - LoadFont("Common Normal") .. { - Text=profile:GetDisplayName(); - InitCommand=cmd(shadowlength,1;y,-9); - }; - LoadFont("Common Normal") .. { - Text=profile:GetNumTotalSongsPlayed() .. " Songs Played"; - InitCommand=cmd(shadowlength,1;y,8;zoom,0.5;vertspacing,-8); - }; - }; - table.insert( ret, item ); - end; - return ret; -end; - -function LoadPlayerStuff(Player) - local ret = {}; - - local pn; - if Player == PLAYER_1 then - pn = 1; - else - pn = 2; - end; - ---[[ local t = LoadActor(THEME:GetPathB('', '_frame 3x3'), 'metal', 200, 230) .. { - Name = 'BigFrame'; - }; --]] - local t = Def.ActorFrame { - Name = 'BigFrame'; - Def.Quad { - InitCommand=cmd(zoomto,200+4,230+4); - OnCommand=cmd(shadowlength,1); - }; - Def.Quad { - InitCommand=cmd(zoomto,200,230); - OnCommand=cmd(diffuse,Color('Orange')); - }; - }; - table.insert( ret, t ); - ---[[ t = LoadActor(THEME:GetPathB('', '_frame 3x3'), 'metal', 170, 20) .. { - Name = 'SmallFrame'; - }; --]] - t = Def.ActorFrame { - Name = 'SmallFrame'; ---[[ Def.Quad { - InitCommand=cmd(zoomto,170+4,32+4); - OnCommand=cmd(shadowlength,1); - }; --]] - Def.Quad { - InitCommand=cmd(zoomto,200,40); - OnCommand=cmd(diffuse,Color('Blue')); - }; - }; - table.insert( ret, t ); - - t = Def.ActorScroller{ - Name = 'Scroller'; - NumItemsToDraw=4; --- InitCommand=cmd(y,-230/2+20;); - OnCommand=cmd(SetFastCatchup,true;SetMask,200,230;SetSecondsPerItem,0.15); - TransformFunction=function(self, offset, itemIndex, numItems) - local focus = scale(math.abs(offset),0,2,1,0); - self:visible(false); - self:y(math.floor( offset*40 )); --- self:zoomy( focus ); --- self:z(-math.abs(offset)); --- self:zoom(focus); - end; - children = GetLocalProfiles(); - }; - table.insert( ret, t ); - ---[[ t = Def.BitmapText { - OnCommand = cmd(y,160); - Name = 'SelectedProfileText'; - Font = "Common Normal"; - Text = 'No profile'; - }; --]] - t = LoadFont("Common Normal") .. { - Name = 'SelectedProfileText'; - InitCommand=cmd(y,160); - OnCommand=cmd(shadowlength,1); - }; - table.insert( ret, t ); - - return ret; -end; - -function UpdateInternal3(self, Player) - local pn; - if Player == PLAYER_1 then - pn = 1; - else - pn = 2; - end; - local frame = self:GetChild(string.format('P%uFrame', pn)); - local scroller = frame:GetChild('Scroller'); - local seltext = frame:GetChild('SelectedProfileText'); - local smallframe = frame:GetChild('SmallFrame'); - - if GAMESTATE:IsHumanPlayer(Player) then - frame:visible(true); - if MEMCARDMAN:GetCardState(Player) == 'MemoryCardState_none' then ---using profile if any - smallframe:visible(true); - scroller:visible(true); - local ind = SCREENMAN:GetTopScreen():GetProfileIndex(Player); - if ind > 0 then - scroller:SetDestinationItem(ind-1); - seltext:settext(PROFILEMAN:GetLocalProfileFromIndex(ind-1):GetDisplayName()); - else - if SCREENMAN:GetTopScreen():SetProfileIndex(Player, 1) then - scroller:SetDestinationItem(0); - self:queuecommand('UpdateInternal2'); - else - smallframe:visible(false); - scroller:visible(false); - seltext:settext('No profile'); - end; - end; - else ---using card - smallframe:visible(false); - scroller:visible(false); - seltext:settext('CARD'); - SCREENMAN:GetTopScreen():SetProfileIndex(Player, 0); - end; - else - frame:visible(false); - end; -end; - -local t = Def.ActorFrame { - - StorageDevicesChangedMessageCommand=function(self, params) - self:queuecommand('UpdateInternal2'); - end; - - CodeMessageCommand = function(self, params) - if params.Name == 'Start' then - if not GAMESTATE:IsHumanPlayer(params.PlayerNumber) then - SCREENMAN:GetTopScreen():SetProfileIndex(params.PlayerNumber, -1); - else - SCREENMAN:GetTopScreen():Finish(); - end; - end; - if params.Name == 'Up' then - if GAMESTATE:IsHumanPlayer(params.PlayerNumber) then - local ind = SCREENMAN:GetTopScreen():GetProfileIndex(params.PlayerNumber); - if ind > 1 then - if SCREENMAN:GetTopScreen():SetProfileIndex(params.PlayerNumber, ind - 1 ) then - self:queuecommand('UpdateInternal2'); - end; - end; - end; - end; - if params.Name == 'Down' then - if GAMESTATE:IsHumanPlayer(params.PlayerNumber) then - local ind = SCREENMAN:GetTopScreen():GetProfileIndex(params.PlayerNumber); - if ind > 0 then - if SCREENMAN:GetTopScreen():SetProfileIndex(params.PlayerNumber, ind + 1 ) then - self:queuecommand('UpdateInternal2'); - end; - end; - end; - end; - if params.Name == 'Back' then - if GAMESTATE:GetNumPlayersEnabled()==0 then - SCREENMAN:GetTopScreen():Cancel(); - else - SCREENMAN:GetTopScreen():SetProfileIndex(params.PlayerNumber, -2); - end; - end; - end; - - PlayerJoinedMessageCommand=function(self, params) - self:queuecommand('UpdateInternal2'); - end; - - PlayerUnjoinedMessageCommand=function(self, params) - self:queuecommand('UpdateInternal2'); - end; - - OnCommand=function(self, params) - self:queuecommand('UpdateInternal2'); - end; - - UpdateInternal2Command=function(self) - UpdateInternal3(self, PLAYER_1); - UpdateInternal3(self, PLAYER_2); - end; - children = { - Def.ActorFrame { - Name = 'P1Frame'; - OnCommand=cmd(hide_if,not GAMESTATE:IsHumanPlayer(PLAYER_1);x,SCREEN_CENTER_X-200;y,SCREEN_CENTER_Y;addx,-SCREEN_WIDTH;decelerate,0.3;addx,SCREEN_WIDTH); - OffCommand=cmd(accelerate,0.3;addx,-SCREEN_WIDTH); - children = LoadPlayerStuff(PLAYER_2); - }; - Def.ActorFrame { - Name = 'P2Frame'; - OnCommand=cmd(hide_if,not GAMESTATE:IsHumanPlayer(PLAYER_2);x,SCREEN_CENTER_X+200;y,SCREEN_CENTER_Y;addx,SCREEN_WIDTH;decelerate,0.3;addx,-SCREEN_WIDTH); - OffCommand=cmd(accelerate,0.3;addx,SCREEN_WIDTH); - children = LoadPlayerStuff(PLAYER_2); - }; - }; -}; - -return t; diff --git a/Themes/test-ssclab/BGAnimations/ScreenTitleMenu underlay/_logo.png b/Themes/test-ssclab/BGAnimations/ScreenTitleMenu underlay/_logo.png deleted file mode 100644 index 057435f0f3..0000000000 Binary files a/Themes/test-ssclab/BGAnimations/ScreenTitleMenu underlay/_logo.png and /dev/null differ diff --git a/Themes/test-ssclab/BGAnimations/ScreenTitleMenu underlay/default.lua b/Themes/test-ssclab/BGAnimations/ScreenTitleMenu underlay/default.lua deleted file mode 100644 index 9c5e03a2d3..0000000000 --- a/Themes/test-ssclab/BGAnimations/ScreenTitleMenu underlay/default.lua +++ /dev/null @@ -1,8 +0,0 @@ -return Def.ActorFrame { - FOV=90; - LoadActor("_logo") .. { - InitCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y); - OnCommand=cmd(zoom,1.25;glow,color("1,1,1,1");decelerate,0.5;zoom,1;glow,color("1,1,1,0");glowshift;effecttiming,0.125,0,0.75,3); - OffCommand=cmd(diffusealpha,0.5;glow,color("1,1,1,1");decelerate,0.25;glow,color("1,1,1,0");accelerate,0.125;rotationx,90;diffusealpha,0;); - }; -}; \ No newline at end of file diff --git a/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements background/824_JumpBack.mpg b/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements background/824_JumpBack.mpg deleted file mode 100644 index afdf5e8054..0000000000 Binary files a/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements background/824_JumpBack.mpg and /dev/null differ diff --git a/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements background/Thumbs.db b/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements background/Thumbs.db deleted file mode 100644 index 5086e42a49..0000000000 Binary files a/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements background/Thumbs.db and /dev/null differ diff --git a/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements background/arrow.png b/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements background/arrow.png deleted file mode 100644 index 0a8cf2c83c..0000000000 Binary files a/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements background/arrow.png and /dev/null differ diff --git a/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements background/default.lua b/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements background/default.lua deleted file mode 100644 index 77b82c4b46..0000000000 --- a/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements background/default.lua +++ /dev/null @@ -1,73 +0,0 @@ -t = Def.ActorFrame { FOV = 90; }; --- BG Frame -t[#t+1] = Def.ActorFrame { - InitCommand=cmd(z,-48); - LoadActor("noise"); - -- Centerize Items Here - Def.ActorFrame { - InitCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y;); - Def.Quad { - InitCommand=cmd(zoomto,SCREEN_WIDTH+256,SCREEN_WIDTH+256;blend,'BlendMode_WeightedMultiply'); - OnCommand=cmd(diffuse,Color.ThemeElement.Background.Secondary;); - }; - }; - -- Radio Lines - Def.ActorFrame { - InitCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y;); - LoadActor("stripe") .. { - InitCommand=cmd(zoomto,SCREEN_WIDTH+512,Viewport.Height.Center); - OnCommand=cmd(diffuse,Color.ThemeElement.Background.Primary;diffusealpha,0.5;fadetop,0.125;fadebottom,0.125;customtexturerect,(SCREEN_WIDTH+512)/64,Viewport.Height.Center/64,0,0;texcoordvelocity,1.25,0;skewx,-0.125); - }; - }; -}; --- Movie -t[#t+1] = Def.ActorFrame { - InitCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y;); - LoadActor("824_JumpBack") .. { - InitCommand=cmd(scaletoclipped,SCREEN_WIDTH,Viewport.Height.Center; - play;rate,1.75;fadetop,0.125;fadebottom,0.125;diffuse,Color.ThemeElement.Background.Primary;diffusealpha,0.5); - }; -}; --- Front Windows -t[#t+1] = Def.ActorFrame { - InitCommand=cmd(z,0); - -- Top Window. - Def.ActorFrame { - InitCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_TOP); - OnCommand=cmd(decelerate,0.5;y,Viewport.Height.Bottom); - Def.Quad { - InitCommand=cmd(zoomto,SCREEN_WIDTH,Viewport.Height.Bottom;vertalign,bottom); - OnCommand=cmd(diffuse,Color.ThemeElement.Background.Primary); - }; - Def.Quad { - InitCommand=cmd(zoomto,SCREEN_WIDTH,16;y,7;vertalign,bottom); - OnCommand=cmd( diffuse,Color.ThemeElement.Background.Highlight;fadetop,0.5;fadebottom,0.5; - diffuseshift;effectcolor1,Color.ThemeElement.Background.Highlight;effectcolor2,Color.ThemeElement.Background.Accent; - diffusealpha,0.5); - }; - Def.Quad { - InitCommand=cmd(zoomto,SCREEN_WIDTH,2;vertalign,bottom); - OnCommand=cmd(diffuse,Color.ThemeElement.Background.Highlight); - }; - }; - -- Bottom Window. - Def.ActorFrame { - InitCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_BOTTOM); - OnCommand=cmd(decelerate,0.5;y,SCREEN_BOTTOM-Viewport.Height.Bottom); - Def.Quad { - InitCommand=cmd(zoomto,SCREEN_WIDTH,Viewport.Height.Bottom;vertalign,top); - OnCommand=cmd(diffuse,Color.ThemeElement.Background.Primary); - }; - Def.Quad { - InitCommand=cmd(zoomto,SCREEN_WIDTH,16;y,-7;vertalign,top); - OnCommand=cmd( diffuse,Color.ThemeElement.Background.Highlight;fadetop,0.5;fadebottom,0.5; - diffuseshift;effectcolor1,Color.ThemeElement.Background.Highlight;effectcolor2,Color.ThemeElement.Background.Accent; - diffusealpha,0.5); - }; - Def.Quad { - InitCommand=cmd(zoomto,SCREEN_WIDTH,2;vertalign,top); - OnCommand=cmd(diffuse,Color.ThemeElement.Background.Highlight); - }; - }; -}; -return t \ No newline at end of file diff --git a/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements background/noise/default.lua b/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements background/noise/default.lua deleted file mode 100644 index 067d76ba53..0000000000 --- a/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements background/noise/default.lua +++ /dev/null @@ -1,16 +0,0 @@ -local t = Def.ActorFrame { - LoadActor("noise") .. { - Name="Noise"; - InitCommand=cmd(texturewrapping,true;SetTextureFiltering,false;x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y;zoom,2); - }; -}; - -local function Update(self) - local c = self:GetChild("Noise"); - local x = math.random(); - local y = math.random(); - c:customtexturerect(0+x,0+y,2+x,2+y); -end; -t.InitCommand = cmd(SetUpdateFunction,Update); - -return t; diff --git a/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements background/noise/noise.png b/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements background/noise/noise.png deleted file mode 100644 index 75b194fa5f..0000000000 Binary files a/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements background/noise/noise.png and /dev/null differ diff --git a/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements background/stripe (stretch).png b/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements background/stripe (stretch).png deleted file mode 100644 index 2608aefe5a..0000000000 Binary files a/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements background/stripe (stretch).png and /dev/null differ diff --git a/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements decorations/default.lua b/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements decorations/default.lua deleted file mode 100644 index b3159ce10a..0000000000 --- a/Themes/test-ssclab/BGAnimations/ScreenWithMenuElements decorations/default.lua +++ /dev/null @@ -1,3 +0,0 @@ -local t = Def.ActorFrame {}; - -return t; \ No newline at end of file diff --git a/Themes/test-ssclab/Fonts/Library/_orbitron Bold 45px [alt] 10x10.png b/Themes/test-ssclab/Fonts/Library/_orbitron Bold 45px [alt] 10x10.png deleted file mode 100644 index 87a5b3ed4f..0000000000 Binary files a/Themes/test-ssclab/Fonts/Library/_orbitron Bold 45px [alt] 10x10.png and /dev/null differ diff --git a/Themes/test-ssclab/Fonts/Library/_orbitron Bold 45px [main] 15x15.png b/Themes/test-ssclab/Fonts/Library/_orbitron Bold 45px [main] 15x15.png deleted file mode 100644 index 24a305806a..0000000000 Binary files a/Themes/test-ssclab/Fonts/Library/_orbitron Bold 45px [main] 15x15.png and /dev/null differ diff --git a/Themes/test-ssclab/Fonts/Library/_orbitron Bold 45px.ini b/Themes/test-ssclab/Fonts/Library/_orbitron Bold 45px.ini deleted file mode 100644 index 7260836458..0000000000 --- a/Themes/test-ssclab/Fonts/Library/_orbitron Bold 45px.ini +++ /dev/null @@ -1,352 +0,0 @@ -[common] -Baseline=45 -Top=10 -LineSpacing=54 -DrawExtraPixelsLeft=8 -DrawExtraPixelsRight=0 -AdvanceExtraPixels=0 - -[main] -Line 0= !"#$%&'()*+,-. -Line 1=/0123456789:;<= -Line 2=>?@ABCDEFGHIJKL -Line 3=MNOPQRSTUVWXYZ[ -Line 4=\]^_`abcdefghij -Line 5=klmnopqrstuvwxy -Line 6=z{|}~€‚ƒ„…†‡ˆ‰Š -Line 7=‹ŒŽ‘’“”•–—˜™š›œ -Line 8=žŸ ¡¢£¤¥¦§¨©ª«¬ -Line 9=­®¯°±²³´µ¶·¸¹º» -Line 10=¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊ -Line 11=ËÌÍÎÏÐÑÒÓÔÕÖ×ØÙ -Line 12=ÚÛÜÝÞßàáâãäåæçè -Line 13=éêëìíîïðñòóôõö÷ -Line 14=øùúûüýþÿ - -0=14 -1=10 -2=17 -3=36 -4=35 -5=43 -6=42 -7=10 -8=12 -9=13 -10=22 -11=19 -12=10 -13=23 -14=10 -15=23 -16=38 -17=18 -18=37 -19=37 -20=33 -21=37 -22=37 -23=30 -24=38 -25=37 -26=10 -27=10 -28=21 -29=29 -30=21 -31=31 -32=37 -33=38 -34=37 -35=37 -36=38 -37=34 -38=33 -39=37 -40=38 -41=10 -42=35 -43=36 -44=35 -45=42 -46=37 -47=37 -48=36 -49=40 -50=37 -51=37 -52=34 -53=37 -54=45 -55=53 -56=37 -57=36 -58=37 -59=12 -60=23 -61=12 -62=12 -63=37 -64=10 -65=31 -66=30 -67=31 -68=30 -69=31 -70=20 -71=31 -72=30 -73=10 -74=11 -75=29 -76=15 -77=44 -78=31 -79=31 -80=30 -81=30 -82=24 -83=31 -84=20 -85=31 -86=36 -87=48 -88=31 -89=31 -90=31 -91=13 -92=10 -93=13 -94=18 -95=36 -96=12 -97=12 -98=12 -99=26 -100=12 -101=12 -102=14 -103=12 -104=37 -105=12 -106=62 -107=37 -108=10 -109=10 -110=18 -111=18 -112=17 -113=32 -114=37 -115=18 -116=12 -117=31 -118=12 -119=53 -120=31 -121=36 -122=12 -123=9 -124=29 -125=33 -126=12 -127=12 -128=12 -129=12 -130=17 -131=12 -132=12 -133=12 -134=12 -135=12 -136=12 -137=12 -138=20 -139=12 -140=12 -141=12 -142=10 -143=12 -144=37 -145=12 -146=10 -147=12 -148=12 -149=12 -150=12 -151=12 -152=12 -153=30 -154=38 -155=38 -156=38 -157=38 -158=38 -159=38 -160=62 -161=37 -162=34 -163=34 -164=34 -165=34 -166=10 -167=10 -168=10 -169=10 -170=12 -171=37 -172=37 -173=37 -174=37 -175=37 -176=37 -177=25 -178=12 -179=37 -180=37 -181=37 -182=37 -183=36 -184=12 -185=37 -186=33 -187=33 -188=33 -189=33 -190=33 -191=33 -192=53 -193=31 -194=29 -195=29 -196=29 -197=29 -198=10 -199=10 -200=10 -201=10 -202=12 -203=32 -204=31 -205=31 -206=31 -207=31 -208=31 -209=23 -210=12 -211=31 -212=31 -213=31 -214=31 -215=31 -216=12 -217=31 - -[alt] -Line 0= Ą˘Ł¤ĽŚ§¨Š -Line 1=ŞŤŹ­ŽŻ°ą˛ł -Line 2=´ľśˇ¸šşťź˝ -Line 3=žżŔÁÂĂÄĹĆÇ -Line 4=ČÉĘËĚÍÎĎĐŃ -Line 5=ŇÓÔŐÖ×ŘŮÚŰ -Line 6=ÜÝŢßŕáâăäĺ -Line 7=ćçčéęëěíîď -Line 8=đńňóôőö÷řů -Line 9=úűüýţ˙ - -0=12 -1=13 -2=13 -3=12 -4=12 -5=11 -6=13 -7=12 -8=17 -9=37 -10=13 -11=12 -12=12 -13=12 -14=37 -15=12 -16=20 -17=11 -18=12 -19=12 -20=10 -21=4 -22=10 -23=13 -24=10 -25=31 -26=10 -27=8 -28=10 -29=12 -30=31 -31=10 -32=14 -33=38 -34=38 -35=13 -36=38 -37=11 -38=14 -39=37 -40=14 -41=34 -42=13 -43=34 -44=13 -45=10 -46=10 -47=14 -48=14 -49=14 -50=14 -51=37 -52=37 -53=16 -54=37 -55=25 -56=14 -57=14 -58=37 -59=14 -60=37 -61=36 -62=12 -63=37 -64=7 -65=33 -66=33 -67=11 -68=33 -69=4 -70=10 -71=31 -72=10 -73=29 -74=11 -75=29 -76=11 -77=10 -78=10 -79=13 -80=12 -81=11 -82=11 -83=31 -84=31 -85=11 -86=31 -87=23 -88=7 -89=11 -90=31 -91=11 -92=31 -93=31 -94=6 -95=10 diff --git a/Themes/test-ssclab/Fonts/UI Title Large.redir b/Themes/test-ssclab/Fonts/UI Title Large.redir deleted file mode 100644 index 3e035b57be..0000000000 --- a/Themes/test-ssclab/Fonts/UI Title Large.redir +++ /dev/null @@ -1 +0,0 @@ -Library/_orbitron Bold 45px \ No newline at end of file diff --git a/Themes/test-ssclab/Fonts/UI Title Small.redir b/Themes/test-ssclab/Fonts/UI Title Small.redir deleted file mode 100644 index 5c6053f7f1..0000000000 --- a/Themes/test-ssclab/Fonts/UI Title Small.redir +++ /dev/null @@ -1 +0,0 @@ -Common Normal \ No newline at end of file diff --git a/Themes/test-ssclab/Graphics/ScreenTitleMenu scroll.lua b/Themes/test-ssclab/Graphics/ScreenTitleMenu scroll.lua deleted file mode 100644 index 3a98676816..0000000000 --- a/Themes/test-ssclab/Graphics/ScreenTitleMenu scroll.lua +++ /dev/null @@ -1,10 +0,0 @@ -local gc = Var("GameCommand"); - -return Def.ActorFrame { - LoadFont("Common Normal") .. { - Text=gc:GetText(); - OnCommand=cmd(strokecolor,color("0,0,0,0.5")); - GainFocusCommand=cmd(zoom,1;diffuse,color("1,1,1,1")); - LoseFocusCommand=cmd(zoom,0.75;diffuse,color("0.5,0.5,0.5,1")); - }; -}; \ No newline at end of file diff --git a/Themes/test-ssclab/Scripts/00 ThemeInfo.lua b/Themes/test-ssclab/Scripts/00 ThemeInfo.lua deleted file mode 100644 index 085d15d3be..0000000000 --- a/Themes/test-ssclab/Scripts/00 ThemeInfo.lua +++ /dev/null @@ -1,9 +0,0 @@ --- theme identification: -ThemeInfo = { - ProductCode = "SSC-LAB", - Name = "SSCLab", - Version = "1.00", - Date = { Month = "2010", Month = "1", Day = "1" }, - Revision = "1000", - RevisionName = "Volcanic Nightmare", -}; \ No newline at end of file diff --git a/Themes/test-ssclab/Scripts/02 Colors.lua b/Themes/test-ssclab/Scripts/02 Colors.lua deleted file mode 100644 index e8ce3795ef..0000000000 --- a/Themes/test-ssclab/Scripts/02 Colors.lua +++ /dev/null @@ -1,61 +0,0 @@ --- Colors! -- -Color = { - --[[ Basic Colors ]] - Red = color("#ed1c24"), - Orange = color("#f7941d"), - Yellow = color("#fff200"), - Green = color("#39b54a"), - Blue = color("#00aeef"), - Purple = color("#92278f"), - --[[ Greyscale Tints ]] - White = color("1,1,1,1"), - Silver = color("0.75,0.75,0.75,1"), - Grey = color("0.5,0.5,0.5,1"), - Steel = color("0.25,0.25,0.25,1"), - Black = color("0,0,0,1"), - --[[ Transparencies ]] - Invisible = color("1,1,1,0"), - Stealth = color("0,0,0,0"), - --[[ Alternatives ]] - HKS = { - --[[ HKS Z Process ]] - Red = color("#ee3048"), - Orange = color("#ffcb05"), - Yellow = color("#fff200"), - Green = color("#a4cf57"), - Blue = color("#00bfe8"), - Purple = color("#6e3694"), - -- There is no "White" for this library; - White = color("1,1,1,1"), - Silver = color("#b1c6c8"), - Grey = color("#748392"), - Steel = color("#435769"), - Black = color("#262d27"), - Invisible = color("#b1c6c800"), - }, - --[[ Theme Elements ]] - ThemeElement = { - Background = { - Primary = color("#b1c6c8"), -- Grey Highlight - Secondary = color("#748392"), -- Grey Darkened - Highlight = color("#fff200"), -- Orange Highlight - Accent = color("#f99d1c"), -- Orange Darkened - }, - UI = { - Primary = color("1,1,1,1"), - Secondary = color("#a8aca9"), - Highlight = color("#fff200"), - Accent = color("#ffd400"), - }; - }, -}; -Metrics = {} --- Color Functions -- ---[[ function BoostColor(cColor,fBoost,fAlpha) - local c = cColor; - local x = fBoost; - local a = fAlpha; - c = { c[1]+(c[1]*boost),c[2]+(c[2]*boost),c[3]+(c[3]*boost),c[4] }; - c[4] = (fAlpha ~= nil) and fAlpha or c[4]; - return c; -end; --]] \ No newline at end of file diff --git a/Themes/test-ssclab/Scripts/02 Other.lua b/Themes/test-ssclab/Scripts/02 Other.lua deleted file mode 100644 index 0ab5364ad3..0000000000 --- a/Themes/test-ssclab/Scripts/02 Other.lua +++ /dev/null @@ -1,31 +0,0 @@ -function JudgmentTransformSharedCommand( self, params ) - local x = 0 - local y = 30 - if params.bReverse then y = y * -1 end - - if params.bCentered then - if params.bReverse then - y = y - 30 - else - y = y + 40 - end - end - self:x( 0 ) - self:y( 0 ) -end - -function ComboTransformCommand( self, params ) - local x = 0 - local y = 30 - if params.bReverse then y = y * -1 end - - if params.bCentered then - if params.bReverse then - y = y - 30 - else - y = y + 40 - end - end - self:x( 0 ) - self:y( 0 ) -end diff --git a/Themes/test-ssclab/Scripts/02 TextBanner.lua b/Themes/test-ssclab/Scripts/02 TextBanner.lua deleted file mode 100644 index d903f36575..0000000000 --- a/Themes/test-ssclab/Scripts/02 TextBanner.lua +++ /dev/null @@ -1,19 +0,0 @@ -local mainMaxWidth = 208; -- zoom w/subtitle is 0.75 (multiply by 1.25) -local subMaxWidth = 420; -- zoom is 0.6 (multiply zoom,1 value by 1.4) -local artistMaxWidth = 300; - -function TextBannerAfterSet(self,param) - local Title=self:GetChild("Title"); - local Subtitle=self:GetChild("Subtitle"); - local Artist=self:GetChild("Artist"); - if Subtitle:GetText() == "" then - (cmd(maxwidth,mainMaxWidth;y,0;zoom,1;))(Title); - (cmd(visible,false))(Subtitle); --- (cmd(zoom,0.66;maxwidth,artistMaxWidth;y,8))(Artist); - else - -- subtitle below - (cmd(maxwidth,mainMaxWidth*1.25;y,-8;zoom,0.75;))(Title); - (cmd(visible,true;zoom,0.6;y,7;maxwidth,subMaxWidth))(Subtitle); --- (cmd(zoom,0.6;maxwidth,artistMaxWidth;y,10))(Artist); - end -end \ No newline at end of file diff --git a/Themes/test-ssclab/Scripts/03 ThemeVariables.lua b/Themes/test-ssclab/Scripts/03 ThemeVariables.lua deleted file mode 100644 index ede1a9ca1e..0000000000 --- a/Themes/test-ssclab/Scripts/03 ThemeVariables.lua +++ /dev/null @@ -1,25 +0,0 @@ ---[[ Globals ]] - --[[ TOP ]] -- 1/6 - --[[ CENTER ]] -- 3/6 - --[[ CENTER ]] - --[[ CENTER ]] - --[[ BOTTOM ]] -- 2/6 - --[[ BOTTOM ]] ---[[ VIEWPORT_TOP = SCREEN_TOP+80 -VIEWPORT_CENTER_Y = SCREEN_TOP+200 -VIEWPORT_BOTTOM = SCREEN_BOTTOM-160 - -- Heights -VIEWPORT_HEIGHT_TOP = 80 -VIEWPORT_HEIGHT_CENTER = 240 -VIEWPORT_HEIGHT_BOTTOM = 160 - --]] -Viewport = { - Top = SCREEN_TOP+80, - Bottom = SCREEN_TOP+200, - Center = SCREEN_BOTTOM-160, - Height = { - Top = 80, - Center = 240, - Bottom = 160, - }, -}; \ No newline at end of file diff --git a/Themes/test-ssclab/ThemeInfo.ini b/Themes/test-ssclab/ThemeInfo.ini deleted file mode 100644 index 0a032f5db1..0000000000 --- a/Themes/test-ssclab/ThemeInfo.ini +++ /dev/null @@ -1,3 +0,0 @@ -[ThemeInfo] -DisplayName=SSCLab -Author=Midiman \ No newline at end of file diff --git a/Themes/test-ssclab/metrics.ini b/Themes/test-ssclab/metrics.ini deleted file mode 100644 index f010bdcd69..0000000000 --- a/Themes/test-ssclab/metrics.ini +++ /dev/null @@ -1,65 +0,0 @@ -[Global] -FallbackTheme=_fallback -[BPMDisplay] -SetNoBpmCommand=stoptweening;linear,0.2;diffuse,Color("White");diffusebottomedge,BoostColor(Color("White"),0.875); -SetNormalCommand=stoptweening;linear,0.2;diffuse,Color("White");diffusebottomedge,BoostColor(Color("White"),0.875); -SetChangeCommand=stoptweening;linear,0.2;diffuse,Color("Orange");diffusetopedge,BoostColor(Color("Orange"),1.5); -SetRandomCommand=stoptweening;linear,0.2;diffuse,Color("Blue");diffusetopedge,BoostColor(Color("Blue"),1.5); -SetExtraCommand=stoptweening;linear,0.2;diffuse,Color("Red");diffusebottomedge,BoostColor(Color("Red"),0.5); -Cycle=false -NoBpmText="000" -RandomCycleSpeed=0.2 -- smaller numbers mean the bpm cycles faster -Separator="-" -ShowQMarksInRandomCycle=false -[CustomScoring] -ComboAboveThresholdAddsToScoreBonus=0 -ComboScoreBonusThreshold=50 -ComboScoreBonusValue=+1000 - -ComboMultiplier=0.0 - -DoubleNoteScoreMultiplier=2.0 -TripleNoteScoreMultiplier=3.0 -QuadOrHigherNoteScoreMultiplier=4.0 - -PointsW1=+50 -PointsW2=+20 -PointsW3=+10 -PointsW4=+5 -PointsW5=0 -PointsMiss=-5 -PointsHitMine=-5 -PointsCheckpointHit=+5 -PointsCheckpointMiss=-5 -PointsNone=0 -PointsHoldHeld=+5 -PointsHoldLetGo=-5 - -[MusicWheel] -ItemTransformFunction=function(self,offsetFromCenter,itemIndex,numItems) \ - self:y( offsetFromCenter*32 ); \ -end; - -[ScreenWithMenuElements] -WaitForChildrenBeforeTweeningOut=true - -[ScreenTitleMenu] -ScrollerY=SCREEN_CENTER_Y*1.75-16 - -[ScreenSelectMusic] -MusicWheelX=SCREEN_CENTER_X+200 -MusicWheelY=SCREEN_CENTER_Y - -[ScreenGameplay] -# Flipper [ Y Axis - EASY ] -#~ PlayerInitCommand=y,SCREEN_CENTER_Y;visible,false;pulse;effectmagnitude,1,1,1;effecttiming,0.5,7.5,0.5,7.5;effectcolor1,color("1,1,1,1");effectcolor2,color("1,-1,1,1");effectclock,'beat' -# Swing [ EASY ] -#~ PlayerInitCommand=y,SCREEN_CENTER_Y;fov,90;visible,false;wag;effectmagnitude,90*0.75,0,0;effecttiming,7.75,0.25,7.75,0.25;effectcolor1,color("1,1,1,1");effectcolor2,color("-1,1,1,1");effectclock,'beat' -# Spin [ X Axis - EASY ] -#~ PlayerInitCommand=y,SCREEN_CENTER_Y;fov,90;visible,false;spin;effectmagnitude,90,0,0;effectclock,'beat' -# Spin [ Y Axis - HARD ] -#~ PlayerInitCommand=y,SCREEN_CENTER_Y;fov,90;visible,false;spin;effectmagnitude,0,90,0;effectclock,'beat' -# Beaterator [ LOL THIS IS NOT EVEN HARD AT ALL CMON ] -#~ PlayerInitCommand=y,SCREEN_CENTER_Y;fov,90;visible,false;pulse;effectmagnitude,1,1,1;effectcolor1,color("1,1,1,1");effectcolor2,color("1.125,1.25,2,1");effecttiming,0.25,0,0.75,0;effectclock,'beat' -# Bouncerator [ Again ] -PlayerInitCommand=y,SCREEN_CENTER_Y;fov,90;visible,false;bob;effectmagnitude,0,0,32;effectperiod,0.25;effectclock,'beat' \ No newline at end of file diff --git a/Themes/test-ssclab/svnlab.psd b/Themes/test-ssclab/svnlab.psd deleted file mode 100644 index 89f114e355..0000000000 Binary files a/Themes/test-ssclab/svnlab.psd and /dev/null differ diff --git a/Themes/test-ssclab/~res/_orbitron Bold 45px [main] 15x15.psd b/Themes/test-ssclab/~res/_orbitron Bold 45px [main] 15x15.psd deleted file mode 100644 index 1ddd244cb0..0000000000 Binary files a/Themes/test-ssclab/~res/_orbitron Bold 45px [main] 15x15.psd and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode background.redir b/Themes/test/BGAnimations/ScreenBlendMode background.redir deleted file mode 100644 index 4d3fd51225..0000000000 --- a/Themes/test/BGAnimations/ScreenBlendMode background.redir +++ /dev/null @@ -1 +0,0 @@ -ScreenTitleMenu background \ No newline at end of file diff --git a/Themes/test/BGAnimations/ScreenBlendMode overlay/_nWo.png b/Themes/test/BGAnimations/ScreenBlendMode overlay/_nWo.png deleted file mode 100644 index ef2a87896e..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode overlay/_nWo.png and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode overlay/_triangle big.png b/Themes/test/BGAnimations/ScreenBlendMode overlay/_triangle big.png deleted file mode 100644 index 292dcc91a1..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode overlay/_triangle big.png and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode overlay/_triangle small.png b/Themes/test/BGAnimations/ScreenBlendMode overlay/_triangle small.png deleted file mode 100644 index 99c76dfe0a..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode overlay/_triangle small.png and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode overlay/default.lua b/Themes/test/BGAnimations/ScreenBlendMode overlay/default.lua deleted file mode 100644 index 2bd028a05e..0000000000 --- a/Themes/test/BGAnimations/ScreenBlendMode overlay/default.lua +++ /dev/null @@ -1,43 +0,0 @@ -local blendModes = { - 'BlendMode_Normal', - 'BlendMode_Add', - 'BlendMode_Modulate', - 'BlendMode_WeightedMultiply', - 'BlendMode_InvertDest', -}; - -local t = Def.ActorFrame{}; - -for i=1,#blendModes do - --diffuse,color("0.45,0.45,0.45,0.9") - local thisX = (i > 3) and ((i-4)*72) or ((i-1)*72) - local thisY = (i > 3) and 72 or 0; - t[#t+1] = Def.Quad{ - InitCommand=cmd(zoomto,64,64;x,(SCREEN_CENTER_X*0.25)+thisX;y,SCREEN_CENTER_Y+thisY;blend,blendModes[i];diffuse,color("1,1,1,0.4");); - --OnCommand=cmd(diffuse,color("0,0.7,1,0.25");); - }; -end; - -t[#t+1] = LoadFont("Common normal")..{ - InitCommand=cmd(CenterX;y,SCREEN_CENTER_Y*0.75;maxwidth,SCREEN_WIDTH*0.95); - BeginCommand=function(self) - local driver = PREFSMAN:GetPreference('VideoRenderers'); - local possibleRenderers = split(",", driver); - driver = possibleRenderers[1]; - local blends = ""; - for i=1,#blendModes do - blends = blends..blendModes[i]; - if i < #blendModes then - blends = blends..", "; - end; - end; - self:settext(driver.."\n"..blends); - end; -}; - -t[#t+1] = Def.Quad{ - InitCommand=cmd(zoomto,512,128;x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y*1.65;diffuse,color("0,0,0,0.1");); - OnCommand=cmd(diffuseleftedge,color("0,0,0,0.25");diffuserightedge,color("0,0,0,0.125");); -}; - -return t; \ No newline at end of file diff --git a/Themes/test/BGAnimations/ScreenBlendMode overlay/negro.lua b/Themes/test/BGAnimations/ScreenBlendMode overlay/negro.lua deleted file mode 100644 index 1041ac0256..0000000000 --- a/Themes/test/BGAnimations/ScreenBlendMode overlay/negro.lua +++ /dev/null @@ -1,170 +0,0 @@ --- basic MultiTexture with quads -function MakeTexture() - -- [AJ] c is for children - local c; - - -- [AJ] define Draw function - local Draw = function(self) - -- Render the quads to the texture. - -- [AJ] this becomes Target. - -- you must begin rendering to a target before drawing the - -- components of it. - c.Target:GetTexture():BeginRenderingTo(); - c.Shape1:Draw(); -- [AJ] draw shape 1 - c.Shape2:Draw(); - -- [AJ] you also have to finalize the render. - c.Target:GetTexture():FinishRenderingTo(); - - -- [AJ] render to the second target - c.Target2:GetTexture():BeginRenderingTo(); - -- Unpremultiply the rendered shapes. - c.mt:Draw(); - - -- Knock out the text. - c.nWo:Draw(); - c.Target2:GetTexture():FinishRenderingTo(); - -- [AJ] Target2 consists of: - -- mt (MultiTexture using Target 1 as source) - -- nWo (image layer) - -- Target2 becomes the premultiplied Target 1 + anything else - -- drawn to Target2. As you'll see below, Out uses Target2 - -- as the texture. - - -- Draw the result. - c.Out:Draw(); - end - - local parts = { - -- [AJ] render target 1 - Def.ActorFrameTexture { Name = "Target"; }; - -- [AJ] render target 2 - Def.ActorFrameTexture { Name = "Target2"; }; - -- [AJ] multitexture - Def.ActorMultiTexture { Name = "mt"; }; - -- [AJ] output sprite - Def.Sprite { - Name = "Out"; - InitCommand=cmd(diffusealpha,0); - OnCommand=cmd(stoptweening;accelerate,0.3;diffusealpha,1); - SpinCommand=cmd(spin;effectmagnitude,0,60,0); - }; - -- [AJ] text - --[[ - LoadFont("_frutiger") .. { - Name = "nWo"; - Text = "intrade"; - }; - ]] - - LoadActor("_nWo")..{ - Name="nWo"; - }; - - -- [AJ] the two Run commands are concurrent. That is to say, the Run - -- command on the ActorFrame triggers the Run command on the Quad. - - Def.ActorFrame{ - Name="Shape1"; - OnCommand=cmd(stoptweening;playcommand,"Run"); - RunCommand=cmd( - y,0; - y,50; - sleep,1; - linear,2;addy,100; - sleep,1.3; - queuecommand,"Run" - ); - - Def.Quad{ - InitCommand=cmd(diffuse,color("#00CCFF");x,256-32;y,100;zoomto,128,128;fadetop,0.25;fadebottom,0.25;faderight,0.1); - RunCommand=cmd( - finishtweening; - diffusealpha,0; - sleep,1.25; - linear,1;diffusealpha,1; - linear,.25;diffusealpha,1; - linear,.5;diffusealpha,0; - ); - }; - }; - - Def.ActorFrame{ - Name="Shape2"; - OnCommand=cmd(stoptweening;playcommand,"Run"); - RunCommand=cmd( - y,0; - y,50; - sleep,1; - linear,2;addy,100; - sleep,1.3; - queuecommand,"Run" - ); - - Def.Quad{ - InitCommand=cmd(diffuse,color("#FFCC00");x,256+32;y,100;zoomto,128,128;fadetop,0.25;fadebottom,0.25); - RunCommand=cmd( - finishtweening; - diffusealpha,0; - sleep,1.25; - linear,1;diffusealpha,1; - linear,.25;diffusealpha,1; - linear,.5;diffusealpha,0; - ); - }; - }; - }; - - return Def.ActorFrame { - children = parts; - - InitCommand = function(self) - c = self:GetChildren(); - -- [AJ] sets draw function - self:SetDrawFunction( Draw ); - - -- Create the render target for the first pass. - -- [AJ] uses render target 1 - c.Target:setsize(512, 512); - c.Target:EnableAlphaBuffer(true); - c.Target:EnableFloat(true); - c.Target:Create(); - - -- Create the render target for the second pass. - -- [AJ] uses render target 2 - c.Target2:setsize(512, 512); - c.Target2:EnableAlphaBuffer(true); - c.Target2:Create(); - - -- [AJ] modify text - --c.nWo:shadowlength(0); - c.nWo:x(256); - c.nWo:y(236); - c.nWo:blend("BlendMode_AlphaKnockOut"); - - -- mt controls multitexture rendering for the unpremultiply pass. - -- [AJ] unpremultiply pass is here, this is the crazy one - local SourceTexture = c.Target:GetTexture(); - c.mt:SetSizeFromTexture( SourceTexture ); - c.mt:ClearTextures(); - c.mt:AddTexture( SourceTexture ); - c.mt:SetEffectMode( "EffectMode_HardMix" ); - --c.mt:SetTextureMode(0, 'TextureMode_Glow') - c.mt:blend("BlendMode_CopySrc"); - c.mt:x( 0 ); - c.mt:y( 0 ); - c.mt:align(0,0); - - -- Out renders the final pass. - c.Out:valign(0); - c.Out:SetTexture( c.Target2:GetTexture() ); - end; - }; -end - -local t = Def.ActorFrame{ - MakeTexture() .. { - InitCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y/2); - }; -}; - -return t; \ No newline at end of file diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 background.redir b/Themes/test/BGAnimations/ScreenBlendMode2 background.redir deleted file mode 100644 index 4d3fd51225..0000000000 --- a/Themes/test/BGAnimations/ScreenBlendMode2 background.redir +++ /dev/null @@ -1 +0,0 @@ -ScreenTitleMenu background \ No newline at end of file diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/Rest.bones.txt b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/Rest.bones.txt deleted file mode 100644 index e9ebf961fe..0000000000 --- a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/Rest.bones.txt +++ /dev/null @@ -1,2033 +0,0 @@ -Bones: 16 -"torso" -"" -8 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -61 -0.000000 0.000000 9.969728 -0.000018 -1.000000 -0.023367 9.983124 -0.000018 -2.000000 -0.045860 10.043225 -0.000018 -3.000000 -0.067429 10.130883 -0.000018 -4.000000 -0.088026 10.226953 -0.000018 -5.000000 -0.107604 10.312285 -0.000018 -6.000000 -0.126114 10.367736 -0.000018 -7.000000 -0.143508 10.376567 -0.000018 -8.000000 -0.159738 10.350718 -0.000018 -9.000000 -0.174755 10.302090 -0.000018 -10.000000 -0.188513 10.238860 -0.000018 -11.000000 -0.200961 10.169203 -0.000018 -12.000000 -0.212053 10.101295 -0.000018 -13.000000 -0.221740 10.043309 -0.000018 -14.000000 -0.229974 10.003425 -0.000018 -15.000000 -0.236707 9.989815 -0.000018 -16.000000 -0.241890 10.018713 -0.000018 -17.000000 -0.245476 10.091840 -0.000018 -18.000000 -0.247416 10.189896 -0.000018 -19.000000 -0.247663 10.293509 -0.000018 -20.000000 -0.246167 10.383307 -0.000018 -21.000000 -0.242881 10.439916 -0.000018 -22.000000 -0.237757 10.445688 -0.000018 -23.000000 -0.230747 10.405918 -0.000018 -24.000000 -0.221802 10.334986 -0.000018 -25.000000 -0.210874 10.246140 -0.000018 -26.000000 -0.197915 10.152637 -0.000018 -27.000000 -0.182877 10.067724 -0.000018 -28.000000 -0.165712 10.004654 -0.000018 -29.000000 -0.146372 9.976679 -0.000018 -30.000000 -0.124808 9.994616 -0.000018 -31.000000 -0.102376 10.052040 -0.000018 -32.000000 -0.080515 10.135207 -0.000018 -33.000000 -0.059297 10.230348 -0.000018 -34.000000 -0.038797 10.323692 -0.000018 -35.000000 -0.019090 10.401473 -0.000018 -36.000000 -0.000247 10.449922 -0.000018 -37.000000 0.017655 10.456341 -0.000018 -38.000000 0.034544 10.425125 -0.000018 -39.000000 0.050346 10.367063 -0.000018 -40.000000 0.064986 10.291644 -0.000018 -41.000000 0.078390 10.208359 -0.000018 -42.000000 0.090485 10.126697 -0.000018 -43.000000 0.101197 10.056147 -0.000018 -44.000000 0.110452 10.006201 -0.000018 -45.000000 0.118175 9.986347 -0.000018 -46.000000 0.124293 10.011132 -0.000018 -47.000000 0.128732 10.080393 -0.000018 -48.000000 0.131418 10.176130 -0.000018 -49.000000 0.132277 10.280258 -0.000018 -50.000000 0.131235 10.374692 -0.000018 -51.000000 0.128219 10.441345 -0.000018 -52.000000 0.123153 10.462291 -0.000018 -53.000000 0.115965 10.435179 -0.000018 -54.000000 0.106580 10.373817 -0.000018 -55.000000 0.094925 10.290408 -0.000018 -56.000000 0.080925 10.197154 -0.000018 -57.000000 0.064506 10.106257 -0.000018 -58.000000 0.045595 10.029919 -0.000018 -59.000000 0.024118 9.980342 -0.000018 -60.000000 0.000000 9.969728 -0.000018 -61 -0.000000 -0.136934 0.073307 -0.062759 -1.000000 -0.128287 0.059486 -0.068810 -2.000000 -0.106885 0.046146 -0.074270 -3.000000 -0.079535 0.033327 -0.079040 -4.000000 -0.053043 0.021065 -0.083024 -5.000000 -0.034217 0.009399 -0.086121 -6.000000 -0.029697 -0.001633 -0.088237 -7.000000 -0.038244 -0.011991 -0.089271 -8.000000 -0.055273 -0.021640 -0.089127 -9.000000 -0.078012 -0.030538 -0.087706 -10.000000 -0.103688 -0.038649 -0.084911 -11.000000 -0.129527 -0.045933 -0.080651 -12.000000 -0.152757 -0.052354 -0.075196 -13.000000 -0.170606 -0.057871 -0.068799 -14.000000 -0.180299 -0.062448 -0.061562 -15.000000 -0.177628 -0.066045 -0.053584 -16.000000 -0.156580 -0.068625 -0.044968 -17.000000 -0.123371 -0.070149 -0.035813 -18.000000 -0.085620 -0.070577 -0.026221 -19.000000 -0.050942 -0.069791 -0.016292 -20.000000 -0.026956 -0.067787 -0.006127 -21.000000 -0.021018 -0.064647 0.004173 -22.000000 -0.031355 -0.060454 0.014507 -23.000000 -0.052808 -0.055288 0.024775 -24.000000 -0.082026 -0.049232 0.034876 -25.000000 -0.115658 -0.042366 0.044709 -26.000000 -0.150356 -0.034773 0.054172 -27.000000 -0.182769 -0.026533 0.063167 -28.000000 -0.209547 -0.017730 0.071591 -29.000000 -0.227339 -0.008444 0.079344 -30.000000 -0.232716 0.001242 0.086325 -31.000000 -0.222380 0.011248 0.092433 -32.000000 -0.200614 0.021492 0.097568 -33.000000 -0.173759 0.031891 0.101629 -34.000000 -0.148160 0.042366 0.104515 -35.000000 -0.130159 0.052832 0.106125 -36.000000 -0.125665 0.063210 0.106378 -37.000000 -0.130424 0.073417 0.105334 -38.000000 -0.140400 0.083372 0.103089 -39.000000 -0.154148 0.092992 0.099736 -40.000000 -0.170227 0.102198 0.095367 -41.000000 -0.187189 0.110906 0.090076 -42.000000 -0.203591 0.119035 0.083954 -43.000000 -0.217989 0.126504 0.077094 -44.000000 -0.228939 0.133231 0.069588 -45.000000 -0.234996 0.139134 0.061530 -46.000000 -0.232460 0.144130 0.053011 -47.000000 -0.211447 0.148141 0.044125 -48.000000 -0.177465 0.151083 0.034963 -49.000000 -0.138109 0.152875 0.025619 -50.000000 -0.100976 0.153434 0.016185 -51.000000 -0.073660 0.152679 0.006753 -52.000000 -0.063741 0.150530 -0.002585 -53.000000 -0.067339 0.146904 -0.011735 -54.000000 -0.075841 0.141719 -0.020604 -55.000000 -0.087592 0.134894 -0.029101 -56.000000 -0.100927 0.126346 -0.037133 -57.000000 -0.114191 0.115996 -0.044607 -58.000000 -0.125719 0.103760 -0.051431 -59.000000 -0.133853 0.089558 -0.057512 -60.000000 -0.136934 0.073307 -0.062759 -"head" -"" -8 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -61 -0.000000 0.299689 14.228229 -0.706093 -1.000000 0.301221 14.240397 -0.688031 -2.000000 0.301686 14.298344 -0.642512 -3.000000 0.298386 14.381222 -0.583767 -4.000000 0.289891 14.470178 -0.526413 -5.000000 0.276029 14.548991 -0.485419 -6.000000 0.257658 14.602864 -0.475464 -7.000000 0.236076 14.614883 -0.494933 -8.000000 0.211937 14.594118 -0.534383 -9.000000 0.185342 14.550547 -0.586968 -10.000000 0.156058 14.490873 -0.645847 -11.000000 0.123650 14.422679 -0.704258 -12.000000 0.088647 14.354485 -0.755576 -13.000000 0.051395 14.295730 -0.793346 -14.000000 0.011647 14.256412 -0.811240 -15.000000 -0.031203 14.247061 -0.798485 -16.000000 -0.077714 14.282353 -0.749874 -17.000000 -0.126194 14.355053 -0.691218 -18.000000 -0.174822 14.441348 -0.634681 -19.000000 -0.221395 14.521547 -0.592939 -20.000000 -0.263812 14.581439 -0.579561 -21.000000 -0.300745 14.610684 -0.608359 -22.000000 -0.333651 14.600527 -0.665393 -23.000000 -0.364497 14.559100 -0.731823 -24.000000 -0.393151 14.491668 -0.809370 -25.000000 -0.419780 14.406935 -0.891948 -26.000000 -0.444277 14.315164 -0.972915 -27.000000 -0.466229 14.228364 -1.045932 -28.000000 -0.484958 14.160332 -1.105095 -29.000000 -0.499515 14.126169 -1.144892 -30.000000 -0.508608 14.138866 -1.159686 -31.000000 -0.511823 14.192810 -1.143928 -32.000000 -0.508146 14.267588 -1.114589 -33.000000 -0.496749 14.346467 -1.082377 -34.000000 -0.479402 14.421514 -1.048398 -35.000000 -0.458473 14.485353 -1.021979 -36.000000 -0.437067 14.531987 -1.012608 -37.000000 -0.414715 14.544597 -1.016783 -38.000000 -0.390683 14.523056 -1.029285 -39.000000 -0.365083 14.476424 -1.047409 -40.000000 -0.337882 14.412623 -1.068535 -41.000000 -0.308941 14.339966 -1.090206 -42.000000 -0.278038 14.267283 -1.110175 -43.000000 -0.244884 14.203945 -1.126406 -44.000000 -0.209119 14.159756 -1.137032 -45.000000 -0.170316 14.144746 -1.140280 -46.000000 -0.127076 14.175398 -1.127530 -47.000000 -0.075018 14.255209 -1.073647 -48.000000 -0.016377 14.359967 -0.993151 -49.000000 0.044755 14.466486 -0.903065 -50.000000 0.103647 14.555117 -0.821068 -51.000000 0.155407 14.610426 -0.765474 -52.000000 0.195543 14.619898 -0.754929 -53.000000 0.225673 14.587462 -0.772532 -54.000000 0.249913 14.534381 -0.781988 -55.000000 0.269053 14.470864 -0.778932 -56.000000 0.283585 14.401963 -0.766313 -57.000000 0.293787 14.333922 -0.747786 -58.000000 0.299842 14.275097 -0.727979 -59.000000 0.301850 14.235982 -0.712232 -60.000000 0.299689 14.228229 -0.706093 -61 -0.000000 -0.162087 -0.015951 -0.091466 -1.000000 -0.171988 -0.024501 -0.091406 -2.000000 -0.196804 -0.032582 -0.091151 -3.000000 -0.229201 -0.040188 -0.090596 -4.000000 -0.261848 -0.047314 -0.089629 -5.000000 -0.287410 -0.053957 -0.088144 -6.000000 -0.298556 -0.060114 -0.086032 -7.000000 -0.293499 -0.065778 -0.083186 -8.000000 -0.278482 -0.070949 -0.079494 -9.000000 -0.256851 -0.075618 -0.074853 -10.000000 -0.231939 -0.079784 -0.069150 -11.000000 -0.207081 -0.083442 -0.062279 -12.000000 -0.185610 -0.086587 -0.054131 -13.000000 -0.170859 -0.089217 -0.044641 -14.000000 -0.166162 -0.091326 -0.034008 -15.000000 -0.174349 -0.092910 -0.022500 -16.000000 -0.193554 -0.093965 -0.010382 -17.000000 -0.219966 -0.094488 0.002080 -18.000000 -0.249772 -0.094473 0.014622 -19.000000 -0.279162 -0.093916 0.026976 -20.000000 -0.304324 -0.092815 0.038879 -21.000000 -0.321445 -0.091015 0.050064 -22.000000 -0.326751 -0.088111 0.060266 -23.000000 -0.320705 -0.084163 0.069219 -24.000000 -0.306810 -0.079268 0.076659 -25.000000 -0.287513 -0.073518 0.082318 -26.000000 -0.265261 -0.067008 0.085933 -27.000000 -0.242503 -0.059833 0.087237 -28.000000 -0.221682 -0.052085 0.086361 -29.000000 -0.205249 -0.043858 0.084518 -30.000000 -0.195650 -0.035248 0.081868 -31.000000 -0.195697 -0.026349 0.078467 -32.000000 -0.224951 -0.017254 0.074372 -33.000000 -0.275560 -0.008058 0.069639 -34.000000 -0.322595 0.001145 0.064325 -35.000000 -0.341161 0.010262 0.058488 -36.000000 -0.335454 0.019197 0.052185 -37.000000 -0.323911 0.027858 0.045471 -38.000000 -0.308145 0.036149 0.038405 -39.000000 -0.289768 0.043976 0.031042 -40.000000 -0.270393 0.051246 0.023439 -41.000000 -0.251634 0.057865 0.015653 -42.000000 -0.235100 0.063738 0.007742 -43.000000 -0.222405 0.068771 -0.000240 -44.000000 -0.215162 0.072870 -0.008233 -45.000000 -0.215270 0.075940 -0.016182 -46.000000 -0.224812 0.077889 -0.024030 -47.000000 -0.241785 0.078621 -0.031719 -48.000000 -0.263627 0.077770 -0.039194 -49.000000 -0.287770 0.075077 -0.046398 -50.000000 -0.311650 0.070752 -0.053273 -51.000000 -0.332702 0.065004 -0.059763 -52.000000 -0.348360 0.058044 -0.065811 -53.000000 -0.356059 0.050083 -0.071360 -54.000000 -0.350444 0.041332 -0.076353 -55.000000 -0.325135 0.032002 -0.080735 -56.000000 -0.287074 0.022305 -0.084447 -57.000000 -0.244001 0.012449 -0.087433 -58.000000 -0.203652 0.002648 -0.089636 -59.000000 -0.173768 -0.006889 -0.091000 -60.000000 -0.162087 -0.015951 -0.091466 -"pelvis" -"" -8 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -61 -0.000000 0.000000 9.969728 -0.000018 -1.000000 -0.023367 9.983124 -0.000018 -2.000000 -0.045860 10.043225 -0.000018 -3.000000 -0.067429 10.130883 -0.000018 -4.000000 -0.088026 10.226953 -0.000018 -5.000000 -0.107604 10.312285 -0.000018 -6.000000 -0.126114 10.367736 -0.000018 -7.000000 -0.143508 10.376567 -0.000018 -8.000000 -0.159738 10.350718 -0.000018 -9.000000 -0.174755 10.302090 -0.000018 -10.000000 -0.188513 10.238860 -0.000018 -11.000000 -0.200961 10.169203 -0.000018 -12.000000 -0.212053 10.101295 -0.000018 -13.000000 -0.221740 10.043309 -0.000018 -14.000000 -0.229974 10.003425 -0.000018 -15.000000 -0.236707 9.989815 -0.000018 -16.000000 -0.241890 10.018713 -0.000018 -17.000000 -0.245476 10.091840 -0.000018 -18.000000 -0.247416 10.189896 -0.000018 -19.000000 -0.247663 10.293509 -0.000018 -20.000000 -0.246167 10.383307 -0.000018 -21.000000 -0.242881 10.439916 -0.000018 -22.000000 -0.237757 10.445688 -0.000018 -23.000000 -0.230747 10.405918 -0.000018 -24.000000 -0.221802 10.334986 -0.000018 -25.000000 -0.210874 10.246140 -0.000018 -26.000000 -0.197915 10.152637 -0.000018 -27.000000 -0.182877 10.067724 -0.000018 -28.000000 -0.165712 10.004654 -0.000018 -29.000000 -0.146372 9.976679 -0.000018 -30.000000 -0.124808 9.994616 -0.000018 -31.000000 -0.102376 10.052040 -0.000018 -32.000000 -0.080515 10.135207 -0.000018 -33.000000 -0.059297 10.230348 -0.000018 -34.000000 -0.038797 10.323692 -0.000018 -35.000000 -0.019090 10.401473 -0.000018 -36.000000 -0.000247 10.449922 -0.000018 -37.000000 0.017655 10.456341 -0.000018 -38.000000 0.034544 10.425125 -0.000018 -39.000000 0.050346 10.367063 -0.000018 -40.000000 0.064986 10.291644 -0.000018 -41.000000 0.078390 10.208359 -0.000018 -42.000000 0.090485 10.126697 -0.000018 -43.000000 0.101197 10.056147 -0.000018 -44.000000 0.110452 10.006201 -0.000018 -45.000000 0.118175 9.986347 -0.000018 -46.000000 0.124293 10.011132 -0.000018 -47.000000 0.128732 10.080393 -0.000018 -48.000000 0.131418 10.176130 -0.000018 -49.000000 0.132277 10.280258 -0.000018 -50.000000 0.131235 10.374692 -0.000018 -51.000000 0.128219 10.441345 -0.000018 -52.000000 0.123153 10.462291 -0.000018 -53.000000 0.115965 10.435179 -0.000018 -54.000000 0.106580 10.373817 -0.000018 -55.000000 0.094925 10.290408 -0.000018 -56.000000 0.080925 10.197154 -0.000018 -57.000000 0.064506 10.106257 -0.000018 -58.000000 0.045595 10.029919 -0.000018 -59.000000 0.024118 9.980342 -0.000018 -60.000000 0.000000 9.969728 -0.000018 -61 -0.000000 -0.030406 0.052077 -0.083309 -1.000000 -0.029652 0.031174 -0.098731 -2.000000 -0.028088 0.011897 -0.112146 -3.000000 -0.025814 -0.005818 -0.123454 -4.000000 -0.022931 -0.022036 -0.132556 -5.000000 -0.019537 -0.036821 -0.139352 -6.000000 -0.015735 -0.050239 -0.143741 -7.000000 -0.011624 -0.062354 -0.145626 -8.000000 -0.007304 -0.073230 -0.144905 -9.000000 -0.002875 -0.082933 -0.141478 -10.000000 0.001563 -0.091527 -0.135247 -11.000000 0.005908 -0.099076 -0.126111 -12.000000 0.010061 -0.105645 -0.113971 -13.000000 0.013922 -0.111300 -0.098725 -14.000000 0.017390 -0.116103 -0.081041 -15.000000 0.020366 -0.120121 -0.064022 -16.000000 0.022749 -0.123418 -0.047987 -17.000000 0.024438 -0.126059 -0.032912 -18.000000 0.025334 -0.128107 -0.018771 -19.000000 0.025179 -0.129629 -0.005537 -20.000000 0.023656 -0.130688 0.006812 -21.000000 0.020966 -0.131238 0.018306 -22.000000 0.017330 -0.130377 0.028968 -23.000000 0.012967 -0.127979 0.038824 -24.000000 0.008099 -0.124149 0.047900 -25.000000 0.002945 -0.118988 0.056222 -26.000000 -0.002275 -0.112601 0.063813 -27.000000 -0.007341 -0.105093 0.070703 -28.000000 -0.012030 -0.096568 0.076913 -29.000000 -0.016125 -0.087130 0.082471 -30.000000 -0.019405 -0.076882 0.087403 -31.000000 -0.021648 -0.065929 0.091734 -32.000000 -0.022635 -0.054374 0.095488 -33.000000 -0.022336 -0.042322 0.098692 -34.000000 -0.020961 -0.029876 0.101373 -35.000000 -0.018687 -0.017142 0.103554 -36.000000 -0.015689 -0.004222 0.105262 -37.000000 -0.012144 0.008780 0.106522 -38.000000 -0.008228 0.021759 0.107361 -39.000000 -0.004118 0.034611 0.107803 -40.000000 0.000010 0.047233 0.107587 -41.000000 0.003979 0.059519 0.106169 -42.000000 0.007614 0.071368 0.103585 -43.000000 0.010740 0.082673 0.099887 -44.000000 0.013178 0.093331 0.095125 -45.000000 0.014752 0.103240 0.089352 -46.000000 0.015287 0.112293 0.082620 -47.000000 0.014590 0.120388 0.074980 -48.000000 0.012663 0.127419 0.066485 -49.000000 0.009713 0.133285 0.057186 -50.000000 0.005949 0.137879 0.047136 -51.000000 0.001581 0.141100 0.036386 -52.000000 -0.003183 0.142840 0.024987 -53.000000 -0.008133 0.142973 0.012992 -54.000000 -0.013060 0.139828 0.000452 -55.000000 -0.017754 0.132745 -0.012579 -56.000000 -0.022006 0.122118 -0.026051 -57.000000 -0.025607 0.108342 -0.039912 -58.000000 -0.028346 0.091813 -0.054110 -59.000000 -0.030015 0.072926 -0.068593 -60.000000 -0.030406 0.052077 -0.083309 -"r lower arm" -"" -8 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -61 -0.000000 -2.602054 10.271132 0.137028 -1.000000 -2.601714 10.296412 0.135777 -2.000000 -2.577460 10.362123 0.172537 -3.000000 -2.537747 10.447474 0.227103 -4.000000 -2.491654 10.534348 0.280807 -5.000000 -2.450313 10.608056 0.318119 -6.000000 -2.428985 10.656881 0.327398 -7.000000 -2.441685 10.670407 0.313415 -8.000000 -2.481512 10.658963 0.290958 -9.000000 -2.533748 10.627438 0.259828 -10.000000 -2.587695 10.578088 0.220620 -11.000000 -2.636982 10.515067 0.176080 -12.000000 -2.677416 10.444881 0.130148 -13.000000 -2.706771 10.375879 0.088230 -14.000000 -2.723959 10.317570 0.057003 -15.000000 -2.726421 10.279107 0.044415 -16.000000 -2.706591 10.274024 0.055754 -17.000000 -2.669224 10.303075 0.071467 -18.000000 -2.622598 10.351014 0.079122 -19.000000 -2.577671 10.406468 0.080397 -20.000000 -2.545912 10.456900 0.082659 -21.000000 -2.538499 10.488515 0.100336 -22.000000 -2.560095 10.487120 0.153274 -23.000000 -2.600239 10.458120 0.240567 -24.000000 -2.644475 10.413568 0.343271 -25.000000 -2.683016 10.362969 0.447142 -26.000000 -2.709896 10.314008 0.543587 -27.000000 -2.721677 10.272679 0.627661 -28.000000 -2.716589 10.243602 0.696202 -29.000000 -2.693617 10.230888 0.747139 -30.000000 -2.654209 10.243043 0.786930 -31.000000 -2.593550 10.274128 0.825851 -32.000000 -2.519322 10.317878 0.863164 -33.000000 -2.443229 10.370026 0.895938 -34.000000 -2.372528 10.425110 0.923684 -35.000000 -2.310406 10.476480 0.947671 -36.000000 -2.258088 10.516665 0.970378 -37.000000 -2.215946 10.533758 1.002803 -38.000000 -2.182624 10.527963 1.044332 -39.000000 -2.170798 10.507895 1.088525 -40.000000 -2.178311 10.478530 1.129421 -41.000000 -2.197465 10.443985 1.162371 -42.000000 -2.221177 10.408545 1.184565 -43.000000 -2.242809 10.376811 1.194909 -44.000000 -2.256400 10.353803 1.193290 -45.000000 -2.256796 10.343143 1.177131 -46.000000 -2.235562 10.352538 1.145400 -47.000000 -2.179750 10.380986 1.112136 -48.000000 -2.100217 10.419722 1.070138 -49.000000 -2.011766 10.460876 1.010238 -50.000000 -1.931752 10.497310 0.928106 -51.000000 -1.878143 10.521450 0.828078 -52.000000 -1.866786 10.523267 0.724650 -53.000000 -1.900058 10.499089 0.638051 -54.000000 -1.961994 10.453198 0.565224 -55.000000 -2.053580 10.396405 0.499572 -56.000000 -2.175788 10.340830 0.431412 -57.000000 -2.316003 10.296000 0.352777 -58.000000 -2.450215 10.267529 0.265891 -59.000000 -2.552230 10.258256 0.186649 -60.000000 -2.602054 10.271132 0.137028 -61 -0.000000 0.589440 -0.733968 -0.298959 -1.000000 0.561513 -0.751342 -0.295767 -2.000000 0.509594 -0.771972 -0.282896 -3.000000 0.443763 -0.794553 -0.263155 -4.000000 0.374543 -0.817067 -0.239669 -5.000000 0.314232 -0.835588 -0.216111 -6.000000 0.278526 -0.844476 -0.197223 -7.000000 0.284286 -0.839922 -0.189713 -8.000000 0.321081 -0.826279 -0.189939 -9.000000 0.377099 -0.805399 -0.195799 -10.000000 0.442788 -0.779897 -0.205310 -11.000000 0.510813 -0.751993 -0.216617 -12.000000 0.574934 -0.723357 -0.228245 -13.000000 0.629714 -0.695119 -0.238854 -14.000000 0.670127 -0.667944 -0.247105 -15.000000 0.691306 -0.641353 -0.252242 -16.000000 0.686745 -0.613208 -0.253777 -17.000000 0.664688 -0.581136 -0.253913 -18.000000 0.632379 -0.544918 -0.253108 -19.000000 0.594151 -0.507630 -0.250100 -20.000000 0.556808 -0.472755 -0.244577 -21.000000 0.529832 -0.443725 -0.236758 -22.000000 0.524200 -0.421052 -0.228419 -23.000000 0.537876 -0.401531 -0.220393 -24.000000 0.559314 -0.384015 -0.212650 -25.000000 0.580079 -0.367612 -0.205137 -26.000000 0.595067 -0.351472 -0.197785 -27.000000 0.601422 -0.334922 -0.190513 -28.000000 0.597568 -0.317541 -0.183203 -29.000000 0.582821 -0.298770 -0.175741 -30.000000 0.561795 -0.277742 -0.168588 -31.000000 0.540507 -0.247460 -0.163093 -32.000000 0.519729 -0.210940 -0.158409 -33.000000 0.498876 -0.175426 -0.153372 -34.000000 0.478007 -0.146024 -0.147318 -35.000000 0.457766 -0.125149 -0.140170 -36.000000 0.439408 -0.113538 -0.131952 -37.000000 0.428802 -0.110599 -0.123221 -38.000000 0.425742 -0.114751 -0.114098 -39.000000 0.427279 -0.136501 -0.102689 -40.000000 0.431003 -0.172020 -0.088762 -41.000000 0.435066 -0.213491 -0.073189 -42.000000 0.438210 -0.255083 -0.057277 -43.000000 0.439736 -0.292477 -0.042761 -44.000000 0.439284 -0.322554 -0.031669 -45.000000 0.438618 -0.342720 -0.026650 -46.000000 0.439263 -0.348245 -0.031206 -47.000000 0.446211 -0.328807 -0.049942 -48.000000 0.454703 -0.287820 -0.076864 -49.000000 0.459747 -0.231915 -0.104596 -50.000000 0.459209 -0.171691 -0.128089 -51.000000 0.454652 -0.122795 -0.145793 -52.000000 0.451568 -0.105114 -0.159393 -53.000000 0.458593 -0.128047 -0.172862 -54.000000 0.473607 -0.177878 -0.188150 -55.000000 0.494245 -0.255467 -0.205826 -56.000000 0.518303 -0.361924 -0.226253 -57.000000 0.543508 -0.485586 -0.248715 -58.000000 0.566944 -0.604854 -0.271056 -59.000000 0.584184 -0.694777 -0.289433 -60.000000 0.589440 -0.733968 -0.298959 -"r foot" -"" -8 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -61 -0.000000 -1.050389 1.218531 0.389489 -1.000000 -1.073894 1.215400 0.389489 -2.000000 -1.094513 1.250882 0.389489 -3.000000 -1.112359 1.305408 0.389489 -4.000000 -1.127545 1.359413 0.389490 -5.000000 -1.140184 1.393323 0.389489 -6.000000 -1.150389 1.393199 0.389489 -7.000000 -1.158273 1.376008 0.389490 -8.000000 -1.163950 1.348074 0.389489 -9.000000 -1.167531 1.312876 0.389490 -10.000000 -1.169131 1.273889 0.389489 -11.000000 -1.168863 1.234591 0.389489 -12.000000 -1.166839 1.198458 0.389489 -13.000000 -1.163172 1.168968 0.389489 -14.000000 -1.157976 1.149599 0.389489 -15.000000 -1.151364 1.143887 0.389489 -16.000000 -1.143448 1.155579 0.389489 -17.000000 -1.134342 1.181195 0.389489 -18.000000 -1.124158 1.214967 0.389489 -19.000000 -1.113011 1.251127 0.389489 -20.000000 -1.101012 1.283909 0.389489 -21.000000 -1.088275 1.307547 0.389489 -22.000000 -1.074913 1.316272 0.389489 -23.000000 -1.061039 1.304534 0.389489 -24.000000 -1.046766 1.275318 0.389489 -25.000000 -1.032208 1.236038 0.389489 -26.000000 -1.017476 1.194105 0.389489 -27.000000 -1.002685 1.156929 0.389490 -28.000000 -0.987947 1.131922 0.389489 -29.000000 -0.973375 1.126250 0.389489 -30.000000 -0.959082 1.140037 0.389489 -31.000000 -0.945539 1.168471 0.389489 -32.000000 -0.933140 1.207149 0.389489 -33.000000 -0.921885 1.251665 0.389490 -34.000000 -0.911774 1.297617 0.389489 -35.000000 -0.902806 1.340598 0.389490 -36.000000 -0.894983 1.376204 0.389489 -37.000000 -0.888303 1.400031 0.389489 -38.000000 -0.882768 1.407586 0.389490 -39.000000 -0.878376 1.387528 0.389489 -40.000000 -0.875128 1.342200 0.389489 -41.000000 -0.873024 1.282908 0.389489 -42.000000 -0.872064 1.220965 0.389489 -43.000000 -0.872248 1.167679 0.389489 -44.000000 -0.873576 1.134362 0.389489 -45.000000 -0.876047 1.130776 0.389489 -46.000000 -0.879663 1.150170 0.389489 -47.000000 -0.884423 1.185265 0.389489 -48.000000 -0.890326 1.230534 0.389489 -49.000000 -0.897373 1.280451 0.389489 -50.000000 -0.905565 1.329490 0.389489 -51.000000 -0.914900 1.372124 0.389489 -52.000000 -0.925378 1.402825 0.389490 -53.000000 -0.937002 1.416111 0.389489 -54.000000 -0.949768 1.411075 0.389489 -55.000000 -0.963679 1.391934 0.389489 -56.000000 -0.978733 1.362517 0.389490 -57.000000 -0.994931 1.326644 0.389489 -58.000000 -1.012274 1.288138 0.389489 -59.000000 -1.030759 1.250826 0.389489 -60.000000 -1.050389 1.218531 0.389489 -61 -0.000000 -0.045946 0.220991 -0.110397 -1.000000 -0.049230 0.221160 -0.110398 -2.000000 -0.060750 0.221652 -0.110397 -3.000000 -0.077071 0.222455 -0.110398 -4.000000 -0.094760 0.223549 -0.110398 -5.000000 -0.110384 0.224920 -0.110397 -6.000000 -0.120509 0.226548 -0.110397 -7.000000 -0.122238 0.228418 -0.110398 -8.000000 -0.117370 0.230514 -0.110397 -9.000000 -0.108151 0.232820 -0.110398 -10.000000 -0.096517 0.235317 -0.110397 -11.000000 -0.084400 0.237990 -0.110397 -12.000000 -0.073738 0.240822 -0.110398 -13.000000 -0.066464 0.243796 -0.110397 -14.000000 -0.064453 0.246896 -0.110397 -15.000000 -0.066994 0.250105 -0.110397 -16.000000 -0.072543 0.253406 -0.110398 -17.000000 -0.080223 0.256784 -0.110397 -18.000000 -0.089149 0.260220 -0.110397 -19.000000 -0.098442 0.263700 -0.110398 -20.000000 -0.107222 0.267204 -0.110398 -21.000000 -0.114607 0.270719 -0.110398 -22.000000 -0.119716 0.274225 -0.110398 -23.000000 -0.121668 0.277708 -0.110397 -24.000000 -0.118279 0.281149 -0.110398 -25.000000 -0.109617 0.284535 -0.110398 -26.000000 -0.097968 0.287845 -0.110398 -27.000000 -0.085617 0.291065 -0.110397 -28.000000 -0.074850 0.294179 -0.110397 -29.000000 -0.067953 0.297167 -0.110397 -30.000000 -0.067201 0.300017 -0.110397 -31.000000 -0.072762 0.302708 -0.110397 -32.000000 -0.082739 0.305226 -0.110397 -33.000000 -0.095760 0.307554 -0.110398 -34.000000 -0.110448 0.309674 -0.110398 -35.000000 -0.125431 0.311571 -0.110398 -36.000000 -0.139333 0.313228 -0.110398 -37.000000 -0.150781 0.314627 -0.110397 -38.000000 -0.158401 0.315754 -0.110398 -39.000000 -0.160817 0.316589 -0.110397 -40.000000 -0.155501 0.317118 -0.110398 -41.000000 -0.142078 0.317324 -0.110398 -42.000000 -0.123577 0.316708 -0.110397 -43.000000 -0.103045 0.314631 -0.110397 -44.000000 -0.083530 0.311259 -0.110397 -45.000000 -0.068081 0.306763 -0.110397 -46.000000 -0.059748 0.301312 -0.110398 -47.000000 -0.062219 0.295080 -0.110398 -48.000000 -0.078769 0.288238 -0.110397 -49.000000 -0.104439 0.280957 -0.110398 -50.000000 -0.133349 0.273409 -0.110397 -51.000000 -0.159619 0.265765 -0.110397 -52.000000 -0.177370 0.258198 -0.110397 -53.000000 -0.180854 0.250879 -0.110397 -54.000000 -0.169822 0.243979 -0.110398 -55.000000 -0.148858 0.237670 -0.110397 -56.000000 -0.122273 0.232123 -0.110398 -57.000000 -0.094377 0.227510 -0.110397 -58.000000 -0.069485 0.224003 -0.110398 -59.000000 -0.051903 0.221772 -0.110397 -60.000000 -0.045946 0.220991 -0.110397 -"r hand" -"" -8 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -61 -0.000000 -2.433574 8.408479 -0.781609 -1.000000 -2.453194 8.409118 -0.734751 -2.000000 -2.465205 8.437054 -0.616937 -3.000000 -2.470699 8.482283 -0.462308 -4.000000 -2.470771 8.534812 -0.305005 -5.000000 -2.466513 8.584643 -0.179171 -6.000000 -2.459018 8.621781 -0.118946 -7.000000 -2.449381 8.637177 -0.142296 -8.000000 -2.438692 8.639192 -0.219381 -9.000000 -2.428048 8.633300 -0.335150 -10.000000 -2.418539 8.621543 -0.475854 -11.000000 -2.411261 8.605962 -0.627740 -12.000000 -2.407304 8.588602 -0.777059 -13.000000 -2.407764 8.571504 -0.910059 -14.000000 -2.413733 8.556708 -1.012990 -15.000000 -2.426270 8.545596 -1.072101 -16.000000 -2.445389 8.543230 -1.074682 -17.000000 -2.469940 8.558578 -1.050484 -18.000000 -2.498715 8.584578 -1.019109 -19.000000 -2.530507 8.614090 -0.981165 -20.000000 -2.564106 8.639980 -0.937258 -21.000000 -2.598307 8.655108 -0.887997 -22.000000 -2.631900 8.653567 -0.833989 -23.000000 -2.663678 8.640252 -0.775842 -24.000000 -2.692433 8.618773 -0.714164 -25.000000 -2.716957 8.591572 -0.649560 -26.000000 -2.736043 8.561100 -0.582641 -27.000000 -2.748482 8.529802 -0.514013 -28.000000 -2.753067 8.500122 -0.444283 -29.000000 -2.748590 8.475426 -0.374060 -30.000000 -2.733842 8.469517 -0.303951 -31.000000 -2.709020 8.484170 -0.234563 -32.000000 -2.675921 8.513156 -0.166503 -33.000000 -2.636719 8.550226 -0.100381 -34.000000 -2.592521 8.589128 -0.036802 -35.000000 -2.544436 8.623610 0.023625 -36.000000 -2.493570 8.647426 0.080293 -37.000000 -2.441030 8.653910 0.132593 -38.000000 -2.387921 8.643181 0.179920 -39.000000 -2.335351 8.620242 0.221664 -40.000000 -2.284426 8.589149 0.257219 -41.000000 -2.236253 8.553962 0.285976 -42.000000 -2.191939 8.518742 0.307329 -43.000000 -2.152589 8.487546 0.320670 -44.000000 -2.119311 8.464434 0.325390 -45.000000 -2.093210 8.453443 0.314559 -46.000000 -2.075395 8.462521 0.282882 -47.000000 -2.067280 8.495118 0.233153 -48.000000 -2.069543 8.541616 0.168174 -49.000000 -2.080934 8.592318 0.090746 -50.000000 -2.100145 8.637520 0.003669 -51.000000 -2.125862 8.667520 -0.090255 -52.000000 -2.156772 8.672774 -0.188227 -53.000000 -2.191564 8.655115 -0.287444 -54.000000 -2.228926 8.618157 -0.385108 -55.000000 -2.267545 8.568971 -0.478416 -56.000000 -2.306109 8.515235 -0.564569 -57.000000 -2.343306 8.464639 -0.640766 -58.000000 -2.377824 8.424859 -0.704205 -59.000000 -2.408351 8.403577 -0.752086 -60.000000 -2.433574 8.408479 -0.781609 -61 -0.000000 1.062350 -0.569543 -0.756866 -1.000000 1.032503 -0.633409 -0.742972 -2.000000 0.956681 -0.691054 -0.706354 -3.000000 0.855457 -0.742723 -0.654612 -4.000000 0.749409 -0.788665 -0.595344 -5.000000 0.659108 -0.829128 -0.536144 -6.000000 0.605132 -0.864358 -0.484615 -7.000000 0.605576 -0.894604 -0.448351 -8.000000 0.644650 -0.920113 -0.434952 -9.000000 0.709112 -0.941132 -0.446908 -10.000000 0.791543 -0.957909 -0.478566 -11.000000 0.884522 -0.970692 -0.524987 -12.000000 0.980627 -0.979728 -0.581237 -13.000000 1.072435 -0.985264 -0.642376 -14.000000 1.152527 -0.987549 -0.703472 -15.000000 1.213485 -0.985993 -0.759582 -16.000000 1.247882 -0.978872 -0.805774 -17.000000 1.246339 -0.966477 -0.837110 -18.000000 1.198169 -0.949191 -0.848653 -19.000000 1.114248 -0.927400 -0.820867 -20.000000 1.008064 -0.901486 -0.749175 -21.000000 0.893109 -0.871834 -0.651072 -22.000000 0.782872 -0.838829 -0.544058 -23.000000 0.690841 -0.802854 -0.445626 -24.000000 0.630507 -0.764294 -0.373277 -25.000000 0.614714 -0.723533 -0.344508 -26.000000 0.641554 -0.680955 -0.357152 -27.000000 0.696328 -0.636945 -0.390464 -28.000000 0.763985 -0.591885 -0.434063 -29.000000 0.829478 -0.546161 -0.477570 -30.000000 0.877755 -0.500157 -0.510608 -31.000000 0.893768 -0.454257 -0.522796 -32.000000 0.875358 -0.408845 -0.504461 -33.000000 0.836165 -0.364305 -0.461281 -34.000000 0.782517 -0.321021 -0.401069 -35.000000 0.720728 -0.279379 -0.328682 -36.000000 0.657112 -0.239761 -0.248980 -37.000000 0.597984 -0.202551 -0.166822 -38.000000 0.549656 -0.168135 -0.087069 -39.000000 0.518444 -0.136896 -0.014579 -40.000000 0.510659 -0.110336 0.045788 -41.000000 0.519745 -0.091217 0.089172 -42.000000 0.534808 -0.079236 0.110715 -43.000000 0.555176 -0.073938 0.109174 -44.000000 0.580177 -0.074875 0.091546 -45.000000 0.609139 -0.081594 0.060041 -46.000000 0.641392 -0.093644 0.016602 -47.000000 0.676263 -0.110574 -0.036829 -48.000000 0.713082 -0.131933 -0.098309 -49.000000 0.751175 -0.157272 -0.165897 -50.000000 0.789873 -0.186137 -0.237648 -51.000000 0.828504 -0.218079 -0.311622 -52.000000 0.866396 -0.252644 -0.385875 -53.000000 0.902877 -0.289384 -0.458465 -54.000000 0.937277 -0.327847 -0.527450 -55.000000 0.968923 -0.367582 -0.590887 -56.000000 0.997143 -0.408137 -0.646834 -57.000000 1.021269 -0.449062 -0.693348 -58.000000 1.040626 -0.489905 -0.728486 -59.000000 1.054543 -0.530217 -0.750306 -60.000000 1.062350 -0.569543 -0.756866 -"r leg" -"" -8 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -61 -0.000000 -1.150621 4.965027 -1.051488 -1.000000 -1.179203 4.972893 -1.022192 -2.000000 -1.203020 5.022811 -0.982904 -3.000000 -1.221968 5.095395 -0.932129 -4.000000 -1.235859 5.171270 -0.867768 -5.000000 -1.244388 5.231072 -0.786738 -6.000000 -1.248318 5.258254 -0.694234 -7.000000 -1.255526 5.252676 -0.651991 -8.000000 -1.265533 5.223131 -0.657558 -9.000000 -1.276342 5.177101 -0.696152 -10.000000 -1.286490 5.120312 -0.756786 -11.000000 -1.294586 5.058608 -0.828612 -12.000000 -1.299483 4.997935 -0.902435 -13.000000 -1.300289 4.944311 -0.970906 -14.000000 -1.296556 4.904154 -1.027126 -15.000000 -1.288893 4.884968 -1.062438 -16.000000 -1.275768 4.897294 -1.061288 -17.000000 -1.256493 4.940462 -1.016101 -18.000000 -1.233018 5.001592 -0.941792 -19.000000 -1.207386 5.067749 -0.854367 -20.000000 -1.182083 5.125953 -0.774476 -21.000000 -1.160144 5.163065 -0.729666 -22.000000 -1.144193 5.167028 -0.746104 -23.000000 -1.131599 5.138116 -0.802720 -24.000000 -1.119589 5.085404 -0.875673 -25.000000 -1.106832 5.019388 -0.953414 -26.000000 -1.092381 4.950487 -1.027082 -27.000000 -1.075591 4.889045 -1.089930 -28.000000 -1.056035 4.845335 -1.136493 -29.000000 -1.033385 4.829445 -1.161458 -30.000000 -1.006899 4.846702 -1.153573 -31.000000 -0.978095 4.891143 -1.114951 -32.000000 -0.949091 4.953347 -1.055654 -33.000000 -0.920874 5.024070 -0.985883 -34.000000 -0.894453 5.094260 -0.917372 -35.000000 -0.870905 5.154942 -0.864483 -36.000000 -0.851338 5.197212 -0.843672 -37.000000 -0.836584 5.212726 -0.868834 -38.000000 -0.825446 5.201490 -0.924169 -39.000000 -0.815699 5.163125 -0.975661 -40.000000 -0.807582 5.103629 -1.013999 -41.000000 -0.802337 5.033629 -1.042219 -42.000000 -0.800104 4.963563 -1.063257 -43.000000 -0.800938 4.903868 -1.079694 -44.000000 -0.804853 4.864985 -1.093892 -45.000000 -0.811723 4.856571 -1.106172 -46.000000 -0.819314 4.882270 -1.090537 -47.000000 -0.826208 4.938160 -1.037072 -48.000000 -0.832718 5.012432 -0.958331 -49.000000 -0.839552 5.093262 -0.868214 -50.000000 -0.848152 5.169008 -0.784178 -51.000000 -0.860966 5.228251 -0.728576 -52.000000 -0.881218 5.259820 -0.726009 -53.000000 -0.909043 5.259789 -0.771568 -54.000000 -0.941898 5.233833 -0.838982 -55.000000 -0.978130 5.189636 -0.914328 -56.000000 -1.015944 5.134819 -0.985663 -57.000000 -1.053686 5.077076 -1.043511 -58.000000 -1.089801 5.024215 -1.079664 -59.000000 -1.122698 4.984170 -1.085765 -60.000000 -1.150621 4.965027 -1.051488 -61 -0.000000 -0.368919 0.136550 -0.026109 -1.000000 -0.360947 0.134938 -0.022991 -2.000000 -0.350328 0.133363 -0.020055 -3.000000 -0.336697 0.131832 -0.017326 -4.000000 -0.319541 0.130343 -0.014826 -5.000000 -0.298106 0.128902 -0.012579 -6.000000 -0.273829 0.127508 -0.010613 -7.000000 -0.262776 0.126144 -0.008987 -8.000000 -0.264178 0.124832 -0.007694 -9.000000 -0.274189 0.123597 -0.006747 -10.000000 -0.289998 0.122452 -0.006167 -11.000000 -0.308829 0.121405 -0.005989 -12.000000 -0.328305 0.120468 -0.006253 -13.000000 -0.346484 0.119658 -0.007008 -14.000000 -0.361495 0.118926 -0.008178 -15.000000 -0.370947 0.118046 -0.009270 -16.000000 -0.370590 0.117008 -0.010216 -17.000000 -0.358401 0.115822 -0.011011 -18.000000 -0.338510 0.114481 -0.011681 -19.000000 -0.315297 0.112971 -0.012252 -20.000000 -0.294235 0.111274 -0.012754 -21.000000 -0.282455 0.109384 -0.013243 -22.000000 -0.286681 0.107296 -0.013777 -23.000000 -0.301431 0.105028 -0.014382 -24.000000 -0.320548 0.102604 -0.015082 -25.000000 -0.341047 0.100042 -0.015909 -26.000000 -0.360595 0.097360 -0.016897 -27.000000 -0.377361 0.094574 -0.018073 -28.000000 -0.389821 0.091708 -0.019463 -29.000000 -0.396475 0.088784 -0.021084 -30.000000 -0.394229 0.085835 -0.022928 -31.000000 -0.383689 0.082982 -0.024875 -32.000000 -0.367665 0.080334 -0.026806 -33.000000 -0.348967 0.077898 -0.028732 -34.000000 -0.330743 0.075676 -0.030666 -35.000000 -0.316752 0.073671 -0.032630 -36.000000 -0.311241 0.071871 -0.034659 -37.000000 -0.317814 0.070263 -0.036793 -38.000000 -0.332369 0.068885 -0.038999 -39.000000 -0.345982 0.067831 -0.041163 -40.000000 -0.356172 0.067516 -0.043187 -41.000000 -0.363725 0.068310 -0.044960 -42.000000 -0.369402 0.070094 -0.046478 -43.000000 -0.373884 0.072747 -0.047741 -44.000000 -0.377799 0.076143 -0.048756 -45.000000 -0.381230 0.080165 -0.049515 -46.000000 -0.377175 0.084789 -0.049878 -47.000000 -0.363003 0.089930 -0.049793 -48.000000 -0.342191 0.095411 -0.049342 -49.000000 -0.318527 0.101051 -0.048615 -50.000000 -0.296623 0.106679 -0.047690 -51.000000 -0.282259 0.112129 -0.046639 -52.000000 -0.281761 0.117247 -0.045521 -53.000000 -0.293853 0.121938 -0.044300 -54.000000 -0.311753 0.126128 -0.042820 -55.000000 -0.331864 0.129731 -0.041002 -56.000000 -0.351033 0.132682 -0.038809 -57.000000 -0.366683 0.134915 -0.036219 -58.000000 -0.376519 0.136361 -0.033225 -59.000000 -0.378201 0.136936 -0.029843 -60.000000 -0.368919 0.136550 -0.026109 -"r thigh" -"" -8 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -61 -0.000000 -0.863035 8.757312 0.320207 -1.000000 -0.911542 8.784597 0.303305 -2.000000 -0.955773 8.856930 0.286487 -3.000000 -0.995675 8.954939 0.269864 -4.000000 -1.031198 9.059280 0.253543 -5.000000 -1.062285 9.150634 0.237625 -6.000000 -1.088873 9.209705 0.222210 -7.000000 -1.110882 9.219634 0.207389 -8.000000 -1.128220 9.192265 0.193254 -9.000000 -1.140769 9.139431 0.179890 -10.000000 -1.148393 9.069275 0.167384 -11.000000 -1.150928 8.989964 0.155817 -12.000000 -1.148181 8.909707 0.145269 -13.000000 -1.139934 8.836747 0.135822 -14.000000 -1.126874 8.780061 0.127553 -15.000000 -1.112744 8.750723 0.120540 -16.000000 -1.097986 8.765226 0.114861 -17.000000 -1.082617 8.825235 0.110594 -18.000000 -1.066643 8.911394 0.107816 -19.000000 -1.050088 9.004313 0.106805 -20.000000 -1.032981 9.084616 0.107916 -21.000000 -1.015242 9.132829 0.110926 -22.000000 -0.996676 9.131213 0.116270 -23.000000 -0.977148 9.084976 0.123768 -24.000000 -0.956534 9.008417 0.133055 -25.000000 -0.934701 8.914703 0.143767 -26.000000 -0.911515 8.817008 0.155538 -27.000000 -0.886843 8.728498 0.168001 -28.000000 -0.860561 8.662335 0.180789 -29.000000 -0.832556 8.631683 0.193533 -30.000000 -0.802731 8.647264 0.205863 -31.000000 -0.772410 8.702557 0.217407 -32.000000 -0.743017 8.783720 0.227795 -33.000000 -0.714651 8.876942 0.236896 -34.000000 -0.687438 8.968476 0.244890 -35.000000 -0.661495 9.044577 0.251917 -36.000000 -0.636933 9.091495 0.258115 -37.000000 -0.613858 9.096559 0.263628 -38.000000 -0.592364 9.064186 0.268600 -39.000000 -0.572538 9.005187 0.273179 -40.000000 -0.554845 8.929253 0.277513 -41.000000 -0.540125 8.846240 0.281756 -42.000000 -0.528418 8.765652 0.286058 -43.000000 -0.519730 8.696981 0.290572 -44.000000 -0.514055 8.649730 0.295453 -45.000000 -0.511377 8.633400 0.300852 -46.000000 -0.511674 8.662557 0.306923 -47.000000 -0.514921 8.737065 0.313838 -48.000000 -0.521116 8.838918 0.321518 -49.000000 -0.530301 8.949976 0.329626 -50.000000 -0.542533 9.052109 0.337819 -51.000000 -0.557884 9.127182 0.345760 -52.000000 -0.576437 9.157224 0.353109 -53.000000 -0.598290 9.139839 0.359509 -54.000000 -0.624106 9.088792 0.363480 -55.000000 -0.654188 9.016260 0.364266 -56.000000 -0.688420 8.934430 0.361869 -57.000000 -0.726640 8.855473 0.356281 -58.000000 -0.768647 8.791543 0.347486 -59.000000 -0.814201 8.754783 0.335466 -60.000000 -0.863035 8.757312 0.320207 -61 -0.000000 0.342683 0.136550 -0.026109 -1.000000 0.330459 0.134938 -0.022991 -2.000000 0.315716 0.133363 -0.020055 -3.000000 0.298131 0.131832 -0.017326 -4.000000 0.277235 0.130343 -0.014826 -5.000000 0.252324 0.128902 -0.012579 -6.000000 0.224804 0.127508 -0.010613 -7.000000 0.210310 0.126144 -0.008987 -8.000000 0.208100 0.124832 -0.007694 -9.000000 0.214432 0.123597 -0.006747 -10.000000 0.226573 0.122452 -0.006167 -11.000000 0.241830 0.121405 -0.005989 -12.000000 0.257915 0.120468 -0.006253 -13.000000 0.272977 0.119658 -0.007008 -14.000000 0.285254 0.118926 -0.008178 -15.000000 0.292501 0.118046 -0.009270 -16.000000 0.290697 0.117008 -0.010216 -17.000000 0.277938 0.115822 -0.011011 -18.000000 0.258171 0.114481 -0.011681 -19.000000 0.235632 0.112971 -0.012252 -20.000000 0.215656 0.111274 -0.012754 -21.000000 0.205077 0.109384 -0.013243 -22.000000 0.210518 0.107296 -0.013777 -23.000000 0.226656 0.105028 -0.014382 -24.000000 0.247450 0.102604 -0.015082 -25.000000 0.269933 0.100042 -0.015909 -26.000000 0.291774 0.097360 -0.016897 -27.000000 0.311130 0.094574 -0.018073 -28.000000 0.326450 0.091708 -0.019463 -29.000000 0.336195 0.088784 -0.021084 -30.000000 0.337282 0.085835 -0.022928 -31.000000 0.330161 0.082982 -0.024875 -32.000000 0.317406 0.080334 -0.026806 -33.000000 0.301683 0.077898 -0.028732 -34.000000 0.286086 0.075677 -0.030666 -35.000000 0.274312 0.073671 -0.032630 -36.000000 0.270549 0.071871 -0.034659 -37.000000 0.278359 0.070263 -0.036793 -38.000000 0.293794 0.068885 -0.038999 -39.000000 0.308213 0.067831 -0.041163 -40.000000 0.319243 0.067516 -0.043187 -41.000000 0.327687 0.068310 -0.044960 -42.000000 0.334325 0.070094 -0.046478 -43.000000 0.339861 0.072747 -0.047741 -44.000000 0.344943 0.076143 -0.048756 -45.000000 0.349694 0.080165 -0.049515 -46.000000 0.347337 0.084790 -0.049878 -47.000000 0.335339 0.089930 -0.049793 -48.000000 0.317032 0.095411 -0.049342 -49.000000 0.296006 0.101052 -0.048615 -50.000000 0.276680 0.106679 -0.047690 -51.000000 0.264644 0.112129 -0.046639 -52.000000 0.266036 0.117247 -0.045521 -53.000000 0.279539 0.121938 -0.044300 -54.000000 0.298122 0.126128 -0.042820 -55.000000 0.318045 0.129731 -0.041002 -56.000000 0.336203 0.132682 -0.038809 -57.000000 0.350051 0.134915 -0.036218 -58.000000 0.357337 0.136361 -0.033225 -59.000000 0.355786 0.136936 -0.029843 -60.000000 0.342683 0.136550 -0.026109 -"r upper arm" -"" -8 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -61 -0.000000 -1.315818 12.991199 -0.420414 -1.000000 -1.313125 13.016446 -0.415807 -2.000000 -1.309725 13.092992 -0.372803 -3.000000 -1.308297 13.196967 -0.311103 -4.000000 -1.310408 13.305966 -0.250740 -5.000000 -1.316492 13.399526 -0.212010 -6.000000 -1.325986 13.458300 -0.214779 -7.000000 -1.337757 13.466222 -0.255368 -8.000000 -1.351220 13.435416 -0.320033 -9.000000 -1.366316 13.377363 -0.400364 -10.000000 -1.383317 13.300193 -0.487956 -11.000000 -1.402712 13.212753 -0.574473 -12.000000 -1.424075 13.125150 -0.651712 -13.000000 -1.447204 13.048179 -0.711636 -14.000000 -1.472513 12.992826 -0.746327 -15.000000 -1.500782 12.970832 -0.743695 -16.000000 -1.533302 13.001815 -0.686136 -17.000000 -1.569275 13.081063 -0.591203 -18.000000 -1.606991 13.182858 -0.480783 -19.000000 -1.644242 13.284281 -0.377178 -20.000000 -1.678618 13.365516 -0.303191 -21.000000 -1.708063 13.408364 -0.281015 -22.000000 -1.732815 13.396760 -0.305603 -23.000000 -1.753934 13.336188 -0.361712 -24.000000 -1.772083 13.240325 -0.439377 -25.000000 -1.787801 13.122131 -0.528582 -26.000000 -1.801447 12.995612 -0.619353 -27.000000 -1.813196 12.876077 -0.701887 -28.000000 -1.823021 12.780084 -0.766645 -29.000000 -1.830670 12.725059 -0.804350 -30.000000 -1.835594 12.726219 -0.805594 -31.000000 -1.838193 12.780593 -0.761165 -32.000000 -1.838241 12.870358 -0.683210 -33.000000 -1.834473 12.975937 -0.589842 -34.000000 -1.826405 13.079108 -0.499563 -35.000000 -1.814499 13.163348 -0.431236 -36.000000 -1.800135 13.213213 -0.402545 -37.000000 -1.784123 13.218596 -0.401193 -38.000000 -1.766812 13.185556 -0.415394 -39.000000 -1.748605 13.125098 -0.440944 -40.000000 -1.729718 13.047022 -0.473657 -41.000000 -1.710202 12.961334 -0.509394 -42.000000 -1.689956 12.878317 -0.544091 -43.000000 -1.668737 12.808517 -0.573769 -44.000000 -1.646169 12.762692 -0.594526 -45.000000 -1.621757 12.751674 -0.602516 -46.000000 -1.594073 12.793129 -0.587482 -47.000000 -1.558989 12.894140 -0.521386 -48.000000 -1.517997 13.029359 -0.419445 -49.000000 -1.474248 13.172429 -0.303047 -50.000000 -1.431697 13.299913 -0.194242 -51.000000 -1.394699 13.391729 -0.115590 -52.000000 -1.367484 13.430008 -0.089774 -53.000000 -1.348695 13.415278 -0.105750 -54.000000 -1.334637 13.363990 -0.138452 -55.000000 -1.324651 13.288520 -0.183140 -56.000000 -1.318064 13.201315 -0.235074 -57.000000 -1.314260 13.115011 -0.289511 -58.000000 -1.312749 13.042483 -0.341714 -59.000000 -1.313255 12.996819 -0.386938 -60.000000 -1.315818 12.991199 -0.420414 -61 -0.000000 -0.172851 -0.728330 -0.297800 -1.000000 -0.173728 -0.745884 -0.294737 -2.000000 -0.175305 -0.766855 -0.282108 -3.000000 -0.177127 -0.789881 -0.262649 -4.000000 -0.179404 -0.812875 -0.239428 -5.000000 -0.183500 -0.831807 -0.216073 -6.000000 -0.191998 -0.840898 -0.197308 -7.000000 -0.204121 -0.836211 -0.189816 -8.000000 -0.221180 -0.822169 -0.189987 -9.000000 -0.239047 -0.800746 -0.195721 -10.000000 -0.254553 -0.774659 -0.205037 -11.000000 -0.265862 -0.746198 -0.216092 -12.000000 -0.271842 -0.717085 -0.227445 -13.000000 -0.272042 -0.688487 -0.237789 -14.000000 -0.266497 -0.661097 -0.245825 -15.000000 -0.253695 -0.634468 -0.250830 -16.000000 -0.228598 -0.606535 -0.252352 -17.000000 -0.191044 -0.574878 -0.252546 -18.000000 -0.146007 -0.539202 -0.251848 -19.000000 -0.103615 -0.502480 -0.248978 -20.000000 -0.074791 -0.468072 -0.243602 -21.000000 -0.071797 -0.439247 -0.235900 -22.000000 -0.098761 -0.416408 -0.227623 -23.000000 -0.149273 -0.396413 -0.219624 -24.000000 -0.213154 -0.378276 -0.211925 -25.000000 -0.282171 -0.361229 -0.204501 -26.000000 -0.349950 -0.344505 -0.197287 -27.000000 -0.411052 -0.327488 -0.190200 -28.000000 -0.460250 -0.309800 -0.183094 -29.000000 -0.492348 -0.290913 -0.175823 -30.000000 -0.505439 -0.269941 -0.168807 -31.000000 -0.498939 -0.239844 -0.163364 -32.000000 -0.478770 -0.203599 -0.158672 -33.000000 -0.452408 -0.168404 -0.153603 -34.000000 -0.427033 -0.139318 -0.147524 -35.000000 -0.409653 -0.118705 -0.140377 -36.000000 -0.407045 -0.107241 -0.132204 -37.000000 -0.418401 -0.104300 -0.123543 -38.000000 -0.439252 -0.108332 -0.114504 -39.000000 -0.466574 -0.129887 -0.103193 -40.000000 -0.497363 -0.165178 -0.089380 -41.000000 -0.528661 -0.206417 -0.073932 -42.000000 -0.557517 -0.247803 -0.058145 -43.000000 -0.580867 -0.285040 -0.043743 -44.000000 -0.595455 -0.315030 -0.032732 -45.000000 -0.596720 -0.335193 -0.027729 -46.000000 -0.577855 -0.340830 -0.032194 -47.000000 -0.531663 -0.321633 -0.050688 -48.000000 -0.466581 -0.281011 -0.077302 -49.000000 -0.392666 -0.225573 -0.104742 -50.000000 -0.319096 -0.165870 -0.128007 -51.000000 -0.254843 -0.117470 -0.145562 -52.000000 -0.210292 -0.100138 -0.159075 -53.000000 -0.186602 -0.123196 -0.172476 -54.000000 -0.173934 -0.173017 -0.187692 -55.000000 -0.169332 -0.250497 -0.205283 -56.000000 -0.169566 -0.356787 -0.225605 -57.000000 -0.171415 -0.480264 -0.247934 -58.000000 -0.172610 -0.599367 -0.270114 -59.000000 -0.172722 -0.689175 -0.288339 -60.000000 -0.172851 -0.728330 -0.297800 -"neck" -"" -8 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -61 -0.000000 0.170143 13.090551 -0.353011 -1.000000 0.172333 13.105351 -0.326347 -2.000000 0.174777 13.170048 -0.259626 -3.000000 0.174759 13.262046 -0.173988 -4.000000 0.170796 13.360300 -0.090815 -5.000000 0.162633 13.445825 -0.031632 -6.000000 0.151084 13.500778 -0.017417 -7.000000 0.137408 13.509013 -0.044296 -8.000000 0.122198 13.481858 -0.097825 -9.000000 0.105506 13.430335 -0.169224 -10.000000 0.087018 13.362134 -0.249692 -11.000000 0.066174 13.285699 -0.330453 -12.000000 0.043337 13.210254 -0.402815 -13.000000 0.018654 13.145787 -0.458207 -14.000000 -0.008353 13.102731 -0.488164 -15.000000 -0.038541 13.092018 -0.479769 -16.000000 -0.073290 13.132076 -0.414313 -17.000000 -0.111588 13.218915 -0.310777 -18.000000 -0.151490 13.327851 -0.192710 -19.000000 -0.190567 13.437198 -0.084025 -20.000000 -0.226300 13.528561 -0.008775 -21.000000 -0.256645 13.585199 0.009859 -22.000000 -0.282017 13.590626 -0.022594 -23.000000 -0.303656 13.549116 -0.089961 -24.000000 -0.322346 13.473454 -0.181687 -25.000000 -0.338703 13.375729 -0.287136 -26.000000 -0.353125 13.269123 -0.395638 -27.000000 -0.365780 13.168214 -0.496615 -28.000000 -0.376590 13.088907 -0.579678 -29.000000 -0.385202 13.048045 -0.634658 -30.000000 -0.390921 13.060264 -0.651233 -31.000000 -0.393949 13.121975 -0.619357 -32.000000 -0.393964 13.215817 -0.552005 -33.000000 -0.389711 13.322985 -0.468549 -34.000000 -0.380799 13.426124 -0.388674 -35.000000 -0.367864 13.509693 -0.332315 -36.000000 -0.352507 13.559237 -0.318083 -37.000000 -0.335508 13.564023 -0.332708 -38.000000 -0.317160 13.529520 -0.363524 -39.000000 -0.297863 13.466590 -0.405947 -40.000000 -0.277822 13.384894 -0.455408 -41.000000 -0.257065 13.294320 -0.507376 -42.000000 -0.235458 13.205042 -0.557376 -43.000000 -0.212720 13.127525 -0.601007 -44.000000 -0.188435 13.072453 -0.633939 -45.000000 -0.162066 13.050597 -0.651887 -46.000000 -0.132056 13.079203 -0.643703 -47.000000 -0.093938 13.163902 -0.579229 -48.000000 -0.049484 13.280147 -0.474838 -49.000000 -0.002211 13.402771 -0.353464 -50.000000 0.043601 13.509740 -0.238539 -51.000000 0.083341 13.582591 -0.153821 -52.000000 0.112615 13.605195 -0.123060 -53.000000 0.132970 13.577594 -0.134308 -54.000000 0.148354 13.514754 -0.160857 -55.000000 0.159461 13.428864 -0.197570 -56.000000 0.166977 13.332188 -0.239302 -57.000000 0.171502 13.237193 -0.280894 -58.000000 0.173477 13.156603 -0.317174 -59.000000 0.173085 13.103370 -0.342953 -60.000000 0.170143 13.090551 -0.353011 -61 -0.000000 -0.242618 -0.043304 -0.100019 -1.000000 -0.250147 -0.043304 -0.099348 -2.000000 -0.268782 -0.043304 -0.097396 -3.000000 -0.292591 -0.043304 -0.094246 -4.000000 -0.315644 -0.043304 -0.089986 -5.000000 -0.332011 -0.043304 -0.084700 -6.000000 -0.335858 -0.043304 -0.078476 -7.000000 -0.329168 -0.043304 -0.071399 -8.000000 -0.316506 -0.043304 -0.063554 -9.000000 -0.299681 -0.043304 -0.055029 -10.000000 -0.280505 -0.043304 -0.045909 -11.000000 -0.260787 -0.043304 -0.036281 -12.000000 -0.242338 -0.043304 -0.026229 -13.000000 -0.226969 -0.043304 -0.015841 -14.000000 -0.216488 -0.043304 -0.005201 -15.000000 -0.212708 -0.043304 0.005603 -16.000000 -0.227336 -0.043304 0.016487 -17.000000 -0.266628 -0.043304 0.027363 -18.000000 -0.321366 -0.043304 0.038147 -19.000000 -0.382314 -0.043304 0.048751 -20.000000 -0.440234 -0.043304 0.059090 -21.000000 -0.485891 -0.043304 0.069079 -22.000000 -0.510049 -0.043304 0.078630 -23.000000 -0.509121 -0.043304 0.087657 -24.000000 -0.495151 -0.043304 0.096077 -25.000000 -0.472865 -0.043304 0.103801 -26.000000 -0.446414 -0.043304 0.110744 -27.000000 -0.419943 -0.043304 0.116821 -28.000000 -0.397599 -0.043304 0.121944 -29.000000 -0.383532 -0.043304 0.126028 -30.000000 -0.381887 -0.043304 0.128987 -31.000000 -0.396813 -0.043304 0.130735 -32.000000 -0.432456 -0.043304 0.131182 -33.000000 -0.481614 -0.043304 0.130053 -34.000000 -0.526898 -0.043304 0.127320 -35.000000 -0.557179 -0.043304 0.123106 -36.000000 -0.562156 -0.043304 0.117536 -37.000000 -0.551479 -0.043304 0.110735 -38.000000 -0.532955 -0.043304 0.102826 -39.000000 -0.508726 -0.043304 0.093934 -40.000000 -0.480932 -0.043304 0.084182 -41.000000 -0.451716 -0.043304 0.073695 -42.000000 -0.423219 -0.043304 0.062598 -43.000000 -0.397583 -0.043304 0.051013 -44.000000 -0.376948 -0.043304 0.039067 -45.000000 -0.363457 -0.043304 0.026882 -46.000000 -0.359284 -0.043304 0.014583 -47.000000 -0.368976 -0.043304 0.002294 -48.000000 -0.391005 -0.043304 -0.009859 -49.000000 -0.420210 -0.043304 -0.021755 -50.000000 -0.451428 -0.043304 -0.033268 -51.000000 -0.479500 -0.043304 -0.044274 -52.000000 -0.499263 -0.043304 -0.054648 -53.000000 -0.505525 -0.043304 -0.064268 -54.000000 -0.488736 -0.043304 -0.073008 -55.000000 -0.450313 -0.043304 -0.080743 -56.000000 -0.399081 -0.043304 -0.087352 -57.000000 -0.343869 -0.043304 -0.092708 -58.000000 -0.293503 -0.043304 -0.096686 -59.000000 -0.256810 -0.043304 -0.099165 -60.000000 -0.242618 -0.043304 -0.100019 -"l lower arm" -"" -8 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -61 -0.000000 2.311231 10.214671 0.816953 -1.000000 2.269245 10.223116 0.885420 -2.000000 2.191155 10.248165 0.939112 -3.000000 2.093552 10.286419 0.978648 -4.000000 1.991250 10.333766 1.006904 -5.000000 1.895351 10.384449 1.031311 -6.000000 1.812583 10.431463 1.063231 -7.000000 1.746170 10.458354 1.107408 -8.000000 1.701781 10.466020 1.150065 -9.000000 1.690633 10.463213 1.189613 -10.000000 1.724203 10.454853 1.223303 -11.000000 1.786250 10.444088 1.247172 -12.000000 1.857952 10.433459 1.260491 -13.000000 1.921568 10.425773 1.266616 -14.000000 1.960860 10.424231 1.271617 -15.000000 1.963256 10.430869 1.283065 -16.000000 1.931774 10.444157 1.290852 -17.000000 1.871374 10.454157 1.259030 -18.000000 1.799987 10.466965 1.187343 -19.000000 1.737440 10.489223 1.083563 -20.000000 1.696755 10.525436 0.976982 -21.000000 1.677227 10.572031 0.914557 -22.000000 1.676169 10.595158 0.879407 -23.000000 1.689711 10.590436 0.861768 -24.000000 1.716384 10.567199 0.853035 -25.000000 1.757044 10.534134 0.844594 -26.000000 1.810357 10.499099 0.829463 -27.000000 1.872349 10.468602 0.802451 -28.000000 1.936351 10.448157 0.760723 -29.000000 1.993997 10.443229 0.703544 -30.000000 2.036125 10.457666 0.630830 -31.000000 2.054207 10.484537 0.547502 -32.000000 2.041873 10.518045 0.457773 -33.000000 2.001819 10.553922 0.361757 -34.000000 1.949022 10.588923 0.257220 -35.000000 1.898030 10.617612 0.147980 -36.000000 1.863057 10.631711 0.048478 -37.000000 1.855513 10.620694 -0.015327 -38.000000 1.880706 10.587817 -0.037711 -39.000000 1.934511 10.539320 -0.037767 -40.000000 2.013446 10.482864 -0.028652 -41.000000 2.111534 10.425970 -0.019484 -42.000000 2.220562 10.375297 -0.015404 -43.000000 2.330332 10.336310 -0.017693 -44.000000 2.429733 10.313386 -0.024443 -45.000000 2.508322 10.310315 -0.032111 -46.000000 2.555887 10.334391 -0.037679 -47.000000 2.561463 10.375916 -0.038899 -48.000000 2.516253 10.419881 -0.027637 -49.000000 2.425455 10.457888 -0.005864 -50.000000 2.316363 10.486592 0.014231 -51.000000 2.215165 10.499507 0.030505 -52.000000 2.140744 10.485589 0.052794 -53.000000 2.104927 10.444419 0.100874 -54.000000 2.111026 10.390095 0.187101 -55.000000 2.143090 10.331407 0.296981 -56.000000 2.190374 10.276842 0.414728 -57.000000 2.242055 10.233427 0.530213 -58.000000 2.286965 10.206371 0.637685 -59.000000 2.313800 10.199276 0.734023 -60.000000 2.311231 10.214671 0.816953 -61 -0.000000 0.595536 0.202577 0.168574 -1.000000 0.577432 0.187433 0.158500 -2.000000 0.552913 0.153217 0.147311 -3.000000 0.524514 0.108195 0.135411 -4.000000 0.495054 0.060106 0.123121 -5.000000 0.468667 0.015913 0.111188 -6.000000 0.450750 -0.018410 0.100713 -7.000000 0.442959 -0.039481 0.092391 -8.000000 0.437394 -0.044216 0.085944 -9.000000 0.432992 -0.026228 0.080371 -10.000000 0.428897 0.020093 0.073961 -11.000000 0.424353 0.081582 0.065925 -12.000000 0.419311 0.144098 0.057506 -13.000000 0.414542 0.195243 0.051975 -14.000000 0.411549 0.224855 0.053479 -15.000000 0.412895 0.225309 0.065816 -16.000000 0.413600 0.201968 0.087913 -17.000000 0.395631 0.158732 0.114451 -18.000000 0.361029 0.100552 0.140534 -19.000000 0.316652 0.036106 0.163089 -20.000000 0.277546 -0.023113 0.181516 -21.000000 0.265460 -0.064609 0.197119 -22.000000 0.270407 -0.077782 0.209974 -23.000000 0.286948 -0.065723 0.220390 -24.000000 0.310799 -0.034527 0.228201 -25.000000 0.337922 0.011807 0.232699 -26.000000 0.365229 0.068610 0.233304 -27.000000 0.390330 0.130304 0.230313 -28.000000 0.411441 0.191184 0.224896 -29.000000 0.427135 0.246326 0.218776 -30.000000 0.435696 0.291514 0.214006 -31.000000 0.437850 0.322843 0.212750 -32.000000 0.433702 0.334005 0.215285 -33.000000 0.422204 0.322049 0.219444 -34.000000 0.403493 0.294695 0.222212 -35.000000 0.381100 0.259820 0.222273 -36.000000 0.363616 0.227564 0.220175 -37.000000 0.364723 0.210064 0.218495 -38.000000 0.387350 0.216828 0.219028 -39.000000 0.421360 0.241767 0.222711 -40.000000 0.460243 0.280236 0.229296 -41.000000 0.499389 0.327937 0.237660 -42.000000 0.535496 0.379891 0.246596 -43.000000 0.566204 0.430672 0.254901 -44.000000 0.589757 0.474851 0.261466 -45.000000 0.604782 0.507789 0.265349 -46.000000 0.610245 0.525445 0.266325 -47.000000 0.605526 0.524560 0.265298 -48.000000 0.592219 0.493409 0.259092 -49.000000 0.570659 0.426238 0.245533 -50.000000 0.543570 0.340104 0.225446 -51.000000 0.516296 0.254326 0.202504 -52.000000 0.495580 0.186897 0.181800 -53.000000 0.490361 0.151303 0.167640 -54.000000 0.505242 0.147689 0.161006 -55.000000 0.530673 0.154531 0.160689 -56.000000 0.557939 0.166329 0.164351 -57.000000 0.581210 0.179920 0.169360 -58.000000 0.596739 0.192368 0.173232 -59.000000 0.602121 0.200878 0.173650 -60.000000 0.595536 0.202577 0.168574 -"l foot" -"" -8 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -61 -0.000000 1.074902 1.164739 0.442762 -1.000000 1.064861 1.180848 0.442762 -2.000000 1.055456 1.222819 0.442762 -3.000000 1.046692 1.281125 0.442762 -4.000000 1.038574 1.346233 0.442761 -5.000000 1.031108 1.408615 0.442761 -6.000000 1.024297 1.458742 0.442762 -7.000000 1.018147 1.487083 0.442761 -8.000000 1.012663 1.483838 0.442761 -9.000000 1.007850 1.447578 0.442761 -10.000000 1.003713 1.390592 0.442762 -11.000000 1.000257 1.326020 0.442761 -12.000000 0.997486 1.266991 0.442761 -13.000000 0.995406 1.226643 0.442762 -14.000000 0.994022 1.217671 0.442762 -15.000000 0.993338 1.238652 0.442762 -16.000000 0.993359 1.279738 0.442762 -17.000000 0.994091 1.332619 0.442761 -18.000000 0.995538 1.388983 0.442762 -19.000000 0.997706 1.440515 0.442762 -20.000000 1.000599 1.478907 0.442762 -21.000000 1.004222 1.495846 0.442761 -22.000000 1.008580 1.487229 0.442762 -23.000000 1.013678 1.459677 0.442762 -24.000000 1.019522 1.418868 0.442762 -25.000000 1.026115 1.370429 0.442762 -26.000000 1.033463 1.319987 0.442761 -27.000000 1.041572 1.273165 0.442762 -28.000000 1.050444 1.235591 0.442762 -29.000000 1.060087 1.212889 0.442761 -30.000000 1.070194 1.213582 0.442762 -31.000000 1.080102 1.260923 0.442762 -32.000000 1.089749 1.339496 0.442762 -33.000000 1.099090 1.425379 0.442762 -34.000000 1.108082 1.494659 0.442762 -35.000000 1.116679 1.523415 0.442762 -36.000000 1.124840 1.514409 0.442762 -37.000000 1.132518 1.490005 0.442762 -38.000000 1.139671 1.454079 0.442761 -39.000000 1.146254 1.410494 0.442761 -40.000000 1.152223 1.363121 0.442761 -41.000000 1.157534 1.315831 0.442761 -42.000000 1.162144 1.272491 0.442762 -43.000000 1.166007 1.236969 0.442762 -44.000000 1.169081 1.213135 0.442762 -45.000000 1.171321 1.204867 0.442762 -46.000000 1.172683 1.216071 0.442762 -47.000000 1.173122 1.244099 0.442762 -48.000000 1.172596 1.283607 0.442761 -49.000000 1.171060 1.329260 0.442762 -50.000000 1.168469 1.375712 0.442761 -51.000000 1.164781 1.417622 0.442761 -52.000000 1.159950 1.449652 0.442761 -53.000000 1.153933 1.466458 0.442762 -54.000000 1.146685 1.460065 0.442762 -55.000000 1.138164 1.421824 0.442762 -56.000000 1.128324 1.362553 0.442761 -57.000000 1.117122 1.294729 0.442761 -58.000000 1.104514 1.230832 0.442761 -59.000000 1.090455 1.183342 0.442762 -60.000000 1.074902 1.164740 0.442761 -61 -0.000000 0.000000 -0.105871 0.060000 -1.000000 -0.007360 -0.104618 0.060000 -2.000000 -0.026448 -0.108078 0.060000 -3.000000 -0.052760 -0.115484 0.060000 -4.000000 -0.081788 -0.126069 0.060000 -5.000000 -0.109029 -0.139063 0.060000 -6.000000 -0.129978 -0.153699 0.060000 -7.000000 -0.140127 -0.169211 0.060000 -8.000000 -0.136389 -0.184830 0.060000 -9.000000 -0.121739 -0.199788 0.060000 -10.000000 -0.100767 -0.213319 0.060000 -11.000000 -0.078064 -0.224654 0.060000 -12.000000 -0.058224 -0.233025 0.060000 -13.000000 -0.045837 -0.237665 0.060000 -14.000000 -0.045495 -0.238304 0.060000 -15.000000 -0.061334 -0.237905 0.060000 -16.000000 -0.089590 -0.237109 0.060000 -17.000000 -0.123003 -0.235937 0.060000 -18.000000 -0.154317 -0.234407 0.060000 -19.000000 -0.176273 -0.232540 0.060000 -20.000000 -0.182305 -0.230355 0.060000 -21.000000 -0.173008 -0.227872 0.060000 -22.000000 -0.152854 -0.225109 0.060000 -23.000000 -0.126321 -0.222087 0.060000 -24.000000 -0.097888 -0.218824 0.060000 -25.000000 -0.072032 -0.215341 0.060000 -26.000000 -0.053231 -0.211657 0.060000 -27.000000 -0.045965 -0.207791 0.060000 -28.000000 -0.050623 -0.203763 0.060000 -29.000000 -0.063028 -0.199592 0.060000 -30.000000 -0.080795 -0.195298 0.060000 -31.000000 -0.101542 -0.190900 0.060000 -32.000000 -0.122885 -0.186419 0.060000 -33.000000 -0.142442 -0.181872 0.060000 -34.000000 -0.157829 -0.177281 0.060000 -35.000000 -0.166664 -0.172664 0.060000 -36.000000 -0.166778 -0.168040 0.060000 -37.000000 -0.158755 -0.163428 0.060000 -38.000000 -0.144746 -0.158851 0.060000 -39.000000 -0.126871 -0.154326 0.060000 -40.000000 -0.107255 -0.149871 0.060000 -41.000000 -0.088020 -0.145509 0.060000 -42.000000 -0.071289 -0.141257 0.060000 -43.000000 -0.059187 -0.137135 0.060000 -44.000000 -0.053834 -0.133163 0.060000 -45.000000 -0.057284 -0.129361 0.060000 -46.000000 -0.068840 -0.125746 0.060000 -47.000000 -0.085965 -0.122340 0.060000 -48.000000 -0.106101 -0.119162 0.060000 -49.000000 -0.126697 -0.116230 0.060000 -50.000000 -0.145198 -0.113566 0.060000 -51.000000 -0.159051 -0.111187 0.060000 -52.000000 -0.165701 -0.109114 0.060000 -53.000000 -0.162595 -0.107366 0.060000 -54.000000 -0.147097 -0.105963 0.060000 -55.000000 -0.121346 -0.104923 0.060000 -56.000000 -0.089948 -0.104268 0.060000 -57.000000 -0.057508 -0.104015 0.060000 -58.000000 -0.028633 -0.104185 0.060000 -59.000000 -0.007929 -0.104797 0.060000 -60.000000 0.000000 -0.105871 0.060000 -"l hand" -"" -8 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -61 -0.000000 2.378383 8.467670 -0.335749 -1.000000 2.345178 8.458496 -0.239566 -2.000000 2.296107 8.462241 -0.149327 -3.000000 2.235523 8.476519 -0.065069 -4.000000 2.167784 8.498952 0.013156 -5.000000 2.097275 8.527170 0.085274 -6.000000 2.028404 8.558810 0.151181 -7.000000 1.965600 8.578668 0.210818 -8.000000 1.913279 8.580334 0.264233 -9.000000 1.875823 8.571206 0.311402 -10.000000 1.857093 8.555129 0.352309 -11.000000 1.851441 8.535950 0.386938 -12.000000 1.855169 8.517521 0.415261 -13.000000 1.867165 8.503694 0.437222 -14.000000 1.886305 8.498320 0.452747 -15.000000 1.911443 8.505249 0.461758 -16.000000 1.941344 8.520116 0.464282 -17.000000 1.974759 8.521051 0.460497 -18.000000 2.010364 8.518188 0.450286 -19.000000 2.046823 8.523447 0.431449 -20.000000 2.082841 8.548758 0.403466 -21.000000 2.117204 8.599307 0.366813 -22.000000 2.148708 8.632600 0.322347 -23.000000 2.176158 8.641215 0.270880 -24.000000 2.198343 8.632362 0.213218 -25.000000 2.214040 8.612113 0.150164 -26.000000 2.222022 8.586551 0.082514 -27.000000 2.222925 8.561766 0.011051 -28.000000 2.218437 8.543845 -0.063452 -29.000000 2.210257 8.538891 -0.140239 -30.000000 2.200087 8.550600 -0.218555 -31.000000 2.188214 8.573265 -0.297675 -32.000000 2.174830 8.602077 -0.376870 -33.000000 2.161445 8.632454 -0.455386 -34.000000 2.149495 8.659814 -0.532456 -35.000000 2.140423 8.679580 -0.607346 -36.000000 2.135672 8.687197 -0.679387 -37.000000 2.136699 8.679199 -0.747975 -38.000000 2.145056 8.660323 -0.812390 -39.000000 2.165690 8.632425 -0.871764 -40.000000 2.198350 8.599481 -0.925266 -41.000000 2.239238 8.565465 -0.972087 -42.000000 2.284566 8.534359 -1.011443 -43.000000 2.330559 8.510150 -1.042574 -44.000000 2.373447 8.496833 -1.064736 -45.000000 2.409455 8.498407 -1.077317 -46.000000 2.434809 8.522614 -1.080775 -47.000000 2.444816 8.560124 -1.075496 -48.000000 2.434385 8.600801 -1.061798 -49.000000 2.408613 8.636993 -1.039935 -50.000000 2.373678 8.661023 -1.010100 -51.000000 2.335768 8.665226 -0.972544 -52.000000 2.301113 8.642122 -0.927591 -53.000000 2.275982 8.599848 -0.875619 -54.000000 2.266959 8.559038 -0.816970 -55.000000 2.280417 8.524092 -0.751826 -56.000000 2.309307 8.495866 -0.680361 -57.000000 2.343587 8.475231 -0.602783 -58.000000 2.373218 8.463058 -0.519321 -59.000000 2.388163 8.460243 -0.430226 -60.000000 2.378383 8.467670 -0.335749 -61 -0.000000 0.762854 0.285701 0.278608 -1.000000 0.741643 0.256893 0.267545 -2.000000 0.684517 0.212915 0.251086 -3.000000 0.603514 0.158478 0.230239 -4.000000 0.510673 0.098291 0.206007 -5.000000 0.418029 0.037065 0.179397 -6.000000 0.337624 -0.020488 0.151415 -7.000000 0.281494 -0.069660 0.123065 -8.000000 0.261610 -0.105739 0.095354 -9.000000 0.276949 -0.124014 0.069287 -10.000000 0.314750 -0.118805 0.045869 -11.000000 0.365427 -0.090920 0.026107 -12.000000 0.419393 -0.048894 0.011005 -13.000000 0.467060 -0.001386 0.001569 -14.000000 0.498841 0.042950 -0.001220 -15.000000 0.505108 0.075457 0.002646 -16.000000 0.482084 0.087245 0.012304 -17.000000 0.439199 0.065830 0.026876 -18.000000 0.387463 0.018699 0.045480 -19.000000 0.337885 -0.039167 0.067232 -20.000000 0.301471 -0.092789 0.091253 -21.000000 0.289134 -0.127189 0.116660 -22.000000 0.297854 -0.132753 0.142572 -23.000000 0.318688 -0.130600 0.168107 -24.000000 0.348378 -0.125120 0.192383 -25.000000 0.383666 -0.116565 0.214521 -26.000000 0.421294 -0.105183 0.233637 -27.000000 0.458005 -0.091225 0.248851 -28.000000 0.490541 -0.074942 0.259279 -29.000000 0.515646 -0.056584 0.264042 -30.000000 0.530060 -0.036401 0.262029 -31.000000 0.525660 -0.014644 0.235343 -32.000000 0.482893 0.008438 0.183077 -33.000000 0.418240 0.032595 0.119247 -34.000000 0.352862 0.057575 0.057867 -35.000000 0.307921 0.083128 0.012953 -36.000000 0.304535 0.109005 -0.001532 -37.000000 0.344702 0.134953 0.009868 -38.000000 0.412246 0.160726 0.034158 -39.000000 0.496774 0.186071 0.067762 -40.000000 0.587891 0.210737 0.107099 -41.000000 0.675206 0.234476 0.148596 -42.000000 0.748326 0.257035 0.188672 -43.000000 0.796858 0.278166 0.223752 -44.000000 0.810410 0.297618 0.250256 -45.000000 0.784186 0.315142 0.264610 -46.000000 0.726474 0.330484 0.263255 -47.000000 0.646932 0.343786 0.247697 -48.000000 0.555216 0.355234 0.224749 -49.000000 0.460982 0.364660 0.201395 -50.000000 0.373885 0.371890 0.184607 -51.000000 0.303582 0.376754 0.178766 -52.000000 0.259729 0.379078 0.182397 -53.000000 0.252391 0.378692 0.193218 -54.000000 0.292512 0.375426 0.208945 -55.000000 0.369778 0.369105 0.227300 -56.000000 0.468461 0.359561 0.246000 -57.000000 0.572835 0.346619 0.262761 -58.000000 0.667177 0.330110 0.275305 -59.000000 0.735759 0.309861 0.281348 -60.000000 0.762854 0.285701 0.278608 -"l leg" -"" -8 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -61 -0.000000 1.018206 4.850216 -1.149950 -1.000000 0.991520 4.863840 -1.155010 -2.000000 0.966715 4.914236 -1.134659 -3.000000 0.944538 4.986873 -1.099860 -4.000000 0.925795 5.067361 -1.061621 -5.000000 0.911586 5.141439 -1.031832 -6.000000 0.903435 5.194949 -1.023129 -7.000000 0.902893 5.214981 -1.044579 -8.000000 0.907211 5.202477 -1.068295 -9.000000 0.914352 5.162530 -1.078117 -10.000000 0.924281 5.105400 -1.079271 -11.000000 0.937226 5.041822 -1.077608 -12.000000 0.953735 4.982589 -1.078785 -13.000000 0.974532 4.938527 -1.088307 -14.000000 1.000010 4.920071 -1.111230 -15.000000 1.026421 4.929702 -1.137663 -16.000000 1.047258 4.970068 -1.138772 -17.000000 1.059066 5.037678 -1.103524 -18.000000 1.063027 5.118877 -1.042506 -19.000000 1.060853 5.200038 -0.966026 -20.000000 1.055170 5.267601 -0.885961 -21.000000 1.050115 5.307920 -0.817665 -22.000000 1.052684 5.310439 -0.783538 -23.000000 1.064606 5.281176 -0.788592 -24.000000 1.082864 5.229880 -0.820116 -25.000000 1.104527 5.165694 -0.865865 -26.000000 1.126965 5.097780 -0.914525 -27.000000 1.148035 5.035333 -0.956327 -28.000000 1.166020 4.987598 -0.982639 -29.000000 1.179456 4.963874 -0.985016 -30.000000 1.188048 4.973805 -0.960631 -31.000000 1.198636 5.026298 -0.946693 -32.000000 1.209929 5.106704 -0.941574 -33.000000 1.219269 5.196060 -0.932087 -34.000000 1.224063 5.275602 -0.903978 -35.000000 1.221564 5.326670 -0.840569 -36.000000 1.215640 5.344091 -0.760557 -37.000000 1.215967 5.332799 -0.718554 -38.000000 1.222688 5.296733 -0.719048 -39.000000 1.233417 5.243040 -0.751676 -40.000000 1.245819 5.178191 -0.805906 -41.000000 1.257702 5.108644 -0.871477 -42.000000 1.267489 5.041224 -0.938630 -43.000000 1.274071 4.982857 -0.999228 -44.000000 1.276686 4.940542 -1.046379 -45.000000 1.274795 4.921331 -1.073773 -46.000000 1.267150 4.934993 -1.068324 -47.000000 1.253735 4.980435 -1.025563 -48.000000 1.236583 5.045670 -0.959196 -49.000000 1.217612 5.118505 -0.884692 -50.000000 1.198869 5.186704 -0.821400 -51.000000 1.182536 5.238019 -0.792933 -52.000000 1.170432 5.260391 -0.822484 -53.000000 1.161070 5.250246 -0.900959 -54.000000 1.150700 5.211599 -0.988553 -55.000000 1.136808 5.147015 -1.055785 -56.000000 1.119623 5.067947 -1.104062 -57.000000 1.099324 4.986591 -1.136011 -58.000000 1.075856 4.915103 -1.153486 -59.000000 1.048964 4.865613 -1.157815 -60.000000 1.018206 4.850217 -1.149951 -61 -0.000000 -0.407980 -0.092560 0.055506 -1.000000 -0.409408 -0.093722 0.060694 -2.000000 -0.403972 -0.096432 0.065373 -3.000000 -0.394682 -0.100499 0.069535 -4.000000 -0.384550 -0.105755 0.073209 -5.000000 -0.376782 -0.112053 0.076453 -6.000000 -0.374767 -0.119252 0.079343 -7.000000 -0.380957 -0.127236 0.081946 -8.000000 -0.387867 -0.136121 0.084015 -9.000000 -0.391116 -0.145977 0.085373 -10.000000 -0.392092 -0.156419 0.086028 -11.000000 -0.392359 -0.167065 0.086008 -12.000000 -0.393447 -0.177616 0.085347 -13.000000 -0.396847 -0.187764 0.084076 -14.000000 -0.403955 -0.197252 0.082365 -15.000000 -0.412069 -0.206119 0.080683 -16.000000 -0.413145 -0.214309 0.078800 -17.000000 -0.404041 -0.221589 0.076614 -18.000000 -0.387708 -0.227570 0.074244 -19.000000 -0.367053 -0.231878 0.071792 -20.000000 -0.345376 -0.234173 0.069350 -21.000000 -0.326861 -0.234425 0.067002 -22.000000 -0.317577 -0.233571 0.064847 -23.000000 -0.318816 -0.231996 0.062867 -24.000000 -0.327150 -0.229790 0.060966 -25.000000 -0.339314 -0.227029 0.059066 -26.000000 -0.352268 -0.223789 0.057096 -27.000000 -0.363361 -0.220143 0.054990 -28.000000 -0.370215 -0.216171 0.052693 -29.000000 -0.370511 -0.211986 0.050161 -30.000000 -0.363499 -0.207677 0.047356 -31.000000 -0.359345 -0.203121 0.044570 -32.000000 -0.357584 -0.198273 0.041969 -33.000000 -0.354637 -0.193214 0.039504 -34.000000 -0.346672 -0.188020 0.037128 -35.000000 -0.329281 -0.182754 0.034811 -36.000000 -0.307618 -0.177391 0.032641 -37.000000 -0.296181 -0.171866 0.030758 -38.000000 -0.296016 -0.166221 0.029136 -39.000000 -0.304349 -0.160511 0.027730 -40.000000 -0.318430 -0.154799 0.026555 -41.000000 -0.335590 -0.149155 0.025674 -42.000000 -0.353267 -0.143609 0.025065 -43.000000 -0.369281 -0.138187 0.024702 -44.000000 -0.381743 -0.132916 0.024561 -45.000000 -0.388902 -0.127824 0.024616 -46.000000 -0.387171 -0.122956 0.024824 -47.000000 -0.375380 -0.118339 0.025160 -48.000000 -0.357347 -0.113968 0.025657 -49.000000 -0.337308 -0.109839 0.026358 -50.000000 -0.320401 -0.105946 0.027307 -51.000000 -0.312768 -0.102282 0.028559 -52.000000 -0.320442 -0.098835 0.030180 -53.000000 -0.341111 -0.095650 0.032194 -54.000000 -0.364388 -0.093145 0.034580 -55.000000 -0.382402 -0.091496 0.037284 -56.000000 -0.395426 -0.090655 0.040307 -57.000000 -0.404102 -0.090532 0.043653 -58.000000 -0.408880 -0.090972 0.047313 -59.000000 -0.410093 -0.091754 0.051272 -60.000000 -0.407980 -0.092560 0.055506 -"l thigh" -"" -8 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -61 -0.000000 0.679083 8.628542 0.239546 -1.000000 0.629747 8.631929 0.255007 -2.000000 0.583969 8.683528 0.268052 -3.000000 0.542090 8.764126 0.278879 -4.000000 0.504420 8.854526 0.287687 -5.000000 0.471239 8.935542 0.294671 -6.000000 0.442797 8.988013 0.300027 -7.000000 0.419322 8.995209 0.303949 -8.000000 0.401016 8.969108 0.306629 -9.000000 0.388061 8.921681 0.308255 -10.000000 0.380615 8.861212 0.309014 -11.000000 0.378813 8.796019 0.309092 -12.000000 0.382768 8.734466 0.308671 -13.000000 0.392564 8.684958 0.307933 -14.000000 0.407227 8.655463 0.307060 -15.000000 0.422523 8.652298 0.306230 -16.000000 0.438042 8.691461 0.305623 -17.000000 0.453840 8.774650 0.305415 -18.000000 0.469974 8.882548 0.305786 -19.000000 0.486472 8.995804 0.307114 -20.000000 0.503354 9.095082 0.309852 -21.000000 0.520760 9.160952 0.313707 -22.000000 0.539113 9.175715 0.317729 -23.000000 0.558606 9.144632 0.321542 -24.000000 0.579361 9.082044 0.324940 -25.000000 0.601496 9.001163 0.327713 -26.000000 0.625123 8.915201 0.329654 -27.000000 0.650343 8.837363 0.330553 -28.000000 0.677245 8.780848 0.330197 -29.000000 0.705904 8.758851 0.328377 -30.000000 0.736379 8.782130 0.324880 -31.000000 0.767308 8.844198 0.319495 -32.000000 0.797229 8.931245 0.312010 -33.000000 0.826012 9.029490 0.302457 -34.000000 0.853504 9.125224 0.291180 -35.000000 0.879563 9.204733 0.278478 -36.000000 0.904061 9.254307 0.264657 -37.000000 0.926885 9.261308 0.250023 -38.000000 0.947934 9.230193 0.234885 -39.000000 0.967129 9.171815 0.219556 -40.000000 0.984063 9.095461 0.204349 -41.000000 0.998007 9.010159 0.189579 -42.000000 1.008937 8.925472 0.175561 -43.000000 1.016865 8.850980 0.162609 -44.000000 1.021811 8.796271 0.151037 -45.000000 1.023809 8.770938 0.141157 -46.000000 1.022898 8.789632 0.133280 -47.000000 1.019126 8.852304 0.127736 -48.000000 1.012511 8.941032 0.124603 -49.000000 1.003030 9.037758 0.123700 -50.000000 0.990642 9.124431 0.124839 -51.000000 0.975286 9.182992 0.127839 -52.000000 0.956888 9.195545 0.132517 -53.000000 0.935355 9.159766 0.138715 -54.000000 0.910355 9.089487 0.147509 -55.000000 0.881643 8.996942 0.159168 -56.000000 0.849104 8.894368 0.173107 -57.000000 0.812633 8.794005 0.188724 -58.000000 0.772153 8.708089 0.205414 -59.000000 0.727631 8.648858 0.222561 -60.000000 0.679083 8.628542 0.239546 -61 -0.000000 0.345321 -0.092560 0.055506 -1.000000 0.350762 -0.093722 0.060694 -2.000000 0.348963 -0.096432 0.065373 -3.000000 0.342846 -0.100499 0.069535 -4.000000 0.335357 -0.105755 0.073209 -5.000000 0.329654 -0.112053 0.076453 -6.000000 0.329077 -0.119252 0.079343 -7.000000 0.336063 -0.127236 0.081946 -8.000000 0.343416 -0.136121 0.084015 -9.000000 0.346941 -0.145977 0.085373 -10.000000 0.348029 -0.156419 0.086028 -11.000000 0.348247 -0.167065 0.086008 -12.000000 0.349122 -0.177616 0.085347 -13.000000 0.352146 -0.187764 0.084076 -14.000000 0.358718 -0.197252 0.082365 -15.000000 0.366267 -0.206119 0.080683 -16.000000 0.367079 -0.214309 0.078800 -17.000000 0.358167 -0.221589 0.076614 -18.000000 0.342425 -0.227570 0.074244 -19.000000 0.322748 -0.231878 0.071792 -20.000000 0.302440 -0.234173 0.069350 -21.000000 0.285484 -0.234425 0.067002 -22.000000 0.277525 -0.233571 0.064847 -23.000000 0.279747 -0.231996 0.062867 -24.000000 0.288765 -0.229790 0.060966 -25.000000 0.301343 -0.227029 0.059066 -26.000000 0.314472 -0.223789 0.057096 -27.000000 0.325511 -0.220143 0.054990 -28.000000 0.332099 -0.216171 0.052693 -29.000000 0.331927 -0.211986 0.050161 -30.000000 0.324219 -0.207677 0.047356 -31.000000 0.318787 -0.203121 0.044570 -32.000000 0.315130 -0.198273 0.041969 -33.000000 0.309787 -0.193214 0.039504 -34.000000 0.299140 -0.188020 0.037128 -35.000000 0.279015 -0.182754 0.034811 -36.000000 0.254484 -0.177391 0.032641 -37.000000 0.239678 -0.171866 0.030758 -38.000000 0.235680 -0.166221 0.029136 -39.000000 0.239857 -0.160511 0.027730 -40.000000 0.249596 -0.154799 0.026555 -41.000000 0.262372 -0.149155 0.025674 -42.000000 0.275781 -0.143609 0.025065 -43.000000 0.287817 -0.138187 0.024702 -44.000000 0.296771 -0.132916 0.024561 -45.000000 0.301078 -0.127824 0.024616 -46.000000 0.297432 -0.122956 0.024824 -47.000000 0.284809 -0.118339 0.025160 -48.000000 0.266842 -0.113968 0.025657 -49.000000 0.247495 -0.109839 0.026358 -50.000000 0.231626 -0.105946 0.027307 -51.000000 0.225099 -0.102282 0.028559 -52.000000 0.233676 -0.098835 0.030180 -53.000000 0.255087 -0.095650 0.032194 -54.000000 0.279628 -0.093145 0.034580 -55.000000 0.299858 -0.091496 0.037284 -56.000000 0.315920 -0.090655 0.040307 -57.000000 0.328281 -0.090532 0.043653 -58.000000 0.337219 -0.090972 0.047313 -59.000000 0.342882 -0.091754 0.051272 -60.000000 0.345321 -0.092560 0.055506 -"l upper arm" -"" -8 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 -61 -0.000000 1.606237 12.807552 -0.635414 -1.000000 1.610450 12.814935 -0.590323 -2.000000 1.614767 12.875368 -0.508216 -3.000000 1.616614 12.965278 -0.408914 -4.000000 1.614532 13.062547 -0.312570 -5.000000 1.608199 13.147002 -0.239600 -6.000000 1.598290 13.199581 -0.209986 -7.000000 1.586043 13.204497 -0.220167 -8.000000 1.572144 13.174156 -0.256512 -9.000000 1.556737 13.120318 -0.310727 -10.000000 1.539622 13.051388 -0.374517 -11.000000 1.520359 12.976476 -0.439661 -12.000000 1.499319 12.904894 -0.498068 -13.000000 1.476650 12.846691 -0.541812 -14.000000 1.451917 12.812555 -0.563089 -15.000000 1.424316 12.813931 -0.549917 -16.000000 1.392529 12.870146 -0.484805 -17.000000 1.357329 12.976193 -0.385413 -18.000000 1.320395 13.106065 -0.273744 -19.000000 1.283924 13.236553 -0.172449 -20.000000 1.250286 13.347551 -0.104337 -21.000000 1.221481 13.420570 -0.091361 -22.000000 1.197216 13.439250 -0.128237 -23.000000 1.176384 13.408782 -0.199486 -24.000000 1.158279 13.342546 -0.294904 -25.000000 1.142337 13.253203 -0.404239 -26.000000 1.128177 13.154455 -0.517281 -27.000000 1.115622 13.061311 -0.623986 -28.000000 1.104703 12.990026 -0.714576 -29.000000 1.095695 12.957724 -0.779534 -30.000000 1.089178 12.979319 -0.809212 -31.000000 1.084797 13.051537 -0.794155 -32.000000 1.082829 13.156260 -0.746268 -33.000000 1.084601 13.273615 -0.683421 -34.000000 1.090662 13.385089 -0.623873 -35.000000 1.100617 13.473871 -0.586242 -36.000000 1.113145 13.524284 -0.587970 -37.000000 1.127446 13.526411 -0.616515 -38.000000 1.143164 13.486598 -0.659851 -39.000000 1.159889 13.416134 -0.713533 -40.000000 1.177400 13.325097 -0.773138 -41.000000 1.195640 13.223778 -0.834292 -42.000000 1.214712 13.122734 -0.892692 -43.000000 1.234865 13.032796 -0.944127 -44.000000 1.256486 12.964993 -0.984462 -45.000000 1.280087 12.930432 -1.009619 -46.000000 1.307122 12.947052 -1.009108 -47.000000 1.341746 13.022200 -0.954660 -48.000000 1.382502 13.130792 -0.861261 -49.000000 1.426273 13.246735 -0.750068 -50.000000 1.469142 13.346847 -0.642894 -51.000000 1.506788 13.411304 -0.562062 -52.000000 1.535011 13.422487 -0.530014 -53.000000 1.555187 13.381185 -0.535464 -54.000000 1.571017 13.304095 -0.553103 -55.000000 1.583151 13.203856 -0.577945 -56.000000 1.592230 13.093177 -0.604998 -57.000000 1.598814 12.984961 -0.629270 -58.000000 1.603304 12.892353 -0.645766 -59.000000 1.605849 12.828725 -0.649489 -60.000000 1.606237 12.807552 -0.635414 -61 -0.000000 -0.443296 0.210197 0.168658 -1.000000 -0.450816 0.194983 0.158483 -2.000000 -0.437358 0.160511 0.147253 -3.000000 -0.412695 0.115129 0.135340 -4.000000 -0.386565 0.066656 0.123040 -5.000000 -0.368989 0.022157 0.111081 -6.000000 -0.370401 -0.012284 0.100549 -7.000000 -0.390643 -0.033270 0.092137 -8.000000 -0.419696 -0.037847 0.085575 -9.000000 -0.453928 -0.019659 0.079864 -10.000000 -0.490110 0.026871 0.073303 -11.000000 -0.525764 0.088557 0.065104 -12.000000 -0.558370 0.151242 0.056523 -13.000000 -0.584552 0.202512 0.050850 -14.000000 -0.600016 0.232197 0.052264 -15.000000 -0.599355 0.232657 0.064607 -16.000000 -0.571842 0.209154 0.086842 -17.000000 -0.514115 0.165423 0.113596 -18.000000 -0.440179 0.106506 0.139892 -19.000000 -0.364035 0.041211 0.162615 -20.000000 -0.303120 -0.018731 0.181152 -21.000000 -0.278233 -0.060497 0.196800 -22.000000 -0.279351 -0.073625 0.209659 -23.000000 -0.297457 -0.061311 0.220056 -24.000000 -0.326700 -0.029728 0.227830 -25.000000 -0.361513 0.017052 0.232279 -26.000000 -0.397009 0.074301 0.232826 -27.000000 -0.428561 0.136394 0.229782 -28.000000 -0.451437 0.197580 0.224330 -29.000000 -0.460535 0.252895 0.218211 -30.000000 -0.450109 0.298075 0.213500 -31.000000 -0.416608 0.329195 0.212373 -32.000000 -0.365392 0.339975 0.215075 -33.000000 -0.304381 0.327506 0.219391 -34.000000 -0.242192 0.299568 0.222270 -35.000000 -0.188094 0.264132 0.222389 -36.000000 -0.152936 0.231486 0.220311 -37.000000 -0.140336 0.213899 0.218654 -38.000000 -0.147627 0.220883 0.219231 -39.000000 -0.166864 0.246213 0.222974 -40.000000 -0.192619 0.285151 0.229627 -41.000000 -0.220876 0.333337 0.238067 -42.000000 -0.248622 0.385742 0.247076 -43.000000 -0.273510 0.436914 0.255448 -44.000000 -0.293512 0.481395 0.262069 -45.000000 -0.306603 0.514526 0.265989 -46.000000 -0.307745 0.532225 0.266994 -47.000000 -0.285049 0.531147 0.266015 -48.000000 -0.247076 0.499632 0.259842 -49.000000 -0.204253 0.432002 0.246270 -50.000000 -0.165256 0.345397 0.226130 -51.000000 -0.138402 0.259230 0.203115 -52.000000 -0.133177 0.191617 0.182340 -53.000000 -0.150614 0.156116 0.168132 -54.000000 -0.185730 0.152869 0.161485 -55.000000 -0.232029 0.160228 0.161161 -56.000000 -0.282865 0.172581 0.164799 -57.000000 -0.333230 0.186687 0.169759 -58.000000 -0.379146 0.199560 0.173547 -59.000000 -0.417056 0.208366 0.173856 -60.000000 -0.443296 0.210197 0.168658 diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/alex.txt b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/alex.txt deleted file mode 100644 index dfa20e939c..0000000000 --- a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/alex.txt +++ /dev/null @@ -1,2625 +0,0 @@ -// MilkShape 3D ASCII - -Frames: 1 -Frame: 1 - -Meshes: 15 -"Mesh0" 0 0 -102 -0 -1.106760 3.418206 -0.434637 0.000000 0.000000 0 -0 -0.467725 3.299171 0.053433 0.000000 0.000000 0 -0 -0.689959 3.682482 0.104022 0.000000 0.000000 0 -0 0.689549 3.682265 0.104389 0.000000 0.000000 0 -0 0.479917 3.294124 0.051377 0.000000 0.000000 0 -0 1.075158 3.418179 -0.434573 0.000000 0.000000 0 -0 0.239178 3.872512 0.736637 0.000000 0.000000 0 -0 0.370851 3.528465 0.525973 0.000000 0.000000 0 -0 -0.368374 3.530989 0.526836 0.000000 0.000000 0 -0 -0.241933 3.872512 0.736308 0.000000 0.000000 0 -0 -0.677370 2.390110 -0.782246 0.000000 0.000000 0 -0 0.000000 1.351238 -0.663940 0.000000 0.000000 0 -0 -0.403862 2.396614 -0.459039 0.000000 0.000000 0 -0 -0.780782 0.865174 0.028773 0.000000 0.000000 0 -0 -0.879994 1.483189 0.079512 0.000000 0.000000 0 -0 -0.801034 1.991002 -0.566170 0.000000 0.000000 0 -0 0.816445 1.991002 -0.566170 0.000000 0.000000 0 -0 0.784656 0.867502 0.026998 0.000000 0.000000 0 -0 0.523488 0.803666 -0.579702 0.000000 0.000000 0 -0 0.465821 2.398912 -0.456190 0.000000 0.000000 0 -0 0.881767 1.447056 0.078624 0.000000 0.000000 0 -0 -0.514405 2.591475 -0.715158 0.000000 0.000000 0 -0 0.552614 2.611205 -0.725116 0.000000 0.000000 0 -0 0.735622 2.391320 -0.781973 0.000000 0.000000 0 -0 0.000000 1.351238 -0.663940 0.000000 0.000000 0 -0 0.500941 3.331166 -0.241046 0.000000 0.000000 0 -0 0.306167 1.974613 -0.653538 0.000000 0.000000 0 -0 1.248943 2.463319 -0.413996 0.000000 0.000000 0 -0 1.124006 2.063907 0.130250 0.000000 0.000000 0 -0 -0.500941 3.331166 -0.241046 0.000000 0.000000 0 -0 -1.248943 2.463319 -0.413996 0.000000 0.000000 0 -0 -1.124006 2.063907 0.130250 0.000000 0.000000 0 -0 1.153724 2.477021 0.766661 0.000000 0.000000 0 -0 -1.291826 3.212332 -0.156935 0.000000 0.000000 0 -0 1.291826 3.212332 -0.156935 0.000000 0.000000 0 -0 0.000000 2.489746 0.979559 0.000000 0.000000 0 -0 -0.249228 3.698522 0.517528 0.000000 0.000000 0 -0 -1.335262 3.190072 0.609066 0.000000 0.000000 0 -0 -0.391644 3.599218 -0.007137 0.000000 0.000000 0 -0 0.391644 3.599218 -0.007137 0.000000 0.000000 0 -0 -0.521025 0.917125 0.398694 0.000000 0.000000 0 -0 -1.153724 2.477021 0.766662 0.000000 0.000000 0 -0 0.000000 0.949605 0.554580 0.000000 0.000000 0 -0 0.519308 0.923804 0.401722 0.000000 0.000000 0 -0 0.000000 1.351238 -0.663940 0.000000 0.000000 0 -0 0.249228 3.698522 0.517528 0.000000 0.000000 0 -0 1.335262 3.190072 0.609066 0.000000 0.000000 0 -0 -0.523727 0.805738 -0.580574 0.000000 0.000000 0 -0 0.000000 1.351238 -0.663940 0.000000 0.000000 0 -0 -0.300388 1.974613 -0.653538 0.000000 0.000000 0 -0 -0.314881 -1.095269 0.103739 0.000000 0.000000 3 -0 -0.314881 -1.095269 0.103739 0.000000 0.000000 3 -0 -0.443743 -2.094621 0.040313 0.000000 0.000000 3 -0 -0.200216 -1.068730 -0.283488 0.000000 0.000000 3 -0 0.343197 -1.068744 -0.283523 0.000000 0.000000 3 -0 0.336594 -1.054052 0.410962 0.000000 0.000000 3 -0 -0.304785 -2.100948 -0.417262 0.000000 0.000000 3 -0 -0.304732 -2.088307 0.507938 0.000000 0.000000 3 -0 -0.443743 -2.094621 0.040313 0.000000 0.000000 3 -0 0.051282 -1.937643 0.047070 0.000000 0.000000 3 -0 0.407409 -2.088489 0.507939 0.000000 0.000000 3 -0 0.546355 -2.094622 0.040264 0.000000 0.000000 3 -0 0.407343 -2.100948 -0.417286 0.000000 0.000000 3 -0 -0.304785 -2.100948 -0.417262 0.000000 0.000000 3 -0 -0.206820 -1.054041 0.410998 0.000000 0.000000 3 -0 0.336594 -1.054052 0.410962 0.000000 0.000000 3 -0 0.478824 -1.095302 0.103669 0.000000 0.000000 3 -0 0.343197 -1.068744 -0.283523 0.000000 0.000000 3 -0 -0.200216 -1.068730 -0.283488 0.000000 0.000000 3 -0 -0.206820 -1.054041 0.410998 0.000000 0.000000 3 -0 -0.304732 -2.088307 0.507938 0.000000 0.000000 3 -0 0.407409 -2.088489 0.507939 0.000000 0.000000 3 -0 0.478824 -1.095302 0.103669 0.000000 0.000000 3 -0 0.546355 -2.094622 0.040264 0.000000 0.000000 3 -0 0.407343 -2.100948 -0.417286 0.000000 0.000000 3 -0 -0.272631 -3.021928 -0.127574 0.000000 0.000000 8 -0 0.527232 -3.039644 0.629858 0.000000 0.000000 8 -0 0.534314 -3.021929 -0.127610 0.000000 0.000000 8 -0 -0.279712 -3.039644 0.629894 0.000000 0.000000 8 -0 -0.047572 -1.941709 0.051094 0.000000 0.000000 10 -0 0.447453 -2.098687 0.044337 0.000000 0.000000 10 -0 0.308442 -2.092373 0.511962 0.000000 0.000000 10 -0 -0.403699 -2.092555 0.511963 0.000000 0.000000 10 -0 -0.542644 -2.098688 0.044288 0.000000 0.000000 10 -0 -0.403633 -2.105015 -0.413262 0.000000 0.000000 10 -0 0.308496 -2.105015 -0.413238 0.000000 0.000000 10 -0 0.209878 -1.058107 0.391458 0.000000 0.000000 10 -0 -0.340140 -1.072810 -0.279061 0.000000 0.000000 10 -0 -0.475766 -1.099368 0.107692 0.000000 0.000000 10 -0 0.203274 -1.072795 -0.279026 0.000000 0.000000 10 -0 -0.403699 -2.092555 0.511963 0.000000 0.000000 10 -0 0.308442 -2.092373 0.511962 0.000000 0.000000 10 -0 -0.542644 -2.098688 0.044288 0.000000 0.000000 10 -0 -0.403633 -2.105015 -0.413262 0.000000 0.000000 10 -0 0.317939 -1.099335 0.107763 0.000000 0.000000 10 -0 0.447453 -2.098687 0.044337 0.000000 0.000000 10 -0 0.308496 -2.105015 -0.413238 0.000000 0.000000 10 -0 -0.333537 -1.058117 0.391422 0.000000 0.000000 10 -0 0.274900 -3.021928 -0.151529 0.000000 0.000000 15 -0 -0.586867 -3.021929 -0.151564 0.000000 0.000000 15 -0 0.281981 -3.039644 0.627712 0.000000 0.000000 15 -0 -0.579785 -3.039644 0.627675 0.000000 0.000000 15 -102 --0.986921 -0.147056 -0.066043 --0.661559 -0.458922 0.593068 --0.805829 0.592052 -0.010662 -0.864119 0.361731 0.349927 -0.683497 -0.435331 0.585934 -0.786017 0.354802 -0.506253 --0.139845 0.984926 0.101804 -0.595612 -0.395867 0.698953 --0.591890 -0.407993 0.695132 -0.087743 0.974907 -0.204590 --0.711277 0.139612 -0.688907 --0.006926 -0.245669 -0.806871 --0.808772 -0.286340 0.513709 --0.994745 0.073496 -0.071280 --0.944985 -0.312259 0.097454 --0.611327 -0.131148 -0.780436 -0.614709 -0.129888 -0.777986 -0.995234 0.066641 -0.071194 -0.409020 0.012512 -0.912440 -0.832012 -0.256816 0.491732 -0.945301 -0.308046 0.107302 --0.524697 0.217446 -0.823049 -0.492517 0.223859 -0.841020 -0.681579 0.099654 -0.724927 --0.006926 -0.245669 -0.806871 --0.053285 0.426755 -0.852427 --0.023688 0.160665 -0.986725 -0.027256 -0.082603 -0.918985 --0.010576 -0.437571 -0.099526 --0.020390 0.486251 -0.835632 --0.046601 -0.053822 -0.932128 -0.042250 -0.373309 -0.118096 -0.100363 -0.283278 0.785895 --0.548385 0.407575 -0.599166 -0.531242 0.284107 -0.615780 --0.000135 0.033020 0.999455 --0.103976 0.476944 0.319952 --0.425005 0.288670 0.792492 --0.282857 0.620186 -0.497575 -0.272630 0.616900 -0.495875 --0.569775 -0.066598 0.819098 --0.128283 -0.206125 0.815226 --0.001441 -0.123844 0.992301 -0.564572 -0.069493 0.822453 --0.006926 -0.245669 -0.806871 -0.162624 0.499280 0.302887 -0.574561 0.180201 0.599461 --0.410640 0.014721 -0.911679 --0.006926 -0.245669 -0.806871 -0.024499 0.160330 -0.986759 --0.999104 0.040623 0.011880 --0.999104 0.040623 0.011880 --0.617786 -0.786292 0.009306 --0.386012 0.048421 -0.921222 -0.577131 0.022765 -0.816334 -0.536166 0.005304 0.844096 --0.651453 -0.606885 -0.455302 --0.624990 -0.621218 0.472731 --0.617786 -0.786292 0.009306 --0.000030 -0.999914 0.013097 -0.490434 -0.491565 0.719610 -0.594895 -0.803753 0.009028 -0.522402 -0.475452 -0.707843 --0.651453 -0.606885 -0.455302 --0.373754 0.023571 0.927228 -0.536166 0.005304 0.844096 -0.999590 0.007611 0.027612 -0.577131 0.022765 -0.816334 --0.386012 0.048421 -0.921222 --0.373754 0.023571 0.927228 --0.624990 -0.621218 0.472731 -0.490434 -0.491565 0.719610 -0.999590 0.007611 0.027612 -0.594895 -0.803753 0.009028 -0.522402 -0.475452 -0.707843 --0.829135 -0.014032 -0.557244 -0.609643 -0.026016 0.790958 -0.649174 -0.030697 -0.759287 --0.841956 -0.025096 0.536161 -0.000031 -0.999914 0.013097 -0.618026 -0.786103 0.009307 -0.625567 -0.612416 0.483334 --0.257068 -0.619665 0.741574 --0.891680 -0.450970 0.039150 --0.262756 -0.619094 -0.740055 -0.651660 -0.606459 -0.455574 -0.367578 0.024063 0.929681 --0.691492 0.020232 -0.722101 --0.996263 -0.067058 0.054438 -0.386010 0.038390 -0.921695 --0.257068 -0.619665 0.741574 -0.625567 -0.612416 0.483334 --0.891680 -0.450970 0.039150 --0.262756 -0.619094 -0.740055 -0.999043 0.039436 0.018909 -0.618026 -0.786103 0.009307 -0.651660 -0.606459 -0.455574 --0.649508 -0.000320 0.760354 -0.823677 0.016583 -0.560070 --0.640754 0.000026 -0.760211 -0.834721 0.003396 0.543043 --0.595412 0.000494 0.795050 -111 -0 0 2 1 0 2 1 1 -0 3 5 4 3 5 4 1 -0 3 7 6 3 7 6 1 -0 8 2 9 8 2 9 1 -0 7 9 6 7 9 6 1 -0 7 8 9 7 8 9 1 -0 7 3 4 7 3 4 1 -0 2 8 1 2 8 1 1 -0 10 12 11 10 12 11 1 -0 12 0 1 12 0 1 1 -0 13 15 14 13 15 14 1 -0 16 18 17 16 18 17 1 -0 5 19 4 5 19 4 1 -0 16 17 20 16 17 20 1 -0 0 12 21 0 12 21 1 -0 19 5 22 19 5 22 1 -0 21 12 10 21 12 10 1 -0 19 22 23 19 22 23 1 -0 19 23 24 19 23 24 1 -0 25 26 16 25 26 16 1 -0 16 27 25 16 27 25 1 -0 16 28 27 16 28 27 1 -0 16 20 28 16 20 28 1 -0 29 30 15 29 30 15 1 -0 31 15 30 31 15 30 1 -0 20 32 28 20 32 28 1 -0 29 33 30 29 33 30 1 -0 27 34 25 27 34 25 1 -0 35 37 36 35 37 36 1 -0 29 38 33 29 38 33 1 -0 25 34 39 25 34 39 1 -0 14 15 31 14 15 31 1 -0 40 41 35 40 41 35 1 -0 40 35 42 40 35 42 1 -0 35 43 42 35 43 42 1 -0 18 16 44 18 16 44 1 -0 45 35 36 45 35 36 1 -0 46 39 34 46 39 34 1 -0 46 45 39 46 45 39 1 -0 36 33 38 36 33 38 1 -0 36 37 33 36 37 33 1 -0 43 35 32 43 35 32 1 -0 14 40 13 14 40 13 1 -0 35 46 32 35 46 32 1 -0 37 35 41 37 35 41 1 -0 46 35 45 46 35 45 1 -0 43 20 17 43 20 17 1 -0 15 13 47 15 13 47 1 -0 41 14 31 41 14 31 1 -0 14 41 40 14 41 40 1 -0 32 20 43 32 20 43 1 -0 48 15 47 48 15 47 1 -0 49 29 15 49 29 15 1 -0 15 48 49 15 48 49 1 -0 26 44 16 26 44 16 1 -0 57 59 58 57 59 58 1 -0 60 59 57 60 59 57 1 -0 61 59 60 61 59 60 1 -0 62 59 61 62 59 61 1 -0 63 59 62 63 59 62 1 -0 58 59 63 58 59 63 1 -0 64 76 65 64 76 65 1 -0 66 77 67 66 77 67 1 -0 77 68 67 77 68 67 1 -0 69 71 70 69 71 70 1 -0 72 74 73 72 74 73 1 -0 50 78 64 50 78 64 1 -0 51 70 52 51 70 52 1 -0 53 74 54 53 74 54 1 -0 72 71 55 72 71 55 1 -0 72 73 71 72 73 71 1 -0 51 56 53 51 56 53 1 -0 51 52 56 51 52 56 1 -0 75 50 68 75 50 68 1 -0 50 75 78 50 75 78 1 -0 76 66 65 76 66 65 1 -0 77 66 76 77 66 76 1 -0 74 72 54 74 72 54 1 -0 70 51 69 70 51 69 1 -0 68 77 75 68 77 75 1 -0 74 53 56 74 53 56 1 -0 71 69 55 71 69 55 1 -0 76 64 78 76 64 78 1 -0 79 81 80 79 81 80 1 -0 79 82 81 79 82 81 1 -0 79 83 82 79 83 82 1 -0 79 84 83 79 84 83 1 -0 79 85 84 79 85 84 1 -0 79 80 85 79 80 85 1 -0 86 101 100 86 101 100 1 -0 99 88 87 99 88 87 1 -0 89 99 87 89 99 87 1 -0 90 86 91 90 86 91 1 -0 92 87 88 92 87 88 1 -0 93 87 92 93 87 92 1 -0 100 94 86 100 94 86 1 -0 91 94 95 91 94 95 1 -0 89 93 96 89 93 96 1 -0 92 97 90 92 97 90 1 -0 96 94 89 96 94 89 1 -0 95 94 96 95 94 96 1 -0 94 98 89 94 98 89 1 -0 98 94 100 98 94 100 1 -0 88 101 97 88 101 97 1 -0 88 99 101 88 99 101 1 -0 97 92 88 97 92 88 1 -0 94 91 86 94 91 86 1 -0 93 89 87 93 89 87 1 -0 99 89 98 99 89 98 1 -0 101 86 97 101 86 97 1 -0 86 90 97 86 90 97 1 -"Mesh1" 0 1 -6 -0 0.372350 -1.943049 -0.769090 0.000000 0.000000 2 -0 0.163288 -1.799618 -0.055026 0.000000 0.000000 2 -0 -0.164778 -1.799618 -0.061173 0.000000 0.000000 2 -0 -0.336227 -1.943050 -0.769090 0.000000 0.000000 2 -0 -0.366472 -1.936028 0.712472 0.000000 0.000000 2 -0 0.402595 -1.936027 0.712472 0.000000 0.000000 2 -6 --0.405456 -0.668148 -0.056455 --0.499005 -0.467116 -0.020394 -0.497839 -0.453211 0.042518 -0.387960 -0.657683 -0.009433 -0.376956 -0.665380 0.153209 --0.373982 -0.662666 0.144381 -4 -0 0 2 1 0 2 1 1 -0 0 3 2 0 3 2 1 -0 4 1 2 4 1 2 1 -0 4 5 1 4 5 1 1 -"Mesh2" 0 2 -14 -0 -0.366472 -1.936028 0.712472 0.000000 0.000000 2 -0 -0.336227 -1.943050 -0.769090 0.000000 0.000000 2 -0 -0.164778 -1.799618 -0.061173 0.000000 0.000000 2 -0 -0.343384 -3.826488 -0.081790 0.000000 0.000000 7 -0 -0.524278 -0.717190 -0.264525 0.000000 0.000000 7 -0 0.276729 -1.597376 0.476038 0.000000 0.000000 7 -0 -0.258132 -0.729585 0.418256 0.000000 0.000000 7 -0 0.009858 -3.880774 0.336207 0.000000 0.000000 7 -0 0.718512 -1.647377 -0.235031 0.000000 0.000000 7 -0 0.491498 -3.841637 -0.434884 0.000000 0.000000 7 -0 0.009875 -3.737409 -0.703989 0.000000 0.000000 7 -0 -0.245552 -0.729585 -0.942747 0.000000 0.000000 7 -0 0.406846 -1.597375 -0.853331 0.000000 0.000000 7 -0 0.440328 -3.957140 0.191921 0.000000 0.000000 7 -14 -0.376956 -0.665380 0.153209 -0.387960 -0.657683 -0.009433 -0.497839 -0.453211 0.042518 --0.824777 0.527864 0.202739 --0.757613 -0.635847 -0.147378 -0.399369 -0.054900 0.915145 --0.503246 -0.278959 0.817878 --0.156918 0.525277 0.836338 -0.998751 -0.034458 0.036176 -0.748756 0.534148 -0.392493 --0.519763 0.568346 -0.637831 --0.401706 -0.479892 -0.779959 -0.550115 -0.125239 -0.825644 -0.689898 0.510308 0.513446 -17 -0 5 7 6 5 7 6 1 -0 6 0 5 6 0 5 1 -0 0 8 5 0 8 5 1 -0 9 11 10 9 11 10 1 -0 9 12 11 9 12 11 1 -0 8 13 5 8 13 5 1 -0 8 1 12 8 1 12 1 -0 1 11 12 1 11 12 1 -0 10 4 3 10 4 3 1 -0 7 5 13 7 5 13 1 -0 3 6 7 3 6 7 1 -0 4 6 3 4 6 3 1 -0 11 4 10 11 4 10 1 -0 0 2 8 0 2 8 1 -0 2 1 8 2 1 8 1 -0 13 8 9 13 8 9 1 -0 9 8 12 9 8 12 1 -"Mesh3" 0 3 -14 -0 0.402595 -1.936027 0.712472 0.000000 0.000000 2 -0 0.372350 -1.943049 -0.769090 0.000000 0.000000 2 -0 0.163288 -1.799618 -0.055026 0.000000 0.000000 2 -0 -0.002694 -3.880773 0.336207 0.000000 0.000000 14 -0 0.236355 -0.729584 0.418255 0.000000 0.000000 14 -0 -0.241062 -1.597376 0.476038 0.000000 0.000000 14 -0 -0.682845 -1.647376 -0.235031 0.000000 0.000000 14 -0 -0.002711 -3.737408 -0.703989 0.000000 0.000000 14 -0 -0.484334 -3.841635 -0.434884 0.000000 0.000000 14 -0 -0.469992 -1.597375 -0.852324 0.000000 0.000000 14 -0 -0.433164 -3.957139 0.191920 0.000000 0.000000 14 -0 0.223774 -0.729584 -0.942748 0.000000 0.000000 14 -0 0.502501 -0.717189 -0.264525 0.000000 0.000000 14 -0 0.350547 -3.826487 -0.081790 0.000000 0.000000 14 -14 --0.373982 -0.662666 0.144381 --0.405456 -0.668148 -0.056455 --0.499005 -0.467116 -0.020394 -0.162343 0.527492 0.833905 -0.511528 -0.281882 0.811715 --0.394749 -0.050179 0.917418 --0.997013 -0.018598 0.074959 -0.366570 0.455166 -0.811449 --0.808563 0.499886 -0.310386 --0.543184 -0.107169 -0.832746 --0.687304 0.515602 0.511633 -0.439179 -0.471518 -0.764717 -0.761278 -0.631323 -0.147942 -0.821741 0.532705 0.202404 -17 -0 3 5 4 3 5 4 1 -0 0 4 5 0 4 5 1 -0 6 0 5 6 0 5 1 -0 7 9 8 7 9 8 1 -0 6 8 9 6 8 9 1 -0 8 6 10 8 6 10 1 -0 11 1 9 11 1 9 1 -0 12 7 13 12 7 13 1 -0 5 3 10 5 3 10 1 -0 4 13 3 4 13 3 1 -0 4 12 13 4 12 13 1 -0 12 11 7 12 11 7 1 -0 2 0 6 2 0 6 1 -0 1 2 6 1 2 6 1 -0 9 7 11 9 7 11 1 -0 6 9 1 6 9 1 1 -0 10 6 5 10 6 5 1 -"Mesh4" 0 4 -0 -0 -0 -"Mesh5" 0 5 -52 -0 0.438037 -1.176315 -0.613009 0.000000 0.000000 5 -0 0.438036 -1.176315 -0.357594 0.000000 0.000000 5 -0 0.284788 -1.176315 -0.357595 0.000000 0.000000 5 -0 0.284788 -1.176315 -0.613008 0.000000 0.000000 5 -0 -0.328206 -0.881476 -0.459761 0.000000 0.000000 5 -0 -0.123874 -0.783196 -0.459761 0.000000 0.000000 5 -0 0.131540 -0.684916 -0.357595 0.000000 0.000000 5 -0 -0.174957 -1.274595 -0.408677 0.000000 0.000000 5 -0 0.029374 -1.176315 -0.408677 0.000000 0.000000 5 -0 0.306738 0.003345 0.323799 0.000000 0.000000 5 -0 0.438036 -0.586636 -0.357594 0.000000 0.000000 5 -0 0.438037 -0.586636 -0.613009 0.000000 0.000000 5 -0 0.306739 0.003345 -0.235865 0.000000 0.000000 5 -0 -0.161831 0.003345 -0.235866 0.000000 0.000000 5 -0 0.131540 -0.684916 -0.613009 0.000000 0.000000 5 -0 -0.174957 -1.274596 0.408648 0.000000 0.000000 5 -0 0.030457 -1.520295 0.357565 0.000000 0.000000 5 -0 0.234788 -1.422015 0.357565 0.000000 0.000000 5 -0 0.029374 -1.176315 0.408648 0.000000 0.000000 5 -0 -0.328206 -0.881476 0.459730 0.000000 0.000000 5 -0 -0.161831 0.003345 0.323799 0.000000 0.000000 5 -0 -0.239927 0.003345 0.050467 0.000000 0.000000 5 -0 0.234788 -1.422015 -0.357595 0.000000 0.000000 5 -0 0.030457 -1.520295 -0.357595 0.000000 0.000000 5 -0 -0.123874 -0.783196 0.459730 0.000000 0.000000 5 -0 0.026893 0.221062 0.052032 0.000000 0.000000 5 -0 -0.438036 -1.176317 -0.359625 0.000000 0.000000 12 -0 -0.438037 -1.176317 -0.615039 0.000000 0.000000 12 -0 0.123874 -0.783196 -0.461791 0.000000 0.000000 12 -0 0.328206 -0.881476 -0.461791 0.000000 0.000000 12 -0 -0.131540 -0.684916 -0.359625 0.000000 0.000000 12 -0 0.174957 -1.274597 -0.410708 0.000000 0.000000 12 -0 -0.029374 -1.176317 -0.410708 0.000000 0.000000 12 -0 -0.438037 -0.586636 -0.615039 0.000000 0.000000 12 -0 -0.438036 -0.586636 -0.359624 0.000000 0.000000 12 -0 -0.306738 0.003345 0.321769 0.000000 0.000000 12 -0 -0.306739 0.003344 -0.237895 0.000000 0.000000 12 -0 -0.131540 -0.684916 -0.615039 0.000000 0.000000 12 -0 0.161832 0.003344 -0.237896 0.000000 0.000000 12 -0 -0.029374 -1.176317 0.406617 0.000000 0.000000 12 -0 -0.234788 -1.422017 0.355535 0.000000 0.000000 12 -0 -0.030457 -1.520296 0.355534 0.000000 0.000000 12 -0 0.174957 -1.274598 0.406617 0.000000 0.000000 12 -0 0.239927 0.003345 0.048437 0.000000 0.000000 12 -0 0.161832 0.003345 0.321769 0.000000 0.000000 12 -0 0.328206 -0.881476 0.457699 0.000000 0.000000 12 -0 -0.030457 -1.520296 -0.359625 0.000000 0.000000 12 -0 -0.234788 -1.422017 -0.359625 0.000000 0.000000 12 -0 0.123874 -0.783196 0.457700 0.000000 0.000000 12 -0 -0.026893 0.221062 0.050002 0.000000 0.000000 12 -0 -0.284788 -1.176316 -0.615038 0.000000 0.000000 12 -0 -0.284788 -1.176316 -0.359625 0.000000 0.000000 12 -52 -0.333329 -0.666669 -0.666667 -0.816495 -0.408248 0.408251 --0.299050 -0.719765 0.626504 --0.712009 -0.594962 -0.372912 --0.867876 -0.051403 -0.494115 -0.185039 -0.083616 -0.979168 --0.136126 -0.810969 0.569033 --0.538230 -0.472070 -0.698183 -0.671050 0.229710 -0.704929 -0.805905 0.224587 0.547794 -0.631414 -0.142165 0.762303 -0.778649 0.286439 -0.558263 -0.500184 0.736896 -0.454753 --0.394000 0.535145 -0.747251 --0.227370 -0.372989 -0.899545 --0.576643 -0.418491 0.701676 --0.174031 -0.941812 0.287581 -0.547667 -0.225534 0.805727 -0.632161 0.306976 0.711433 --0.659481 -0.022639 0.751380 --0.406143 0.518812 0.752251 --0.892149 0.451718 0.004531 -0.900957 -0.242713 -0.359676 --0.071434 -0.679251 -0.730421 -0.703973 -0.277773 0.653654 --0.160016 0.987085 0.007660 --0.333331 -0.666667 0.666667 --0.816496 -0.408249 -0.408248 --0.460818 -0.205188 -0.863449 -0.799530 0.036446 -0.599520 --0.192873 -0.740755 0.643492 -0.478142 -0.376380 -0.793548 --0.730604 0.392597 -0.558646 --0.576425 0.287394 -0.764943 --0.879455 -0.136228 0.456071 --0.805905 0.224587 0.547794 --0.500184 0.736896 -0.454753 -0.620484 -0.247560 -0.744119 -0.394000 0.535145 -0.747251 --0.671050 0.229709 0.704930 --0.900957 -0.242713 0.359677 -0.071434 -0.679252 0.730420 -0.538231 -0.472069 0.698182 -0.892149 0.451718 0.004531 -0.406143 0.518812 0.752251 -0.859820 -0.079156 0.504425 -0.174031 -0.941812 -0.287582 --0.547667 -0.225532 -0.805727 --0.456067 -0.185640 0.870368 -0.160016 0.987085 0.007660 -0.299050 -0.719765 -0.626504 -0.712008 -0.594961 0.372915 -96 -0 9 11 10 9 11 10 1 -0 9 12 11 9 12 11 1 -0 13 14 11 13 14 11 1 -0 15 17 16 15 17 16 1 -0 15 18 17 15 18 17 1 -0 19 21 20 19 21 20 1 -0 22 16 17 22 16 17 1 -0 22 23 16 22 23 16 1 -0 18 19 24 18 19 24 1 -0 18 15 19 18 15 19 1 -0 25 21 13 25 21 13 1 -0 0 2 1 0 2 1 1 -0 0 3 2 0 3 2 1 -0 4 5 13 4 5 13 1 -0 25 12 9 25 12 9 1 -0 25 9 20 25 9 20 1 -0 25 13 12 25 13 12 1 -0 6 9 10 6 9 10 1 -0 10 2 6 10 2 6 1 -0 10 1 2 10 1 2 1 -0 15 4 19 15 4 19 1 -0 15 7 4 15 7 4 1 -0 6 3 14 6 3 14 1 -0 6 2 3 6 2 3 1 -0 8 23 22 8 23 22 1 -0 8 7 23 8 7 23 1 -0 14 0 11 14 0 11 1 -0 14 3 0 14 3 0 1 -0 7 8 5 7 8 5 1 -0 21 25 20 21 25 20 1 -0 13 5 14 13 5 14 1 -0 7 16 23 7 16 23 1 -0 7 15 16 7 15 16 1 -0 7 5 4 7 5 4 1 -0 1 11 0 1 11 0 1 -0 1 10 11 1 10 11 1 -0 24 19 20 24 19 20 1 -0 21 19 4 21 19 4 1 -0 13 11 12 13 11 12 1 -0 6 24 9 6 24 9 1 -0 18 22 17 18 22 17 1 -0 18 8 22 18 8 22 1 -0 24 20 9 24 20 9 1 -0 24 14 5 24 14 5 1 -0 24 6 14 24 6 14 1 -0 21 4 13 21 4 13 1 -0 24 8 18 24 8 18 1 -0 24 5 8 24 5 8 1 -0 33 35 34 33 35 34 1 -0 36 35 33 36 35 33 1 -0 37 38 33 37 38 33 1 -0 39 41 40 39 41 40 1 -0 39 42 41 39 42 41 1 -0 43 45 44 43 45 44 1 -0 46 40 41 46 40 41 1 -0 46 47 40 46 47 40 1 -0 42 48 45 42 48 45 1 -0 42 39 48 42 39 48 1 -0 43 49 38 43 49 38 1 -0 50 26 51 50 26 51 1 -0 50 27 26 50 27 26 1 -0 28 29 38 28 29 38 1 -0 36 49 35 36 49 35 1 -0 35 49 44 35 49 44 1 -0 38 49 36 38 49 36 1 -0 35 30 34 35 30 34 1 -0 26 30 51 26 30 51 1 -0 26 34 30 26 34 30 1 -0 31 45 29 31 45 29 1 -0 31 42 45 31 42 45 1 -0 51 37 50 51 37 50 1 -0 51 30 37 51 30 37 1 -0 31 47 46 31 47 46 1 -0 31 32 47 31 32 47 1 -0 50 33 27 50 33 27 1 -0 50 37 33 50 37 33 1 -0 32 31 28 32 31 28 1 -0 49 43 44 49 43 44 1 -0 28 38 37 28 38 37 1 -0 42 46 41 42 46 41 1 -0 42 31 46 42 31 46 1 -0 28 31 29 28 31 29 1 -0 34 27 33 34 27 33 1 -0 34 26 27 34 26 27 1 -0 45 48 44 45 48 44 1 -0 45 43 29 45 43 29 1 -0 33 38 36 33 38 36 1 -0 48 30 35 48 30 35 1 -0 32 40 47 32 40 47 1 -0 32 39 40 32 39 40 1 -0 44 48 35 44 48 35 1 -0 30 28 37 30 28 37 1 -0 30 48 28 30 48 28 1 -0 29 43 38 29 43 38 1 -0 28 39 32 28 39 32 1 -0 28 48 39 28 48 39 1 -"Mesh6" 0 6 -6 -0 1.194907 1.113636 0.122137 0.000000 0.000000 1 -0 0.924336 1.113636 0.278495 0.000000 0.000000 1 -0 0.653641 1.654902 0.122354 0.000000 0.000000 1 -0 -0.793812 0.208826 -0.289061 0.000000 0.000000 1 -0 -0.566419 -0.252719 -0.266167 0.000000 0.000000 1 -0 0.000000 -0.247346 0.300000 0.000000 0.000000 1 -6 --0.095732 -0.626621 -0.701205 --0.334844 -0.706851 -0.451512 --0.799041 0.092714 -0.594086 --0.860422 -0.359677 -0.245072 --0.622073 -0.673030 0.108120 -0.010997 -0.845311 0.466694 -2 -0 0 2 1 0 2 1 1 -0 3 5 4 3 5 4 1 -"Mesh7" 0 7 -0 -0 -0 -"Mesh8" 0 8 -77 -0 -0.015823 -1.090219 -0.831210 0.507366 0.507111 2 -0 -0.945759 -1.044563 -0.647641 0.142247 0.487204 2 -0 -0.776273 -0.145015 -0.601334 0.178383 0.038992 2 -0 -0.013289 -0.149039 -0.709091 0.505638 0.038992 2 -0 0.797348 -0.149003 -0.615350 0.816980 0.038992 2 -0 0.401377 -2.026844 -0.891915 0.656711 0.984619 2 -0 -0.365254 -2.026844 -0.891915 0.343519 0.984619 2 -0 0.985581 -1.044563 -0.647641 0.857984 0.487204 2 -0 -0.336227 -1.943050 -0.769090 0.355378 0.903884 2 -0 0.372350 -1.943049 -0.769090 0.644853 0.903884 2 -0 0.018061 -1.994272 0.901222 0.564732 0.980225 2 -0 0.391603 -1.994271 0.854265 0.696429 0.980225 2 -0 0.380611 -1.833333 0.821283 0.696429 0.903321 2 -0 0.018061 -1.833333 0.868241 0.564732 0.901123 2 -0 -0.015823 -1.056909 0.984919 0.566964 0.492432 2 -0 -0.939952 -1.044563 0.675441 0.919643 0.492432 2 -0 -0.344488 -1.833333 0.821283 0.696429 0.903321 2 -0 0.979773 -1.044563 0.675442 0.919643 0.492432 2 -0 0.402595 -1.936027 0.712472 0.657208 0.900821 2 -0 0.391603 -1.994271 0.854265 0.652718 0.970417 2 -0 0.018061 -1.994272 0.901222 0.500115 0.970417 2 -0 0.740756 -0.149030 0.590590 0.871329 0.041706 2 -0 -0.012096 -0.149610 0.704967 0.565909 0.041706 2 -0 -1.328976 -0.944563 -0.055028 0.023662 0.443600 2 -0 1.368797 -0.944563 -0.055028 0.975446 0.441895 2 -0 1.125566 -0.135211 -0.040214 0.965811 0.039485 2 -0 1.368797 -0.944563 -0.055028 0.976568 0.443600 2 -0 -1.328976 -0.944563 -0.055028 0.975446 0.441895 2 -0 -0.730706 -0.142358 0.588403 0.871329 0.041706 2 -0 -0.355480 -1.994272 0.854265 0.696429 0.980225 2 -0 -0.355480 -1.994272 0.854265 0.347512 0.970417 2 -0 -0.366472 -1.936028 0.712472 0.343022 0.900822 2 -0 1.125566 -0.135211 -0.040214 0.948977 0.038992 2 -0 -1.100209 -0.142787 -0.004945 0.965811 0.039485 2 -0 -1.100209 -0.142787 -0.004945 0.050543 0.038992 2 -0 -0.939952 -1.044563 0.675441 0.908482 0.490235 2 -0 -1.328976 -0.944563 -0.055028 0.020089 0.437500 2 -0 -0.945759 -1.044563 -0.647641 0.129464 0.488037 2 -0 -0.365254 -2.026844 -0.891915 0.352679 0.984619 2 -0 -0.344488 -1.833333 0.821283 0.687500 0.905518 2 -0 -0.355480 -1.994272 0.854265 0.696429 0.984619 2 -0 -0.366472 -1.936028 0.712472 0.883729 0.969386 2 -0 -0.355480 -1.994272 0.854265 0.875697 0.889029 2 -0 -0.365254 -2.026844 -0.891915 0.868945 0.895701 2 -0 -0.336227 -1.943050 -0.769090 0.904622 0.970824 2 -0 -1.328976 -0.944563 -0.055028 0.977679 0.435302 2 -0 1.368797 -0.944563 -0.055028 0.977679 0.433105 2 -0 0.979773 -1.044563 0.675442 0.926339 0.490235 2 -0 0.985581 -1.044563 -0.647641 0.852679 0.490235 2 -0 1.368797 -0.944563 -0.055028 0.982143 0.441895 2 -0 0.401377 -2.026844 -0.891915 0.665179 0.982422 2 -0 0.380611 -1.833333 0.821283 0.696429 0.907715 2 -0 0.391603 -1.994271 0.854265 0.696429 0.982422 2 -0 0.391603 -1.994271 0.854265 0.138554 0.873649 2 -0 0.402595 -1.936027 0.712472 0.162101 0.984767 2 -0 0.372350 -1.943049 -0.769090 0.140304 0.986205 2 -0 0.401377 -2.026844 -0.891915 0.145599 0.880320 2 -0 -0.258132 -0.729585 0.418256 0.419061 0.984965 7 -0 -0.245552 -0.729585 -0.942747 0.427752 0.984965 7 -0 -0.258132 -0.729585 0.418256 0.419061 0.984965 7 -0 -0.729035 -0.724426 -0.268549 0.328125 0.876242 7 -0 -0.524278 -0.717190 -0.264525 0.235201 0.982426 7 -0 -0.729035 -0.724426 -0.268549 0.975446 0.984619 7 -0 -0.258132 -0.729585 0.418256 0.859375 0.984619 7 -0 -0.245552 -0.729585 -0.942747 0.427752 0.984965 7 -0 -0.729035 -0.724426 -0.268549 0.022321 0.984619 7 -0 -0.245552 -0.729585 -0.942747 0.149554 0.986816 7 -0 0.502501 -0.717189 -0.264525 0.791801 0.982426 14 -0 0.704658 -0.724425 -0.268549 0.703125 0.876242 14 -0 0.236355 -0.729584 0.418255 0.599985 0.984965 14 -0 0.704658 -0.724425 -0.268549 0.979911 0.984619 14 -0 0.223774 -0.729584 -0.942748 0.590918 0.984965 14 -0 0.704658 -0.724425 -0.268549 0.984375 0.980225 14 -0 0.223774 -0.729584 -0.942748 0.872768 0.982422 14 -0 0.236355 -0.729584 0.418255 0.892857 0.984619 14 -0 0.236355 -0.729584 0.418255 0.599985 0.984965 14 -0 0.223774 -0.729584 -0.942748 0.590918 0.984965 14 -77 --0.007115 0.153558 -0.988114 --0.560049 0.144445 -0.802908 --0.573860 0.002093 -0.818951 --0.011606 -0.606741 -0.794815 -0.559585 0.024420 -0.828413 -0.151333 -0.867327 -0.473213 --0.148753 -0.722376 -0.614314 -0.560664 0.128749 -0.802411 -0.387960 -0.657683 -0.009433 --0.405456 -0.668148 -0.056455 -0.000001 -0.938326 0.345752 -0.124180 -0.774468 0.618689 -0.234888 0.072264 0.967607 -0.000019 0.057979 0.998318 --0.006413 0.205715 0.978591 --0.614429 0.164595 0.763826 --0.227120 0.071619 0.969864 -0.608040 0.163751 0.764368 --0.373982 -0.662666 0.144381 -0.124180 -0.774468 0.618689 -0.000001 -0.938326 0.345752 -0.564289 0.152416 0.811386 --0.006638 -0.466398 0.884550 --0.962759 0.259456 -0.020819 -0.960307 0.255257 -0.027093 -0.761947 -0.647462 0.015148 -0.960307 0.255257 -0.027093 --0.962759 0.259456 -0.020819 --0.571256 0.128425 0.810662 --0.117059 -0.773690 0.621551 --0.117059 -0.773690 0.621551 -0.376956 -0.665380 0.153209 -0.761947 -0.647462 0.015148 --0.753752 -0.656234 0.034857 --0.753752 -0.656234 0.034857 --0.614429 0.164595 0.763826 --0.962759 0.259456 -0.020819 --0.560049 0.144445 -0.802908 --0.148753 -0.722376 -0.614314 --0.227120 0.071619 0.969864 --0.117059 -0.773690 0.621551 -0.376956 -0.665380 0.153209 --0.117059 -0.773690 0.621551 --0.148753 -0.722376 -0.614314 -0.387960 -0.657683 -0.009433 --0.962759 0.259456 -0.020819 -0.960307 0.255257 -0.027093 -0.608040 0.163751 0.764368 -0.560664 0.128749 -0.802411 -0.960307 0.255257 -0.027093 -0.151333 -0.867327 -0.473213 -0.234888 0.072264 0.967607 -0.124180 -0.774468 0.618689 -0.124180 -0.774468 0.618689 --0.373982 -0.662666 0.144381 --0.405456 -0.668148 -0.056455 -0.151333 -0.867327 -0.473213 --0.503246 -0.278959 0.817878 --0.401706 -0.479892 -0.779959 --0.503246 -0.278959 0.817878 --0.914193 -0.404545 -0.024385 --0.757613 -0.635847 -0.147378 --0.914193 -0.404545 -0.024385 --0.503246 -0.278959 0.817878 --0.401706 -0.479892 -0.779959 --0.914193 -0.404545 -0.024385 --0.401706 -0.479892 -0.779959 -0.761278 -0.631323 -0.147942 -0.900293 -0.434632 -0.023834 -0.511528 -0.281882 0.811715 -0.900293 -0.434632 -0.023834 -0.439179 -0.471518 -0.764717 -0.900293 -0.434632 -0.023834 -0.439179 -0.471518 -0.764717 -0.511528 -0.281882 0.811715 -0.511528 -0.281882 0.811715 -0.439179 -0.471518 -0.764717 -54 -0 0 2 1 0 2 1 1 -0 0 4 3 0 4 3 1 -0 5 0 6 5 0 6 1 -0 0 5 7 0 5 7 1 -0 8 9 5 8 9 5 1 -0 8 5 6 8 5 6 1 -0 1 6 0 1 6 0 1 -0 10 12 11 10 12 11 1 -0 10 13 12 10 13 12 1 -0 13 14 12 13 14 12 1 -0 15 14 16 15 14 16 1 -0 14 17 12 14 17 12 1 -0 18 20 19 18 20 19 1 -0 21 14 22 21 14 22 1 -0 2 23 1 2 23 1 1 -0 24 21 25 24 21 25 1 -0 26 4 7 26 4 7 1 -0 27 28 15 27 28 15 1 -0 28 14 15 28 14 15 1 -0 14 13 16 14 13 16 1 -0 13 29 16 13 29 16 1 -0 13 10 29 13 10 29 1 -0 20 31 30 20 31 30 1 -0 20 18 31 20 18 31 1 -0 21 24 17 21 24 17 1 -0 4 26 32 4 26 32 1 -0 28 27 33 28 27 33 1 -0 23 2 34 23 2 34 1 -0 14 28 22 14 28 22 1 -0 2 0 3 2 0 3 1 -0 4 0 7 4 0 7 1 -0 14 21 17 14 21 17 1 -0 59 61 60 59 61 60 1 -0 62 35 63 62 35 63 1 -0 61 64 60 61 64 60 1 -0 65 37 36 65 37 36 1 -0 66 38 37 66 38 37 1 -0 37 65 66 37 65 66 1 -0 39 63 35 39 63 35 1 -0 40 63 39 40 63 39 1 -0 57 42 41 57 42 41 1 -0 58 44 43 58 44 43 1 -0 35 62 45 35 62 45 1 -0 67 69 68 67 69 68 1 -0 70 47 46 70 47 46 1 -0 71 67 68 71 67 68 1 -0 48 72 49 48 72 49 1 -0 50 73 48 50 73 48 1 -0 72 48 73 72 48 73 1 -0 74 51 47 74 51 47 1 -0 74 52 51 74 52 51 1 -0 53 75 54 53 75 54 1 -0 55 76 56 55 76 56 1 -0 47 70 74 47 70 74 1 -"Mesh9" 0 9 -56 -0 0.523488 0.803666 -0.579702 0.869792 0.043823 0 -0 -0.523727 0.805738 -0.580574 0.151042 0.038697 0 -0 -0.521025 0.917125 0.398694 0.973827 0.027696 0 -0 -0.780782 0.865174 0.028773 0.973827 0.035155 0 -0 -0.780782 0.865174 0.028773 0.017284 0.045929 0 -0 -0.523727 0.805738 -0.580574 0.112551 0.040706 0 -0 0.000000 1.351238 -0.663940 0.508929 0.534180 0 -0 0.523488 0.803666 -0.579702 0.907339 0.041287 0 -0 0.784656 0.867502 0.026998 0.983963 0.045929 0 -0 0.519308 0.923804 0.401722 0.973827 0.032983 0 -0 0.000000 3.124826 -0.376499 0.500242 0.330149 0 -0 -0.500941 3.331166 -0.241046 0.204778 0.202898 0 -0 -0.003367 3.399218 -0.363707 0.498256 0.160931 0 -0 0.500941 3.331166 -0.241046 0.795705 0.202898 0 -0 0.391644 3.599218 -0.007137 0.731240 0.037589 0 -0 0.000000 0.949605 0.554580 0.973827 0.035155 0 -0 0.784656 0.867502 0.026998 0.973827 0.035155 0 -0 -0.391644 3.599218 -0.007137 0.269243 0.037589 0 -0 -0.730706 -0.142358 0.588403 0.013393 0.982420 2 -0 -0.627353 0.198121 0.488533 0.050823 0.730234 2 -0 -1.050261 0.198281 0.018027 0.052884 0.731951 2 -0 0.797348 -0.149003 -0.615350 0.984375 0.983107 2 -0 1.050259 0.198281 0.018027 0.947370 0.735384 2 -0 1.187494 -0.135211 -0.040214 0.979911 0.982764 2 -0 -1.050261 0.198281 0.018027 0.050823 0.730234 2 -0 -1.160742 -0.142787 -0.004945 0.013393 0.982420 2 -0 0.740756 -0.149030 0.590590 0.970933 0.982733 2 -0 0.005438 0.197693 0.571094 0.970933 0.735711 2 -0 -0.012096 -0.149610 0.800842 0.970933 0.983157 2 -0 1.050259 0.198281 0.018027 0.949431 0.735384 2 -0 0.740756 -0.149030 0.590590 0.979911 0.982764 2 -0 -0.730706 -0.142358 0.588403 0.970933 0.982391 2 -0 -0.708282 0.198566 -0.555693 0.050823 0.730234 2 -0 0.708281 0.198566 -0.555693 0.949431 0.735384 2 -0 0.627248 0.198098 0.488208 0.949431 0.735384 2 -0 0.627248 0.198098 0.488208 0.970933 0.735414 2 -0 -0.627353 0.198121 0.488533 0.970933 0.730265 2 -0 1.125566 -0.135211 -0.040214 0.979911 0.982764 2 -0 -1.100209 -0.142787 -0.004945 0.013393 0.982420 2 -0 -0.013289 -0.149039 -0.709091 0.502674 0.983149 2 -0 -0.012096 -0.149610 0.704967 0.970933 0.983157 2 -0 -0.708282 0.198566 -0.555693 0.052083 0.738525 2 -0 1.050259 0.198281 0.018027 0.952311 0.738629 2 -0 0.708281 0.198566 -0.555693 0.952311 0.738629 2 -0 -1.050261 0.198281 0.018027 0.052083 0.738525 2 -0 -0.627353 0.198121 0.488533 0.973827 0.749395 2 -0 0.005438 0.197693 0.571094 0.973827 0.749395 2 -0 0.627248 0.198098 0.488208 0.973827 0.749501 2 -0 0.000000 0.199415 -0.694332 0.505208 0.738525 2 -0 1.050259 0.198281 0.018027 0.973827 0.749501 2 -0 -1.050261 0.198281 0.018027 0.973827 0.749395 2 -0 -0.776273 -0.145015 -0.601334 0.013393 0.982420 2 -0 0.000000 0.199415 -0.694332 0.507740 0.735384 2 -0 -0.013289 -0.149039 -0.805527 0.502674 0.983149 2 -0 0.708281 0.198566 -0.555693 0.949431 0.735384 2 -0 0.797348 -0.149003 -0.615350 0.979911 0.982764 2 -56 -0.409020 0.012512 -0.912440 --0.410640 0.014721 -0.911679 --0.569775 -0.066598 0.819098 --0.994745 0.073496 -0.071280 --0.994745 0.073496 -0.071280 --0.410640 0.014721 -0.911679 --0.006926 -0.245669 -0.806871 -0.409020 0.012512 -0.912440 -0.995234 0.066641 -0.071194 -0.564572 -0.069493 0.822453 -0.000425 0.159400 -0.987214 --0.020390 0.486251 -0.835632 --0.002308 0.272465 -0.951472 --0.053285 0.426755 -0.852427 -0.272630 0.616900 -0.495875 --0.001441 -0.123844 0.992301 -0.995234 0.066641 -0.071194 --0.282857 0.620186 -0.497575 --0.571256 0.128425 0.810662 --0.437220 0.306499 0.840089 --0.922688 0.333412 0.159782 -0.559585 0.024420 -0.828413 -0.912106 0.359392 0.159613 -0.747929 -0.663382 0.022931 --0.922688 0.333412 0.159782 --0.730603 -0.682272 0.026896 -0.564289 0.152416 0.811386 --0.000500 0.259903 0.947897 --0.007572 -0.495557 0.868542 -0.912106 0.359392 0.159613 -0.564289 0.152416 0.811386 --0.571256 0.128425 0.810662 --0.626614 0.219873 -0.742429 -0.596957 0.257695 -0.754823 -0.436587 0.311527 0.837734 -0.436587 0.311527 0.837734 --0.437220 0.306499 0.840089 -0.761947 -0.647462 0.015148 --0.753752 -0.656234 0.034857 --0.011606 -0.606741 -0.794815 --0.006638 -0.466398 0.884550 --0.626614 0.219873 -0.742429 -0.912106 0.359392 0.159613 -0.596957 0.257695 -0.754823 --0.922688 0.333412 0.159782 --0.437220 0.306499 0.840089 --0.000500 0.259903 0.947897 -0.436587 0.311527 0.837734 --0.003375 0.162226 -0.982827 -0.912106 0.359392 0.159613 --0.922688 0.333412 0.159782 --0.573860 0.002093 -0.818951 --0.003375 0.162226 -0.982827 --0.013516 -0.604884 -0.796199 -0.596957 0.257695 -0.754823 -0.559585 0.024420 -0.828413 -44 -0 0 1 48 0 1 48 1 -0 2 50 3 2 50 3 1 -0 48 1 41 48 1 41 1 -0 41 4 44 41 4 44 1 -0 5 7 6 5 7 6 1 -0 8 43 42 8 43 42 1 -0 0 48 43 0 48 43 1 -0 2 46 45 2 46 45 1 -0 46 9 47 46 9 47 1 -0 9 49 47 9 49 47 1 -0 10 12 11 10 12 11 1 -0 13 14 12 13 14 12 1 -0 43 8 0 43 8 0 1 -0 4 41 1 4 41 1 1 -0 46 2 15 46 2 15 1 -0 9 46 15 9 46 15 1 -0 49 9 16 49 9 16 1 -0 50 2 45 50 2 45 1 -0 17 11 12 17 11 12 1 -0 12 10 13 12 10 13 1 -0 51 53 52 51 53 52 1 -0 52 55 54 52 55 54 1 -0 18 20 19 18 20 19 1 -0 21 23 22 21 23 22 1 -0 24 25 51 24 25 51 1 -0 26 28 27 26 28 27 1 -0 29 23 30 29 23 30 1 -0 27 28 31 27 28 31 1 -0 24 51 32 24 51 32 1 -0 18 25 20 18 25 20 1 -0 21 22 33 21 22 33 1 -0 29 30 34 29 30 34 1 -0 52 53 55 52 53 55 1 -0 26 27 35 26 27 35 1 -0 27 31 36 27 31 36 1 -0 51 52 32 51 52 32 1 -0 37 23 21 37 23 21 1 -0 30 23 37 30 23 37 1 -0 38 25 18 38 25 18 1 -0 51 25 38 51 25 38 1 -0 39 53 51 39 53 51 1 -0 55 53 39 55 53 39 1 -0 31 28 40 31 28 40 1 -0 40 28 26 40 28 26 1 -"Mesh10" 0 10 -33 -0 1.075158 3.418179 -0.434573 0.019264 0.088221 0 -0 0.500941 3.331166 -0.241046 0.287522 0.218671 0 -0 0.391644 3.599218 -0.007137 0.224309 0.298482 0 -0 0.689549 3.682265 0.104389 0.019264 0.205380 0 -0 0.239178 3.872512 0.736637 0.019518 0.322984 0 -0 0.249228 3.698522 0.517528 0.117768 0.380919 0 -0 -0.241933 3.872512 0.736308 0.021247 0.664596 0 -0 -0.249228 3.698522 0.517528 0.118641 0.573400 0 -0 -0.391644 3.599218 -0.007137 0.227460 0.663383 0 -0 -0.689959 3.682482 0.104022 0.020994 0.783364 0 -0 -0.500941 3.331166 -0.241046 0.300127 0.819568 0 -0 -1.106760 3.418206 -0.434637 0.020994 0.922001 0 -0 -0.202009 2.396075 -0.594408 0.301683 0.717228 0 -0 0.000000 1.351238 -0.663940 0.014423 0.852108 0 -0 -0.677370 2.390110 -0.782246 0.014423 0.647423 0 -0 -0.514405 2.591475 -0.715158 0.014423 0.430908 0 -0 -1.106760 3.418206 -0.434637 0.014423 0.022724 0 -0 -0.500941 3.331166 -0.241046 0.301683 0.372934 0 -0 0.735622 2.391320 -0.781973 0.014423 0.647423 0 -0 0.000000 1.351238 -0.663940 0.014423 0.852108 0 -0 0.263955 2.396889 -0.590813 0.301683 0.717228 0 -0 0.552614 2.611205 -0.725116 0.014423 0.430908 0 -0 0.500941 3.331166 -0.241046 0.301683 0.372934 0 -0 1.075158 3.418179 -0.434573 0.014423 0.022724 0 -0 -0.391644 3.599218 -0.007137 0.565308 0.073073 0 -0 0.249228 3.698522 0.517528 0.636615 0.067923 0 -0 0.391644 3.599218 -0.007137 0.652461 0.073073 0 -0 -0.003367 3.399218 -0.363707 0.608510 0.083445 0 -0 -0.249228 3.698522 0.517528 0.581154 0.067923 0 -0 0.000000 1.150648 0.416513 0.608884 0.037021 9 -0 0.368135 1.150648 0.065325 0.649845 0.037021 9 -0 -0.368135 1.150648 0.065325 0.567923 0.037021 9 -0 0.000000 1.150648 -0.317789 0.608884 0.037021 9 -33 -0.786017 0.354802 -0.506253 --0.053285 0.426755 -0.852427 -0.272630 0.616900 -0.495875 -0.864119 0.361731 0.349927 --0.139845 0.984926 0.101804 -0.162624 0.499280 0.302887 -0.087743 0.974907 -0.204590 --0.103976 0.476944 0.319952 --0.282857 0.620186 -0.497575 --0.805829 0.592052 -0.010662 --0.020390 0.486251 -0.835632 --0.986921 -0.147056 -0.066043 -0.390280 0.215113 -0.895214 --0.006926 -0.245669 -0.806871 --0.711277 0.139612 -0.688907 --0.524697 0.217446 -0.823049 --0.986921 -0.147056 -0.066043 --0.020390 0.486251 -0.835632 -0.681579 0.099654 -0.724927 --0.006926 -0.245669 -0.806871 --0.411207 0.191907 -0.891112 -0.492517 0.223859 -0.841020 --0.053285 0.426755 -0.852427 -0.786017 0.354802 -0.506253 --0.282857 0.620186 -0.497575 -0.162624 0.499280 0.302887 -0.272630 0.616900 -0.495875 --0.002308 0.272465 -0.951472 --0.103976 0.476944 0.319952 -0.000000 0.263643 0.964620 -0.975508 0.188071 0.114076 --0.975508 0.188072 0.114076 --0.001608 0.186106 -0.982528 -27 -0 0 2 1 0 2 1 1 -0 3 2 0 3 2 0 1 -0 4 2 3 4 2 3 1 -0 5 2 4 5 2 4 1 -0 6 5 4 6 5 4 1 -0 7 5 6 7 5 6 1 -0 6 8 7 6 8 7 1 -0 9 8 6 9 8 6 1 -0 10 9 11 10 9 11 1 -0 8 9 10 8 9 10 1 -0 12 14 13 12 14 13 1 -0 15 17 16 15 17 16 1 -0 15 12 17 15 12 17 1 -0 18 20 19 18 20 19 1 -0 21 20 18 21 20 18 1 -0 21 22 20 21 22 20 1 -0 21 23 22 21 23 22 1 -0 12 15 14 12 15 14 1 -0 24 32 31 24 32 31 1 -0 25 30 26 25 30 26 1 -0 26 32 27 26 32 27 1 -0 28 31 29 28 31 29 1 -0 28 29 25 28 29 25 1 -0 31 28 24 31 28 24 1 -0 30 25 29 30 25 29 1 -0 32 26 30 32 26 30 1 -0 32 24 27 32 24 27 1 -"Mesh11" 0 11 -47 -0 -0.300388 1.974613 -0.653538 0.367132 0.674620 0 -0 -0.500941 3.331166 -0.241046 0.266466 0.086699 0 -0 0.000000 3.124826 -0.376499 0.517909 0.176125 0 -0 0.500941 3.331166 -0.241046 0.769352 0.086699 0 -0 0.306167 1.974613 -0.653538 0.671587 0.674620 0 -0 0.000000 1.351238 -0.663940 0.517909 0.944786 0 -0 0.000000 1.964779 -0.560031 0.517909 0.678882 0 -0 -1.153724 2.477021 0.766662 0.020690 0.930857 0 -0 -1.335262 3.190072 0.609066 0.047264 0.936954 0 -0 -1.124006 2.063907 0.130250 0.008311 0.952853 0 -0 -1.291826 3.212332 -0.156935 0.047942 0.950100 0 -0 -1.248943 2.463319 -0.413996 0.020306 0.968298 0 -0 1.335262 3.190072 0.609066 0.009993 0.955582 0 -0 1.153724 2.477021 0.766661 0.041427 0.948279 0 -0 1.124006 2.063907 0.130250 0.056072 0.970997 0 -0 1.291826 3.212332 -0.156935 0.009192 0.969429 0 -0 1.248943 2.463319 -0.413996 0.041884 0.987641 0 -0 -0.336793 -0.543134 -0.006957 0.045766 0.846415 8 -0 -0.125943 -1.440655 -0.170049 0.039467 0.672481 8 -0 0.409312 -0.409080 0.829010 0.023335 0.783541 8 -0 -0.313524 -0.589190 0.657941 0.045059 0.834235 8 -0 -0.279712 -3.039644 0.629894 0.044297 0.237693 8 -0 0.534314 -3.021929 -0.127610 0.013834 0.254866 8 -0 0.351400 -1.425783 0.597226 0.023975 0.682801 8 -0 -0.272631 -3.021928 -0.127574 0.044060 0.242584 8 -0 0.589582 -1.442377 0.277552 0.013333 0.682634 8 -0 0.527232 -3.039644 0.629858 0.014071 0.249974 8 -0 -0.169843 -1.443415 0.692519 0.040892 0.671155 8 -0 -0.253372 -1.441873 0.215259 0.046095 0.669458 8 -0 0.651589 -0.241093 0.090272 0.011572 0.793189 8 -0 0.454196 -1.459556 -0.116599 0.020631 0.675017 8 -0 0.443464 -0.314383 -0.260143 0.022329 0.809582 8 -0 0.169843 -1.443415 0.691716 0.017499 0.695492 15 -0 0.281981 -3.039644 0.627712 0.013442 0.239767 15 -0 -0.443464 -0.264383 -0.260945 0.039481 0.820799 15 -0 -0.454195 -1.459556 -0.117401 0.041465 0.698877 15 -0 -0.651589 -0.191093 0.089470 0.052204 0.803200 15 -0 0.125943 -1.440655 -0.170850 0.019184 0.696839 15 -0 0.336793 -0.443134 -0.007758 0.011759 0.860318 15 -0 0.313524 -0.489190 0.657139 0.012594 0.847486 15 -0 -0.409312 -0.359079 0.828208 0.038289 0.793448 15 -0 0.253372 -1.441873 0.214457 0.011344 0.693883 15 -0 -0.586867 -3.021929 -0.151564 0.049477 0.256806 15 -0 -0.351400 -1.425783 0.596423 0.037511 0.707173 15 -0 0.274900 -3.021928 -0.151529 0.013722 0.244904 15 -0 -0.589582 -1.442377 0.276750 0.050098 0.706640 15 -0 -0.579785 -3.039644 0.627675 0.049197 0.251670 15 -47 -0.024499 0.160330 -0.986759 --0.020390 0.486251 -0.835632 -0.000425 0.159400 -0.987214 --0.053285 0.426755 -0.852427 --0.023688 0.160665 -0.986725 --0.006926 -0.245669 -0.806871 -0.002691 0.161626 -0.986848 --0.128283 -0.206125 0.815226 --0.425005 0.288670 0.792492 -0.042250 -0.373309 -0.118096 --0.548385 0.407575 -0.599166 --0.046601 -0.053822 -0.932128 -0.574561 0.180201 0.599461 -0.100363 -0.283278 0.785895 --0.010576 -0.437571 -0.099526 -0.531242 0.284107 -0.615780 -0.027256 -0.082603 -0.918985 --0.858989 0.000366 -0.511994 --0.408567 -0.026049 -0.912356 -0.402342 -0.198914 0.893619 --0.891763 -0.008314 0.452427 --0.841956 -0.025096 0.536161 -0.649174 -0.030697 -0.759287 -0.649277 -0.035130 0.759741 --0.829135 -0.014032 -0.557244 -0.992502 0.014512 0.121361 -0.609643 -0.026016 0.790958 --0.393410 -0.069723 0.916715 --0.998078 -0.042974 -0.044651 -0.984450 -0.171268 -0.039049 -0.682252 -0.049815 -0.729418 -0.293839 -0.082208 -0.952313 -0.395974 -0.022069 0.917996 -0.834721 0.003396 0.543043 --0.289637 -0.052370 -0.955703 --0.671599 0.009073 -0.740859 --0.986213 -0.162163 -0.032980 -0.402979 0.018112 -0.915030 -0.834280 -0.090228 -0.543907 -0.736199 -0.126651 0.664808 --0.418632 -0.134429 0.898152 -0.998877 0.004712 -0.047143 --0.640754 0.000026 -0.760211 --0.632154 0.020220 0.774579 -0.823677 0.016583 -0.560070 --0.987098 0.103450 0.122212 --0.595412 0.000494 0.795050 -68 -0 0 2 1 0 2 1 1 -0 2 4 3 2 4 3 1 -0 5 4 6 5 4 6 1 -0 2 0 6 2 0 6 1 -0 0 5 6 0 5 6 1 -0 4 2 6 4 2 6 1 -0 21 28 27 21 28 27 1 -0 29 31 30 29 31 30 1 -0 17 28 18 17 28 18 1 -0 19 8 7 19 8 7 1 -0 19 20 8 19 20 8 1 -0 19 9 29 19 9 29 1 -0 19 7 9 19 7 9 1 -0 10 20 17 10 20 17 1 -0 10 8 20 10 8 20 1 -0 31 10 17 31 10 17 1 -0 31 11 10 31 11 10 1 -0 18 22 30 18 22 30 1 -0 29 23 19 29 23 19 1 -0 22 18 24 22 18 24 1 -0 18 31 17 18 31 17 1 -0 19 27 20 19 27 20 1 -0 31 9 11 31 9 11 1 -0 31 29 9 31 29 9 1 -0 22 25 30 22 25 30 1 -0 27 26 21 27 26 21 1 -0 25 29 30 25 29 30 1 -0 28 20 27 28 20 27 1 -0 28 17 20 28 17 20 1 -0 28 24 18 28 24 18 1 -0 24 28 21 24 28 21 1 -0 25 26 23 25 26 23 1 -0 26 25 22 26 25 22 1 -0 29 25 23 29 25 23 1 -0 26 27 23 26 27 23 1 -0 27 19 23 27 19 23 1 -0 31 18 30 31 18 30 1 -0 41 33 32 41 33 32 1 -0 34 36 35 34 36 35 1 -0 41 38 37 41 38 37 1 -0 39 13 12 39 13 12 1 -0 39 40 13 39 40 13 1 -0 13 36 14 13 36 14 1 -0 13 40 36 13 40 36 1 -0 12 38 39 12 38 39 1 -0 12 15 38 12 15 38 1 -0 38 16 34 38 16 34 1 -0 38 15 16 38 15 16 1 -0 42 37 35 42 37 35 1 -0 43 36 40 43 36 40 1 -0 37 42 44 37 42 44 1 -0 34 37 38 34 37 38 1 -0 32 40 39 32 40 39 1 -0 36 16 14 36 16 14 1 -0 36 34 16 36 34 16 1 -0 45 42 35 45 42 35 1 -0 46 32 33 46 32 33 1 -0 36 45 35 36 45 35 1 -0 39 41 32 39 41 32 1 -0 38 41 39 38 41 39 1 -0 44 41 37 44 41 37 1 -0 41 44 33 41 44 33 1 -0 46 45 43 46 45 43 1 -0 45 46 42 45 46 42 1 -0 45 36 43 45 36 43 1 -0 37 34 35 37 34 35 1 -0 40 32 43 40 32 43 1 -0 32 46 43 32 46 43 1 -"Mesh12" 0 12 -124 -0 0.432449 -0.153739 0.750073 0.883790 0.596086 4 -0 -0.029895 0.573299 -1.495019 0.981771 0.389892 4 -0 -0.374408 -1.139889 0.689138 0.602526 0.993300 4 -0 0.251375 -1.139889 0.689139 0.896186 0.993300 4 -0 0.251375 -1.139889 0.689139 0.040443 0.993514 4 -0 0.743838 -1.139889 -1.223204 0.573546 0.993514 4 -0 0.764439 -0.154980 -1.367711 0.804688 0.600098 4 -0 0.432449 -0.153739 0.750073 0.023954 0.596106 4 -0 -0.491664 -0.153739 0.750072 0.590130 0.596086 4 -0 0.442331 -1.139889 -2.429199 0.899887 0.993514 4 -0 -0.620967 -1.139889 -2.429199 0.899887 0.993514 4 -0 -0.599182 -0.170025 -2.714461 0.977079 0.602669 4 -0 0.446303 -0.159829 -2.714461 0.977079 0.598560 4 -0 -0.036017 0.361187 -2.423868 0.981771 0.464233 4 -0 -0.932950 -0.154980 -1.367711 0.804688 0.600098 4 -0 -0.916490 -1.139889 -1.223205 0.573546 0.993514 4 -0 -0.374408 -1.139889 0.689138 0.040443 0.993514 4 -0 -0.491664 -0.153739 0.750072 0.023954 0.596106 4 -0 -0.491664 -0.153739 0.750072 0.590130 0.596086 4 -0 0.502936 -0.846065 0.483550 0.845415 0.478609 6 -0 0.288042 -2.774547 0.374513 0.895148 0.041511 6 -0 -0.577181 -2.774547 -0.465502 0.497396 0.041260 6 -0 0.407191 -2.774547 -0.496467 0.497396 0.041260 6 -0 0.288042 -2.774547 0.374513 0.148438 0.041260 6 -0 -0.313232 -2.774547 0.405477 0.148438 0.041260 6 -0 -0.089563 -2.774547 -0.780886 0.825521 0.043823 6 -0 0.288042 -2.774547 0.374513 0.899064 0.041511 6 -0 -0.313232 -2.774547 0.405477 0.601488 0.041511 6 -0 0.288042 -2.774547 0.374513 0.100748 0.591098 6 -0 0.502936 -0.846065 0.483550 0.032915 0.478609 6 -0 -0.088895 -0.790580 0.612486 0.024673 0.475884 6 -0 0.407191 -2.774547 -0.496467 0.560632 0.593294 6 -0 0.485153 -0.762144 -0.474731 0.471692 0.474487 6 -0 -0.577181 -2.774547 -0.465502 0.560632 0.593294 6 -0 -0.313232 -2.774547 0.405477 0.100748 0.591098 6 -0 -0.088895 -0.790580 0.612486 0.024673 0.475884 6 -0 -0.044383 -0.686417 -0.754812 0.846570 0.470769 6 -0 -0.089563 -2.774547 -0.780886 0.853541 0.591098 6 -0 -0.313232 -2.774547 0.405477 0.102946 0.595489 6 -0 -0.458176 -0.751138 -0.177171 0.473397 0.473947 6 -0 -0.088895 -0.790580 0.612486 0.618423 0.475884 6 -0 -0.023153 -3.753458 -0.827840 0.839882 0.029003 7 -0 -0.037853 -3.892343 0.433550 0.627523 0.036578 7 -0 -0.023153 -3.753458 -0.827840 0.839241 0.030065 7 -0 0.009875 -3.737409 -0.703989 0.839882 0.029003 7 -0 0.491498 -3.841637 -0.434884 0.466649 0.035601 7 -0 0.619131 -3.854427 -0.483179 0.475444 0.042187 7 -0 0.619131 -3.854427 -0.483179 0.475444 0.037796 7 -0 0.491498 -3.841637 -0.434884 0.475444 0.042187 7 -0 0.440328 -3.957140 0.191921 0.143570 0.032442 7 -0 0.541167 -3.966322 0.271957 0.086500 0.031855 7 -0 0.009858 -3.880774 0.336207 0.040685 0.037318 7 -0 -0.037853 -3.892343 0.433550 0.033773 0.036578 7 -0 -0.343384 -3.826488 -0.081790 0.463743 0.040783 7 -0 -0.508498 -3.839753 -0.096753 0.474413 0.039936 7 -0 0.009875 -3.737409 -0.703989 0.837683 0.031198 7 -0 -0.023153 -3.753458 -0.827840 0.839882 0.029003 7 -0 0.541167 -3.966322 0.271957 0.852125 0.031855 7 -0 -0.037853 -3.892343 0.433550 0.033773 0.036578 7 -0 -0.508498 -3.839753 -0.096753 0.474413 0.039936 7 -0 0.619131 -3.854427 -0.483179 0.475444 0.042187 7 -0 0.541167 -3.966322 0.271957 0.086500 0.031855 7 -0 0.491664 -0.153739 0.750072 0.023954 0.596106 11 -0 0.374408 -1.139889 0.689139 0.040443 0.993514 11 -0 0.916490 -1.139889 -1.223204 0.573546 0.993514 11 -0 0.932950 -0.154980 -1.367711 0.804688 0.600098 11 -0 -0.432450 -0.153739 0.750073 0.883790 0.596086 11 -0 0.491664 -0.153739 0.750072 0.590130 0.596086 11 -0 0.029896 0.573299 -1.495019 0.981771 0.389892 11 -0 -0.251375 -1.139889 0.689139 0.896186 0.993300 11 -0 0.374408 -1.139889 0.689139 0.602526 0.993300 11 -0 -0.432450 -0.153739 0.750073 0.023954 0.596106 11 -0 -0.764439 -0.154980 -1.367711 0.804688 0.600098 11 -0 -0.743838 -1.139889 -1.223204 0.573546 0.993514 11 -0 -0.251375 -1.139889 0.689139 0.040443 0.993514 11 -0 0.491664 -0.153739 0.750072 0.590130 0.596086 11 -0 0.599182 -0.170025 -2.714461 0.977079 0.602669 11 -0 0.620967 -1.139889 -2.429199 0.899887 0.993514 11 -0 -0.442331 -1.139889 -2.429199 0.899887 0.993514 11 -0 -0.446303 -0.159829 -2.714461 0.977079 0.598560 11 -0 0.036018 0.361187 -2.423868 0.981771 0.464233 11 -0 0.458176 -0.751138 -0.177170 0.473397 0.473947 13 -0 0.088895 -0.790580 0.612486 0.618423 0.475884 13 -0 -0.502936 -0.846065 0.483550 0.845415 0.478609 13 -0 -0.288042 -2.774547 0.374513 0.899064 0.041511 13 -0 -0.288042 -2.774547 0.374513 0.895148 0.041511 13 -0 -0.288042 -2.774547 0.374513 0.148438 0.041260 13 -0 -0.407191 -2.774547 -0.496467 0.497396 0.041260 13 -0 0.313231 -2.774547 0.405477 0.148438 0.041260 13 -0 0.089563 -2.774547 -0.780886 0.825521 0.043823 13 -0 0.577181 -2.774547 -0.465502 0.497396 0.041260 13 -0 0.313231 -2.774547 0.405477 0.601488 0.041511 13 -0 0.088895 -0.790580 0.612486 0.024673 0.475884 13 -0 -0.502936 -0.846065 0.483550 0.032915 0.478609 13 -0 -0.288042 -2.774547 0.374513 0.100748 0.591098 13 -0 -0.485153 -0.762144 -0.474731 0.471692 0.474487 13 -0 -0.407191 -2.774547 -0.496467 0.560632 0.593294 13 -0 0.088895 -0.790580 0.612486 0.024673 0.475884 13 -0 0.313231 -2.774547 0.405477 0.100748 0.591098 13 -0 0.577181 -2.774547 -0.465502 0.560632 0.593294 13 -0 0.089563 -2.774547 -0.780886 0.853541 0.591098 13 -0 0.044383 -0.686417 -0.754812 0.846570 0.470769 13 -0 0.313231 -2.774547 0.405477 0.102946 0.595489 13 -0 0.030317 -3.753457 -0.827840 0.839882 0.029003 14 -0 -0.002711 -3.737408 -0.703989 0.837683 0.031198 14 -0 -0.534004 -3.966321 0.271957 0.852125 0.031855 14 -0 0.515662 -3.839752 -0.096754 0.474413 0.039936 14 -0 0.045016 -3.892341 0.433550 0.033773 0.036578 14 -0 -0.534004 -3.966321 0.271957 0.086500 0.031855 14 -0 -0.611968 -3.854427 -0.483180 0.475444 0.042187 14 -0 0.030317 -3.753457 -0.827840 0.839882 0.029003 14 -0 0.045016 -3.892341 0.433550 0.627523 0.036578 14 -0 -0.611968 -3.854427 -0.483180 0.475444 0.042187 14 -0 -0.484334 -3.841635 -0.434884 0.466649 0.035601 14 -0 -0.002711 -3.737408 -0.703989 0.839882 0.029003 14 -0 0.030317 -3.753457 -0.827840 0.839241 0.030065 14 -0 -0.534004 -3.966321 0.271957 0.086500 0.031855 14 -0 -0.433164 -3.957139 0.191920 0.143570 0.032442 14 -0 -0.484334 -3.841635 -0.434884 0.475444 0.042187 14 -0 -0.611968 -3.854427 -0.483180 0.475444 0.037796 14 -0 0.045016 -3.892341 0.433550 0.033773 0.036578 14 -0 -0.002694 -3.880773 0.336207 0.040685 0.037318 14 -0 0.515662 -3.839752 -0.096754 0.474413 0.039936 14 -0 0.350547 -3.826487 -0.081790 0.463743 0.040783 14 -124 -0.505750 0.072275 0.859647 -0.008495 0.784197 -0.620454 --0.358590 -0.435903 0.825471 -0.506115 -0.598157 0.621334 -0.506115 -0.598157 0.621334 -0.669842 -0.739875 -0.062422 -0.927798 0.356598 -0.109677 -0.505750 0.072275 0.859647 --0.485891 0.146294 0.861689 -0.336974 -0.568223 -0.750714 --0.347265 -0.834141 -0.428503 --0.593758 0.134151 -0.793382 -0.709951 0.215488 -0.670473 -0.023851 0.912128 -0.409210 --0.935842 0.340993 -0.089012 --0.801787 -0.593917 -0.066336 --0.358590 -0.435903 0.825471 --0.485891 0.146294 0.861689 --0.485891 0.146294 0.861689 -0.900544 -0.038362 0.433070 -0.602439 0.205496 0.742472 --0.876704 0.255100 -0.327966 -0.799245 0.246839 -0.454531 -0.602439 0.205496 0.742472 --0.677619 0.074476 0.710277 --0.036197 0.347824 -0.864473 -0.602439 0.205496 0.742472 --0.677619 0.074476 0.710277 -0.602439 0.205496 0.742472 -0.900544 -0.038362 0.433070 --0.433789 0.041902 0.900039 -0.799245 0.246839 -0.454531 -0.846459 -0.065552 -0.528403 --0.876704 0.255100 -0.327966 --0.677619 0.074476 0.710277 --0.433789 0.041902 0.900039 --0.180275 0.004042 -0.983608 --0.036197 0.347824 -0.864473 --0.677619 0.074476 0.710277 --0.995936 0.011798 -0.089290 --0.433789 0.041902 0.900039 --0.030721 0.927603 -0.210529 --0.058024 0.844265 0.455523 --0.030721 0.927603 -0.210529 --0.519763 0.568346 -0.637831 -0.748756 0.534148 -0.392493 -0.362323 0.803458 -0.093687 -0.362323 0.803458 -0.093687 -0.748756 0.534148 -0.392493 -0.689898 0.510308 0.513446 -0.358429 0.746689 0.449030 --0.156918 0.525277 0.836338 --0.058024 0.844265 0.455523 --0.824777 0.527864 0.202739 --0.487818 0.744166 0.062375 --0.519763 0.568346 -0.637831 --0.030721 0.927603 -0.210529 -0.358429 0.746689 0.449030 --0.058024 0.844265 0.455523 --0.487818 0.744166 0.062375 -0.362323 0.803458 -0.093687 -0.358429 0.746689 0.449030 -0.485891 0.146294 0.861689 -0.358590 -0.435903 0.825471 -0.801787 -0.593917 -0.066336 -0.935842 0.340993 -0.089012 --0.505751 0.072275 0.859647 -0.485891 0.146294 0.861689 --0.008495 0.784197 -0.620454 --0.506115 -0.598157 0.621334 -0.358590 -0.435903 0.825471 --0.505751 0.072275 0.859647 --0.927798 0.356598 -0.109678 --0.669842 -0.739875 -0.062422 --0.506115 -0.598157 0.621334 -0.485891 0.146294 0.861689 -0.593758 0.134151 -0.793382 -0.347265 -0.834141 -0.428503 --0.336974 -0.568223 -0.750714 --0.709951 0.215488 -0.670474 --0.023851 0.912128 -0.409210 -0.995936 0.011798 -0.089290 -0.433789 0.041902 0.900040 --0.900544 -0.038362 0.433069 --0.602439 0.205496 0.742472 --0.602439 0.205496 0.742472 --0.602439 0.205496 0.742472 --0.799245 0.246839 -0.454531 -0.677619 0.074476 0.710277 -0.036197 0.347824 -0.864473 -0.876704 0.255100 -0.327965 -0.677619 0.074476 0.710277 -0.433789 0.041902 0.900040 --0.900544 -0.038362 0.433069 --0.602439 0.205496 0.742472 --0.846459 -0.065552 -0.528403 --0.799245 0.246839 -0.454531 -0.433789 0.041902 0.900040 -0.677619 0.074476 0.710277 -0.876704 0.255100 -0.327965 -0.036197 0.347824 -0.864473 -0.180275 0.004042 -0.983608 -0.677619 0.074476 0.710277 -0.030721 0.927603 -0.210529 -0.366570 0.455166 -0.811449 --0.358429 0.746689 0.449030 -0.487818 0.744166 0.062375 -0.058024 0.844265 0.455523 --0.358429 0.746689 0.449030 --0.362323 0.803458 -0.093687 -0.030721 0.927603 -0.210529 -0.058024 0.844265 0.455523 --0.362323 0.803458 -0.093687 --0.808563 0.499886 -0.310386 -0.366570 0.455166 -0.811449 -0.030721 0.927603 -0.210529 --0.358429 0.746689 0.449030 --0.687304 0.515602 0.511633 --0.808563 0.499886 -0.310386 --0.362323 0.803458 -0.093687 -0.058024 0.844265 0.455523 -0.162343 0.527492 0.833905 -0.487818 0.744166 0.062375 -0.821741 0.532705 0.202404 -122 -0 14 16 15 14 16 15 1 -0 14 17 16 14 17 16 1 -0 18 20 0 18 20 0 1 -0 1 21 14 1 21 14 1 -0 2 0 3 2 0 3 1 -0 2 18 0 2 18 0 1 -0 4 6 5 4 6 5 1 -0 4 7 6 4 7 6 1 -0 26 8 27 26 8 27 1 -0 4 15 16 4 15 16 1 -0 4 5 15 4 5 15 1 -0 9 11 10 9 11 10 1 -0 9 12 11 9 12 11 1 -0 11 15 10 11 15 10 1 -0 15 11 14 15 11 14 1 -0 12 13 11 12 13 11 1 -0 5 12 9 5 12 9 1 -0 5 10 15 5 10 15 1 -0 5 9 10 5 9 10 1 -0 12 5 6 12 5 6 1 -0 1 13 6 1 13 6 1 -0 6 23 22 6 23 22 1 -0 24 14 21 24 14 21 1 -0 13 12 6 13 12 6 1 -0 13 14 11 13 14 11 1 -0 14 13 1 14 13 1 1 -0 1 22 25 1 22 25 1 -0 21 1 25 21 1 25 1 -0 22 1 6 22 1 6 1 -0 23 6 7 23 6 7 1 -0 14 24 17 14 24 17 1 -0 28 30 29 28 30 29 1 -0 31 29 32 31 29 32 1 -0 33 35 34 33 35 34 1 -0 36 33 37 36 33 37 1 -0 30 28 38 30 28 38 1 -0 35 33 39 35 33 39 1 -0 33 36 39 33 36 39 1 -0 36 31 32 36 31 32 1 -0 29 31 28 29 31 28 1 -0 31 36 37 31 36 37 1 -0 57 40 42 57 40 42 1 -0 35 59 58 35 59 58 1 -0 60 29 61 60 29 61 1 -0 32 29 60 32 29 60 1 -0 36 60 41 36 60 41 1 -0 59 36 41 59 36 41 1 -0 35 39 59 35 39 59 1 -0 36 59 39 36 59 39 1 -0 60 36 32 60 36 32 1 -0 40 57 19 40 57 19 1 -0 43 45 44 43 45 44 1 -0 43 46 45 43 46 45 1 -0 47 49 48 47 49 48 1 -0 47 50 49 47 50 49 1 -0 50 51 49 50 51 49 1 -0 50 52 51 50 52 51 1 -0 52 53 51 52 53 51 1 -0 52 54 53 52 54 53 1 -0 54 55 53 54 55 53 1 -0 54 56 55 54 56 55 1 -0 62 64 63 62 64 63 1 -0 62 65 64 62 65 64 1 -0 85 67 66 85 67 66 1 -0 90 68 65 90 68 65 1 -0 66 70 69 66 70 69 1 -0 67 70 66 67 70 66 1 -0 71 73 72 71 73 72 1 -0 71 74 73 71 74 73 1 -0 75 84 91 75 84 91 1 -0 73 63 64 73 63 64 1 -0 73 74 63 73 74 63 1 -0 76 78 77 76 78 77 1 -0 79 78 76 79 78 76 1 -0 64 76 77 64 76 77 1 -0 76 64 65 76 64 65 1 -0 80 79 76 80 79 76 1 -0 79 73 78 79 73 78 1 -0 77 73 64 77 73 64 1 -0 78 73 77 78 73 77 1 -0 73 79 72 73 79 72 1 -0 80 68 72 80 68 72 1 -0 86 72 87 86 72 87 1 -0 65 88 90 65 88 90 1 -0 79 80 72 79 80 72 1 -0 65 80 76 65 80 76 1 -0 80 65 68 80 65 68 1 -0 87 68 89 87 68 89 1 -0 68 90 89 68 90 89 1 -0 68 87 72 68 87 72 1 -0 72 86 71 72 86 71 1 -0 88 65 62 88 65 62 1 -0 92 94 93 92 94 93 1 -0 93 96 95 93 96 95 1 -0 97 99 98 97 99 98 1 -0 99 101 100 99 101 100 1 -0 94 92 102 94 92 102 1 -0 99 97 81 99 97 81 1 -0 101 99 81 101 99 81 1 -0 96 101 95 96 101 95 1 -0 96 93 94 96 93 94 1 -0 101 96 100 101 96 100 1 -0 82 105 111 82 105 111 1 -0 106 97 107 106 97 107 1 -0 93 109 108 93 109 108 1 -0 93 95 109 93 95 109 1 -0 109 101 110 109 101 110 1 -0 101 106 110 101 106 110 1 -0 81 97 106 81 97 106 1 -0 106 101 81 106 101 81 1 -0 101 109 95 101 109 95 1 -0 105 82 83 105 82 83 1 -0 112 114 113 112 114 113 1 -0 112 115 114 112 115 114 1 -0 116 118 117 116 118 117 1 -0 116 119 118 116 119 118 1 -0 120 117 121 120 117 121 1 -0 120 116 117 120 116 117 1 -0 122 121 123 122 121 123 1 -0 122 120 121 122 120 121 1 -0 103 123 104 103 123 104 1 -0 103 122 123 103 122 123 1 -"Mesh13" 0 13 -205 -0 -0.837767 2.033047 0.234658 0.160950 0.182441 1 -0 -1.215631 2.202773 0.450000 0.484194 0.044166 1 -0 -1.487136 1.146203 0.604729 0.716453 0.904956 1 -0 -0.676127 1.687469 0.765532 0.022676 0.463985 1 -0 -0.837767 2.033047 0.234658 0.160950 0.182441 1 -0 -0.834990 2.033048 0.678724 0.158575 0.182441 1 -0 -0.672620 1.687469 0.140542 0.019676 0.463985 1 -0 -1.218408 2.033048 0.005934 0.486570 0.182441 1 -0 -1.685892 1.374969 0.717999 0.886477 0.718580 1 -0 1.195157 1.113637 0.747137 0.518946 0.895992 1 -0 -1.596273 2.033048 0.221276 0.809813 0.182441 1 -0 -1.593495 2.033048 0.665343 0.807437 0.182441 1 -0 -0.945879 1.146203 0.607766 0.253435 0.904956 1 -0 -1.212854 2.033048 0.894066 0.481818 0.182441 1 -0 -1.758642 1.687469 0.759458 0.948711 0.463985 1 -0 -1.219137 1.687468 1.074990 0.487193 0.463985 1 -0 -1.212854 2.033048 0.894066 0.481818 0.182441 1 -0 -1.217384 1.146203 0.762495 0.485694 0.904956 1 -0 -0.945879 1.146203 0.607766 0.253435 0.904956 1 -0 -1.596273 2.033048 0.221276 0.809813 0.182441 1 -0 -1.218408 2.033048 0.005934 0.486570 0.182441 1 -0 -1.217384 1.146203 0.762495 0.485694 0.904956 1 -0 -1.593495 2.033048 0.665343 0.807437 0.182441 1 -0 -0.944126 1.146203 0.295271 0.251935 0.904956 1 -0 1.468919 1.113636 0.590778 0.724020 0.895992 1 -0 1.663890 1.342403 0.705082 0.870072 0.716571 1 -0 1.195157 1.113637 0.747137 0.518946 0.895992 1 -0 1.198224 1.029902 0.434637 0.521243 0.961666 1 -0 0.806997 2.022270 0.658876 0.228176 0.183352 1 -0 1.179149 2.022270 0.855010 0.506955 0.183352 1 -0 1.195032 2.201520 0.434637 0.518852 0.042766 1 -0 1.567185 2.022270 0.630770 0.797631 0.183352 1 -0 0.806735 0.012696 -0.055761 0.662579 0.919018 1 -0 0.516417 -0.252682 -0.269000 0.522016 0.973462 1 -0 0.730628 0.209004 -0.290420 0.659113 0.841107 1 -0 1.048198 0.416888 -0.299496 0.802525 0.810125 1 -0 0.814056 0.630124 -0.774521 0.742807 0.705892 1 -0 1.213018 0.911913 -0.332411 0.925563 0.659820 1 -0 0.584271 0.910489 -0.952007 0.693126 0.578951 1 -0 0.334223 1.065040 -0.984557 0.620164 0.493007 1 -0 1.104362 1.356026 -0.299496 0.941187 0.491777 1 -0 0.623909 1.742595 -0.769843 0.812246 0.295573 1 -0 0.955737 1.742595 -0.205761 0.934822 0.338514 1 -0 0.337657 2.046077 -0.208759 0.744610 0.153308 1 -0 -0.000222 1.356116 1.147136 0.533169 0.348805 1 -0 0.814818 1.356116 0.900233 0.834242 0.454277 1 -0 0.546193 2.046077 0.265639 0.821642 0.180293 1 -0 -0.000092 1.966761 0.612609 0.609888 0.137101 1 -0 0.546193 2.046077 0.265639 0.821642 0.180293 1 -0 0.000000 1.967875 0.100000 0.610062 0.136727 1 -0 1.104226 1.356026 0.499889 0.941137 0.491759 1 -0 1.048061 0.416888 0.499889 0.802474 0.810107 1 -0 1.104226 1.356026 0.499889 0.941137 0.491759 1 -0 0.076766 1.306393 -0.986968 0.555364 0.376010 1 -0 -0.000001 1.387858 -0.999967 0.537236 0.337829 1 -0 0.000169 1.742595 -0.959000 0.581839 0.214858 1 -0 0.000092 1.896390 -0.461319 0.601120 0.161524 1 -0 0.337657 2.046077 -0.208759 0.744610 0.153308 1 -0 0.000000 1.967875 0.100000 0.610062 0.136727 1 -0 0.546193 -0.089823 0.406843 0.539973 0.958101 1 -0 1.048061 0.416888 0.499889 0.802474 0.810107 1 -0 0.516417 -0.252682 -0.269000 0.522016 0.973462 1 -0 0.516417 -0.252682 -0.269000 0.522016 0.973462 1 -0 0.546193 -0.089823 0.406843 0.539973 0.958101 1 -0 0.000000 -0.247346 0.300000 0.331923 0.904784 1 -0 -0.000912 0.374412 1.164248 0.415811 0.672880 1 -0 0.814819 0.421420 0.900234 0.716884 0.778352 1 -0 0.814818 1.356116 0.900233 0.834242 0.454277 1 -0 -0.000222 1.356116 1.147136 0.533169 0.348805 1 -0 1.104226 1.356026 0.499889 0.941137 0.491759 1 -0 -0.797257 0.794451 -0.704565 0.168226 0.440401 1 -0 -0.632841 1.169830 -0.922234 0.276092 0.331529 1 -0 -0.625246 0.752021 -0.830174 0.226438 0.477374 1 -0 -0.371343 1.253986 -0.983980 0.383254 0.336190 1 -0 -0.632841 1.169830 -0.922234 0.276091 0.331531 1 -0 -0.623635 1.742595 -0.770029 0.351407 0.134133 1 -0 -0.337509 2.046077 -0.208859 0.495206 0.065936 1 -0 1.179149 2.022270 0.855010 0.506955 0.183352 1 -0 0.806997 2.022270 0.658876 0.228176 0.183352 1 -0 -0.566419 -0.252719 -0.266167 0.122015 0.833348 1 -0 -0.798877 0.012732 -0.058894 0.069476 0.711229 1 -0 -1.009523 0.466888 -0.199889 0.048687 0.526506 1 -0 -0.793812 0.208826 -0.289061 0.095967 0.643896 1 -0 -0.797257 0.794451 -0.704565 0.168225 0.440402 1 -0 -1.104226 1.356026 -0.299888 0.125342 0.205971 1 -0 -0.711173 1.017333 -0.938436 0.228009 0.374265 1 -0 -1.104226 1.356026 -0.299888 0.125342 0.205971 1 -0 0.000000 1.967875 0.100000 0.610062 0.136727 1 -0 -0.546249 -0.089823 0.406681 0.136429 0.816731 1 -0 -0.566419 -0.252719 -0.266167 0.122015 0.833348 1 -0 0.000000 -0.247346 0.300000 0.331923 0.904784 1 -0 -0.798877 0.012732 -0.058894 0.069476 0.711229 1 -0 -0.546249 -0.089823 0.406681 0.136429 0.816731 1 -0 -1.059660 0.416888 0.499496 0.023889 0.537354 1 -0 -1.009523 0.466888 -0.199889 0.048687 0.526506 1 -0 -1.059660 0.416888 0.499496 0.023889 0.537354 1 -0 -1.104362 1.356026 0.499496 0.125292 0.205953 1 -0 -0.797257 0.794451 -0.704565 0.168225 0.440402 1 -0 -1.104226 1.356026 -0.299888 0.125342 0.205971 1 -0 -1.104362 1.356026 0.499496 0.125292 0.205953 1 -0 -0.546249 2.046077 0.265477 0.418098 0.038924 1 -0 -0.337509 2.046077 -0.208859 0.495206 0.065936 1 -0 0.000000 1.967875 0.100000 0.610062 0.136727 1 -0 0.546193 -0.089823 0.406843 0.539973 0.958101 1 -0 -0.000092 -0.102339 0.680202 0.337073 0.890458 1 -0 0.000000 -0.247346 0.300000 0.331923 0.904784 1 -0 -1.059660 0.416888 0.499496 0.023889 0.537354 1 -0 -0.546249 -0.089823 0.406681 0.136429 0.816731 1 -0 -0.815177 0.421420 0.899991 0.114769 0.567420 1 -0 -0.815177 0.421420 0.899991 0.114769 0.567420 1 -0 -0.815177 1.356116 0.899991 0.232127 0.243344 1 -0 -0.815177 1.356116 0.899991 0.232127 0.243344 1 -0 -0.000092 -0.102339 0.680202 0.337073 0.890458 1 -0 0.546193 -0.089823 0.406843 0.539973 0.958101 1 -0 0.814819 0.421420 0.900234 0.716884 0.778352 1 -0 -0.000912 0.374412 1.164248 0.415811 0.672880 1 -0 -0.546249 -0.089823 0.406681 0.136429 0.816731 1 -0 0.814819 0.421420 0.900234 0.716884 0.778352 1 -0 -0.546249 2.046077 0.265477 0.418098 0.038924 1 -0 -0.248470 0.968751 -1.124906 0.422009 0.440459 1 -0 -0.483349 1.323969 -1.018755 0.363286 0.318169 1 -0 -0.000001 1.387858 -0.999967 0.484131 0.296174 1 -0 -0.072151 1.178832 -1.108951 0.466092 0.368135 1 -0 -0.502053 0.756845 -1.053075 0.358609 0.513411 1 -0 -0.782907 1.151596 -0.915391 0.288391 0.377511 1 -0 -0.712207 0.530389 -0.902641 0.291938 0.556881 1 -0 -0.955368 0.825081 -0.747724 0.245273 0.489920 1 -0 -0.837482 0.386855 -0.705904 0.274747 0.640786 1 -0 -0.947503 0.520622 -0.564326 0.247239 0.594735 1 -0 -0.909083 0.325582 -0.465874 0.256845 0.661880 1 -0 0.076766 1.306393 -0.986968 0.629151 0.330789 1 -0 -0.072151 1.178832 -1.108951 0.507861 0.323720 1 -0 -0.000001 1.387858 -0.999967 0.495148 0.198699 1 -0 -0.140132 0.942467 -1.236594 0.538978 0.475906 1 -0 -0.248470 0.968751 -1.124906 0.392924 0.366870 1 -0 -0.349389 0.556251 -1.247067 0.469030 0.646545 1 -0 -0.406489 0.665705 -1.148617 0.303816 0.516658 1 -0 -0.563601 0.192216 -1.119624 0.382217 0.793896 1 -0 -0.604902 0.296117 -1.021213 0.239137 0.681409 1 -0 -0.727230 -0.097392 -0.795251 0.241266 0.812220 1 -0 0.076766 1.306393 -0.986968 0.777533 0.255140 1 -0 0.000617 1.288010 -1.060241 0.622451 0.209266 1 -0 -0.000001 1.387858 -0.999967 0.667295 0.107395 1 -0 0.055566 1.079559 -1.149076 0.632138 0.467411 1 -0 -0.039634 1.079559 -1.149076 0.448851 0.386738 1 -0 -0.013413 0.856988 -1.215418 0.396717 0.634869 1 -0 -0.080730 0.856988 -1.215418 0.267114 0.577824 1 -0 -0.093839 0.759033 -1.220405 0.196714 0.666141 1 -0 -1.864849 1.053337 0.389923 0.546204 0.318952 1 -0 -1.923765 1.053337 0.679909 0.804402 0.482374 1 -0 -1.657219 1.377203 0.464003 0.879850 0.197745 1 -0 -1.823738 0.444190 0.588656 0.219670 0.737442 1 -0 -1.789724 0.444190 0.421233 0.070599 0.643090 1 -0 -1.742467 0.377203 0.464003 0.053313 0.700898 1 -0 -1.877479 0.701068 0.389923 0.255040 0.496197 1 -0 -1.936394 0.701068 0.679909 0.513239 0.659619 1 -0 -1.923765 1.053337 0.679909 0.804402 0.482374 1 -0 -1.864849 1.053337 0.389923 0.546204 0.318952 1 -0 -1.936394 0.701068 0.679909 0.513239 0.659619 1 -0 -1.877479 0.701068 0.389923 0.255040 0.496197 1 -0 1.959848 0.977767 0.511205 0.758236 0.547091 1 -0 2.063336 0.977766 0.209674 0.474974 0.286723 1 -0 1.667249 1.340521 0.384646 0.895013 0.168284 1 -0 1.928883 0.407508 0.283626 0.142528 0.774280 1 -0 1.869134 0.407508 0.457715 0.306070 0.924604 1 -0 1.781087 0.340521 0.384646 0.190215 0.911280 1 -0 1.959848 0.663479 0.511205 0.536727 0.780606 1 -0 2.063336 0.663479 0.209674 0.253464 0.520238 1 -0 2.063336 0.977766 0.209674 0.474974 0.286724 1 -0 1.959848 0.977767 0.511205 0.758236 0.547092 1 -0 2.063336 0.663479 0.209674 0.253464 0.520238 1 -0 1.959848 0.663479 0.511205 0.536727 0.780606 1 -0 1.194907 1.113636 0.122137 0.518758 0.895992 1 -0 1.465602 1.113636 0.278278 0.721535 0.895992 1 -0 1.663674 1.342403 0.163816 0.869910 0.716571 1 -0 1.194907 1.113636 0.122137 0.518758 0.895992 1 -0 1.194782 1.654902 -0.190363 0.518664 0.471478 1 -0 1.736173 1.654902 0.121920 0.924218 0.471478 1 -0 1.210914 2.022270 0.014263 0.530750 0.183352 1 -0 1.583067 2.022270 0.210397 0.809528 0.183352 1 -0 1.736423 1.654902 0.746920 0.924406 0.471478 1 -0 1.567185 2.022270 0.630770 0.797631 0.183352 1 -0 1.583067 2.022270 0.210397 0.809528 0.183352 1 -0 1.210914 2.022270 0.014263 0.530750 0.183352 1 -0 0.924336 1.113636 0.278495 0.316075 0.895992 1 -0 0.653641 1.654902 0.122354 0.113298 0.471478 1 -0 0.822879 2.022270 0.238503 0.240074 0.183352 1 -0 0.822879 2.022270 0.238503 0.240074 0.183352 1 -0 0.924462 1.113636 0.590995 0.316169 0.895992 1 -0 0.000000 -0.247346 0.300000 0.331924 0.904782 1 -0 0.516417 -0.252682 -0.269000 0.522017 0.973460 1 -0 0.730628 0.209004 -0.290420 0.659114 0.841106 1 -0 -0.815177 1.356116 0.899991 0.232127 0.243344 1 -0 -1.213878 1.146203 0.137505 0.482694 0.904956 1 -0 -1.755135 1.687469 0.134468 0.945712 0.463985 1 -0 -1.212125 1.687468 -0.174990 0.481194 0.463985 1 -0 -1.485383 1.146203 0.292234 0.714953 0.904956 1 -0 -1.682855 1.374969 0.176742 0.883880 0.718580 1 -0 -1.213878 1.146203 0.137505 0.482694 0.904956 1 -0 -1.215631 1.062468 0.450000 0.484194 0.973174 1 -0 0.924462 1.113636 0.590995 0.316169 0.895992 1 -0 1.195282 1.654902 1.059637 0.519040 0.471478 1 -0 0.653891 1.654902 0.747354 0.113486 0.471478 1 -0 -0.944126 1.146203 0.295271 0.251935 0.904956 1 -0 -0.834990 2.033048 0.678724 0.158575 0.182441 1 -205 -0.575881 0.700618 -0.232022 -0.000000 1.000000 0.000000 --0.427738 -0.870413 0.243766 -0.798532 0.091096 0.595019 -0.575881 0.700618 -0.232022 -0.490611 0.694751 0.380979 -0.677996 0.248304 -0.691857 -0.089897 0.699447 -0.612606 --0.704550 -0.555218 0.441976 -0.074892 -0.717584 0.564551 --0.490611 0.694751 -0.380979 --0.575881 0.700618 0.232022 -0.333138 -0.706569 0.453880 --0.089897 0.699447 0.612606 --0.866551 0.122511 0.483819 -0.017968 0.017427 0.999687 --0.089897 0.699447 0.612606 -0.034966 -0.695536 0.628719 -0.333138 -0.706569 0.453880 --0.490611 0.694751 -0.380979 -0.089897 0.699447 -0.612606 -0.034966 -0.695536 0.628719 --0.575881 0.700618 0.232022 -0.338210 -0.706569 -0.450113 -0.507091 -0.839185 0.196539 -0.790973 -0.466584 0.395804 -0.074892 -0.717584 0.564551 -0.001085 -0.999999 -0.000520 --0.583614 0.686884 0.239981 --0.074037 0.688711 0.633461 -0.000000 1.000000 0.000000 -0.495132 0.702348 0.392469 -0.772563 -0.607678 -0.184049 -0.561910 -0.690915 0.127223 -0.804088 -0.433034 -0.180772 -0.793226 -0.556543 -0.247085 -0.532192 -0.403630 -0.716175 -0.928309 -0.015734 -0.371477 -0.189837 -0.163076 -0.731450 -0.309183 0.048593 -0.913167 -0.887678 0.265765 -0.376028 -0.417093 0.575008 -0.703846 -0.714766 0.692788 -0.095675 -0.116399 0.921199 -0.177474 --0.000127 0.354068 0.861490 -0.457384 0.351425 0.724793 -0.331338 0.863191 0.169089 --0.000058 0.915577 0.402142 -0.331338 0.863191 0.169089 -0.000006 0.990048 0.004710 -0.773535 0.412624 0.277488 -0.827871 -0.383168 0.200305 -0.773535 0.412624 0.277488 -0.267903 0.287642 -0.877323 -0.164327 0.333920 -0.844113 -0.088150 0.625857 -0.774940 -0.054618 0.961040 -0.270961 -0.116399 0.921199 -0.177474 -0.000006 0.990048 0.004710 -0.367913 -0.809744 0.353664 -0.827871 -0.383168 0.200305 -0.561910 -0.690915 0.127223 -0.561910 -0.690915 0.127223 -0.367913 -0.809744 0.353664 -0.010997 -0.845311 0.466694 --0.000269 -0.351857 0.850839 -0.536125 -0.473288 0.575505 -0.457384 0.351425 0.724793 --0.000127 0.354068 0.861490 -0.773535 0.412624 0.277488 --0.763084 -0.234111 -0.585361 --0.444133 0.125263 -0.869157 --0.541158 -0.159147 -0.825724 --0.228609 0.289022 -0.929626 --0.444133 0.125263 -0.869157 --0.442010 0.483736 -0.755399 --0.165798 0.962910 -0.179798 --0.074037 0.688711 0.633461 --0.583614 0.686884 0.239981 --0.622073 -0.673030 0.108120 --0.739579 -0.646441 0.063363 --0.881464 -0.275833 -0.331062 --0.860422 -0.359677 -0.245072 --0.763084 -0.234111 -0.585361 --0.752517 0.508289 -0.221543 --0.840333 0.039064 -0.540661 --0.752517 0.508289 -0.221543 -0.000006 0.990048 0.004710 --0.447939 -0.805329 0.318527 --0.622073 -0.673030 0.108120 -0.010997 -0.845311 0.466694 --0.739579 -0.646441 0.063363 --0.447939 -0.805329 0.318527 --0.782270 -0.438860 0.266617 --0.881464 -0.275833 -0.331062 --0.782270 -0.438860 0.266617 --0.849517 0.295327 0.203857 --0.763084 -0.234111 -0.585361 --0.752517 0.508289 -0.221543 --0.849517 0.295327 0.203857 --0.340137 0.847672 0.288091 --0.165798 0.962910 -0.179798 -0.000006 0.990048 0.004710 -0.367913 -0.809744 0.353664 --0.000116 -0.840410 0.510891 -0.010997 -0.845311 0.466694 --0.782270 -0.438860 0.266617 --0.447939 -0.805329 0.318527 --0.511854 -0.360508 0.673898 --0.511854 -0.360508 0.673898 --0.474246 0.449490 0.641242 --0.474246 0.449490 0.641242 --0.000116 -0.840410 0.510891 -0.367913 -0.809744 0.353664 -0.536125 -0.473288 0.575505 --0.000269 -0.351857 0.850839 --0.447939 -0.805329 0.318527 -0.536125 -0.473288 0.575505 --0.340137 0.847672 0.288091 --0.451925 0.361382 -0.796414 --0.232578 0.143317 -0.961960 -0.164327 0.333920 -0.844113 --0.228286 0.480136 -0.762686 --0.405627 0.019778 -0.913825 --0.501793 -0.031684 -0.864407 --0.623514 -0.140671 -0.769053 --0.747471 -0.209010 -0.630557 --0.828859 -0.295259 -0.475199 --0.870097 -0.310588 -0.382708 --0.870620 -0.347354 -0.348376 -0.267903 0.287642 -0.877323 --0.228286 0.480136 -0.762686 -0.164327 0.333920 -0.844113 --0.295670 0.462098 -0.836089 --0.451925 0.361382 -0.796414 --0.648828 0.308262 -0.695699 --0.705594 0.265099 -0.657160 --0.817696 0.158143 -0.553502 --0.855117 0.134353 -0.500724 --0.905846 0.039407 -0.421771 -0.267903 0.287642 -0.877323 -0.394797 0.439916 -0.806603 -0.164327 0.333920 -0.844113 -0.196440 0.391958 -0.898766 -0.000000 0.321577 -0.946884 -0.000000 0.208704 -0.977979 -0.000000 0.169455 -0.985538 -0.000000 0.050844 -0.998707 --0.896039 0.296952 -0.182045 --0.896039 0.296952 -0.182045 --0.812704 0.558792 -0.165114 --0.852722 -0.492799 -0.173244 --0.879005 -0.442106 -0.178584 --0.758360 -0.633365 -0.154073 --0.950853 -0.151408 -0.193181 --0.950852 -0.151408 -0.193181 --0.896039 0.296952 -0.182045 --0.896039 0.296952 -0.182045 --0.950852 -0.151408 -0.193181 --0.950853 -0.151408 -0.193181 -0.828624 0.329502 0.284392 -0.828624 0.329502 0.284392 -0.711405 0.659005 0.244162 -0.725076 -0.642135 0.248853 -0.786259 -0.555857 0.269852 -0.501904 -0.847597 0.172258 -0.911559 -0.186909 0.312856 -0.911559 -0.186909 0.312855 -0.828624 0.329502 0.284392 -0.828624 0.329502 0.284392 -0.911559 -0.186909 0.312855 -0.911559 -0.186909 0.312856 --0.095732 -0.626621 -0.701205 -0.425903 -0.869738 -0.249323 -0.702030 -0.554085 -0.447373 --0.095732 -0.626621 -0.701205 --0.019848 0.035467 -0.999174 -0.861425 0.101948 -0.497547 -0.074037 0.688710 -0.633461 -0.583614 0.686884 -0.239981 -0.831112 0.090197 0.548742 -0.495132 0.702348 0.392469 -0.583614 0.686884 -0.239981 -0.074037 0.688710 -0.633461 --0.334844 -0.706851 -0.451512 --0.799041 0.092714 -0.594086 --0.495132 0.702348 -0.392469 --0.495132 0.702348 -0.392469 --0.334482 -0.706852 0.451780 -0.010997 -0.845311 0.466694 -0.561910 -0.690915 0.127223 -0.804088 -0.433034 -0.180772 --0.474246 0.449490 0.641242 --0.071787 -0.718288 -0.564568 --0.830363 0.088785 -0.550104 -0.003038 -0.023113 -0.999728 --0.504602 -0.839817 -0.200213 --0.787713 -0.469075 -0.399345 --0.071787 -0.718288 -0.564568 -0.000000 -1.000000 0.000000 --0.334482 -0.706852 0.451780 --0.001415 -0.004904 0.999987 --0.671125 0.218143 0.708523 -0.338210 -0.706569 -0.450113 -0.490611 0.694751 0.380979 -186 -0 193 195 194 193 195 194 1 -0 193 197 196 193 197 196 1 -0 193 194 197 193 194 197 1 -0 196 199 198 196 199 198 1 -0 200 202 201 200 202 201 1 -0 198 199 203 198 199 203 1 -0 204 1 0 204 1 0 1 -0 2 199 196 2 199 196 1 -0 3 5 4 3 5 4 1 -0 3 4 6 3 4 6 1 -0 0 1 7 0 1 7 1 -0 196 197 8 196 197 8 1 -0 200 201 9 200 201 9 1 -0 196 8 2 196 8 2 1 -0 10 1 11 10 1 11 1 -0 203 199 12 203 199 12 1 -0 13 1 204 13 1 204 1 -0 197 194 14 197 194 14 1 -0 197 14 8 197 14 8 1 -0 15 16 5 15 16 5 1 -0 15 5 3 15 5 3 1 -0 17 15 3 17 15 3 1 -0 7 1 10 7 1 10 1 -0 17 3 18 17 3 18 1 -0 195 20 19 195 20 19 1 -0 6 20 195 6 20 195 1 -0 6 4 20 6 4 20 1 -0 195 19 194 195 19 194 1 -0 12 199 21 12 199 21 1 -0 11 1 13 11 1 13 1 -0 194 19 22 194 19 22 1 -0 23 195 193 23 195 193 1 -0 23 6 195 23 6 195 1 -0 194 22 14 194 22 14 1 -0 14 22 16 14 22 16 1 -0 14 16 15 14 16 15 1 -0 8 14 15 8 14 15 1 -0 8 15 17 8 15 17 1 -0 8 21 2 8 21 2 1 -0 21 199 2 21 199 2 1 -0 9 25 24 9 25 24 1 -0 24 27 26 24 27 26 1 -0 28 30 29 28 30 29 1 -0 29 30 31 29 30 31 1 -0 32 34 33 32 34 33 1 -0 32 35 34 32 35 34 1 -0 35 36 34 35 36 34 1 -0 35 37 36 35 37 36 1 -0 38 40 39 38 40 39 1 -0 40 41 39 40 41 39 1 -0 40 42 41 40 42 41 1 -0 43 41 42 43 41 42 1 -0 44 46 45 44 46 45 1 -0 44 47 46 44 47 46 1 -0 48 49 43 48 49 43 1 -0 50 43 42 50 43 42 1 -0 50 48 43 50 48 43 1 -0 50 42 40 50 42 40 1 -0 51 40 37 51 40 37 1 -0 51 52 40 51 52 40 1 -0 51 37 35 51 37 35 1 -0 53 55 54 53 55 54 1 -0 53 41 55 53 41 55 1 -0 41 56 55 41 56 55 1 -0 41 57 56 41 57 56 1 -0 57 58 56 57 58 56 1 -0 59 35 32 59 35 32 1 -0 59 60 35 59 60 35 1 -0 59 32 61 59 32 61 1 -0 62 64 63 62 64 63 1 -0 65 67 66 65 67 66 1 -0 65 68 67 65 68 67 1 -0 46 69 45 46 69 45 1 -0 70 72 71 70 72 71 1 -0 73 75 74 73 75 74 1 -0 55 76 75 55 76 75 1 -0 55 56 76 55 56 76 1 -0 56 58 76 56 58 76 1 -0 202 78 77 202 78 77 1 -0 202 77 201 202 77 201 1 -0 79 81 80 79 81 80 1 -0 79 82 81 79 82 81 1 -0 83 81 82 83 81 82 1 -0 84 85 74 84 85 74 1 -0 75 84 74 75 84 74 1 -0 76 86 75 76 86 75 1 -0 47 87 46 47 87 46 1 -0 88 90 89 88 90 89 1 -0 91 88 89 91 88 89 1 -0 80 93 92 80 93 92 1 -0 80 81 93 80 81 93 1 -0 94 85 84 94 85 84 1 -0 94 96 95 94 96 95 1 -0 94 84 96 94 84 96 1 -0 85 94 97 85 94 97 1 -0 98 100 99 98 100 99 1 -0 98 101 100 98 101 100 1 -0 101 102 100 101 102 100 1 -0 103 105 104 103 105 104 1 -0 75 54 55 75 54 55 1 -0 75 73 54 75 73 54 1 -0 106 108 107 106 108 107 1 -0 38 37 40 38 37 40 1 -0 95 110 109 95 110 109 1 -0 95 96 110 95 96 110 1 -0 37 38 36 37 38 36 1 -0 100 111 99 100 111 99 1 -0 112 114 113 112 114 113 1 -0 112 115 114 112 115 114 1 -0 104 105 116 104 105 116 1 -0 41 53 39 41 53 39 1 -0 112 108 115 112 108 115 1 -0 66 52 51 66 52 51 1 -0 66 67 52 66 67 52 1 -0 65 110 68 65 110 68 1 -0 117 60 59 117 60 59 1 -0 44 118 47 44 118 47 1 -0 118 87 47 118 87 47 1 -0 119 121 120 119 121 120 1 -0 119 122 121 119 122 121 1 -0 123 120 124 123 120 124 1 -0 123 119 120 123 119 120 1 -0 125 124 126 125 124 126 1 -0 125 123 124 125 123 124 1 -0 127 126 128 127 126 128 1 -0 127 125 126 127 125 126 1 -0 128 129 127 128 129 127 1 -0 130 132 131 130 132 131 1 -0 133 131 134 133 131 134 1 -0 133 130 131 133 130 131 1 -0 135 134 136 135 134 136 1 -0 135 133 134 135 133 134 1 -0 137 136 138 137 136 138 1 -0 137 135 136 137 135 136 1 -0 139 137 138 139 137 138 1 -0 140 142 141 140 142 141 1 -0 143 141 144 143 141 144 1 -0 143 140 141 143 140 141 1 -0 145 144 146 145 144 146 1 -0 145 143 144 145 143 144 1 -0 146 147 145 146 147 145 1 -0 148 150 149 148 150 149 1 -0 151 153 152 151 153 152 1 -0 154 156 155 154 156 155 1 -0 154 157 156 154 157 156 1 -0 152 158 151 152 158 151 1 -0 152 159 158 152 159 158 1 -0 160 162 161 160 162 161 1 -0 163 165 164 163 165 164 1 -0 166 168 167 166 168 167 1 -0 166 169 168 166 169 168 1 -0 164 170 163 164 170 163 1 -0 164 171 170 164 171 170 1 -0 172 27 173 172 27 173 1 -0 174 172 173 174 172 173 1 -0 174 176 175 174 176 175 1 -0 174 177 176 174 177 176 1 -0 177 178 176 177 178 176 1 -0 177 179 178 177 179 178 1 -0 180 179 177 180 179 177 1 -0 180 181 179 180 181 179 1 -0 182 30 183 182 30 183 1 -0 184 27 172 184 27 172 1 -0 201 181 180 201 181 180 1 -0 201 77 181 201 77 181 1 -0 175 176 185 175 176 185 1 -0 176 186 185 176 186 185 1 -0 176 178 186 176 178 186 1 -0 25 177 174 25 177 174 1 -0 25 180 177 25 180 177 1 -0 183 30 187 183 30 187 1 -0 188 27 184 188 27 184 1 -0 31 30 182 31 30 182 1 -0 24 174 173 24 174 173 1 -0 24 25 174 24 25 174 1 -0 185 78 202 185 78 202 1 -0 185 186 78 185 186 78 1 -0 173 27 24 173 27 24 1 -0 187 30 28 187 30 28 1 -0 26 27 188 26 27 188 1 -0 9 180 25 9 180 25 1 -0 9 201 180 9 201 180 1 -0 189 191 190 189 191 190 1 -0 108 112 107 108 112 107 1 -0 110 65 109 110 65 109 1 -0 118 44 192 118 44 192 1 -"Mesh14" 0 14 -34 -0 0.510428 -0.296783 -0.487878 0.836365 0.761387 1 -0 0.204101 -0.531164 -0.776794 0.641423 0.870661 1 -0 0.562896 -0.058705 -0.776588 0.869755 0.649902 1 -0 -0.204302 -0.531164 -0.776794 0.381523 0.870661 1 -0 0.730628 0.209004 -0.290420 0.976496 0.489953 1 -0 -0.797257 0.794451 -0.704565 0.004177 0.155541 1 -0 -0.625246 0.752021 -0.830174 0.113642 0.180895 1 -0 -0.618963 0.207798 -0.750582 0.117640 0.490674 1 -0 0.814056 0.630124 -0.774521 0.977679 0.259522 1 -0 0.618965 0.207798 -0.750582 0.905436 0.490674 1 -0 0.516417 -0.252682 -0.269000 0.840176 0.735038 1 -0 0.213959 -0.603745 -0.639088 0.647697 0.914027 1 -0 -0.214171 -0.603745 -0.639088 0.375243 0.914027 1 -0 0.334223 1.065040 -0.984557 0.739856 0.055398 1 -0 0.625245 0.752021 -0.830174 0.909433 0.180896 1 -0 0.000000 0.692989 -1.159475 0.511537 0.216165 1 -0 -0.632841 1.169830 -0.922234 0.108809 0.131216 1 -0 -0.000035 0.312862 -1.073350 0.511515 0.427900 1 -0 0.584271 0.910489 -0.952007 0.883357 0.086215 1 -0 -0.000040 0.094006 -1.229011 0.511512 0.558661 1 -0 -0.183154 0.017032 -1.053205 0.394981 0.604651 1 -0 0.183156 0.017033 -1.053205 0.628094 0.604651 1 -0 0.000000 -0.247346 0.300000 0.511537 0.731849 1 -0 0.000000 -0.656560 -0.665999 0.511537 0.945583 1 -0 0.000000 -0.597714 -0.821614 0.511537 0.910424 1 -0 0.000000 -0.058047 -1.106226 0.511537 0.649509 1 -0 -0.566419 -0.252719 -0.266167 0.151078 0.735059 1 -0 -0.000041 0.007627 -1.216804 0.511511 0.610271 1 -0 0.000000 0.892990 -1.109475 0.511537 0.096670 1 -0 0.076766 1.306393 -0.986968 0.560390 0.049623 1 -0 0.076766 1.306393 -0.986968 0.560390 0.049623 1 -0 -0.510428 -0.296783 -0.487878 0.186710 0.761387 1 -0 -0.793812 0.208826 -0.289061 0.006369 0.490059 1 -0 -0.562895 -0.058705 -0.776589 0.153321 0.649902 1 -34 -0.830808 -0.541628 -0.128055 -0.568445 -0.577845 -0.585633 -0.784834 -0.219053 -0.579700 --0.568465 -0.577778 -0.585679 -0.804088 -0.433034 -0.180772 --0.763084 -0.234111 -0.585361 --0.541158 -0.159147 -0.825724 --0.669156 -0.154173 -0.726954 -0.532192 -0.403630 -0.716175 -0.628182 -0.201159 -0.751614 -0.561910 -0.690915 0.127223 -0.499118 -0.862121 -0.087343 --0.508676 -0.851068 -0.130122 -0.309183 0.048593 -0.913167 -0.144340 -0.340050 -0.929264 -0.034898 -0.019200 -0.999206 --0.444133 0.125263 -0.869157 --0.000042 0.165293 -0.986244 -0.189837 -0.163076 -0.731450 --0.000121 0.223672 -0.974664 --0.580529 -0.217067 -0.784772 -0.580499 -0.217042 -0.784801 -0.010997 -0.845311 0.466694 -0.005245 -0.968407 0.249319 -0.000120 -0.721568 -0.692343 -0.000001 -0.686887 -0.726764 --0.622073 -0.673030 0.108120 --0.000055 -0.589826 -0.807531 --0.029689 0.264885 -0.963823 -0.267903 0.287642 -0.877323 -0.267903 0.287642 -0.877323 --0.812697 -0.542121 -0.213609 --0.860422 -0.359677 -0.245072 --0.762302 -0.225698 -0.606593 -52 -0 31 33 32 31 33 32 1 -0 0 2 1 0 2 1 1 -0 33 31 3 33 31 3 1 -0 2 0 4 2 0 4 1 -0 5 7 6 5 7 6 1 -0 8 9 4 8 9 4 1 -0 7 32 33 7 32 33 1 -0 4 9 2 4 9 2 1 -0 0 11 10 0 11 10 1 -0 31 12 3 31 12 3 1 -0 13 15 14 13 15 14 1 -0 15 16 6 15 16 6 1 -0 33 17 7 33 17 7 1 -0 17 2 9 17 2 9 1 -0 14 18 13 14 18 13 1 -0 14 8 18 14 8 18 1 -0 17 20 19 17 20 19 1 -0 2 17 21 2 17 21 1 -0 17 33 20 17 33 20 1 -0 21 1 2 21 1 2 1 -0 10 23 22 10 23 22 1 -0 1 24 11 1 24 11 1 -0 20 24 25 20 24 25 1 -0 26 31 32 26 31 32 1 -0 12 31 26 12 31 26 1 -0 9 15 17 9 15 17 1 -0 15 7 17 15 7 17 1 -0 0 10 4 0 10 4 1 -0 6 7 15 6 7 15 1 -0 7 5 32 7 5 32 1 -0 15 9 14 15 9 14 1 -0 3 20 33 3 20 33 1 -0 21 17 19 21 17 19 1 -0 25 21 27 25 21 27 1 -0 25 27 20 25 27 20 1 -0 24 21 25 24 21 25 1 -0 23 11 24 23 11 24 1 -0 23 26 22 23 26 22 1 -0 11 0 1 11 0 1 1 -0 15 29 28 15 29 28 1 -0 15 13 29 15 13 29 1 -0 16 28 30 16 28 30 1 -0 16 15 28 16 15 28 1 -0 9 8 14 9 8 14 1 -0 21 19 27 21 19 27 1 -0 19 20 27 19 20 27 1 -0 11 23 10 11 23 10 1 -0 23 12 26 23 12 26 1 -0 12 23 24 12 23 24 1 -0 21 24 1 21 24 1 1 -0 24 20 3 24 20 3 1 -0 24 3 12 24 3 12 1 - -Materials: 15 -"Material0" -0.000000 0.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 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material1" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material2" -1.000000 0.875706 0.734463 1.000000 -1.000000 0.875707 0.734463 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material3" -1.000000 0.875706 0.734463 1.000000 -1.000000 0.875706 0.734463 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material4" -1.000000 1.000000 0.887006 1.000000 -1.000000 1.000000 0.887006 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material5" -1.000000 0.874510 0.749020 1.000000 -1.000000 0.874510 0.749020 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material6" -1.000000 0.937255 0.874510 1.000000 -1.000000 0.937255 0.874510 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material7" -1.000000 1.000000 1.000000 1.000000 -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 -1.000000 -"miniskirtbelt.bmp" -"" -"Material8" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"t9_FF_00.bmp" -"" -"Material9" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"miniskirtbelt.bmp" -"" -"Material10" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"alexjacket2.bmp" -"" -"Material11" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"alexjacket.bmp" -"" -"Material12" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"alexshoe2.bmp" -"" -"Material13" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"t7_bikeF_00.bmp" -"" -"Material14" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"alexface.ini" -"" - -Bones: 16 -"torso" -"" -8 0 0 0 0 0 0 -0 -0 -"head" -"" -8 0 0 0 0 0 0 -0 -0 -"pelvis" -"" -8 0 0 0 0 0 0 -0 -0 -"r lower arm" -"" -8 0 0 0 0 0 0 -0 -0 -"r foot" -"" -8 0 0 0 0 0 0 -0 -0 -"r hand" -"" -8 0 0 0 0 0 0 -0 -0 -"r leg" -"" -8 0 0 0 0 0 0 -0 -0 -"r thigh" -"" -8 0 0 0 0 0 0 -0 -0 -"r upper arm" -"" -8 0 0 0 0 0 0 -0 -0 -"neck" -"" -8 0 0 0 0 0 0 -0 -0 -"l lower arm" -"" -8 0 0 0 0 0 0 -0 -0 -"l foot" -"" -8 0 0 0 0 0 0 -0 -0 -"l hand" -"" -8 0 0 0 0 0 0 -0 -0 -"l leg" -"" -8 0 0 0 0 0 0 -0 -0 -"l thigh" -"" -8 0 0 0 0 0 0 -0 -0 -"l upper arm" -"" -8 0 0 0 0 0 0 -0 -0 diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/alexface.ini b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/alexface.ini deleted file mode 100644 index 2a71ad6651..0000000000 --- a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/alexface.ini +++ /dev/null @@ -1,21 +0,0 @@ -[AnimatedTexture] -Frame0000=t0_alex_01.bmp -Delay0000=2.00 -Frame0001=t1_alex_01.bmp -Delay0001=0.30 -Frame0002=t0_alex_01.bmp -Delay0002=2.00 -Frame0003=t1_alex_01.bmp -Delay0003=0.30 -Frame0004=t0_alex_01.bmp -Delay0004=2.00 -Frame0005=t2_alex_01.bmp -Delay0005=2.00 -Frame0006=t0_alex_01.bmp -Delay0006=2.00 -Frame0007=t1_alex_01.bmp -Delay0007=0.30 -Frame0008=t0_alex_01.bmp -Delay0008=2.00 -Frame0009=t3_alex_01.bmp -Delay0009=2.00 diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/alexjacket.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/alexjacket.bmp deleted file mode 100644 index bfdb6a9227..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/alexjacket.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/alexjacket2.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/alexjacket2.bmp deleted file mode 100644 index 2757ed9a88..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/alexjacket2.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/alexshoe2.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/alexshoe2.bmp deleted file mode 100644 index bef42dfedd..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/alexshoe2.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/default.lua b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/default.lua deleted file mode 100644 index 5e8adc2f2d..0000000000 --- a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/default.lua +++ /dev/null @@ -1,56 +0,0 @@ -local modelNames = { "luna", "luna", "luna2" }; - -local t = Def.ActorFrame{ - Lighting=true; - InitCommand=function(self) - self:fov(45); - --SetAmbientLightColor (default 1,1,1,1) - --self:SetAmbientLightColor( color("0.2,0.2,0.2,1") ); - --SetDiffuseLightColor (default 1,1,1,1) - self:SetDiffuseLightColor( color("1,0,1,1") ); - --SetSpecularLightColor (default 1,1,1,1) - self:SetSpecularLightColor( color("0,1,0,1") ); - --SetLightDirection (WARNING: does not error out correctly yet) default 0,0,1 - end; - Def.Model{ - Materials = modelNames[1]..".txt"; - Meshes = modelNames[1]..".txt"; - Bones = "Rest.bones.txt"; - -- was zoom,35 @ center, SCREEN_BOTTOM - InitCommand=cmd(x,SCREEN_CENTER_X*0.75;y,SCREEN_BOTTOM*0.9;zoom,24;wag;effectmagnitude,0,25,0;rotationy,90;rotationx,-30;cullmode,'CullMode_None'); - }; - Def.Model{ - Materials = modelNames[2]..".txt"; - Meshes = modelNames[2]..".txt"; - Bones = "Rest.bones.txt"; - InitCommand=cmd(x,SCREEN_CENTER_X*1.25;y,SCREEN_BOTTOM*0.9;zoom,24;wag;effectmagnitude,0,-25,0;rotationy,-90;rotationx,-30;cullmode,'CullMode_None';diffusecolor,color("0,1,0.75,1");); - OnCommand=cmd(queuecommand,"ShiftAlpha"); - ShiftAlphaCommand=function(self) - self:linear(3); - local newAlpha = scale(math.random(), 0, 1, 0.325, 0.75 ); - self:diffusealpha( newAlpha ); - self:sleep(math.random(0.2,5)); - self:queuecommand("ShiftAlpha"); - end; - }; - - Def.Model{ - Materials = modelNames[3]..".txt"; - Meshes = modelNames[3]..".txt"; - Bones = "Rest.bones.txt"; - -- was zoom,35 @ center, SCREEN_BOTTOM - InitCommand=cmd(x,SCREEN_CENTER_X*0.25;y,SCREEN_BOTTOM*1.25;zoom,32;rotationy,157;rotationx,-30;cullmode,'CullMode_None'); - }; - - --[[ - LoadFont("Common normal")..{ - InitCommand=cmd(x,SCREEN_LEFT+16;y,SCREEN_TOP+16;horizalign,left;); - OnCommand=function(self) - local chars = CHARMAN:GetAllCharacters(); - self:settext("I'm thiiiiiiiiiiiiiis big: ".. #chars); - end; - }; - --]] -}; - -return t; \ No newline at end of file diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/lorni.txt b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/lorni.txt deleted file mode 100644 index 712e3abecf..0000000000 --- a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/lorni.txt +++ /dev/null @@ -1,2405 +0,0 @@ -// MilkShape 3D ASCII - -Frames: 1 -Frame: 1 - -Meshes: 15 -"Mesh0" 0 0 -8 -0 0.000000 -1.896330 1.189440 0.000000 0.000000 2 -0 -0.076570 -1.502555 0.011780 0.000000 0.000000 2 -0 0.393550 -1.911557 1.098285 0.000000 0.000000 2 -0 -0.393550 -1.911557 1.098285 0.000000 0.000000 2 -0 -0.306832 -1.905185 -0.851208 0.000000 0.000000 2 -0 0.000000 -1.902875 -0.868898 0.000000 0.000000 2 -0 0.306833 -1.905185 -0.851208 0.000000 0.000000 2 -0 0.076570 -1.502555 0.011780 0.000000 0.000000 2 -8 -0.002057 -0.582340 0.327273 -0.516962 -0.494881 0.071351 --0.046689 -0.367887 0.660801 -0.137698 -0.382250 0.601985 -0.349050 -0.210020 -0.604129 -0.000000 -0.459791 -0.292329 --0.290884 -0.252369 -0.552067 --0.516962 -0.494881 0.071351 -6 -0 5 7 6 5 7 6 1 -0 7 1 0 7 1 0 1 -0 2 7 0 2 7 0 1 -0 0 1 3 0 1 3 1 -0 5 1 7 5 1 7 1 -0 1 5 4 1 5 4 1 -"Mesh1" 0 1 -154 -0 0.000000 3.324934 -0.401014 0.000000 0.000000 0 -0 0.439421 3.841631 -0.183988 0.000000 0.000000 0 -0 -0.397708 3.390891 -0.305647 0.000000 0.000000 0 -0 -0.439421 3.841631 -0.183988 0.000000 0.000000 0 -0 -0.439421 3.841631 -0.183988 0.000000 0.000000 0 -0 0.397708 3.390891 -0.305647 0.000000 0.000000 0 -0 0.439421 3.841631 -0.183988 0.000000 0.000000 0 -0 -0.439421 3.841631 -0.183988 0.000000 0.000000 0 -0 -0.076570 -1.502555 0.011780 0.000000 0.000000 2 -0 -0.306832 -1.905185 -0.851208 0.000000 0.000000 2 -0 -0.393550 -1.911557 1.098285 0.000000 0.000000 2 -0 -0.306832 -1.905185 -0.851208 0.000000 0.000000 2 -0 0.076570 -1.502555 0.011780 0.000000 0.000000 2 -0 0.306833 -1.905185 -0.851208 0.000000 0.000000 2 -0 0.393550 -1.911557 1.098285 0.000000 0.000000 2 -0 -0.201020 -1.259439 -0.471889 0.000000 0.000000 5 -0 0.033749 -1.162328 -0.471889 0.000000 0.000000 5 -0 0.444062 0.005917 0.445823 0.000000 0.000000 5 -0 0.503287 -0.579660 -0.413196 0.000000 0.000000 5 -0 0.503288 -0.579660 -0.706658 0.000000 0.000000 5 -0 0.444063 0.005917 -0.284400 0.000000 0.000000 5 -0 -0.234284 0.005917 -0.344401 0.000000 0.000000 5 -0 0.151133 -0.676771 -0.706658 0.000000 0.000000 5 -0 -0.201021 -1.259440 0.467189 0.000000 0.000000 5 -0 0.034993 -1.502218 0.408496 0.000000 0.000000 5 -0 0.269762 -1.405107 0.408497 0.000000 0.000000 5 -0 0.033749 -1.162328 0.467189 0.000000 0.000000 5 -0 -0.377098 -0.870995 0.525880 0.000000 0.000000 5 -0 -0.234284 0.005917 0.465823 0.000000 0.000000 5 -0 -0.347342 0.005918 0.070121 0.000000 0.000000 5 -0 0.269763 -1.405107 -0.413197 0.000000 0.000000 5 -0 0.034993 -1.502218 -0.413197 0.000000 0.000000 5 -0 -0.142328 -0.773883 0.525881 0.000000 0.000000 5 -0 0.030898 0.390997 0.057451 0.000000 0.000000 5 -0 0.503288 -1.162328 -0.706659 0.000000 0.000000 5 -0 0.503287 -1.162328 -0.413196 0.000000 0.000000 5 -0 0.327211 -1.162328 -0.413196 0.000000 0.000000 5 -0 0.327210 -1.162328 -0.706657 0.000000 0.000000 5 -0 -0.377097 -0.870994 -0.530581 0.000000 0.000000 5 -0 -0.142328 -0.773883 -0.530581 0.000000 0.000000 5 -0 0.151134 -0.676771 -0.413196 0.000000 0.000000 5 -0 -0.734693 -0.606808 0.307000 0.000000 0.000000 6 -0 -0.455659 -0.623940 0.866643 0.000000 0.000000 6 -0 0.343350 -0.646807 -0.420736 0.000000 0.000000 6 -0 -0.480241 -0.646807 -0.420736 0.000000 0.000000 6 -0 0.267887 -0.643940 0.820243 0.000000 0.000000 6 -0 0.658098 -0.626807 0.307000 0.000000 0.000000 6 -0 0.559796 -0.316137 0.158162 0.000000 0.000000 6 -0 0.420668 -2.030082 -1.010161 0.000000 0.000000 7 -0 0.269306 -4.166042 -0.652293 0.000000 0.000000 7 -0 -0.364645 -0.584289 0.850605 0.000000 0.000000 7 -0 -0.263401 -3.686043 0.477940 0.000000 0.000000 7 -0 0.302590 -3.686043 0.477940 0.000000 0.000000 7 -0 0.436716 -1.006070 0.725451 0.000000 0.000000 7 -0 -0.263401 -3.686043 0.477940 0.000000 0.000000 7 -0 0.512272 -3.830043 -0.016777 0.000000 0.000000 7 -0 0.512272 -3.830043 -0.016777 0.000000 0.000000 7 -0 -0.335428 -0.597848 -1.076372 0.000000 0.000000 7 -0 0.436716 -1.006070 0.725451 0.000000 0.000000 7 -0 0.687633 -1.429134 -0.355910 0.000000 0.000000 7 -0 0.302590 -3.686043 0.477940 0.000000 0.000000 7 -0 0.269306 -4.166042 -0.652293 0.000000 0.000000 7 -0 -0.270523 -4.166042 -0.652294 0.000000 0.000000 7 -0 0.687633 -1.429134 -0.355910 0.000000 0.000000 7 -0 -0.364645 -0.584289 0.850605 0.000000 0.000000 7 -0 0.420668 -2.030082 -1.010161 0.000000 0.000000 7 -0 0.420668 -2.030082 -1.010161 0.000000 0.000000 7 -0 -0.279972 -3.541515 -0.769189 0.000000 0.000000 7 -0 -0.270523 -4.166042 -0.652294 0.000000 0.000000 7 -0 -0.617601 -3.830043 0.029623 0.000000 0.000000 7 -0 -0.585107 -3.248377 -0.129626 0.000000 0.000000 7 -0 -0.866028 -0.577848 -0.043472 0.000000 0.000000 7 -0 -0.617601 -3.830043 0.029623 0.000000 0.000000 7 -0 0.572416 -3.328377 -0.129626 0.000000 0.000000 7 -0 0.270913 -3.541515 -0.769189 0.000000 0.000000 7 -0 -0.362283 1.331655 -0.175930 0.000000 0.000000 9 -0 0.000000 1.331655 0.540560 0.000000 0.000000 9 -0 0.000000 1.027653 0.641611 0.000000 0.000000 9 -0 0.000000 1.027653 0.641611 0.000000 0.000000 9 -0 0.276020 1.006419 0.529126 0.000000 0.000000 9 -0 0.218457 1.331655 0.404129 0.000000 0.000000 9 -0 0.000000 1.331655 0.540560 0.000000 0.000000 9 -0 -0.218457 1.331655 0.404129 0.000000 0.000000 9 -0 -0.362283 1.331655 -0.175930 0.000000 0.000000 9 -0 0.000000 1.331655 -0.289600 0.000000 0.000000 9 -0 -0.274758 1.010559 0.526385 0.000000 0.000000 9 -0 0.362283 1.331655 -0.175930 0.000000 0.000000 9 -0 0.000000 1.331655 -0.289600 0.000000 0.000000 9 -0 0.362283 1.331655 -0.175930 0.000000 0.000000 9 -0 0.218457 1.331655 0.404129 0.000000 0.000000 9 -0 0.276020 1.006419 0.529126 0.000000 0.000000 9 -0 -0.274758 1.010559 0.526385 0.000000 0.000000 9 -0 -0.218457 1.331655 0.404129 0.000000 0.000000 9 -0 0.142328 -0.773883 0.525881 0.000000 0.000000 12 -0 -0.030899 0.390997 0.057451 0.000000 0.000000 12 -0 -0.327210 -1.162328 -0.706657 0.000000 0.000000 12 -0 -0.327211 -1.162328 -0.413196 0.000000 0.000000 12 -0 -0.503287 -1.162328 -0.413196 0.000000 0.000000 12 -0 -0.503288 -1.162328 -0.706659 0.000000 0.000000 12 -0 0.142328 -0.773883 -0.530581 0.000000 0.000000 12 -0 0.377097 -0.870995 -0.530581 0.000000 0.000000 12 -0 -0.151134 -0.676771 -0.413196 0.000000 0.000000 12 -0 0.201020 -1.259439 -0.471889 0.000000 0.000000 12 -0 -0.033749 -1.162328 -0.471888 0.000000 0.000000 12 -0 -0.503288 -0.579660 -0.706658 0.000000 0.000000 12 -0 -0.503287 -0.579660 -0.413196 0.000000 0.000000 12 -0 -0.444062 0.005918 0.445823 0.000000 0.000000 12 -0 -0.444063 0.005917 -0.284400 0.000000 0.000000 12 -0 -0.151134 -0.676772 -0.706658 0.000000 0.000000 12 -0 0.234283 0.005917 -0.344401 0.000000 0.000000 12 -0 -0.033749 -1.162328 0.467189 0.000000 0.000000 12 -0 -0.269762 -1.405107 0.408497 0.000000 0.000000 12 -0 -0.034993 -1.502218 0.408496 0.000000 0.000000 12 -0 0.201021 -1.259440 0.467189 0.000000 0.000000 12 -0 0.347342 0.005918 0.070121 0.000000 0.000000 12 -0 0.234284 0.005917 0.465823 0.000000 0.000000 12 -0 0.377097 -0.870995 0.525880 0.000000 0.000000 12 -0 -0.034993 -1.502218 -0.413197 0.000000 0.000000 12 -0 -0.269763 -1.405107 -0.413197 0.000000 0.000000 12 -0 0.734693 -0.606808 0.307000 0.000000 0.000000 13 -0 0.455659 -0.623940 0.866643 0.000000 0.000000 13 -0 -0.343350 -0.646807 -0.420736 0.000000 0.000000 13 -0 0.480241 -0.646807 -0.420736 0.000000 0.000000 13 -0 -0.559796 -0.316137 0.158162 0.000000 0.000000 13 -0 -0.658098 -0.626807 0.307000 0.000000 0.000000 13 -0 -0.267887 -0.643940 0.820243 0.000000 0.000000 13 -0 -0.420668 -2.030082 -1.010161 0.000000 0.000000 14 -0 -0.270913 -3.541515 -0.769189 0.000000 0.000000 14 -0 -0.572416 -3.328377 -0.129626 0.000000 0.000000 14 -0 -0.269306 -4.166042 -0.652294 0.000000 0.000000 14 -0 -0.436716 -1.006070 0.725451 0.000000 0.000000 14 -0 -0.302590 -3.686043 0.477940 0.000000 0.000000 14 -0 0.263401 -3.686043 0.477940 0.000000 0.000000 14 -0 0.364645 -0.584289 0.850606 0.000000 0.000000 14 -0 0.263401 -3.686043 0.477940 0.000000 0.000000 14 -0 -0.512272 -3.830043 -0.016777 0.000000 0.000000 14 -0 -0.512272 -3.830043 -0.016777 0.000000 0.000000 14 -0 0.335428 -0.597848 -1.076372 0.000000 0.000000 14 -0 -0.302590 -3.686043 0.477940 0.000000 0.000000 14 -0 -0.687633 -1.429134 -0.355910 0.000000 0.000000 14 -0 -0.436716 -1.006070 0.725451 0.000000 0.000000 14 -0 -0.420668 -2.030082 -1.010161 0.000000 0.000000 14 -0 -0.687633 -1.429134 -0.355910 0.000000 0.000000 14 -0 -0.269306 -4.166042 -0.652294 0.000000 0.000000 14 -0 0.364645 -0.584289 0.850606 0.000000 0.000000 14 -0 0.335428 -0.597848 -1.076372 0.000000 0.000000 14 -0 0.279972 -3.541515 -0.769189 0.000000 0.000000 14 -0 0.270523 -4.166042 -0.652294 0.000000 0.000000 14 -0 0.617601 -3.830043 0.029623 0.000000 0.000000 14 -0 0.270523 -4.166042 -0.652294 0.000000 0.000000 14 -0 0.279972 -3.541515 -0.769189 0.000000 0.000000 14 -0 0.866028 -0.577848 -0.043472 0.000000 0.000000 14 -0 0.585108 -3.248377 -0.129626 0.000000 0.000000 14 -0 0.617601 -3.830043 0.029623 0.000000 0.000000 14 -154 -0.000000 0.272521 -0.956610 -0.630878 0.304882 -0.705029 --0.107916 0.367576 -0.919374 --0.640015 0.296587 -0.701555 --0.640015 0.296587 -0.701555 -0.107916 0.367576 -0.919374 -0.630878 0.304882 -0.705029 --0.640015 0.296587 -0.701555 -0.516962 -0.494881 0.071351 -0.349050 -0.210020 -0.604129 -0.137698 -0.382250 0.601985 -0.349050 -0.210020 -0.604129 --0.516962 -0.494881 0.071351 --0.290884 -0.252369 -0.552067 --0.046689 -0.367887 0.660801 --0.399360 -0.420808 -0.814513 -0.633928 0.294983 -0.714926 -0.834841 0.079790 0.544678 -0.791778 -0.249565 0.557498 -0.705051 0.288049 -0.648021 -0.570516 0.667811 -0.478058 --0.378748 0.494294 -0.782447 --0.412587 -0.238608 -0.879112 --0.527786 -0.492684 0.691884 --0.128499 -0.869321 0.477252 -0.740909 -0.251229 0.622847 -0.633927 0.294983 0.714927 --0.780256 -0.071276 0.621385 --0.410898 0.439639 0.798674 --0.922886 0.385048 0.004353 -0.740909 -0.251228 -0.622846 --0.128499 -0.869320 -0.477253 -0.525335 -0.275818 0.804952 --0.176952 0.984214 -0.003336 -0.577349 -0.577352 -0.577350 -0.577348 -0.577351 0.577352 --0.489940 -0.698823 0.521157 --0.489941 -0.698823 -0.521157 --0.793312 -0.020739 -0.608462 -0.179785 -0.112013 -0.977308 -0.120930 -0.830201 0.544190 --0.621515 0.782887 0.028408 --0.424160 0.348019 0.836045 -0.560634 -0.077992 -0.824382 --0.532714 0.063372 -0.843919 -0.473962 0.238448 0.847645 -0.995443 0.081996 0.048676 -0.986939 0.154809 0.044552 -0.551128 -0.127182 -0.824671 -0.570333 -0.208536 -0.794188 --0.507158 -0.095694 0.856524 --0.491746 0.164810 0.795657 -0.717813 0.072848 0.675122 -0.777732 -0.109228 0.619033 --0.491746 0.164810 0.795657 -0.994496 -0.011130 0.031645 -0.994496 -0.011130 0.031645 --0.541833 -0.034041 -0.839797 -0.777732 -0.109228 0.619033 -0.995258 -0.039265 -0.088994 -0.717813 0.072848 0.675122 -0.570333 -0.208536 -0.794188 --0.522411 -0.150285 -0.839067 -0.995258 -0.039265 -0.088994 --0.507158 -0.095694 0.856524 -0.551128 -0.127182 -0.824671 -0.551128 -0.127182 -0.824671 --0.548124 -0.136646 -0.825159 --0.522411 -0.150285 -0.839067 --0.986160 0.113770 -0.031163 --0.998798 -0.014849 0.046708 --0.998774 -0.047816 0.012842 --0.986160 0.113770 -0.031163 -0.993938 -0.095569 -0.054354 -0.544150 -0.170132 -0.821557 --0.954905 0.181546 -0.234941 --0.001642 0.377716 0.925920 --0.003008 0.290770 0.956788 --0.003008 0.290770 0.956788 -0.729400 0.321783 0.603681 -0.765032 0.344511 0.544093 --0.001642 0.377716 0.925920 --0.765781 0.341706 0.544809 --0.954905 0.181546 -0.234941 -0.000000 0.076157 -0.997096 --0.730451 0.321155 0.602745 -0.954546 0.182487 -0.235669 -0.000000 0.076157 -0.997096 -0.954546 0.182487 -0.235669 -0.765032 0.344511 0.544093 -0.729400 0.321783 0.603681 --0.730451 0.321155 0.602745 --0.765781 0.341706 0.544809 --0.525335 -0.275817 0.804952 -0.176952 0.984214 -0.003336 -0.489941 -0.698823 -0.521156 -0.489940 -0.698823 0.521157 --0.577348 -0.577351 0.577352 --0.577349 -0.577352 -0.577350 --0.179785 -0.112013 -0.977308 -0.793312 -0.020739 -0.608461 --0.120931 -0.830200 0.544190 -0.399360 -0.420809 -0.814513 --0.633928 0.294983 -0.714926 --0.705050 0.288049 -0.648021 --0.791779 -0.249565 0.557498 --0.834841 0.079791 0.544678 --0.570516 0.667811 -0.478058 -0.412587 -0.238608 -0.879112 -0.378749 0.494294 -0.782447 --0.633927 0.294983 0.714927 --0.740909 -0.251229 0.622847 -0.128499 -0.869321 0.477252 -0.527786 -0.492684 0.691884 -0.922886 0.385048 0.004353 -0.410898 0.439639 0.798674 -0.780256 -0.071276 0.621385 -0.128499 -0.869320 -0.477253 --0.740909 -0.251228 -0.622847 -0.621515 0.782887 0.028408 -0.424160 0.348019 0.836045 --0.560634 -0.077992 -0.824382 -0.532714 0.063372 -0.843919 --0.986939 0.154809 0.044552 --0.995443 0.081996 0.048676 --0.473963 0.238448 0.847645 --0.551128 -0.127182 -0.824671 --0.544150 -0.170132 -0.821557 --0.993938 -0.095569 -0.054354 --0.570333 -0.208536 -0.794188 --0.777732 -0.109228 0.619033 --0.717813 0.072848 0.675122 -0.491746 0.164810 0.795657 -0.507158 -0.095694 0.856524 -0.491746 0.164810 0.795657 --0.994496 -0.011130 0.031645 --0.994496 -0.011130 0.031645 -0.541833 -0.034041 -0.839797 --0.717813 0.072848 0.675122 --0.995258 -0.039264 -0.088994 --0.777732 -0.109228 0.619033 --0.551128 -0.127182 -0.824671 --0.995258 -0.039264 -0.088994 --0.570333 -0.208536 -0.794188 -0.507158 -0.095694 0.856524 -0.541833 -0.034041 -0.839797 -0.548124 -0.136646 -0.825159 -0.522411 -0.150285 -0.839067 -0.986160 0.113770 -0.031162 -0.522411 -0.150285 -0.839067 -0.548124 -0.136646 -0.825159 -0.998774 -0.047816 0.012842 -0.998798 -0.014849 0.046708 -0.986160 0.113770 -0.031162 -190 -0 17 19 18 17 19 18 1 -0 17 20 19 17 20 19 1 -0 21 22 19 21 22 19 1 -0 23 25 24 23 25 24 1 -0 23 26 25 23 26 25 1 -0 27 29 28 27 29 28 1 -0 30 24 25 30 24 25 1 -0 30 31 24 30 31 24 1 -0 26 27 32 26 27 32 1 -0 26 23 27 26 23 27 1 -0 33 29 21 33 29 21 1 -0 34 36 35 34 36 35 1 -0 34 37 36 34 37 36 1 -0 38 39 21 38 39 21 1 -0 33 20 17 33 20 17 1 -0 33 17 28 33 17 28 1 -0 33 21 20 33 21 20 1 -0 40 17 18 40 17 18 1 -0 18 36 40 18 36 40 1 -0 18 35 36 18 35 36 1 -0 23 38 27 23 38 27 1 -0 23 15 38 23 15 38 1 -0 40 37 22 40 37 22 1 -0 40 36 37 40 36 37 1 -0 16 31 30 16 31 30 1 -0 16 15 31 16 15 31 1 -0 22 34 19 22 34 19 1 -0 22 37 34 22 37 34 1 -0 15 16 39 15 16 39 1 -0 29 33 28 29 33 28 1 -0 21 39 22 21 39 22 1 -0 15 24 31 15 24 31 1 -0 15 23 24 15 23 24 1 -0 15 39 38 15 39 38 1 -0 35 19 34 35 19 34 1 -0 35 18 19 35 18 19 1 -0 32 27 28 32 27 28 1 -0 29 27 38 29 27 38 1 -0 21 19 20 21 19 20 1 -0 40 32 17 40 32 17 1 -0 26 30 25 26 30 25 1 -0 26 16 30 26 16 30 1 -0 32 28 17 32 28 17 1 -0 32 22 39 32 22 39 1 -0 32 40 22 32 40 22 1 -0 29 38 21 29 38 21 1 -0 32 16 26 32 16 26 1 -0 32 39 16 32 39 16 1 -0 72 44 62 72 44 62 1 -0 45 47 46 45 47 46 1 -0 44 72 41 44 72 41 1 -0 72 42 41 72 42 41 1 -0 44 61 62 44 61 62 1 -0 61 44 43 61 44 43 1 -0 47 43 46 47 43 46 1 -0 54 45 42 54 45 42 1 -0 45 54 60 45 54 60 1 -0 42 72 54 42 72 54 1 -0 61 47 55 61 47 55 1 -0 47 60 55 47 60 55 1 -0 47 45 60 47 45 60 1 -0 43 47 61 43 47 61 1 -0 67 69 68 67 69 68 1 -0 67 71 70 67 71 70 1 -0 73 48 74 73 48 74 1 -0 67 49 74 67 49 74 1 -0 50 52 51 50 52 51 1 -0 50 53 52 50 53 52 1 -0 53 73 52 53 73 52 1 -0 73 49 56 73 49 56 1 -0 49 67 68 49 67 68 1 -0 51 71 50 51 71 50 1 -0 69 67 70 69 67 70 1 -0 73 56 52 73 56 52 1 -0 71 51 70 71 51 70 1 -0 49 73 74 49 73 74 1 -0 51 69 70 51 69 70 1 -0 71 67 57 71 67 57 1 -0 58 8 59 58 8 59 1 -0 48 67 74 48 67 74 1 -0 9 59 8 9 59 8 1 -0 48 73 63 48 73 63 1 -0 8 58 10 8 58 10 1 -0 58 64 10 58 64 10 1 -0 73 53 63 73 53 63 1 -0 65 57 67 65 57 67 1 -0 59 9 66 59 9 66 1 -0 57 65 11 57 65 11 1 -0 0 1 87 0 1 87 1 -0 76 85 82 76 85 82 1 -0 87 1 86 87 1 86 1 -0 0 3 2 0 3 2 1 -0 79 81 80 79 81 80 1 -0 4 84 83 4 84 83 1 -0 1 0 5 1 0 5 1 -0 3 0 87 3 0 87 1 -0 88 90 89 88 90 89 1 -0 91 75 92 91 75 92 1 -0 81 79 77 81 79 77 1 -0 85 76 78 85 76 78 1 -0 90 88 6 90 88 6 1 -0 75 91 7 75 91 7 1 -0 104 106 105 104 106 105 1 -0 107 106 104 107 106 104 1 -0 108 109 104 108 109 104 1 -0 110 112 111 110 112 111 1 -0 110 113 112 110 113 112 1 -0 114 116 115 114 116 115 1 -0 117 111 112 117 111 112 1 -0 117 118 111 117 118 111 1 -0 113 93 116 113 93 116 1 -0 113 110 93 113 110 93 1 -0 114 94 109 114 94 109 1 -0 95 97 96 95 97 96 1 -0 95 98 97 95 98 97 1 -0 99 100 109 99 100 109 1 -0 107 94 106 107 94 106 1 -0 106 94 115 106 94 115 1 -0 109 94 107 109 94 107 1 -0 106 101 105 106 101 105 1 -0 97 101 96 97 101 96 1 -0 97 105 101 97 105 101 1 -0 102 116 100 102 116 100 1 -0 102 113 116 102 113 116 1 -0 96 108 95 96 108 95 1 -0 96 101 108 96 101 108 1 -0 102 118 117 102 118 117 1 -0 102 103 118 102 103 118 1 -0 95 104 98 95 104 98 1 -0 95 108 104 95 108 104 1 -0 103 102 99 103 102 99 1 -0 94 114 115 94 114 115 1 -0 99 109 108 99 109 108 1 -0 113 117 112 113 117 112 1 -0 113 102 117 113 102 117 1 -0 99 102 100 99 102 100 1 -0 105 98 104 105 98 104 1 -0 105 97 98 105 97 98 1 -0 116 93 115 116 93 115 1 -0 116 114 100 116 114 100 1 -0 104 109 107 104 109 107 1 -0 93 101 106 93 101 106 1 -0 103 111 118 103 111 118 1 -0 103 110 111 103 110 111 1 -0 115 93 106 115 93 106 1 -0 101 99 108 101 99 108 1 -0 101 93 99 101 93 99 1 -0 100 114 109 100 114 109 1 -0 99 110 103 99 110 103 1 -0 99 93 110 99 93 110 1 -0 122 153 147 122 153 147 1 -0 123 125 124 123 125 124 1 -0 153 122 119 153 122 119 1 -0 120 153 119 120 153 119 1 -0 143 122 147 143 122 147 1 -0 122 143 121 122 143 121 1 -0 121 123 124 121 123 124 1 -0 125 134 120 125 134 120 1 -0 134 125 138 134 125 138 1 -0 153 120 134 153 120 134 1 -0 123 143 135 123 143 135 1 -0 138 123 135 138 123 135 1 -0 125 123 138 125 123 138 1 -0 123 121 143 123 121 143 1 -0 148 150 149 148 150 149 1 -0 151 150 152 151 150 152 1 -0 126 128 127 126 128 127 1 -0 129 150 127 129 150 127 1 -0 130 132 131 130 132 131 1 -0 130 133 132 130 133 132 1 -0 128 130 131 128 130 131 1 -0 129 128 136 129 128 136 1 -0 150 129 149 150 129 149 1 -0 151 132 133 151 132 133 1 -0 150 148 152 150 148 152 1 -0 136 128 131 136 128 131 1 -0 132 151 152 132 151 152 1 -0 128 129 127 128 129 127 1 -0 148 132 152 148 132 152 1 -0 150 151 137 150 151 137 1 -0 12 140 139 12 140 139 1 -0 150 126 127 150 126 127 1 -0 13 139 141 13 139 141 1 -0 128 126 142 128 126 142 1 -0 140 12 14 140 12 14 1 -0 144 140 14 144 140 14 1 -0 130 128 142 130 128 142 1 -0 141 145 13 141 145 13 1 -0 139 13 12 139 13 12 1 -0 145 141 146 145 141 146 1 -"Mesh2" 0 2 -8 -0 -0.480241 -0.646807 -0.420736 0.000000 0.000000 6 -0 -0.886693 -0.606808 0.307000 0.000000 0.000000 6 -0 -0.734693 -0.606808 0.307000 0.000000 0.000000 6 -0 -0.455659 -0.623940 0.866643 0.000000 0.000000 6 -0 0.734693 -0.606808 0.307000 0.000000 0.000000 13 -0 0.886693 -0.606808 0.307000 0.000000 0.000000 13 -0 0.480241 -0.646807 -0.420736 0.000000 0.000000 13 -0 0.455659 -0.623940 0.866643 0.000000 0.000000 13 -8 --0.532714 0.063372 -0.843919 --0.496238 0.440567 0.008741 --0.621515 0.782887 0.028408 --0.424160 0.348019 0.836045 -0.621515 0.782887 0.028408 -0.496238 0.440567 0.008741 -0.532714 0.063372 -0.843919 -0.424160 0.348019 0.836045 -4 -0 0 2 1 0 2 1 1 -0 1 2 3 1 2 3 1 -0 4 6 5 4 6 5 1 -0 4 5 7 4 5 7 1 -"Mesh3" 0 3 -16 -0 0.572854 -1.890058 -0.410566 0.000000 0.000000 4 -0 0.533503 -0.543011 0.432861 0.000000 0.000000 4 -0 -0.719043 -0.520549 0.433503 0.000000 0.000000 4 -0 -0.759881 -1.890058 -0.373426 0.000000 0.000000 4 -0 -0.532906 -1.890058 0.417204 0.000000 0.000000 4 -0 -0.719043 -0.520549 0.433503 0.000000 0.000000 4 -0 0.533503 -0.543011 0.432861 0.000000 0.000000 4 -0 0.308658 -1.890058 0.417204 0.000000 0.000000 4 -0 0.719043 -0.520549 0.433504 0.000000 0.000000 11 -0 -0.533503 -0.543011 0.432861 0.000000 0.000000 11 -0 -0.572854 -1.890058 -0.410566 0.000000 0.000000 11 -0 0.759881 -1.890058 -0.373426 0.000000 0.000000 11 -0 -0.533503 -0.543011 0.432861 0.000000 0.000000 11 -0 0.719043 -0.520549 0.433504 0.000000 0.000000 11 -0 0.532906 -1.890058 0.417204 0.000000 0.000000 11 -0 -0.308658 -1.890058 0.417204 0.000000 0.000000 11 -16 -0.488649 -0.776699 0.397443 -0.994092 0.003380 -0.108484 --0.632394 -0.034278 -0.125494 --0.739554 -0.604872 0.295278 --0.280679 -0.600793 -0.328679 --0.632394 -0.034278 -0.125494 -0.994092 0.003380 -0.108484 -0.541745 -0.633246 -0.552731 -0.632394 -0.034278 -0.125494 --0.994092 0.003380 -0.108484 --0.488649 -0.776699 0.397443 -0.739554 -0.604872 0.295278 --0.994092 0.003380 -0.108484 -0.632394 -0.034278 -0.125494 -0.280679 -0.600793 -0.328679 --0.541745 -0.633246 -0.552732 -8 -0 0 2 1 0 2 1 1 -0 3 2 0 3 2 0 1 -0 4 6 5 4 6 5 1 -0 7 6 4 7 6 4 1 -0 8 10 9 8 10 9 1 -0 8 11 10 8 11 10 1 -0 12 14 13 12 14 13 1 -0 12 15 14 12 15 14 1 -"Mesh4" 0 4 -16 -0 -0.584865 -1.890058 -1.748553 0.000000 0.000000 4 -0 0.369726 -1.890058 -1.748553 0.000000 0.000000 4 -0 0.572854 -1.890058 -0.410566 0.000000 0.000000 4 -0 -0.522920 -1.890058 1.022283 0.000000 0.000000 4 -0 -0.759881 -1.890058 -0.373426 0.000000 0.000000 4 -0 -0.532906 -1.890058 0.417204 0.000000 0.000000 4 -0 0.308658 -1.890058 0.417204 0.000000 0.000000 4 -0 0.312594 -1.890058 1.022283 0.000000 0.000000 4 -0 -0.572854 -1.890058 -0.410566 0.000000 0.000000 11 -0 -0.369726 -1.890058 -1.748553 0.000000 0.000000 11 -0 0.584865 -1.890058 -1.748553 0.000000 0.000000 11 -0 0.522920 -1.890058 1.022283 0.000000 0.000000 11 -0 0.759881 -1.890058 -0.373426 0.000000 0.000000 11 -0 -0.312594 -1.890058 1.022283 0.000000 0.000000 11 -0 -0.308658 -1.890058 0.417204 0.000000 0.000000 11 -0 0.532906 -1.890058 0.417204 0.000000 0.000000 11 -16 --0.514430 -0.597259 -0.615340 -0.723069 -0.458754 -0.516445 -0.488649 -0.776699 0.397443 --0.741162 -0.483041 0.466209 --0.739554 -0.604872 0.295278 --0.280679 -0.600793 -0.328679 -0.541745 -0.633246 -0.552731 -0.514091 -0.639400 0.571732 --0.488649 -0.776699 0.397443 --0.723069 -0.458755 -0.516445 -0.514430 -0.597259 -0.615340 -0.741162 -0.483041 0.466209 -0.739554 -0.604872 0.295278 --0.514091 -0.639400 0.571732 --0.541745 -0.633246 -0.552732 -0.280679 -0.600793 -0.328679 -8 -0 5 7 6 5 7 6 1 -0 0 2 1 0 2 1 1 -0 7 5 3 7 5 3 1 -0 2 0 4 2 0 4 1 -0 13 15 14 13 15 14 1 -0 8 10 9 8 10 9 1 -0 15 13 11 15 13 11 1 -0 10 8 12 10 8 12 1 -"Mesh5" 0 5 -0 -0 -0 -"Mesh6" 0 6 -8 -0 -0.397708 3.390891 -0.305647 0.000000 0.000000 0 -0 -0.822759 2.790891 -0.525648 0.000000 0.000000 0 -0 -0.439421 3.841631 -0.183988 0.000000 0.000000 0 -0 0.439421 3.841631 -0.183988 0.000000 0.000000 0 -0 0.822759 2.790891 -0.525648 0.000000 0.000000 0 -0 0.397708 3.390891 -0.305647 0.000000 0.000000 0 -0 0.686907 3.481631 0.156012 0.000000 0.000000 0 -0 -0.686907 3.481631 0.156012 0.000000 0.000000 0 -8 --0.107916 0.367576 -0.919374 --0.346475 0.536042 -0.769814 --0.640015 0.296587 -0.701555 -0.630878 0.304882 -0.705029 -0.346475 0.536042 -0.769814 -0.107916 0.367576 -0.919374 -0.522037 0.776979 -0.137417 --0.544480 0.753667 -0.113465 -4 -0 0 2 1 0 2 1 1 -0 3 5 4 3 5 4 1 -0 3 4 6 3 4 6 1 -0 1 2 7 1 2 7 1 -"Mesh7" 0 7 -22 -0 0.664304 -2.078995 0.612997 0.000000 0.000000 3 -0 0.664305 -2.078996 -0.404642 0.000000 0.000000 3 -0 0.410983 -0.354429 -0.010012 0.000000 0.000000 3 -0 0.196745 -0.364712 0.387854 0.000000 0.000000 3 -0 -0.113217 -0.364712 0.387854 0.000000 0.000000 3 -0 -0.234043 -2.078996 0.640869 0.000000 0.000000 3 -0 0.196746 -0.358373 -0.335176 0.000000 0.000000 3 -0 -0.234042 -2.078996 -0.488259 0.000000 0.000000 3 -0 -0.338144 -0.354431 -0.010012 0.000000 0.000000 3 -0 -0.547100 -2.078996 0.064164 0.000000 0.000000 3 -0 -0.113217 -0.358373 -0.335176 0.000000 0.000000 3 -0 0.234042 -2.078996 -0.488259 0.000000 0.000000 10 -0 0.547100 -2.078996 0.064164 0.000000 0.000000 10 -0 0.338143 -0.354431 -0.010012 0.000000 0.000000 10 -0 0.113216 -0.358373 -0.335176 0.000000 0.000000 10 -0 -0.410984 -0.354429 -0.010012 0.000000 0.000000 10 -0 -0.664305 -2.078996 -0.404641 0.000000 0.000000 10 -0 -0.664304 -2.078995 0.612997 0.000000 0.000000 10 -0 0.234042 -2.078996 0.640869 0.000000 0.000000 10 -0 0.113217 -0.364712 0.387854 0.000000 0.000000 10 -0 -0.196745 -0.364712 0.387854 0.000000 0.000000 10 -0 -0.196746 -0.358373 -0.335176 0.000000 0.000000 10 -22 -0.319957 -0.374168 0.237971 -0.313655 -0.398162 -0.233925 -0.990212 0.134542 -0.037116 -0.332274 0.139139 0.932864 --0.600140 0.079851 0.795899 --0.103181 -0.409773 0.375746 -0.322630 0.078499 -0.943264 --0.088491 -0.437711 -0.366574 --0.985895 0.046257 -0.160843 --0.376146 -0.421334 -0.007982 --0.475675 0.048431 -0.878287 -0.088491 -0.437711 -0.366574 -0.376146 -0.421334 -0.007982 -0.985895 0.046257 -0.160843 -0.475675 0.048431 -0.878287 --0.990212 0.134542 -0.037116 --0.313656 -0.398162 -0.233925 --0.319958 -0.374168 0.237971 -0.103181 -0.409773 0.375746 -0.600140 0.079851 0.795899 --0.332274 0.139139 0.932864 --0.322630 0.078499 -0.943264 -22 -0 0 2 1 0 2 1 1 -0 3 5 4 3 5 4 1 -0 1 2 6 1 2 6 1 -0 6 7 1 6 7 1 1 -0 4 9 8 4 9 8 1 -0 4 5 9 4 5 9 1 -0 8 7 10 8 7 10 1 -0 8 9 7 8 9 7 1 -0 2 0 3 2 0 3 1 -0 7 6 10 7 6 10 1 -0 5 3 0 5 3 0 1 -0 15 17 16 15 17 16 1 -0 18 20 19 18 20 19 1 -0 15 16 21 15 16 21 1 -0 11 21 16 11 21 16 1 -0 18 13 12 18 13 12 1 -0 18 19 13 18 19 13 1 -0 12 14 11 12 14 11 1 -0 12 13 14 12 13 14 1 -0 17 15 20 17 15 20 1 -0 21 11 14 21 11 14 1 -0 20 18 17 20 18 17 1 -"Mesh8" 0 8 -12 -0 0.062993 -1.929023 0.023404 0.000000 0.000000 3 -0 -0.234042 -2.078996 -0.488259 0.000000 0.000000 3 -0 0.664305 -2.078996 -0.404642 0.000000 0.000000 3 -0 0.664304 -2.078995 0.612997 0.000000 0.000000 3 -0 -0.234043 -2.078996 0.640869 0.000000 0.000000 3 -0 -0.547100 -2.078996 0.064164 0.000000 0.000000 3 -0 0.234042 -2.078996 0.640869 0.000000 0.000000 10 -0 -0.664304 -2.078995 0.612997 0.000000 0.000000 10 -0 0.547100 -2.078996 0.064164 0.000000 0.000000 10 -0 -0.664305 -2.078996 -0.404641 0.000000 0.000000 10 -0 0.234042 -2.078996 -0.488259 0.000000 0.000000 10 -0 -0.062993 -1.929023 0.023404 0.000000 0.000000 10 -12 -0.040866 -0.999056 0.014728 --0.088491 -0.437711 -0.366574 -0.313655 -0.398162 -0.233925 -0.319957 -0.374168 0.237971 --0.103181 -0.409773 0.375746 --0.376146 -0.421334 -0.007982 -0.103181 -0.409773 0.375746 --0.319958 -0.374168 0.237971 -0.376146 -0.421334 -0.007982 --0.313656 -0.398162 -0.233925 -0.088491 -0.437711 -0.366574 --0.040866 -0.999056 0.014728 -10 -0 0 2 1 0 2 1 1 -0 3 0 4 3 0 4 1 -0 4 0 5 4 0 5 1 -0 0 1 5 0 1 5 1 -0 0 3 2 0 3 2 1 -0 9 11 10 9 11 10 1 -0 11 7 6 11 7 6 1 -0 11 6 8 11 6 8 1 -0 10 11 8 10 11 8 1 -0 7 11 9 7 11 9 1 -"Mesh9" 0 9 -16 -0 -0.686907 3.481631 0.156012 0.000000 0.000000 0 -0 -0.363915 3.479675 0.678736 0.000000 0.000000 0 -0 0.363915 3.479675 0.678736 0.000000 0.000000 0 -0 0.686907 3.481631 0.156012 0.000000 0.000000 0 -0 -0.363915 3.479675 0.678736 0.000000 0.000000 0 -0 0.000000 3.408501 0.854464 0.000000 0.000000 0 -0 0.000000 3.408501 0.854464 0.000000 0.000000 0 -0 0.363915 3.479675 0.678736 0.000000 0.000000 0 -0 0.439421 3.841631 -0.183988 0.000000 0.000000 0 -0 -0.439421 3.841631 -0.183988 0.000000 0.000000 0 -0 -0.274758 1.010559 0.526385 0.000000 0.000000 9 -0 0.000000 1.027653 0.641611 0.000000 0.000000 9 -0 0.000000 1.027653 0.641611 0.000000 0.000000 9 -0 -0.274758 1.010559 0.526385 0.000000 0.000000 9 -0 0.276020 1.006419 0.529126 0.000000 0.000000 9 -0 0.276020 1.006419 0.529126 0.000000 0.000000 9 -16 --0.544480 0.753667 -0.113465 --0.518185 0.438119 0.653453 -0.461129 0.532571 0.613401 -0.522037 0.776979 -0.137417 --0.518185 0.438119 0.653453 --0.000561 0.351372 0.933339 --0.000561 0.351372 0.933339 -0.461129 0.532571 0.613401 -0.630878 0.304882 -0.705029 --0.640015 0.296587 -0.701555 --0.730451 0.321155 0.602745 --0.003008 0.290770 0.956788 --0.003008 0.290770 0.956788 --0.730451 0.321155 0.602745 -0.729400 0.321783 0.603681 -0.729400 0.321783 0.603681 -8 -0 0 13 1 0 13 1 1 -0 14 3 2 14 3 2 1 -0 10 5 4 10 5 4 1 -0 6 15 7 6 15 7 1 -0 14 8 3 14 8 3 1 -0 9 13 0 9 13 0 1 -0 15 6 11 15 6 11 1 -0 5 10 12 5 10 12 1 -"Mesh10" 0 10 -47 -0 -1.194506 0.135747 -0.054929 0.444758 0.035630 2 -0 -0.777975 -0.101214 -0.817555 0.693198 0.037852 2 -0 0.000000 0.391252 0.771868 0.016729 0.036605 2 -0 -0.393550 -1.911557 1.098285 0.195799 0.834439 2 -0 -1.031208 -0.890798 -0.877528 0.734842 0.297466 2 -0 0.880411 0.337969 0.519447 0.271821 0.037828 2 -0 1.072816 -0.850921 1.142206 0.270848 0.534985 2 -0 -0.306832 -1.905185 -0.851208 0.915985 0.578331 2 -0 0.000000 -1.896330 1.189440 0.019111 0.843750 2 -0 0.393550 -1.911557 1.098285 0.199509 0.834439 2 -0 0.464121 -1.108399 1.351545 0.147892 0.622033 2 -0 0.464121 -1.108399 1.351545 0.147892 0.622033 2 -0 0.393550 -1.911557 1.098285 0.199509 0.834439 2 -0 1.072816 -0.850921 1.142206 0.270848 0.534985 2 -0 0.000000 -1.902875 -0.868898 0.975759 0.559896 2 -0 -0.393550 -1.911557 1.098285 0.074754 0.578125 2 -0 -1.072816 -0.850921 1.142206 0.210585 0.601786 2 -0 -1.584955 -0.736982 0.189173 0.482309 0.578125 2 -0 -1.031208 -0.890798 -0.877528 0.767731 0.837275 2 -0 -0.306832 -1.905185 -0.851208 0.788487 0.621906 2 -0 -1.031208 -0.890798 -0.877528 0.788487 0.621906 2 -0 1.072816 -0.850921 1.142206 0.270848 0.534985 2 -0 0.880411 0.337969 0.519447 0.271821 0.037828 2 -0 0.000000 -0.477181 1.354243 0.016169 0.404749 2 -0 -1.584955 -0.736982 0.189173 0.485424 0.379201 2 -0 -1.072816 -0.850921 1.142206 0.271594 0.534985 2 -0 -0.880411 0.337969 0.519447 0.267529 0.035638 2 -0 1.031208 -0.890798 -0.877528 0.728367 0.297466 2 -0 0.000000 -1.030798 -0.877528 0.979492 0.297466 2 -0 0.000000 -0.166132 -0.880222 0.978347 0.037123 2 -0 1.194506 0.135747 -0.054929 0.451043 0.035630 2 -0 1.072816 -0.850921 1.142206 0.261243 0.601786 2 -0 0.393550 -1.911557 1.098285 0.141939 0.578125 2 -0 1.584955 -0.736982 0.189174 0.480027 0.578125 2 -0 1.031208 -0.890798 -0.877528 0.742003 0.621906 2 -0 0.306833 -1.905185 -0.851208 0.722630 0.837275 2 -0 1.584955 -0.736982 0.189174 0.482024 0.379201 2 -0 0.777975 -0.101214 -0.817555 0.681770 0.035662 2 -0 -0.443115 -1.122351 1.354043 0.141962 0.626811 2 -0 0.306833 -1.905185 -0.851208 0.903262 0.580521 2 -0 -0.335428 -0.597848 -1.076372 0.953142 0.842145 7 -0 -0.364645 -0.584289 0.850605 0.234289 0.833859 7 -0 -0.335428 -0.597848 -1.076372 0.767731 0.837275 7 -0 -0.866028 -0.577848 -0.043472 0.481255 0.832237 7 -0 0.866028 -0.577848 -0.043472 0.479767 0.832237 14 -0 0.335428 -0.597848 -1.076372 0.722630 0.837275 14 -0 0.364645 -0.584289 0.850606 0.283505 0.833859 14 -47 --0.923159 0.354679 -0.146491 --0.540988 0.230570 -0.804389 -0.000000 0.481293 0.874376 -0.137698 -0.382250 0.601985 --0.433903 0.037737 -0.888110 -0.542478 0.430831 0.712553 -0.498618 0.147946 0.849238 -0.349050 -0.210020 -0.604129 -0.002057 -0.582340 0.327273 --0.046689 -0.367887 0.660801 -0.190132 -0.143910 0.971154 -0.190132 -0.143910 0.971154 --0.046689 -0.367887 0.660801 -0.498618 0.147946 0.849238 -0.000000 -0.459791 -0.292329 -0.137698 -0.382250 0.601985 --0.503646 0.094686 0.852371 --0.960500 0.215061 -0.025323 --0.433903 0.037737 -0.888110 -0.349050 -0.210020 -0.604129 --0.433903 0.037737 -0.888110 -0.498618 0.147946 0.849238 -0.542478 0.430831 0.712553 -0.002550 0.290667 0.956821 --0.960500 0.215061 -0.025323 --0.503646 0.094686 0.852371 --0.525598 0.409890 0.738066 -0.388192 0.053857 -0.906722 -0.000000 -0.013913 -0.999903 -0.000304 0.095868 -0.994220 -0.923158 0.354679 -0.146491 -0.498618 0.147946 0.849238 --0.046689 -0.367887 0.660801 -0.960500 0.215060 -0.025323 -0.388192 0.053857 -0.906722 --0.290884 -0.252369 -0.552067 -0.960500 0.215060 -0.025323 -0.540988 0.230570 -0.804389 --0.184083 -0.146680 0.971905 --0.290884 -0.252369 -0.552067 --0.541833 -0.034041 -0.839797 --0.507158 -0.095694 0.856524 --0.541833 -0.034041 -0.839797 --0.998774 -0.047816 0.012842 -0.998774 -0.047816 0.012842 -0.541833 -0.034041 -0.839797 -0.507158 -0.095694 0.856524 -40 -0 21 23 22 21 23 22 1 -0 24 26 25 24 26 25 1 -0 27 29 28 27 29 28 1 -0 30 37 36 30 37 36 1 -0 25 23 38 25 23 38 1 -0 28 39 27 28 39 27 1 -0 24 1 0 24 1 0 1 -0 23 26 2 23 26 2 1 -0 25 38 3 25 38 3 1 -0 29 4 28 29 4 28 1 -0 29 27 37 29 27 37 1 -0 4 29 1 4 29 1 1 -0 36 37 27 36 37 27 1 -0 5 36 6 5 36 6 1 -0 4 1 24 4 1 24 1 -0 7 28 4 7 28 4 1 -0 8 10 9 8 10 9 1 -0 11 13 12 11 13 12 1 -0 38 8 3 38 8 3 1 -0 8 38 23 8 38 23 1 -0 10 8 23 10 8 23 1 -0 22 23 2 22 23 2 1 -0 26 24 0 26 24 0 1 -0 36 5 30 36 5 30 1 -0 39 28 14 39 28 14 1 -0 28 7 14 28 7 14 1 -0 23 25 26 23 25 26 1 -0 23 21 10 23 21 10 1 -0 15 41 16 15 41 16 1 -0 42 17 43 42 17 43 1 -0 17 41 43 17 41 43 1 -0 40 19 18 40 19 18 1 -0 41 17 16 41 17 16 1 -0 17 42 20 17 42 20 1 -0 46 32 31 46 32 31 1 -0 33 45 44 33 45 44 1 -0 46 33 44 46 33 44 1 -0 34 35 45 34 35 45 1 -0 33 46 31 33 46 31 1 -0 45 33 34 45 33 34 1 -"Mesh11" 0 11 -137 -0 -0.886153 -0.230752 0.051582 0.274257 0.704626 1 -0 -0.783109 -0.998463 -0.836077 0.300507 0.941826 1 -0 0.000000 1.489511 1.565607 0.500000 0.173118 1 -0 -0.878152 -0.530458 2.253129 0.276295 0.797227 1 -0 -0.362042 -0.480253 0.499198 0.407772 0.781715 1 -0 -0.362042 -0.480253 0.499198 0.407772 0.781715 1 -0 -0.878152 -0.530458 2.253129 0.276295 0.797227 1 -0 -0.985623 0.139319 1.006775 0.248918 0.590285 1 -0 0.362042 -0.480253 0.499198 0.592228 0.781715 1 -0 0.000000 1.489511 1.565607 0.500000 0.173118 1 -0 -0.004119 -1.052796 1.284397 0.498951 0.958613 1 -0 0.000000 -0.372766 0.661887 0.500000 0.748505 1 -0 0.362042 -0.480253 0.499198 0.592228 0.781715 1 -0 -0.004119 -1.052796 1.284397 0.498951 0.958613 1 -0 0.000000 1.489511 1.565607 0.500000 0.173118 1 -0 0.362042 -0.480253 0.499198 0.592228 0.781715 1 -0 0.878152 -0.530458 2.253129 0.723705 0.797227 1 -0 1.901415 0.083200 1.050713 0.984375 0.607624 1 -0 1.193750 1.294478 0.208142 0.804101 0.233376 1 -0 0.886153 -0.230752 0.051583 0.725743 0.704626 1 -0 0.842739 0.261846 -0.639799 0.714684 0.552428 1 -0 1.462760 -0.964313 -0.149935 0.872630 0.931275 1 -0 1.462760 -0.964313 -0.149935 0.872630 0.931275 1 -0 0.842739 0.261846 -0.639799 0.714684 0.552428 1 -0 1.193750 1.294478 0.208142 0.804101 0.233376 1 -0 1.023243 0.143075 0.525874 0.760665 0.589125 1 -0 1.416844 0.277052 0.741539 0.860933 0.547729 1 -0 1.416844 0.277052 0.741539 0.860933 0.547729 1 -0 0.878152 -0.530458 2.253129 0.723705 0.797227 1 -0 0.362042 -0.480253 0.499198 0.592228 0.781715 1 -0 0.985623 0.139319 1.006775 0.751082 0.590285 1 -0 -1.462760 -0.964313 -0.149935 0.127370 0.931275 1 -0 -0.886153 -0.230752 0.051582 0.274257 0.704626 1 -0 -1.023243 0.143075 0.525874 0.239335 0.589125 1 -0 0.985623 0.139319 1.006775 0.751082 0.590285 1 -0 1.023243 0.143075 0.525874 0.760665 0.589125 1 -0 1.569857 -1.002070 1.585700 0.899913 0.942940 1 -0 0.859116 1.573254 0.948896 0.718855 0.147243 1 -0 1.569857 -1.002070 1.585700 0.899913 0.942940 1 -0 1.023243 0.143075 0.525874 0.760665 0.589125 1 -0 1.416844 0.277052 0.741539 0.860933 0.547729 1 -0 1.569857 -1.002070 1.585700 0.899913 0.942940 1 -0 1.416844 0.277052 0.741539 0.860933 0.547729 1 -0 0.859116 1.573254 0.948896 0.718855 0.147243 1 -0 0.886153 -0.230752 0.051583 0.725743 0.704626 1 -0 1.250380 -1.136176 0.544999 0.818528 0.984375 1 -0 0.362042 -0.480253 0.499198 0.592228 0.781715 1 -0 1.250380 -1.136176 0.544999 0.818528 0.984375 1 -0 0.886153 -0.230752 0.051583 0.725743 0.704626 1 -0 1.023243 0.143075 0.525874 0.760665 0.589125 1 -0 0.985623 0.139319 1.006775 0.751082 0.590285 1 -0 0.362042 -0.480253 0.499198 0.592228 0.781715 1 -0 1.250380 -1.136176 0.544999 0.818528 0.984375 1 -0 0.985623 0.139319 1.006775 0.751082 0.590285 1 -0 0.682073 -0.376739 -0.272759 0.673754 0.749732 1 -0 0.842739 0.261846 -0.639799 0.714684 0.552428 1 -0 0.783109 -0.998463 -0.836077 0.699493 0.941826 1 -0 0.783109 -0.998463 -0.836077 0.699493 0.941826 1 -0 0.842739 0.261846 -0.639799 0.714684 0.552428 1 -0 0.886153 -0.230752 0.051583 0.725743 0.704626 1 -0 0.362042 -0.480253 0.499198 0.592228 0.781715 1 -0 0.362042 -0.480253 0.499198 0.592228 0.781715 1 -0 -0.362042 -0.480253 0.499198 0.407772 0.781715 1 -0 -0.362042 -0.480253 0.499198 0.407772 0.781715 1 -0 -0.783109 -0.998463 -0.836077 0.300507 0.941826 1 -0 -0.682073 -0.376739 -0.272759 0.326246 0.749732 1 -0 0.859116 1.573254 0.948896 0.718855 0.147243 1 -0 1.416844 0.277052 0.741539 0.860933 0.547729 1 -0 1.901415 0.083200 1.050713 0.984375 0.607624 1 -0 1.193750 1.294478 0.208142 0.804101 0.233376 1 -0 1.901415 0.083200 1.050713 0.984375 0.607624 1 -0 1.416844 0.277052 0.741539 0.860933 0.547729 1 -0 -1.416844 0.277052 0.741538 0.139067 0.547729 1 -0 0.804510 1.794756 0.328791 0.704945 0.078806 1 -0 0.842739 0.261846 -0.639799 0.714684 0.552428 1 -0 0.727549 0.905193 -0.942151 0.685339 0.353654 1 -0 1.487180 -0.018091 -1.266361 0.878851 0.638920 1 -0 1.193750 1.294478 0.208142 0.804101 0.233376 1 -0 0.842739 0.261846 -0.639799 0.714684 0.552428 1 -0 1.487180 -0.018091 -1.266361 0.878851 0.638920 1 -0 1.487180 -0.018091 -1.266361 0.878851 0.638920 1 -0 -1.193750 1.294478 0.208142 0.195899 0.233376 1 -0 -1.462760 -0.964313 -0.149935 0.127370 0.931275 1 -0 -1.416844 0.277052 0.741538 0.139067 0.547729 1 -0 -0.842739 0.261846 -0.639800 0.285317 0.552428 1 -0 -1.416844 0.277052 0.741538 0.139067 0.547729 1 -0 -1.569857 -1.002070 1.585699 0.100087 0.942940 1 -0 -0.859116 1.573254 0.948896 0.281145 0.147243 1 -0 -0.859116 1.573254 0.948896 0.281145 0.147243 1 -0 -1.569857 -1.002070 1.585699 0.100087 0.942940 1 -0 -0.985623 0.139319 1.006775 0.248918 0.590285 1 -0 -1.250380 -1.136176 0.544999 0.181472 0.984375 1 -0 -0.985623 0.139319 1.006775 0.248918 0.590285 1 -0 -1.023243 0.143075 0.525874 0.239335 0.589125 1 -0 -0.886153 -0.230752 0.051582 0.274257 0.704626 1 -0 -0.842739 0.261846 -0.639800 0.285317 0.552428 1 -0 -0.842739 0.261846 -0.639800 0.285317 0.552428 1 -0 -1.416844 0.277052 0.741538 0.139067 0.547729 1 -0 -1.023243 0.143075 0.525874 0.239335 0.589125 1 -0 -1.569857 -1.002070 1.585699 0.100087 0.942940 1 -0 -1.023243 0.143075 0.525874 0.239335 0.589125 1 -0 -0.362042 -0.480253 0.499198 0.407772 0.781715 1 -0 -0.004119 -1.052796 1.284397 0.498951 0.958613 1 -0 0.000000 1.489511 1.565607 0.500000 0.173118 1 -0 -0.842739 0.261846 -0.639800 0.285317 0.552428 1 -0 0.859116 1.573254 0.948896 0.718855 0.147243 1 -0 0.000000 1.948674 0.851559 0.500000 0.031250 1 -0 0.000000 1.489511 1.565607 0.500000 0.173118 1 -0 0.000000 1.658841 -0.864322 0.500000 0.120800 1 -0 0.000000 1.463187 -1.018152 0.500000 0.181251 1 -0 -0.580322 1.466269 -0.901468 0.352166 0.180299 1 -0 0.580322 1.466269 -0.901468 0.647834 0.180299 1 -0 -0.859116 1.573254 0.948896 0.281145 0.147243 1 -0 -1.416844 0.277052 0.741538 0.139067 0.547729 1 -0 -0.859116 1.573254 0.948896 0.281145 0.147243 1 -0 -1.901415 0.083200 1.050713 0.015625 0.607624 1 -0 -1.416844 0.277052 0.741538 0.139067 0.547729 1 -0 -1.901415 0.083200 1.050713 0.015625 0.607624 1 -0 -1.193750 1.294478 0.208142 0.195899 0.233376 1 -0 -1.193750 1.294478 0.208142 0.195899 0.233376 1 -0 -1.901415 0.083200 1.050713 0.015625 0.607624 1 -0 0.000000 1.922695 -0.208606 0.500000 0.039276 1 -0 -0.727548 0.905193 -0.942151 0.314661 0.353654 1 -0 -1.487180 -0.018091 -1.266361 0.121149 0.638920 1 -0 -0.804510 1.794756 0.328791 0.295055 0.078806 1 -0 -0.842739 0.261846 -0.639800 0.285317 0.552428 1 -0 -1.193750 1.294478 0.208142 0.195899 0.233376 1 -0 -1.487180 -0.018091 -1.266361 0.121149 0.638920 1 -0 -0.842739 0.261846 -0.639800 0.285317 0.552428 1 -0 -1.487180 -0.018091 -1.266361 0.121149 0.638920 1 -0 -1.250380 -1.136176 0.544999 0.181472 0.984375 1 -0 -0.886153 -0.230752 0.051582 0.274257 0.704626 1 -0 -0.362042 -0.480253 0.499198 0.407772 0.781715 1 -0 -1.250380 -1.136176 0.544999 0.181472 0.984375 1 -0 -0.362042 -0.480253 0.499198 0.407772 0.781715 1 -0 -0.985623 0.139319 1.006775 0.248918 0.590285 1 -0 -0.362042 -0.480253 0.499198 0.407772 0.781715 1 -137 --0.372779 -0.905068 -0.204664 -0.425870 -0.734467 -0.528386 --0.000623 0.432152 0.901801 --0.814393 -0.203599 0.543426 -0.165215 -0.973809 0.009784 -0.165215 -0.973809 0.009784 --0.814393 -0.203599 0.543426 --0.394276 -0.594413 0.700871 --0.166026 -0.973642 0.010706 --0.000623 0.432152 0.901801 --0.002113 -0.926791 -0.375573 --0.000078 -0.816895 -0.226373 --0.166026 -0.973642 0.010706 --0.002113 -0.926791 -0.375573 --0.000623 0.432152 0.901801 --0.166026 -0.973642 0.010706 -0.814393 -0.203599 0.543426 -0.968569 -0.248188 0.016621 -0.939011 0.274844 -0.206687 -0.372779 -0.905068 -0.204664 --0.028957 -0.671584 -0.621735 -0.166440 -0.951520 0.258665 -0.166440 -0.951520 0.258665 --0.028957 -0.671584 -0.621735 -0.939011 0.274844 -0.206687 -0.413488 -0.897919 0.150895 -0.842783 -0.536229 0.046641 -0.842783 -0.536229 0.046641 -0.814393 -0.203599 0.543426 --0.166026 -0.973642 0.010706 -0.394276 -0.594413 0.700871 --0.166440 -0.951520 0.258665 --0.372779 -0.905068 -0.204664 --0.413488 -0.897919 0.150895 -0.394276 -0.594413 0.700871 -0.413488 -0.897919 0.150895 --0.278487 -0.910856 0.304607 -0.550128 0.559984 0.619498 --0.278487 -0.910856 0.304607 -0.413488 -0.897919 0.150895 -0.842783 -0.536229 0.046641 --0.278487 -0.910856 0.304607 -0.842783 -0.536229 0.046641 -0.550128 0.559984 0.619498 -0.372779 -0.905068 -0.204664 -0.883472 -0.447692 -0.138018 --0.166026 -0.973642 0.010706 -0.883472 -0.447692 -0.138018 -0.372779 -0.905068 -0.204664 -0.413488 -0.897919 0.150895 -0.394276 -0.594413 0.700871 --0.166026 -0.973642 0.010706 -0.883472 -0.447692 -0.138018 -0.394276 -0.594413 0.700871 --0.077119 -0.241877 -0.187145 --0.028957 -0.671584 -0.621735 --0.425870 -0.734467 -0.528387 --0.425870 -0.734467 -0.528387 --0.028957 -0.671584 -0.621735 -0.372779 -0.905068 -0.204664 --0.166026 -0.973642 0.010706 --0.166026 -0.973642 0.010706 -0.165215 -0.973809 0.009784 -0.165215 -0.973809 0.009784 -0.425870 -0.734467 -0.528386 -0.077119 -0.241877 -0.187145 -0.550128 0.559984 0.619498 -0.842783 -0.536229 0.046641 -0.968569 -0.248188 0.016621 -0.939011 0.274844 -0.206687 -0.968569 -0.248188 0.016621 -0.842783 -0.536229 0.046641 --0.842783 -0.536229 0.046641 -0.513503 0.857036 -0.042469 --0.028957 -0.671584 -0.621735 --0.020030 -0.134501 -0.927447 --0.038739 -0.441320 -0.896513 -0.939011 0.274844 -0.206687 --0.028957 -0.671584 -0.621735 --0.038739 -0.441320 -0.896513 --0.038739 -0.441320 -0.896513 --0.939011 0.274844 -0.206687 --0.166440 -0.951520 0.258665 --0.842783 -0.536229 0.046641 -0.028957 -0.671584 -0.621735 --0.842783 -0.536229 0.046641 -0.278487 -0.910856 0.304608 --0.550128 0.559984 0.619497 --0.550128 0.559984 0.619497 -0.278487 -0.910856 0.304608 --0.394276 -0.594413 0.700871 --0.883472 -0.447692 -0.138018 --0.394276 -0.594413 0.700871 --0.413488 -0.897919 0.150895 --0.372779 -0.905068 -0.204664 -0.028957 -0.671584 -0.621735 -0.028957 -0.671584 -0.621735 --0.842783 -0.536229 0.046641 --0.413488 -0.897919 0.150895 -0.278487 -0.910856 0.304608 --0.413488 -0.897919 0.150895 -0.165215 -0.973809 0.009784 --0.002113 -0.926791 -0.375573 --0.000623 0.432152 0.901801 -0.028957 -0.671584 -0.621735 -0.550128 0.559984 0.619498 -0.000000 0.960175 0.279399 --0.000623 0.432152 0.901801 -0.000000 0.797816 -0.602901 -0.000000 0.249672 -0.958009 --0.349193 0.636211 -0.687968 -0.349193 0.636211 -0.687968 --0.550128 0.559984 0.619497 --0.842783 -0.536229 0.046641 --0.550128 0.559984 0.619497 --0.968569 -0.248188 0.016621 --0.842783 -0.536229 0.046641 --0.968569 -0.248188 0.016621 --0.939011 0.274844 -0.206687 --0.939011 0.274844 -0.206687 --0.968569 -0.248188 0.016621 -0.000000 0.970845 -0.239707 -0.020030 -0.134501 -0.927447 -0.038740 -0.441320 -0.896513 --0.513503 0.857036 -0.042469 -0.028957 -0.671584 -0.621735 --0.939011 0.274844 -0.206687 -0.038740 -0.441320 -0.896513 -0.028957 -0.671584 -0.621735 -0.038740 -0.441320 -0.896513 --0.883472 -0.447692 -0.138018 --0.372779 -0.905068 -0.204664 -0.165215 -0.973809 0.009784 --0.883472 -0.447692 -0.138018 -0.165215 -0.973809 0.009784 --0.394276 -0.594413 0.700871 -0.165215 -0.973809 0.009784 -78 -0 105 107 106 105 107 106 1 -0 108 110 109 108 110 109 1 -0 111 108 109 111 108 109 1 -0 106 107 112 106 107 112 1 -0 113 115 114 113 115 114 1 -0 116 118 117 116 118 117 1 -0 112 120 119 112 120 119 1 -0 110 108 121 110 108 121 1 -0 122 110 123 122 110 123 1 -0 121 124 110 121 124 110 1 -0 122 123 125 122 123 125 1 -0 126 128 127 126 128 127 1 -0 124 119 110 124 119 110 1 -0 119 129 110 119 129 110 1 -0 130 132 131 130 132 131 1 -0 133 135 134 133 135 134 1 -0 136 1 0 136 1 0 1 -0 124 112 119 124 112 119 1 -0 124 106 112 124 106 112 1 -0 2 4 3 2 4 3 1 -0 5 7 6 5 7 6 1 -0 8 10 9 8 10 9 1 -0 11 13 12 11 13 12 1 -0 14 16 15 14 16 15 1 -0 17 105 18 17 105 18 1 -0 108 111 121 108 111 121 1 -0 109 110 122 109 110 122 1 -0 19 21 20 19 21 20 1 -0 22 24 23 22 24 23 1 -0 19 25 21 19 25 21 1 -0 25 26 21 25 26 21 1 -0 27 24 22 27 24 22 1 -0 28 30 29 28 30 29 1 -0 31 33 32 31 33 32 1 -0 28 107 105 28 107 105 1 -0 105 30 28 105 30 28 1 -0 34 36 35 34 36 35 1 -0 34 37 36 34 37 36 1 -0 38 40 39 38 40 39 1 -0 41 43 42 41 43 42 1 -0 44 46 45 44 46 45 1 -0 47 49 48 47 49 48 1 -0 50 52 51 50 52 51 1 -0 53 49 47 53 49 47 1 -0 54 56 55 54 56 55 1 -0 57 59 58 57 59 58 1 -0 57 60 59 57 60 59 1 -0 56 54 61 56 54 61 1 -0 62 13 11 62 13 11 1 -0 63 65 64 63 65 64 1 -0 66 68 67 66 68 67 1 -0 69 71 70 69 71 70 1 -0 72 33 31 72 33 31 1 -0 111 73 121 111 73 121 1 -0 74 76 75 74 76 75 1 -0 77 79 78 77 79 78 1 -0 111 18 73 111 18 73 1 -0 111 80 18 111 80 18 1 -0 111 75 76 111 75 76 1 -0 6 112 107 6 112 107 1 -0 81 83 82 81 83 82 1 -0 84 81 82 84 81 82 1 -0 85 87 86 85 87 86 1 -0 88 90 89 88 90 89 1 -0 91 93 92 91 93 92 1 -0 93 91 94 93 91 94 1 -0 111 109 75 111 109 75 1 -0 95 64 65 95 64 65 1 -0 106 73 105 106 73 105 1 -0 73 106 121 73 106 121 1 -0 18 105 73 18 105 73 1 -0 124 121 106 124 121 106 1 -0 96 0 1 96 0 1 1 -0 97 99 98 97 99 98 1 -0 90 100 89 90 100 89 1 -0 101 103 102 101 103 102 1 -0 7 112 6 7 112 6 1 -0 104 31 32 104 31 32 1 -"Mesh12" 0 12 -28 -0 -0.227573 -0.745417 -0.846585 0.368828 0.944980 1 -0 -0.177951 0.006379 -1.056071 0.397430 0.632885 1 -0 0.000000 -0.123787 -1.086885 0.500000 0.686921 1 -0 0.177951 0.006379 -1.056071 0.602570 0.632885 1 -0 0.227573 -0.745417 -0.846585 0.631171 0.944980 1 -0 0.000000 -0.798627 -0.889186 0.500000 0.967070 1 -0 0.000000 -0.809045 -0.806172 0.500000 0.971395 1 -0 0.000000 -0.798627 -0.889186 0.500000 0.967070 1 -0 0.000000 1.463187 -1.018152 0.500000 0.028116 1 -0 0.000000 0.848458 -1.088206 0.500000 0.283310 1 -0 -0.727548 0.905193 -0.942151 0.080646 0.259757 1 -0 0.000000 0.404704 -1.032928 0.500000 0.467527 1 -0 0.000000 0.058200 -1.258116 0.500000 0.611373 1 -0 0.000000 -0.023539 -1.251963 0.500000 0.645305 1 -0 0.000000 0.058200 -1.258116 0.500000 0.611373 1 -0 0.000000 -0.023539 -1.251963 0.500000 0.645305 1 -0 -0.685147 0.591742 -0.864188 0.105086 0.389881 1 -0 -0.842739 0.261846 -0.639800 0.014251 0.526833 1 -0 0.727549 0.905193 -0.942151 0.919354 0.259757 1 -0 -0.681749 -0.193291 -0.866552 0.107045 0.715775 1 -0 -0.682073 -0.376739 -0.272759 0.106857 0.791931 1 -0 -0.362042 -0.480253 0.499198 0.291321 0.834902 1 -0 0.000000 -0.372766 0.661887 0.500000 0.790281 1 -0 0.682073 -0.376739 -0.272759 0.893142 0.791931 1 -0 0.362042 -0.480253 0.499198 0.708678 0.834902 1 -0 0.681749 -0.193291 -0.866552 0.892955 0.715775 1 -0 0.685147 0.591742 -0.864188 0.894914 0.389881 1 -0 0.842739 0.261846 -0.639799 0.985749 0.526833 1 -28 --0.469043 -0.727887 -0.500179 --0.506590 -0.112495 -0.854817 -0.000000 -0.467938 -0.883761 -0.506590 -0.112495 -0.854817 -0.469043 -0.727887 -0.500179 -0.000000 -0.760897 -0.648873 -0.000000 -0.993858 0.110660 -0.000000 -0.760897 -0.648873 -0.000000 0.249672 -0.958009 -0.000000 -0.093703 -0.995600 -0.020030 -0.134501 -0.927447 -0.000000 0.155257 -0.987874 -0.000000 0.247937 -0.968776 -0.000000 -0.564686 -0.825306 -0.000000 0.247937 -0.968776 -0.000000 -0.564686 -0.825306 --0.419667 -0.088772 -0.903327 -0.028957 -0.671584 -0.621735 --0.020030 -0.134501 -0.927447 --0.725534 -0.269561 -0.633196 -0.077119 -0.241877 -0.187145 -0.165215 -0.973809 0.009784 --0.000078 -0.816895 -0.226373 --0.077119 -0.241877 -0.187145 --0.166026 -0.973642 0.010706 -0.725534 -0.269561 -0.633196 -0.419667 -0.088772 -0.903327 --0.028957 -0.671584 -0.621735 -38 -0 0 2 1 0 2 1 1 -0 2 4 3 2 4 3 1 -0 2 0 5 2 0 5 1 -0 6 7 0 6 7 0 1 -0 4 2 5 4 2 5 1 -0 7 6 4 7 6 4 1 -0 8 10 9 8 10 9 1 -0 1 12 11 1 12 11 1 -0 13 12 1 13 12 1 1 -0 2 13 1 2 13 1 1 -0 3 11 14 3 11 14 1 -0 15 2 3 15 2 3 1 -0 3 14 15 3 14 15 1 -0 16 10 17 16 10 17 1 -0 16 1 11 16 1 11 1 -0 10 16 9 10 16 9 1 -0 18 8 9 18 8 9 1 -0 9 16 11 9 16 11 1 -0 1 16 19 1 16 19 1 -0 16 17 19 16 17 19 1 -0 19 17 20 19 17 20 1 -0 19 20 0 19 20 0 1 -0 0 1 19 0 1 19 1 -0 21 22 6 21 22 6 1 -0 4 24 23 4 24 23 1 -0 6 22 24 6 22 24 1 -0 24 4 6 24 4 6 1 -0 21 6 0 21 6 0 1 -0 21 0 20 21 0 20 1 -0 4 23 25 4 23 25 1 -0 25 26 3 25 26 3 1 -0 4 25 3 4 25 3 1 -0 11 3 26 11 3 26 1 -0 26 18 9 26 18 9 1 -0 26 9 11 26 9 11 1 -0 25 23 27 25 23 27 1 -0 26 25 27 26 25 27 1 -0 18 26 27 18 26 27 1 -"Mesh13" 0 13 -76 -0 -0.784336 -0.956254 -0.911141 0.359379 0.818356 4 -0 -0.584865 -1.890058 -1.748553 0.050534 0.984375 4 -0 -0.759881 -1.890058 -0.373426 0.436102 0.984375 4 -0 -0.532906 -1.890058 0.417204 0.754836 0.984375 4 -0 0.308658 -1.890058 0.417204 0.754836 0.984375 4 -0 0.398180 -0.278400 1.188226 0.984375 0.697842 4 -0 0.533503 -0.543011 0.432861 0.759498 0.744886 4 -0 0.572854 -1.890058 -0.410566 0.425046 0.984375 4 -0 0.613319 -0.953208 -0.904598 0.361326 0.817815 4 -0 0.333146 -0.167800 -1.032022 0.323392 0.678179 4 -0 0.369726 -1.890058 -1.748553 0.050534 0.984375 4 -0 0.379630 -0.551851 -1.865813 0.015625 0.746458 4 -0 -0.555691 -0.278400 1.188226 0.984375 0.697842 4 -0 -0.522920 -1.890058 1.022283 0.934973 0.984375 4 -0 0.312594 -1.890058 1.022283 0.934973 0.984375 4 -0 -0.719043 -0.520549 0.433503 0.759689 0.740893 4 -0 -0.567018 -0.167800 -1.032022 0.323392 0.678179 4 -0 -0.562817 -0.551851 -1.865813 0.015625 0.746458 4 -0 -0.300118 -3.296625 0.864835 0.877156 0.260982 6 -0 0.464083 -3.360601 0.242992 0.573960 0.261337 6 -0 0.658098 -0.626807 0.307000 0.582100 0.033038 6 -0 -0.480241 -0.646807 -0.420736 0.015625 0.034825 6 -0 -0.480241 -0.646807 -0.420736 0.213052 0.034826 6 -0 0.273618 -3.403351 -0.313807 0.520855 0.534859 6 -0 0.329422 -3.295168 0.857831 0.816073 0.515625 6 -0 -0.300118 -3.296625 0.864835 0.818158 0.515884 6 -0 0.464083 -3.360601 0.242992 0.638986 0.527258 6 -0 -0.450804 -3.360601 0.242992 0.638986 0.527258 6 -0 -0.288267 -3.403351 -0.313807 0.520855 0.534859 6 -0 -0.288267 -3.403351 -0.313807 0.158702 0.261583 6 -0 -0.450804 -3.360601 0.242992 0.585585 0.261337 6 -0 -0.886693 -0.606808 0.307000 0.561791 0.031250 6 -0 0.343350 -0.646807 -0.420736 0.217183 0.034826 6 -0 0.273618 -3.403351 -0.313807 0.221384 0.261583 6 -0 -0.288267 -3.403351 -0.313807 0.015625 0.261575 6 -0 0.329422 -3.295168 0.857831 0.831973 0.260851 6 -0 0.267887 -0.643940 0.820243 0.853981 0.034570 6 -0 -0.455659 -0.623940 0.866643 0.828005 0.032782 6 -0 0.784336 -0.956254 -0.911141 0.359379 0.812822 11 -0 0.562818 -0.551851 -1.865813 0.015625 0.738528 11 -0 0.759881 -1.890058 -0.373426 0.436102 0.984375 11 -0 0.584865 -1.890058 -1.748553 0.050534 0.984375 11 -0 0.532906 -1.890058 0.417204 0.754836 0.984375 11 -0 -0.308658 -1.890058 0.417204 0.754836 0.984375 11 -0 -0.533503 -0.543011 0.432861 0.759497 0.736903 11 -0 -0.398181 -0.278400 1.188226 0.984375 0.688291 11 -0 -0.613319 -0.953208 -0.904598 0.361326 0.812263 11 -0 -0.572854 -1.890058 -0.410566 0.425046 0.984375 11 -0 -0.333146 -0.167800 -1.032022 0.323392 0.667972 11 -0 -0.379630 -0.551851 -1.865813 0.015625 0.738528 11 -0 -0.369726 -1.890058 -1.748553 0.050534 0.984375 11 -0 0.555690 -0.278400 1.188226 0.984375 0.688291 11 -0 -0.312594 -1.890058 1.022283 0.934973 0.984375 11 -0 0.522920 -1.890058 1.022283 0.934973 0.984375 11 -0 0.719043 -0.520549 0.433504 0.759689 0.732777 11 -0 0.567018 -0.167800 -1.032022 0.323392 0.667972 11 -0 -0.343350 -0.646807 -0.420736 0.217183 0.034826 13 -0 0.455659 -0.623940 0.866643 0.828005 0.032782 13 -0 -0.267887 -0.643940 0.820243 0.853981 0.034570 13 -0 -0.329422 -3.295168 0.857830 0.831973 0.260851 13 -0 0.300118 -3.296625 0.864835 0.877156 0.260982 13 -0 -0.658098 -0.626807 0.307000 0.582100 0.033038 13 -0 -0.464083 -3.360601 0.242992 0.573960 0.261337 13 -0 0.480241 -0.646807 -0.420736 0.015625 0.034825 13 -0 0.480241 -0.646807 -0.420736 0.213052 0.034826 13 -0 -0.273618 -3.403351 -0.313807 0.520855 0.519875 13 -0 0.450804 -3.360601 0.242992 0.638986 0.512021 13 -0 -0.329422 -3.295168 0.857830 0.816073 0.500000 13 -0 0.300118 -3.296625 0.864835 0.818158 0.500268 13 -0 -0.464083 -3.360601 0.242992 0.638986 0.512021 13 -0 0.288267 -3.403351 -0.313807 0.520855 0.519875 13 -0 0.886693 -0.606808 0.307000 0.561791 0.031250 13 -0 0.450804 -3.360601 0.242992 0.585585 0.261337 13 -0 0.288267 -3.403351 -0.313807 0.158702 0.261583 13 -0 0.288267 -3.403351 -0.313807 0.015625 0.261575 13 -0 -0.273618 -3.403351 -0.313807 0.221384 0.261583 13 -76 --0.992177 0.082536 -0.093657 --0.514430 -0.597259 -0.615340 --0.739554 -0.604872 0.295278 --0.280679 -0.600793 -0.328679 -0.541745 -0.633246 -0.552731 -0.516197 0.187088 0.835787 -0.994092 0.003380 -0.108484 -0.488649 -0.776699 0.397443 -0.990203 0.100394 -0.097048 -0.661128 0.642697 -0.387107 -0.723069 -0.458754 -0.516445 -0.545189 0.292610 -0.785588 --0.505994 0.081670 0.858662 --0.741162 -0.483041 0.466209 -0.514091 -0.639400 0.571732 --0.632394 -0.034278 -0.125494 --0.677293 0.586491 -0.444187 --0.549992 0.560441 -0.619204 --0.645723 0.136088 0.718726 -0.982504 0.082375 -0.066366 -0.995443 0.081996 0.048676 --0.532714 0.063372 -0.843919 --0.532714 0.063372 -0.843919 -0.527439 0.290609 -0.689456 -0.677346 0.140058 0.675161 --0.645723 0.136088 0.718726 -0.982504 0.082375 -0.066366 --0.975520 0.053905 -0.028964 --0.531558 0.146243 -0.756275 --0.531558 0.146243 -0.756275 --0.975520 0.053905 -0.028964 --0.496238 0.440567 0.008741 -0.560634 -0.077992 -0.824382 -0.527439 0.290609 -0.689456 --0.531558 0.146243 -0.756275 -0.677346 0.140058 0.675161 -0.473962 0.238448 0.847645 --0.424160 0.348019 0.836045 -0.992177 0.082536 -0.093657 -0.549992 0.560441 -0.619204 -0.739554 -0.604872 0.295278 -0.514430 -0.597259 -0.615340 -0.280679 -0.600793 -0.328679 --0.541745 -0.633246 -0.552732 --0.994092 0.003380 -0.108484 --0.516197 0.187088 0.835787 --0.990203 0.100394 -0.097048 --0.488649 -0.776699 0.397443 --0.661128 0.642697 -0.387107 --0.545189 0.292610 -0.785588 --0.723069 -0.458755 -0.516445 -0.505994 0.081670 0.858662 --0.514091 -0.639400 0.571732 -0.741162 -0.483041 0.466209 -0.632394 -0.034278 -0.125494 -0.677293 0.586491 -0.444187 --0.560634 -0.077992 -0.824382 -0.424160 0.348019 0.836045 --0.473963 0.238448 0.847645 --0.677346 0.140059 0.675161 -0.645723 0.136088 0.718726 --0.995443 0.081996 0.048676 --0.982504 0.082375 -0.066367 -0.532714 0.063372 -0.843919 -0.532714 0.063372 -0.843919 --0.527439 0.290609 -0.689456 -0.975520 0.053905 -0.028964 --0.677346 0.140059 0.675161 -0.645723 0.136088 0.718726 --0.982504 0.082375 -0.066367 -0.531558 0.146243 -0.756275 -0.496238 0.440567 0.008741 -0.975520 0.053905 -0.028964 -0.531558 0.146243 -0.756275 -0.531558 0.146243 -0.756275 --0.527439 0.290609 -0.689456 -88 -0 24 6 5 24 6 5 1 -0 7 6 8 7 6 8 1 -0 26 9 6 26 9 6 1 -0 9 8 6 9 8 6 1 -0 10 8 11 10 8 11 1 -0 25 5 12 25 5 12 1 -0 12 14 13 12 14 13 1 -0 15 25 12 15 25 12 1 -0 13 15 12 13 15 12 1 -0 27 16 28 27 16 28 1 -0 16 0 17 16 0 17 1 -0 1 0 2 1 0 2 1 -0 23 16 9 23 16 9 1 -0 9 17 11 9 17 11 1 -0 1 11 17 1 11 17 1 -0 15 2 0 15 2 0 1 -0 6 14 5 6 14 5 1 -0 9 26 23 9 26 23 1 -0 8 9 11 8 9 11 1 -0 8 10 7 8 10 7 1 -0 15 13 3 15 13 3 1 -0 14 6 4 14 6 4 1 -0 16 27 15 16 27 15 1 -0 0 16 15 0 16 15 1 -0 0 1 17 0 1 17 1 -0 5 25 24 5 25 24 1 -0 14 12 5 14 12 5 1 -0 16 23 28 16 23 28 1 -0 17 9 16 17 9 16 1 -0 11 1 10 11 1 10 1 -0 25 15 27 25 15 27 1 -0 6 24 26 6 24 26 1 -0 29 31 30 29 31 30 1 -0 32 34 33 32 34 33 1 -0 35 37 36 35 37 36 1 -0 37 35 18 37 35 18 1 -0 35 20 19 35 20 19 1 -0 20 35 36 20 35 36 1 -0 33 20 32 33 20 32 1 -0 31 18 30 31 18 30 1 -0 34 32 21 34 32 21 1 -0 20 33 19 20 33 19 1 -0 18 31 37 18 31 37 1 -0 31 29 22 31 29 22 1 -0 44 67 45 44 67 45 1 -0 44 47 46 44 47 46 1 -0 48 69 44 48 69 44 1 -0 46 48 44 46 48 44 1 -0 46 50 49 46 50 49 1 -0 45 68 51 45 68 51 1 -0 52 51 53 52 51 53 1 -0 68 54 51 68 54 51 1 -0 54 53 51 54 53 51 1 -0 55 66 70 55 66 70 1 -0 38 55 39 38 55 39 1 -0 38 41 40 38 41 40 1 -0 55 65 48 55 65 48 1 -0 39 48 49 39 48 49 1 -0 49 41 39 49 41 39 1 -0 40 54 38 40 54 38 1 -0 52 44 45 52 44 45 1 -0 69 48 65 69 48 65 1 -0 48 46 49 48 46 49 1 -0 50 46 47 50 46 47 1 -0 53 54 42 53 54 42 1 -0 44 52 43 44 52 43 1 -0 66 55 54 66 55 54 1 -0 55 38 54 55 38 54 1 -0 41 38 39 41 38 39 1 -0 68 45 67 68 45 67 1 -0 51 52 45 51 52 45 1 -0 65 55 70 65 55 70 1 -0 48 39 55 48 39 55 1 -0 41 49 50 41 49 50 1 -0 54 68 66 54 68 66 1 -0 67 44 69 67 44 69 1 -0 71 73 72 71 73 72 1 -0 74 56 75 74 56 75 1 -0 57 59 58 57 59 58 1 -0 59 57 60 59 57 60 1 -0 61 59 62 61 59 62 1 -0 59 61 58 59 61 58 1 -0 61 75 56 61 75 56 1 -0 60 71 72 60 71 72 1 -0 56 74 63 56 74 63 1 -0 75 61 62 75 61 62 1 -0 71 60 57 71 60 57 1 -0 73 71 64 73 71 64 1 -"Mesh14" 0 14 -174 -0 0.903210 0.699336 -0.240054 0.500000 0.453125 0 -0 0.779386 0.827460 0.383630 0.320781 0.453125 0 -0 0.000000 0.844416 0.547657 0.015625 0.453125 0 -0 0.000000 3.408501 0.854464 0.015625 0.031250 0 -0 0.000000 2.619795 0.960475 0.015625 0.173656 0 -0 1.332661 3.153209 0.654873 0.370536 0.077117 0 -0 0.000000 3.324934 -0.401014 0.751151 0.521610 0 -0 0.397708 3.390891 -0.305647 0.962555 0.519946 0 -0 0.485701 2.592947 -0.723331 0.975517 0.753832 0 -0 0.485701 2.592947 -0.723331 0.984375 0.177875 0 -0 0.822759 2.790891 -0.525648 0.734376 0.116414 0 -0 0.450531 2.332948 -1.223331 0.825000 0.224986 0 -0 0.005860 0.553143 -0.796924 0.984375 0.453125 0 -0 0.001367 1.557750 -0.926338 0.984375 0.341375 0 -0 0.789188 1.557750 -0.820871 0.719786 0.341364 0 -0 0.000000 0.844416 0.547657 0.015625 0.453125 0 -0 -1.094877 1.938614 -1.083331 0.693750 0.281234 0 -0 -1.117221 2.332948 -1.083331 0.693750 0.218938 0 -0 -0.450531 2.332948 -1.223331 0.821875 0.221097 0 -0 -0.686907 3.481631 0.156012 0.779911 0.050691 0 -0 -1.292681 3.020258 -0.281694 0.500000 0.091484 0 -0 -1.361677 3.232855 0.159146 0.500000 0.051594 0 -0 -1.258434 2.363724 0.011172 0.441875 0.214109 0 -0 -1.175931 2.033299 -0.208828 0.453839 0.242520 0 -0 -1.082200 2.109982 0.501795 0.322310 0.254161 0 -0 -0.903210 0.699336 -0.240054 0.498529 0.455285 0 -0 -0.779386 0.827460 0.383630 0.316906 0.453125 0 -0 -1.361677 3.232855 0.159146 0.375000 0.042953 0 -0 -1.332661 3.153209 0.654873 0.377794 0.087923 0 -0 -0.686907 3.481631 0.156012 0.208036 0.033410 0 -0 -1.253262 2.641431 -0.350652 0.500000 0.170234 0 -0 -0.822759 2.790891 -0.525648 0.738303 0.116414 0 -0 -0.789188 1.557750 -0.820871 0.721034 0.341364 0 -0 0.000000 3.408501 0.854464 0.015625 0.031250 0 -0 -0.363915 3.479675 0.678736 0.115873 0.033555 0 -0 1.117221 2.332948 -1.083331 0.693750 0.221962 0 -0 1.094877 1.938614 -1.083331 0.693750 0.281234 0 -0 0.397708 3.390891 -0.305647 0.984375 0.051875 0 -0 0.000000 1.726665 0.700476 0.015625 0.314703 0 -0 0.000000 2.619795 0.960475 0.015625 0.173656 0 -0 -0.779386 0.827460 0.383630 0.322310 0.254161 0 -0 -0.649663 0.570830 -0.708250 0.721069 0.453125 0 -0 -0.649663 0.570830 -0.708250 0.723588 0.453125 0 -0 -0.485700 2.592947 -0.723331 0.500000 0.758152 0 -0 -0.397708 3.390891 -0.305647 0.512962 0.522106 0 -0 0.000000 2.500291 -0.623960 0.751152 0.813722 0 -0 0.686907 3.481631 0.156012 0.805728 0.046371 0 -0 1.361677 3.232855 0.159147 0.432705 0.051585 0 -0 1.292681 3.020258 -0.281694 0.536264 0.091472 0 -0 0.363915 3.479675 0.678736 0.022658 0.033555 0 -0 1.332661 3.153209 0.654873 0.370536 0.077117 0 -0 0.686907 3.481631 0.156012 0.194567 0.033410 0 -0 1.258434 2.363724 0.011172 0.432292 0.214093 0 -0 1.296504 2.625422 0.677175 0.372563 0.164128 0 -0 1.082200 2.109982 0.501795 0.320710 0.241201 0 -0 1.175932 2.033299 -0.208828 0.449832 0.242509 0 -0 0.649663 0.570830 -0.708250 0.719712 0.453125 0 -0 -0.485700 2.592947 -0.723331 0.984375 0.177875 0 -0 0.000000 1.885957 -1.003961 0.984375 0.289531 0 -0 1.082200 2.109982 0.501795 0.316246 0.241201 0 -0 1.296504 2.625422 0.677175 0.372563 0.164128 0 -0 0.779386 0.827460 0.383630 0.311481 0.453125 0 -0 1.082200 2.109982 0.501795 0.325174 0.241201 0 -0 0.000000 1.726665 0.700476 0.015625 0.314703 0 -0 0.903210 0.699336 -0.240054 0.507855 0.455285 0 -0 0.649663 0.570830 -0.708250 0.721844 0.453125 0 -0 0.441520 1.938614 -1.223331 0.823882 0.282734 0 -0 -0.441520 1.938614 -1.223331 0.812798 0.281222 0 -0 -0.903210 0.699336 -0.240054 0.500000 0.453125 0 -0 0.822759 2.790891 -0.525648 0.734376 0.116414 0 -0 0.686907 3.481631 0.156012 0.203495 0.037730 0 -0 1.332661 3.153209 0.654873 0.371305 0.087923 0 -0 1.361677 3.232855 0.159147 0.374671 0.036464 0 -0 1.253262 2.641431 -0.350652 0.538783 0.168621 0 -0 -0.397708 3.390891 -0.305647 0.984375 0.051875 0 -0 0.000000 1.885957 -1.003961 0.751152 0.967094 0 -0 1.253262 2.641431 -0.350652 0.536698 0.169485 0 -0 -1.296505 2.625422 0.677175 0.378982 0.168449 0 -0 0.000000 1.726665 0.700476 0.015625 0.314703 0 -0 1.332661 3.153209 0.654873 0.370536 0.079277 0 -0 0.363915 3.479675 0.678736 0.120872 0.035715 0 -0 0.000000 3.408501 0.854464 0.015625 0.031250 0 -0 -0.779386 0.827460 0.383630 0.322331 0.453125 0 -0 0.000000 1.726665 0.700476 0.015625 0.314703 0 -0 -1.332661 3.153209 0.654873 0.591418 0.042073 0 -0 -1.253262 2.641431 -0.350652 0.228709 0.031297 0 -0 -1.296505 2.625422 0.677175 0.732696 0.037145 0 -0 -1.361677 3.232855 0.159146 0.487993 0.046028 0 -0 -1.292681 3.020258 -0.281694 0.352768 0.036623 0 -0 -1.258434 2.363724 0.011172 0.015705 0.031953 0 -0 -1.258434 2.363724 0.011172 0.812420 0.031953 0 -0 1.361677 3.232855 0.159147 0.797434 0.046028 0 -0 1.332661 3.153209 0.654873 0.694009 0.042073 0 -0 1.253262 2.641431 -0.350652 0.259857 0.031250 0 -0 1.296504 2.625422 0.677175 0.552732 0.037145 0 -0 1.292681 3.020258 -0.281694 0.135794 0.036641 0 -0 1.258434 2.363724 0.011172 0.380626 0.031955 0 -0 1.361677 3.232855 0.159147 0.016023 0.046016 0 -0 1.194506 0.135747 -0.054929 0.500000 0.500000 2 -0 -1.194506 0.135747 -0.054929 0.500000 0.500000 2 -0 -0.777975 -0.101214 -0.817555 0.723588 0.500000 2 -0 1.194506 0.135747 -0.054929 0.500000 0.500000 2 -0 0.777975 -0.101214 -0.817555 0.721844 0.500000 2 -0 -1.194506 0.135747 -0.054929 0.500000 0.500000 2 -0 0.777975 -0.101214 -0.817555 0.721844 0.500000 2 -0 0.000000 0.391252 0.771868 0.015625 0.500000 2 -0 0.000000 -0.166132 -0.880222 0.984375 0.500000 2 -0 0.880411 0.337969 0.519447 0.311481 0.500000 2 -0 -0.880411 0.337969 0.519447 0.316906 0.500000 2 -0 0.000000 0.391252 0.771868 0.015625 0.500000 2 -0 -0.777975 -0.101214 -0.817555 0.723588 0.500000 2 -0 0.880411 0.337969 0.519447 0.320394 0.500000 2 -0 -0.880411 0.337969 0.519447 0.316906 0.500000 2 -0 -0.338144 -0.354431 -0.010012 0.448944 0.487363 3 -0 -0.113217 -0.358373 -0.335176 0.335177 0.492208 3 -0 0.410983 -0.354429 -0.010012 0.812420 0.487344 3 -0 -0.113217 -0.364712 0.387854 0.606823 0.031251 3 -0 0.410983 -0.354429 -0.010012 0.015705 0.487344 3 -0 0.196745 -0.364712 0.387854 0.731301 0.031251 3 -0 0.196746 -0.358373 -0.335176 0.249109 0.492208 3 -0 -0.180866 -0.794858 0.045828 0.418990 0.180208 8 -0 0.445031 -3.047329 0.157560 0.015705 0.044844 8 -0 0.234501 -3.036283 -0.158875 0.238752 0.496985 8 -0 0.445031 -3.047329 0.157560 0.812420 0.044844 8 -0 -0.070098 -3.057613 0.544745 0.613663 0.500000 8 -0 0.234500 -3.057613 0.544746 0.731383 0.500000 8 -0 0.545814 -0.682055 0.201003 0.015705 0.164281 8 -0 0.445031 -3.047329 0.157560 0.015705 0.498547 8 -0 -0.070098 -3.057613 0.544745 0.600906 0.057469 8 -0 0.445031 -3.047329 0.157560 0.812420 0.498547 8 -0 0.545814 -0.682055 0.201003 0.812420 0.164281 8 -0 0.337036 -0.640772 0.658357 0.718713 0.158431 8 -0 -0.291132 -3.047331 0.157559 0.446718 0.044830 8 -0 -0.070098 -3.036283 -0.158875 0.336637 0.031250 8 -0 -0.236598 -0.209663 0.167318 0.457862 0.120317 8 -0 -0.143216 -0.620780 0.642177 0.588625 0.155606 8 -0 0.234501 -3.036283 -0.158875 0.252149 0.031250 8 -0 0.336555 -0.380058 -0.183211 0.240407 0.121585 8 -0 0.044188 -0.499780 -0.212914 0.321793 0.138505 8 -0 -0.070098 -3.036283 -0.158875 0.330852 0.496985 8 -0 -0.291132 -3.047331 0.157559 0.452396 0.498547 8 -0 0.401001 -0.160026 0.691615 0.731685 0.090488 8 -0 0.234500 -3.057613 0.544746 0.729961 0.057469 8 -0 0.113217 -0.364712 0.387854 0.691946 0.031251 10 -0 0.338143 -0.354431 -0.010012 0.812420 0.487344 10 -0 -0.196745 -0.364712 0.387854 0.576245 0.031251 10 -0 -0.196746 -0.358373 -0.335176 0.252916 0.492208 10 -0 0.113216 -0.358373 -0.335176 0.162747 0.492208 10 -0 0.338143 -0.354431 -0.010012 0.015705 0.487344 10 -0 -0.410984 -0.354429 -0.010012 0.385951 0.487361 10 -0 0.070098 -3.057613 0.544745 0.697392 0.057469 15 -0 0.291132 -3.047331 0.157560 0.015705 0.044844 15 -0 0.143216 -0.620780 0.642177 0.696802 0.155606 15 -0 -0.044188 -0.499780 -0.212914 0.166760 0.138505 15 -0 -0.336555 -0.380058 -0.183211 0.248146 0.121585 15 -0 -0.234500 -3.057613 0.544745 0.578031 0.057469 15 -0 0.291132 -3.047331 0.157560 0.036156 0.498547 15 -0 0.070098 -3.036283 -0.158875 0.157701 0.496985 15 -0 0.291132 -3.047331 0.157560 0.812420 0.044844 15 -0 -0.401001 -0.160026 0.691615 0.553744 0.090488 15 -0 0.291132 -3.047331 0.157560 0.812102 0.498547 15 -0 0.180866 -0.794858 0.045828 0.812102 0.180219 15 -0 0.180866 -0.794858 0.045828 0.069562 0.180208 15 -0 -0.234501 -3.036283 -0.158875 0.249801 0.496985 15 -0 -0.234501 -3.036283 -0.158875 0.249683 0.031250 15 -0 0.236598 -0.209663 0.167318 0.015705 0.120312 15 -0 -0.234500 -3.057613 0.544745 0.554045 0.500000 15 -0 0.070098 -3.057613 0.544745 0.671766 0.500000 15 -0 -0.545814 -0.682055 0.201003 0.393124 0.164265 15 -0 -0.445031 -3.047329 0.157560 0.377649 0.498547 15 -0 -0.445031 -3.047329 0.157560 0.381204 0.044828 15 -0 0.236598 -0.209663 0.167318 0.812102 0.120312 15 -0 -0.337037 -0.640772 0.658357 0.566715 0.158431 15 -0 0.070098 -3.036283 -0.158875 0.161259 0.031250 15 -174 -0.985894 -0.010814 -0.167020 -0.679504 0.104468 0.726196 -0.000000 0.198797 0.980041 --0.000561 0.351372 0.933339 -0.000000 -0.131232 0.991352 -0.320818 0.453548 0.754579 -0.000000 0.272521 -0.956610 -0.107916 0.367576 -0.919374 --0.212987 0.591772 -0.777459 --0.212987 0.591772 -0.777459 -0.346475 0.536042 -0.769814 --0.187751 0.472515 -0.861092 -0.000901 -0.048795 -0.998808 -0.000237 -0.179211 -0.983811 -0.444232 -0.440706 -0.780023 -0.000000 0.198797 0.980041 --0.603693 -0.345636 -0.718395 --0.748718 0.400785 -0.528008 -0.187751 0.472515 -0.861092 --0.544480 0.753667 -0.113465 --0.483925 0.316055 -0.732946 --0.558707 0.614958 -0.144455 -0.343346 -0.136765 -0.070199 --0.966342 -0.194251 -0.168671 --0.743836 -0.335171 0.578246 --0.985894 -0.010814 -0.167020 --0.679505 0.104468 0.726196 --0.558707 0.614958 -0.144455 --0.566191 0.238905 0.628497 --0.544480 0.753667 -0.113465 --0.184670 -0.070784 -0.857995 --0.346475 0.536042 -0.769814 --0.443757 -0.441033 -0.780109 --0.000561 0.351372 0.933339 --0.518185 0.438119 0.653453 -0.748718 0.400786 -0.528008 -0.603693 -0.345636 -0.718395 -0.107916 0.367576 -0.919374 -0.000000 -0.198835 0.980033 -0.000000 -0.131232 0.991352 --0.679505 0.104468 0.726196 --0.540520 0.090438 -0.836456 --0.540520 0.090438 -0.836456 -0.212987 0.591772 -0.777459 --0.107916 0.367576 -0.919374 -0.000000 0.397248 -0.917711 -0.522037 0.776979 -0.137417 -0.670528 0.451395 -0.100068 -0.483925 0.316056 -0.732945 -0.461129 0.532571 0.613401 -0.320818 0.453548 0.754579 -0.522037 0.776979 -0.137417 --0.001319 -0.190682 -0.123197 -0.091942 -0.242461 0.736621 -0.743836 -0.335170 0.578247 -0.966342 -0.194251 -0.168671 -0.541232 0.089940 -0.836049 -0.212987 0.591772 -0.777459 -0.000067 0.032311 -0.999478 -0.743836 -0.335170 0.578247 -0.091942 -0.242461 0.736621 -0.679504 0.104468 0.726196 -0.743836 -0.335170 0.578247 -0.000000 -0.198835 0.980033 -0.985894 -0.010814 -0.167020 -0.541232 0.089940 -0.836049 --0.076860 -0.406499 -0.910413 -0.076860 -0.406499 -0.910413 --0.985894 -0.010814 -0.167020 -0.346475 0.536042 -0.769814 -0.522037 0.776979 -0.137417 -0.320818 0.453548 0.754579 -0.670528 0.451395 -0.100068 -0.338394 -0.083879 -0.823828 --0.107916 0.367576 -0.919374 -0.000067 0.032311 -0.999478 -0.338394 -0.083879 -0.823828 --0.058219 -0.237764 0.845255 -0.000000 -0.198835 0.980033 -0.320818 0.453548 0.754579 -0.461129 0.532571 0.613401 --0.000561 0.351372 0.933339 --0.679505 0.104468 0.726196 -0.000000 -0.198835 0.980033 --0.566191 0.238905 0.628497 --0.184670 -0.070784 -0.857995 --0.058219 -0.237764 0.845255 --0.558707 0.614958 -0.144455 --0.483925 0.316055 -0.732946 -0.343346 -0.136765 -0.070199 -0.343346 -0.136765 -0.070199 -0.670528 0.451395 -0.100068 -0.320818 0.453548 0.754579 -0.338394 -0.083879 -0.823828 -0.091942 -0.242461 0.736621 -0.483925 0.316056 -0.732945 --0.001319 -0.190682 -0.123197 -0.670528 0.451395 -0.100068 -0.923158 0.354679 -0.146491 --0.923159 0.354679 -0.146491 --0.540988 0.230570 -0.804389 -0.923158 0.354679 -0.146491 -0.540988 0.230570 -0.804389 --0.923159 0.354679 -0.146491 -0.540988 0.230570 -0.804389 -0.000000 0.481293 0.874376 -0.000304 0.095868 -0.994220 -0.542478 0.430831 0.712553 --0.525598 0.409890 0.738066 -0.000000 0.481293 0.874376 --0.540988 0.230570 -0.804389 -0.542478 0.430831 0.712553 --0.525598 0.409890 0.738066 --0.985895 0.046257 -0.160843 --0.475675 0.048431 -0.878287 -0.990212 0.134542 -0.037116 --0.600140 0.079851 0.795899 -0.990212 0.134542 -0.037116 -0.332274 0.139139 0.932864 -0.322630 0.078499 -0.943264 --0.952385 -0.001117 -0.304897 -0.998155 -0.000629 -0.044734 -0.634689 -0.005964 -0.772174 -0.998155 -0.000629 -0.044734 --0.415217 -0.002438 0.903471 -0.592138 0.001132 0.798270 -0.997072 -0.076035 0.008099 -0.998155 -0.000629 -0.044734 --0.415217 -0.002438 0.903471 -0.998155 -0.000629 -0.044734 -0.997072 -0.076035 0.008099 -0.518157 -0.094682 0.850028 --0.983963 0.005138 -0.017144 --0.450962 -0.001919 -0.892415 --0.975965 -0.037437 -0.214689 --0.550619 -0.111770 0.827240 -0.634689 -0.005964 -0.772174 -0.592034 -0.065281 -0.803265 --0.509642 -0.005213 -0.860371 --0.450962 -0.001919 -0.892415 --0.983963 0.005138 -0.017144 -0.679809 -0.121103 0.723321 -0.592138 0.001132 0.798270 -0.600140 0.079851 0.795899 -0.985895 0.046257 -0.160843 --0.332274 0.139139 0.932864 --0.322630 0.078499 -0.943264 -0.475675 0.048431 -0.878287 -0.985895 0.046257 -0.160843 --0.990212 0.134542 -0.037116 -0.415217 -0.002438 0.903471 -0.983963 0.005138 -0.017144 -0.701307 -0.085612 0.707700 -0.509642 -0.005212 -0.860371 --0.592034 -0.065281 -0.803265 --0.592138 0.001132 0.798270 -0.983963 0.005138 -0.017144 -0.450962 -0.001919 -0.892415 -0.983963 0.005138 -0.017144 --0.459210 -0.148249 0.875870 -0.983963 0.005138 -0.017144 -0.952385 -0.001117 -0.304897 -0.952385 -0.001117 -0.304897 --0.634689 -0.005964 -0.772174 --0.634689 -0.005964 -0.772174 -0.954730 -0.026891 -0.296257 --0.592138 0.001132 0.798270 -0.415217 -0.002438 0.903471 --0.997699 -0.054239 0.040667 --0.998155 -0.000629 -0.044734 --0.998155 -0.000629 -0.044734 -0.954730 -0.026891 -0.296257 --0.518157 -0.094682 0.850028 -0.450962 -0.001919 -0.892415 -172 -0 98 1 0 98 1 0 1 -0 2 107 105 2 107 105 1 -0 3 5 4 3 5 4 1 -0 6 8 7 6 8 7 1 -0 9 11 10 9 11 10 1 -0 12 14 13 12 14 13 1 -0 108 15 109 108 15 109 1 -0 16 18 17 16 18 17 1 -0 19 21 20 19 21 20 1 -0 22 24 23 22 24 23 1 -0 25 24 26 25 24 26 1 -0 27 29 28 27 29 28 1 -0 23 31 30 23 31 30 1 -0 23 32 16 23 32 16 1 -0 26 99 25 26 99 25 1 -0 33 28 34 33 28 34 1 -0 11 36 35 11 36 35 1 -0 10 37 9 10 37 9 1 -0 29 34 28 29 34 28 1 -0 24 39 38 24 39 38 1 -0 38 40 24 38 40 24 1 -0 41 103 100 41 103 100 1 -0 20 30 31 20 30 31 1 -0 31 17 18 31 17 18 1 -0 42 106 12 42 106 12 1 -0 32 12 13 32 12 13 1 -0 43 6 44 43 6 44 1 -0 8 6 45 8 6 45 1 -0 46 48 47 46 48 47 1 -0 49 51 50 49 51 50 1 -0 52 54 53 52 54 53 1 -0 0 54 55 0 54 55 1 -0 56 106 104 56 106 104 1 -0 57 18 58 57 18 58 1 -0 59 4 60 59 4 60 1 -0 61 63 62 61 63 62 1 -0 14 64 55 14 64 55 1 -0 55 35 36 55 35 36 1 -0 101 65 102 101 65 102 1 -0 66 14 36 66 14 36 1 -0 32 67 16 32 67 16 1 -0 68 32 23 68 32 23 1 -0 14 55 36 14 55 36 1 -0 36 11 66 36 11 66 1 -0 58 18 67 58 18 67 1 -0 46 69 48 46 69 48 1 -0 31 19 20 31 19 20 1 -0 55 10 35 55 10 35 1 -0 18 16 67 18 16 67 1 -0 17 23 16 17 23 16 1 -0 70 72 71 70 72 71 1 -0 73 55 52 73 55 52 1 -0 74 31 57 74 31 57 1 -0 43 75 45 43 75 45 1 -0 11 58 66 11 58 66 1 -0 75 8 45 75 8 45 1 -0 18 57 31 18 57 31 1 -0 76 48 69 76 48 69 1 -0 6 43 45 6 43 45 1 -0 39 24 77 39 24 77 1 -0 4 59 78 4 59 78 1 -0 28 33 39 28 33 39 1 -0 11 9 58 11 9 58 1 -0 31 23 17 31 23 17 1 -0 10 55 73 10 55 73 1 -0 54 52 55 54 52 55 1 -0 5 60 4 5 60 4 1 -0 14 58 13 14 58 13 1 -0 58 14 66 58 14 66 1 -0 58 32 13 58 32 13 1 -0 67 32 58 67 32 58 1 -0 35 10 11 35 10 11 1 -0 23 30 22 23 30 22 1 -0 24 22 77 24 22 77 1 -0 28 39 77 28 39 77 1 -0 79 81 80 79 81 80 1 -0 82 83 15 82 83 15 1 -0 63 61 2 63 61 2 1 -0 64 14 65 64 14 65 1 -0 32 68 41 32 68 41 1 -0 24 25 23 24 25 23 1 -0 54 0 1 54 0 1 1 -0 103 41 68 103 41 68 1 -0 15 108 82 15 108 82 1 -0 107 2 61 107 2 61 1 -0 65 101 64 65 101 64 1 -0 12 32 42 12 32 42 1 -0 14 12 56 14 12 56 1 -0 106 42 110 106 42 110 1 -0 106 56 12 106 56 12 1 -0 1 98 111 1 98 111 1 -0 99 26 112 99 26 112 1 -0 118 128 142 118 128 142 1 -0 133 119 136 133 119 136 1 -0 113 114 133 113 114 133 1 -0 113 133 132 113 133 132 1 -0 119 133 114 119 133 114 1 -0 115 142 123 115 142 123 1 -0 116 132 128 116 132 128 1 -0 132 116 113 132 116 113 1 -0 119 117 136 119 117 136 1 -0 136 117 121 136 117 121 1 -0 142 115 118 142 115 118 1 -0 128 118 116 128 118 116 1 -0 84 135 134 84 135 134 1 -0 85 138 137 85 138 137 1 -0 138 140 139 138 140 139 1 -0 135 86 141 135 86 141 1 -0 120 135 140 120 135 140 1 -0 138 120 140 138 120 140 1 -0 84 134 87 84 134 87 1 -0 138 122 137 138 122 137 1 -0 138 139 122 138 139 122 1 -0 138 88 134 138 88 134 1 -0 120 138 134 120 138 134 1 -0 135 125 124 135 125 124 1 -0 122 126 137 122 126 137 1 -0 126 122 127 126 122 127 1 -0 89 137 126 89 137 126 1 -0 135 120 134 135 120 134 1 -0 125 130 129 125 130 129 1 -0 125 135 131 125 135 131 1 -0 130 125 131 130 125 131 1 -0 141 130 131 141 130 131 1 -0 90 141 86 90 141 86 1 -0 140 135 124 140 135 124 1 -0 135 141 131 135 141 131 1 -0 134 88 87 134 88 87 1 -0 137 89 85 137 89 85 1 -0 141 90 130 141 90 130 1 -0 138 85 88 138 85 88 1 -0 86 135 84 86 135 84 1 -0 150 145 155 150 145 155 1 -0 146 173 164 146 173 164 1 -0 147 148 173 147 148 173 1 -0 173 148 151 173 148 151 1 -0 173 146 147 173 146 147 1 -0 155 149 170 155 149 170 1 -0 158 143 150 158 143 150 1 -0 143 158 144 143 158 144 1 -0 149 146 164 149 146 164 1 -0 149 164 170 149 164 170 1 -0 149 155 145 149 155 145 1 -0 145 150 143 145 150 143 1 -0 91 152 92 91 152 92 1 -0 153 93 154 153 93 154 1 -0 156 153 157 156 153 157 1 -0 92 159 94 92 159 94 1 -0 152 161 160 152 161 160 1 -0 162 153 156 162 153 156 1 -0 157 154 163 157 154 163 1 -0 157 153 154 157 153 154 1 -0 95 153 165 95 153 165 1 -0 153 162 165 153 162 165 1 -0 166 152 167 166 152 167 1 -0 168 163 154 168 163 154 1 -0 163 168 169 163 168 169 1 -0 154 96 168 154 96 168 1 -0 161 152 171 161 152 171 1 -0 168 166 169 168 166 169 1 -0 152 166 172 152 166 172 1 -0 166 168 172 166 168 172 1 -0 168 159 172 168 159 172 1 -0 168 94 159 168 94 159 1 -0 152 160 167 152 160 167 1 -0 159 152 172 159 152 172 1 -0 95 165 97 95 165 97 1 -0 96 154 93 96 154 93 1 -0 93 153 95 93 153 95 1 -0 152 91 171 152 91 171 1 -0 159 92 152 159 92 152 1 -0 94 168 96 94 168 96 1 - -Materials: 15 -"Material0" -1.000000 0.501961 0.000000 1.000000 -1.000000 0.501961 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material1" -0.949020 0.619608 0.400000 1.000000 -0.949020 0.619608 0.400000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material2" -0.600000 0.600000 0.600000 1.000000 -0.600000 0.600000 0.600000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material3" -0.400000 0.400000 0.400000 1.000000 -0.400000 0.400000 0.400000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material4" -0.266667 0.266667 0.266667 1.000000 -0.266667 0.266667 0.266667 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material5" -1.000000 0.843137 0.705882 1.000000 -1.000000 0.843137 0.705882 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material6" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material7" -0.994350 1.000000 1.000000 1.000000 -0.988701 0.994350 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material8" -0.333333 0.333333 0.333333 1.000000 -0.333333 0.333333 0.333333 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material9" -0.994350 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material10" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"t4_ghip.bmp" -"" -"Material11" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"t7_ghir.bmp" -"" -"Material12" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"lorniface.ini" -"" -"Material13" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"t5_gsoe.bmp" -"" -"Material14" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"t6_gnec.bmp" -"" - -Bones: 16 -"torso" -"" -8 0 0 0 0 0 0 -0 -0 -"head" -"" -8 0 0 0 0 0 0 -0 -0 -"pelvis" -"" -8 0 0 0 0 0 0 -0 -0 -"r lower arm" -"" -8 0 0 0 0 0 0 -0 -0 -"r foot" -"" -8 0 0 0 0 0 0 -0 -0 -"r hand" -"" -8 0 0 0 0 0 0 -0 -0 -"r leg" -"" -8 0 0 0 0 0 0 -0 -0 -"r thigh" -"" -8 0 0 0 0 0 0 -0 -0 -"r upper arm" -"" -8 0 0 0 0 0 0 -0 -0 -"neck" -"" -8 0 0 0 0 0 0 -0 -0 -"l lower arm" -"" -8 0 0 0 0 0 0 -0 -0 -"l foot" -"" -8 0 0 0 0 0 0 -0 -0 -"l hand" -"" -8 0 0 0 0 0 0 -0 -0 -"l leg" -"" -8 0 0 0 0 0 0 -0 -0 -"l thigh" -"" -8 0 0 0 0 0 0 -0 -0 -"l upper arm" -"" -8 0 0 0 0 0 0 -0 -0 diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/lorniface.ini b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/lorniface.ini deleted file mode 100644 index 1bb1b99bbe..0000000000 --- a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/lorniface.ini +++ /dev/null @@ -1,21 +0,0 @@ -[AnimatedTexture] -Frame0000=t0_gfac.bmp -Delay0000=2.00 -Frame0001=t1_gfac.bmp -Delay0001=0.30 -Frame0002=t0_gfac.bmp -Delay0002=2.00 -Frame0003=t1_gfac.bmp -Delay0003=0.30 -Frame0004=t0_gfac.bmp -Delay0004=2.00 -Frame0005=t2_gfac.bmp -Delay0005=2.00 -Frame0006=t0_gfac.bmp -Delay0006=2.00 -Frame0007=t1_gfac.bmp -Delay0007=0.30 -Frame0008=t0_gfac.bmp -Delay0008=2.00 -Frame0009=t3_gfac.bmp -Delay0009=2.00 diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/luna.txt b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/luna.txt deleted file mode 100644 index f26eebd7bc..0000000000 --- a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/luna.txt +++ /dev/null @@ -1,2277 +0,0 @@ -// MilkShape 3D ASCII - -Frames: 1 -Frame: 1 - -Meshes: 12 -"Mesh0" 0 0 -0 -0 -0 -"Mesh1" 0 1 -183 -0 1.296401 3.449999 -0.400000 0.000000 0.000000 0 -0 1.347328 2.138988 -0.998232 0.000000 0.000000 0 -0 0.972345 2.309632 -1.257331 0.000000 0.000000 0 -0 0.948136 3.341617 -0.839285 0.000000 0.000000 0 -0 0.774140 2.421536 -0.767976 0.000000 0.000000 0 -0 0.741149 3.144082 -0.317635 0.000000 0.000000 0 -0 -1.312291 1.522615 1.445070 0.000000 0.000000 0 -0 -0.948494 1.116118 1.350199 0.000000 0.000000 0 -0 -0.847915 1.320176 0.799866 0.000000 0.000000 0 -0 -1.097826 1.555935 0.811112 0.000000 0.000000 0 -0 1.116469 3.047720 -0.266731 0.000000 0.000000 0 -0 1.154803 2.208148 -0.695795 0.000000 0.000000 0 -0 0.775433 1.661204 -1.084581 0.000000 0.000000 0 -0 0.652477 1.905953 -1.330286 0.000000 0.000000 0 -0 0.453530 2.187757 -0.969263 0.000000 0.000000 0 -0 0.948494 1.116117 1.350199 0.000000 0.000000 0 -0 1.312291 1.522614 1.445070 0.000000 0.000000 0 -0 1.097826 1.555935 0.811112 0.000000 0.000000 0 -0 0.847915 1.320176 0.799866 0.000000 0.000000 0 -0 0.652477 1.704467 -0.918750 0.000000 0.000000 0 -0 -0.825432 1.661204 -1.084581 0.000000 0.000000 0 -0 -0.702477 1.905953 -1.330286 0.000000 0.000000 0 -0 -0.503530 2.187757 -0.969263 0.000000 0.000000 0 -0 1.657846 1.163532 1.178716 0.000000 0.000000 0 -0 1.766055 1.467469 1.099928 0.000000 0.000000 0 -0 -0.702477 1.704467 -0.918750 0.000000 0.000000 0 -0 -1.332528 2.138988 -0.998232 0.000000 0.000000 0 -0 -0.959883 2.309632 -1.257331 0.000000 0.000000 0 -0 -0.760554 2.421536 -0.767976 0.000000 0.000000 0 -0 1.558540 1.345928 0.829613 0.000000 0.000000 0 -0 -1.140003 2.208148 -0.695795 0.000000 0.000000 0 -0 -1.396401 3.449999 -0.400000 0.000000 0.000000 0 -0 -0.948472 3.502278 -0.533269 0.000000 0.000000 0 -0 -1.008171 3.341617 -0.839285 0.000000 0.000000 0 -0 -0.830949 3.144082 -0.317635 0.000000 0.000000 0 -0 1.343011 3.073080 0.359041 0.000000 0.000000 0 -0 0.969549 3.215841 0.424211 0.000000 0.000000 0 -0 -1.216469 3.047720 -0.266731 0.000000 0.000000 0 -0 -1.766055 1.467469 1.099928 0.000000 0.000000 0 -0 -1.657846 1.163533 1.178716 0.000000 0.000000 0 -0 -1.184745 3.286865 0.884226 0.000000 0.000000 0 -0 -0.969549 3.215841 0.424211 0.000000 0.000000 0 -0 -1.047136 3.574949 0.462870 0.000000 0.000000 0 -0 -1.558540 1.345929 0.829613 0.000000 0.000000 0 -0 -1.343011 3.073077 0.359041 0.000000 0.000000 0 -0 -1.249433 0.782413 1.093965 0.000000 0.000000 0 -0 -1.126477 0.939430 0.784742 0.000000 0.000000 0 -0 1.249432 0.782413 1.093965 0.000000 0.000000 0 -0 1.126477 0.939430 0.784742 0.000000 0.000000 0 -0 1.505762 3.495021 0.402531 0.000000 0.000000 0 -0 0.870503 3.502278 -0.533269 0.000000 0.000000 0 -0 1.047136 3.574949 0.462870 0.000000 0.000000 0 -0 1.184745 3.286865 0.884226 0.000000 0.000000 0 -0 -1.505762 3.495021 0.402531 0.000000 0.000000 0 -0 -1.020143 -1.928791 2.312708 0.000000 0.000000 1 -0 -0.956963 -1.642865 1.334808 0.000000 0.000000 1 -0 -1.231167 -1.175115 1.657365 0.000000 0.000000 1 -0 -0.826543 -2.108663 1.739832 0.000000 0.000000 1 -0 -1.372442 -2.324882 1.970627 0.000000 0.000000 1 -0 -1.333394 -2.148170 1.366251 0.000000 0.000000 1 -0 -1.777066 -1.391333 1.888160 0.000000 0.000000 1 -0 -1.646645 -1.857131 2.293184 0.000000 0.000000 1 -0 -1.583466 -1.571205 1.315284 0.000000 0.000000 1 -0 -1.840245 -1.992715 1.708241 0.000000 0.000000 1 -0 -0.834859 1.558591 -0.782057 0.000000 0.000000 1 -0 -0.000001 1.662471 -0.919120 0.000000 0.000000 1 -0 0.000000 0.927975 -1.121621 0.000000 0.000000 1 -0 0.834864 1.558592 -0.782057 0.000000 0.000000 1 -0 0.669629 0.808752 -0.819767 0.000000 0.000000 1 -0 -0.669629 0.808752 -0.819767 0.000000 0.000000 1 -0 -1.019456 1.234107 -0.437852 0.000000 0.000000 1 -0 1.023746 0.457010 -0.094874 0.000000 0.000000 1 -0 1.019459 1.234107 -0.437852 0.000000 0.000000 1 -0 1.184663 0.735397 0.148246 0.000000 0.000000 1 -0 0.818129 0.183210 0.477379 0.000000 0.000000 1 -0 -1.023748 0.457010 -0.094874 0.000000 0.000000 1 -0 -1.184658 0.735397 0.148246 0.000000 0.000000 1 -0 -0.818126 0.183210 0.477380 0.000000 0.000000 1 -0 1.772866 -1.400567 1.890675 0.000000 0.000000 1 -0 1.264915 -1.351269 2.261589 0.000000 0.000000 1 -0 1.631355 -1.863741 2.294985 0.000000 0.000000 1 -0 1.578846 -1.576699 1.316780 0.000000 0.000000 1 -0 1.232462 -1.173867 1.657025 0.000000 0.000000 1 -0 1.825376 -2.003064 1.711061 0.000000 0.000000 1 -0 1.349877 -2.326130 1.970967 0.000000 0.000000 1 -0 1.317424 -2.148728 1.366403 0.000000 0.000000 1 -0 0.756963 -1.496933 1.916931 0.000000 0.000000 1 -0 1.003493 -1.923298 2.311212 0.000000 0.000000 1 -0 0.950984 -1.636256 1.333007 0.000000 0.000000 1 -0 0.809473 -2.099430 1.737317 0.000000 0.000000 1 -0 -0.763363 -1.507282 1.919751 0.000000 0.000000 1 -0 -1.270214 -1.351827 2.261741 0.000000 0.000000 1 -0 -1.469654 -1.118513 -1.138754 0.000000 0.000000 2 -0 0.000001 -1.118513 -1.574604 0.000000 0.000000 2 -0 0.000002 -1.987757 -1.941186 0.000000 0.000000 2 -0 1.469654 -1.118513 -1.158216 0.000000 0.000000 2 -0 1.459563 -1.118513 1.442617 0.000000 0.000000 2 -0 0.000001 -1.118513 1.896029 0.000000 0.000000 2 -0 0.000001 -1.982538 2.280167 0.000000 0.000000 2 -0 -1.459565 -1.118513 1.442616 0.000000 0.000000 2 -0 2.106873 -1.118513 0.191032 0.000000 0.000000 2 -0 2.336272 -1.988370 0.201171 0.000000 0.000000 2 -0 -2.336272 -1.988370 0.201170 0.000000 0.000000 2 -0 -2.106873 -1.118513 0.191031 0.000000 0.000000 2 -0 1.217085 -1.038242 -0.972951 0.000000 0.000000 2 -0 0.000001 -1.062726 -1.287383 0.000000 0.000000 2 -0 1.743697 -1.027291 0.115440 0.000000 0.000000 2 -0 1.265950 -1.061434 1.196373 0.000000 0.000000 2 -0 0.000001 -1.057439 1.551764 0.000000 0.000000 2 -0 -1.265951 -1.061434 1.196373 0.000000 0.000000 2 -0 -1.743697 -1.027290 0.115440 0.000000 0.000000 2 -0 -1.217085 -1.038242 -0.960453 0.000000 0.000000 2 -0 1.627146 -1.983333 -1.374600 0.000000 0.000000 2 -0 -1.627146 -1.983333 -1.374600 0.000000 0.000000 2 -0 -1.678017 -1.983333 1.617116 0.000000 0.000000 2 -0 1.678017 -1.983333 1.617116 0.000000 0.000000 2 -0 0.947560 -2.086612 0.632362 0.000000 0.000000 3 -0 0.126752 -2.099072 -0.807160 0.000000 0.000000 3 -0 0.112378 -0.711196 0.885424 0.000000 0.000000 3 -0 0.764617 -0.711196 0.616748 0.000000 0.000000 3 -0 0.515939 -0.631122 0.481744 0.000000 0.000000 3 -0 -0.535790 -0.711196 -0.350218 0.000000 0.000000 3 -0 -0.539860 -0.711196 0.444701 0.000000 0.000000 3 -0 -0.385182 -0.631122 0.481773 0.000000 0.000000 3 -0 -0.378782 -0.631122 -0.387007 0.000000 0.000000 3 -0 0.118098 -0.711196 -0.697343 0.000000 0.000000 3 -0 0.771986 -0.711196 -0.485768 0.000000 0.000000 3 -0 0.522761 -0.631122 -0.387055 0.000000 0.000000 3 -0 -0.693881 -2.099071 -0.470267 0.000000 0.000000 3 -0 0.070990 -2.293056 0.063412 0.000000 0.000000 3 -0 -0.693741 -2.086430 0.629765 0.000000 0.000000 3 -0 0.126909 -2.086521 1.080869 0.000000 0.000000 3 -0 0.947385 -2.099072 -0.472260 0.000000 0.000000 3 -0 -0.900872 -0.792434 -0.897135 0.000000 0.000000 4 -0 -0.415525 -1.427456 1.294944 0.000000 0.000000 4 -0 -1.270223 -1.179515 0.630732 0.000000 0.000000 4 -0 -0.971005 -0.175487 0.905878 0.000000 0.000000 4 -0 0.923931 -0.175487 0.905878 0.000000 0.000000 4 -0 -0.036561 0.042588 -1.339214 0.000000 0.000000 4 -0 -1.195783 -0.085691 -1.161907 0.000000 0.000000 4 -0 0.778872 -0.085691 -1.211906 0.000000 0.000000 4 -0 0.272837 -1.427456 1.294944 0.000000 0.000000 4 -0 0.923846 -1.179515 0.630732 0.000000 0.000000 4 -0 0.719843 -0.792434 -0.897135 0.000000 0.000000 4 -0 0.018470 -3.525103 -0.974784 0.000000 0.000000 6 -0 0.671653 -3.525103 0.701298 0.000000 0.000000 6 -0 -0.844520 -3.525104 -0.590016 0.000000 0.000000 6 -0 -0.622834 -3.525105 0.739075 0.000000 0.000000 6 -0 0.897629 -3.525104 -0.627793 0.000000 0.000000 6 -0 -0.764617 -0.711196 0.616748 0.000000 0.000000 10 -0 -0.112378 -0.711196 0.885424 0.000000 0.000000 10 -0 0.539860 -0.711196 0.444701 0.000000 0.000000 10 -0 0.378781 -0.631122 -0.387007 0.000000 0.000000 10 -0 0.385182 -0.631122 0.481773 0.000000 0.000000 10 -0 0.535790 -0.711196 -0.350218 0.000000 0.000000 10 -0 -0.118098 -0.711196 -0.697343 0.000000 0.000000 10 -0 -0.522761 -0.631122 -0.387055 0.000000 0.000000 10 -0 -0.771986 -0.711196 -0.485768 0.000000 0.000000 10 -0 0.693741 -2.086430 0.629765 0.000000 0.000000 10 -0 -0.070990 -2.293056 0.063412 0.000000 0.000000 10 -0 0.693881 -2.099071 -0.470267 0.000000 0.000000 10 -0 -0.126910 -2.086521 1.080868 0.000000 0.000000 10 -0 -0.947561 -2.086612 0.632362 0.000000 0.000000 10 -0 -0.947385 -2.099072 -0.472260 0.000000 0.000000 10 -0 -0.126752 -2.099072 -0.807160 0.000000 0.000000 10 -0 -0.515939 -0.631122 0.481744 0.000000 0.000000 10 -0 -0.778872 -0.085691 -1.211906 0.000000 0.000000 11 -0 -0.923846 -1.179515 0.630732 0.000000 0.000000 11 -0 -0.272837 -1.427456 1.294944 0.000000 0.000000 11 -0 0.415524 -1.427456 1.294944 0.000000 0.000000 11 -0 -0.719843 -0.792434 -0.897135 0.000000 0.000000 11 -0 1.270223 -1.179515 0.630732 0.000000 0.000000 11 -0 0.415524 -1.427456 1.294944 0.000000 0.000000 11 -0 0.900872 -0.792434 -0.897135 0.000000 0.000000 11 -0 -0.923931 -0.175487 0.905878 0.000000 0.000000 11 -0 0.971005 -0.175487 0.905878 0.000000 0.000000 11 -0 1.195783 -0.085691 -1.161907 0.000000 0.000000 11 -0 0.036561 0.042588 -1.339214 0.000000 0.000000 11 -0 -0.671653 -3.525106 0.701298 0.000000 0.000000 13 -0 -0.897629 -3.525106 -0.627793 0.000000 0.000000 13 -0 -0.018470 -3.525105 -0.974784 0.000000 0.000000 13 -0 0.844521 -3.525106 -0.590016 0.000000 0.000000 13 -0 0.622834 -3.525107 0.739075 0.000000 0.000000 13 -183 -0.878899 0.301203 -0.369882 -0.913785 -0.368812 -0.170218 -0.007004 0.464900 -0.885336 --0.572154 0.501566 -0.648899 --0.638041 0.507508 -0.579084 --0.266513 0.653713 -0.708258 -0.037381 0.346030 0.937479 -0.069764 0.263316 0.962184 -0.208320 0.325535 0.200049 -0.309629 0.145799 0.189766 -0.831101 -0.003015 -0.052158 -0.839696 -0.482211 0.249769 -0.323654 -0.927470 -0.187211 -0.112427 0.161589 -0.980433 -0.317192 0.663267 -0.677839 --0.309352 0.151883 0.938740 --0.207894 0.017395 0.977997 --0.315426 0.165437 0.204425 --0.087251 0.380651 0.209618 -0.259198 -0.955881 -0.138231 --0.372621 -0.890891 -0.259744 -0.052500 0.087533 -0.994777 --0.591345 0.568922 -0.571524 -0.819657 -0.569981 0.057305 -0.951648 0.021992 0.306404 --0.400644 -0.913722 -0.067792 --0.932282 -0.359341 -0.041519 -0.219951 0.192364 -0.956356 -0.300885 0.606282 -0.736132 -0.458913 -0.235445 -0.856717 --0.874581 -0.447960 0.185578 --0.855890 0.458966 -0.238331 -0.681263 0.716027 -0.152273 -0.122939 0.586698 -0.800420 -0.353383 0.634297 -0.687596 -0.617406 -0.075157 -0.245175 --0.107411 0.335190 0.902107 --0.809004 -0.038176 -0.049972 --0.993471 -0.090144 -0.069930 --0.717947 -0.526706 0.455118 -0.567206 0.411432 0.713443 -0.183361 0.448022 0.815537 -0.385692 0.892977 0.232021 --0.434056 -0.352269 -0.829158 --0.765462 -0.022516 -0.100626 --0.361300 -0.902502 0.234419 --0.133864 -0.446495 -0.884716 -0.270015 -0.925846 0.264390 -0.256988 -0.379176 -0.888922 -0.804769 0.573848 -0.151807 --0.348406 0.913470 -0.210205 --0.645076 0.690664 0.326894 --0.085826 0.520521 0.849525 --0.844999 0.480518 0.234689 -0.469426 -0.297983 0.831171 -0.574724 0.178551 -0.798631 -0.117726 0.958121 -0.261046 -0.792087 -0.597763 -0.123604 --0.117726 -0.958121 0.261046 --0.052649 -0.663606 -0.746227 --0.792087 0.597763 0.123604 --0.574724 -0.178551 0.798631 --0.469426 0.297983 -0.831171 --0.897384 -0.404519 -0.176254 --0.594798 0.364557 -0.716459 --0.000087 0.540983 -0.841033 --0.000006 -0.036374 -0.999338 -0.593957 0.365993 -0.716425 -0.656418 -0.156415 -0.738004 --0.656417 -0.156415 -0.738005 --0.885286 -0.110990 -0.451608 -0.977417 -0.119881 -0.174027 -0.885285 -0.110993 -0.451610 -0.852123 -0.334245 -0.402698 -0.452174 -0.831333 0.323147 --0.977418 -0.119877 -0.174022 --0.852126 -0.334242 -0.402695 --0.530561 -0.824284 0.197639 -0.802812 0.582375 0.127796 --0.043757 0.664537 0.745973 -0.566965 -0.189567 0.801633 -0.479452 0.288827 -0.828677 --0.097843 0.960201 -0.261613 -0.890326 -0.421768 -0.171555 -0.097843 -0.960201 0.261613 -0.043757 -0.664537 -0.745973 --0.890326 0.421768 0.171555 --0.479452 -0.288827 0.828677 --0.566965 0.189567 -0.801633 --0.802812 -0.582375 -0.127796 -0.897384 0.404519 0.176254 -0.052649 0.663607 0.746227 --0.459930 0.694803 -0.552913 -0.010485 0.830283 -0.557244 --0.005861 -0.403510 -0.914956 -0.493874 0.684632 -0.536067 -0.455877 0.714715 0.530432 --0.012496 0.852138 0.523169 -0.000000 -0.373008 0.927828 --0.479353 0.708113 0.518456 -0.580742 0.813555 0.029439 -0.836243 -0.548254 0.010721 --0.837670 -0.546116 0.008180 --0.591876 0.805581 -0.026891 -0.389279 0.799599 -0.457279 -0.008413 0.780968 -0.624514 -0.599324 0.800463 0.008272 -0.321808 0.808864 0.492117 --0.018859 0.804064 0.594243 --0.423024 0.823709 0.377564 --0.567013 0.819020 -0.087765 --0.326759 0.789029 -0.520252 -0.270545 -0.911206 -0.310658 --0.275634 -0.908558 -0.313924 --0.280442 -0.912522 0.297753 -0.280442 -0.912521 0.297753 -0.817080 -0.474046 0.328118 --0.026517 -0.618860 -0.785054 --0.100636 0.678732 0.727458 -0.548210 0.777190 0.308936 -0.632803 0.661402 0.402626 --0.677808 0.604013 -0.419220 --0.726585 0.514159 0.455757 --0.486320 0.647442 0.586780 --0.691086 0.524794 -0.496983 --0.086754 0.601474 -0.794168 -0.735868 0.576919 -0.354490 -0.357600 0.757669 -0.545949 --0.649270 -0.638863 -0.412678 --0.007300 -0.999970 -0.002667 --0.685124 -0.616788 0.387527 --0.030727 -0.623435 0.781271 -0.616889 -0.661720 -0.426117 --0.944778 -0.019239 -0.327147 --0.576711 -0.558808 0.595934 --0.893906 -0.433097 0.115580 --0.530889 0.340041 0.776228 -0.796288 0.213688 0.565918 -0.107486 0.575032 -0.811039 --0.863663 0.117648 -0.490149 -0.853453 0.009584 -0.521082 -0.458157 -0.617065 0.639784 -0.902143 -0.429432 0.041542 -0.942126 -0.150173 -0.299745 -0.020748 0.321082 -0.915489 -0.447205 0.235164 0.830940 --0.800719 0.335871 -0.424087 --0.637992 0.233664 0.699967 -0.846151 0.293366 -0.365234 --0.744817 0.586691 0.317871 -0.100636 0.678732 0.727458 -0.690506 0.625098 0.363942 -0.467661 0.637496 -0.612283 -0.708617 0.543666 0.449766 -0.704606 0.480228 -0.522409 -0.086754 0.601474 -0.794168 --0.624404 0.657646 -0.421451 --0.536814 0.770950 -0.342733 -0.685124 -0.616788 0.387527 -0.007300 -0.999970 -0.002667 -0.649270 -0.638863 -0.412678 -0.030727 -0.623435 0.781271 --0.652275 -0.639079 0.407571 --0.798587 -0.494961 -0.342450 -0.026517 -0.618860 -0.785054 --0.367452 0.760742 0.535024 --0.853453 0.009584 -0.521082 --0.902143 -0.429432 0.041542 --0.478292 -0.451824 0.322794 -0.315500 -0.419145 0.233028 --0.759213 0.068818 -0.184414 -0.893906 -0.433097 0.115580 -0.315500 -0.419145 0.233028 -0.754480 -0.002744 -0.170980 --0.694332 0.243123 0.677343 -0.608464 0.336593 0.718663 -0.863663 0.117648 -0.490149 --0.032549 0.553166 -0.381879 --0.507570 0.258114 0.784903 --0.846310 0.293023 -0.365362 --0.020748 0.321082 -0.915489 -0.800719 0.335871 -0.424087 -0.518786 0.235395 0.790495 -278 -0 0 2 1 0 2 1 1 -0 0 3 2 0 3 2 1 -0 3 4 2 3 4 2 1 -0 3 5 4 3 5 4 1 -0 6 8 7 6 8 7 1 -0 6 9 8 6 9 8 1 -0 10 1 11 10 1 11 1 -0 10 0 1 10 0 1 1 -0 1 13 12 1 13 12 1 -0 1 2 13 1 2 13 1 -0 2 14 13 2 14 13 1 -0 2 4 14 2 4 14 1 -0 15 17 16 15 17 16 1 -0 15 18 17 15 18 17 1 -0 11 12 19 11 12 19 1 -0 11 1 12 11 1 12 1 -0 12 21 20 12 21 20 1 -0 12 13 21 12 13 21 1 -0 13 22 21 13 22 21 1 -0 13 14 22 13 14 22 1 -0 16 24 23 16 24 23 1 -0 19 20 25 19 20 25 1 -0 19 12 20 19 12 20 1 -0 20 27 26 20 27 26 1 -0 20 21 27 20 21 27 1 -0 21 28 27 21 28 27 1 -0 21 22 28 21 22 28 1 -0 24 29 23 24 29 23 1 -0 25 26 30 25 26 30 1 -0 25 20 26 25 20 26 1 -0 31 33 32 31 33 32 1 -0 33 34 32 33 34 32 1 -0 35 17 29 35 17 29 1 -0 35 36 17 35 36 17 1 -0 37 26 31 37 26 31 1 -0 38 6 39 38 6 39 1 -0 40 9 6 40 9 6 1 -0 40 41 9 40 41 9 1 -0 41 40 42 41 40 42 1 -0 41 43 9 41 43 9 1 -0 41 44 43 41 44 43 1 -0 43 38 39 43 38 39 1 -0 39 7 45 39 7 45 1 -0 39 6 7 39 6 7 1 -0 9 46 8 9 46 8 1 -0 9 43 46 9 43 46 1 -0 43 45 46 43 45 46 1 -0 43 39 45 43 39 45 1 -0 45 15 47 45 15 47 1 -0 45 7 15 45 7 15 1 -0 7 18 15 7 18 15 1 -0 7 8 18 7 8 18 1 -0 8 48 18 8 48 18 1 -0 8 46 48 8 46 48 1 -0 46 47 48 46 47 48 1 -0 46 45 47 46 45 47 1 -0 47 16 23 47 16 23 1 -0 47 15 16 47 15 16 1 -0 18 29 17 18 29 17 1 -0 18 48 29 18 48 29 1 -0 48 23 29 48 23 29 1 -0 48 47 23 48 47 23 1 -0 49 50 0 49 50 0 1 -0 49 51 50 49 51 50 1 -0 51 5 50 51 5 50 1 -0 51 36 5 51 36 5 1 -0 36 16 17 36 16 17 1 -0 36 52 16 36 52 16 1 -0 35 0 10 35 0 10 1 -0 41 32 34 41 32 34 1 -0 41 42 32 41 42 32 1 -0 42 31 32 42 31 32 1 -0 42 53 31 42 53 31 1 -0 44 31 53 44 31 53 1 -0 52 36 51 52 36 51 1 -0 49 52 51 49 52 51 1 -0 40 53 42 40 53 42 1 -0 5 3 50 5 3 50 1 -0 3 0 50 3 0 50 1 -0 34 27 28 34 27 28 1 -0 34 33 27 34 33 27 1 -0 33 26 27 33 26 27 1 -0 33 31 26 33 31 26 1 -0 6 53 40 6 53 40 1 -0 6 38 53 6 38 53 1 -0 38 44 53 38 44 53 1 -0 38 43 44 38 43 44 1 -0 29 49 35 29 49 35 1 -0 29 24 49 29 24 49 1 -0 24 52 49 24 52 49 1 -0 24 16 52 24 16 52 1 -0 26 37 30 26 37 30 1 -0 0 35 49 0 35 49 1 -0 31 44 37 31 44 37 1 -0 78 80 79 78 80 79 1 -0 78 82 81 78 82 81 1 -0 83 84 80 83 84 80 1 -0 83 81 85 83 81 85 1 -0 86 79 87 86 79 87 1 -0 86 88 82 86 88 82 1 -0 89 87 84 89 87 84 1 -0 89 85 88 89 85 88 1 -0 78 79 82 78 79 82 1 -0 86 82 79 86 82 79 1 -0 83 85 84 83 85 84 1 -0 89 84 85 89 84 85 1 -0 80 78 83 80 78 83 1 -0 81 83 78 81 83 78 1 -0 87 89 86 87 89 86 1 -0 88 86 89 88 86 89 1 -0 79 80 87 79 80 87 1 -0 84 87 80 84 87 80 1 -0 82 88 81 82 88 81 1 -0 85 81 88 85 81 88 1 -0 90 54 91 90 54 91 1 -0 90 56 55 90 56 55 1 -0 57 58 54 57 58 54 1 -0 57 55 59 57 55 59 1 -0 60 91 61 60 91 61 1 -0 60 62 56 60 62 56 1 -0 63 61 58 63 61 58 1 -0 63 59 62 63 59 62 1 -0 90 91 56 90 91 56 1 -0 60 56 91 60 56 91 1 -0 57 59 58 57 59 58 1 -0 63 58 59 63 58 59 1 -0 54 90 57 54 90 57 1 -0 55 57 90 55 57 90 1 -0 61 63 60 61 63 60 1 -0 62 60 63 62 60 63 1 -0 91 54 61 91 54 61 1 -0 58 61 54 58 61 54 1 -0 56 62 55 56 62 55 1 -0 59 55 62 59 55 62 1 -0 64 66 65 64 66 65 1 -0 66 67 65 66 67 65 1 -0 67 66 68 67 66 68 1 -0 66 64 69 66 64 69 1 -0 64 70 69 64 70 69 1 -0 71 72 68 71 72 68 1 -0 72 67 68 72 67 68 1 -0 71 74 73 71 74 73 1 -0 70 75 69 70 75 69 1 -0 76 75 70 76 75 70 1 -0 73 72 71 73 72 71 1 -0 77 75 76 77 75 76 1 -0 92 94 93 92 94 93 1 -0 94 95 93 94 95 93 1 -0 96 98 97 96 98 97 1 -0 98 99 97 98 99 97 1 -0 95 101 100 95 101 100 1 -0 102 92 103 102 92 103 1 -0 99 102 103 99 102 103 1 -0 101 96 100 101 96 100 1 -0 104 93 95 104 93 95 1 -0 104 105 93 104 105 93 1 -0 106 95 100 106 95 100 1 -0 106 104 95 106 104 95 1 -0 107 100 96 107 100 96 1 -0 107 106 100 107 106 100 1 -0 108 96 97 108 96 97 1 -0 108 107 96 108 107 96 1 -0 109 97 99 109 97 99 1 -0 109 108 97 109 108 97 1 -0 110 99 103 110 99 103 1 -0 110 109 99 110 109 99 1 -0 111 103 92 111 103 92 1 -0 111 110 103 111 110 103 1 -0 105 92 93 105 92 93 1 -0 105 111 92 105 111 92 1 -0 95 94 112 95 94 112 1 -0 94 92 113 94 92 113 1 -0 99 98 114 99 98 114 1 -0 98 96 115 98 96 115 1 -0 96 101 115 96 101 115 1 -0 101 95 112 101 95 112 1 -0 92 102 113 92 102 113 1 -0 102 99 114 102 99 114 1 -0 128 130 129 128 130 129 1 -0 131 129 130 131 129 130 1 -0 132 129 116 132 129 116 1 -0 117 129 132 117 129 132 1 -0 118 120 119 118 120 119 1 -0 131 119 116 131 119 116 1 -0 131 118 119 131 118 119 1 -0 121 123 122 121 123 122 1 -0 121 124 123 121 124 123 1 -0 125 124 121 125 124 121 1 -0 125 132 126 125 132 126 1 -0 125 117 132 125 117 132 1 -0 119 127 126 119 127 126 1 -0 119 120 127 119 120 127 1 -0 126 116 119 126 116 119 1 -0 126 132 116 126 132 116 1 -0 122 128 121 122 128 121 1 -0 122 130 128 122 130 128 1 -0 117 121 128 117 121 128 1 -0 117 125 121 117 125 121 1 -0 127 125 126 127 125 126 1 -0 125 127 124 125 127 124 1 -0 118 130 122 118 130 122 1 -0 118 131 130 118 131 130 1 -0 123 118 122 123 118 122 1 -0 120 118 123 120 118 123 1 -0 129 131 116 129 131 116 1 -0 129 117 128 129 117 128 1 -0 133 135 134 133 135 134 1 -0 136 145 137 136 145 137 1 -0 138 146 139 138 146 139 1 -0 145 136 147 145 136 147 1 -0 148 137 145 148 137 145 1 -0 146 136 139 146 136 139 1 -0 138 148 144 138 148 144 1 -0 146 138 144 146 138 144 1 -0 148 138 140 148 138 140 1 -0 137 142 141 137 142 141 1 -0 136 141 134 136 141 134 1 -0 136 137 141 136 137 141 1 -0 135 136 134 135 136 134 1 -0 139 136 135 139 136 135 1 -0 140 142 137 140 142 137 1 -0 143 140 138 143 140 138 1 -0 139 133 138 139 133 138 1 -0 142 143 141 142 143 141 1 -0 135 133 139 135 133 139 1 -0 143 142 140 143 142 140 1 -0 136 146 147 136 146 147 1 -0 137 148 140 137 148 140 1 -0 158 160 159 158 160 159 1 -0 159 161 158 159 161 158 1 -0 159 163 162 159 163 162 1 -0 159 164 163 159 164 163 1 -0 165 150 149 165 150 149 1 -0 161 151 158 161 151 158 1 -0 161 150 151 161 150 151 1 -0 152 151 153 152 151 153 1 -0 152 154 151 152 154 151 1 -0 160 151 154 160 151 154 1 -0 160 158 151 160 158 151 1 -0 152 155 154 152 155 154 1 -0 155 160 154 155 160 154 1 -0 155 164 160 155 164 160 1 -0 165 157 156 165 157 156 1 -0 165 149 157 165 149 157 1 -0 163 149 162 163 149 162 1 -0 163 157 149 163 157 149 1 -0 150 153 151 150 153 151 1 -0 150 165 153 150 165 153 1 -0 150 162 149 150 162 149 1 -0 150 161 162 150 161 162 1 -0 164 157 163 164 157 163 1 -0 164 155 157 164 155 157 1 -0 155 156 157 155 156 157 1 -0 156 155 152 156 155 152 1 -0 161 159 162 161 159 162 1 -0 164 159 160 164 159 160 1 -0 171 173 172 171 173 172 1 -0 178 175 174 178 175 174 1 -0 181 177 176 181 177 176 1 -0 175 178 182 175 178 182 1 -0 174 179 178 174 179 178 1 -0 175 181 176 175 181 176 1 -0 179 177 180 179 177 180 1 -0 177 181 180 177 181 180 1 -0 177 179 166 177 179 166 1 -0 167 174 168 167 174 168 1 -0 174 169 168 174 169 168 1 -0 174 175 169 174 175 169 1 -0 175 171 169 175 171 169 1 -0 175 176 171 175 176 171 1 -0 167 166 174 167 166 174 1 -0 166 170 177 166 170 177 1 -0 173 176 177 173 176 177 1 -0 170 167 168 170 167 168 1 -0 173 171 176 173 171 176 1 -0 167 170 166 167 170 166 1 -0 181 175 182 181 175 182 1 -0 179 174 166 179 174 166 1 -"Mesh2" 0 2 -8 -0 -0.996554 -0.733333 0.966338 0.000000 0.000000 2 -0 -0.172372 -1.733333 0.675336 0.000000 0.000000 2 -0 0.172372 -1.733333 0.675336 0.000000 0.000000 2 -0 0.996554 -0.733333 0.966338 0.000000 0.000000 2 -0 1.022527 -0.733333 -0.561818 0.000000 0.000000 2 -0 0.168166 -1.583333 -0.313034 0.000000 0.000000 2 -0 -0.168166 -1.583333 -0.313034 0.000000 0.000000 2 -0 -1.022527 -0.733333 -0.561818 0.000000 0.000000 2 -8 -0.078826 -0.529008 0.243554 -0.489256 -0.243107 0.630725 --0.489256 -0.243107 0.630725 --0.091614 -0.498532 0.059475 --0.072707 -0.511329 -0.253282 --0.490471 -0.213409 -0.669348 -0.490471 -0.213409 -0.669348 -0.087069 -0.484794 -0.070788 -6 -0 4 6 5 4 6 5 1 -0 4 7 6 4 7 6 1 -0 0 2 1 0 2 1 1 -0 0 3 2 0 3 2 1 -0 2 6 1 2 6 1 1 -0 2 5 6 2 5 6 1 -"Mesh3" 0 3 -30 -0 0.897629 -3.525104 -0.627793 0.000000 0.000000 6 -0 0.419607 -1.279979 0.410987 0.000000 0.000000 6 -0 0.647604 -1.425104 0.536394 0.000000 0.000000 6 -0 0.698708 -1.275104 -0.501540 0.000000 0.000000 6 -0 0.479108 -1.164476 -0.402394 0.000000 0.000000 6 -0 -0.259145 -1.275105 -0.721937 0.000000 0.000000 6 -0 -0.515135 -1.149327 0.036193 0.000000 0.000000 6 -0 -0.254883 -1.060248 -0.586006 0.000000 0.000000 6 -0 -0.740171 -1.425103 0.092895 0.000000 0.000000 6 -0 -0.229985 -1.425104 0.837091 0.000000 0.000000 6 -0 -0.178627 -1.203613 0.634724 0.000000 0.000000 6 -0 -0.844520 -3.525104 -0.590016 0.000000 0.000000 6 -0 -0.622834 -3.525105 0.739075 0.000000 0.000000 6 -0 0.671653 -3.525103 0.701298 0.000000 0.000000 6 -0 0.018470 -3.525103 -0.974784 0.000000 0.000000 6 -0 -0.698708 -1.275105 -0.501540 0.000000 0.000000 13 -0 0.259145 -1.275106 -0.721936 0.000000 0.000000 13 -0 0.254883 -1.060249 -0.586006 0.000000 0.000000 13 -0 0.515135 -1.149328 0.036193 0.000000 0.000000 13 -0 0.229985 -1.425106 0.837091 0.000000 0.000000 13 -0 0.740171 -1.425105 0.092895 0.000000 0.000000 13 -0 0.178627 -1.203615 0.634724 0.000000 0.000000 13 -0 -0.897629 -3.525106 -0.627793 0.000000 0.000000 13 -0 -0.671653 -3.525106 0.701298 0.000000 0.000000 13 -0 0.844521 -3.525106 -0.590016 0.000000 0.000000 13 -0 0.622834 -3.525107 0.739075 0.000000 0.000000 13 -0 -0.018470 -3.525105 -0.974784 0.000000 0.000000 13 -0 -0.647604 -1.425106 0.536394 0.000000 0.000000 13 -0 -0.419608 -1.279980 0.410986 0.000000 0.000000 13 -0 -0.479109 -1.164477 -0.402394 0.000000 0.000000 13 -30 -0.846151 0.293366 -0.365234 -0.510918 0.579406 0.635021 -0.746389 0.466089 0.475042 -0.606471 0.636407 -0.476633 -0.732872 0.458101 -0.503032 --0.411919 0.443414 -0.796057 --0.938362 0.342350 0.047686 --0.346613 0.180935 -0.920392 --0.936292 0.341876 0.080481 --0.227316 0.489098 0.842087 --0.281336 0.450638 0.847216 --0.800719 0.335871 -0.424087 --0.637992 0.233664 0.699967 -0.447205 0.235164 0.830940 -0.020748 0.321082 -0.915489 --0.594284 0.524764 -0.609466 -0.411919 0.443414 -0.796057 -0.346613 0.180935 -0.920392 -0.938362 0.342350 0.047686 -0.400528 0.461901 0.791344 -0.936293 0.341876 0.080481 -0.173677 0.583658 0.793209 --0.846310 0.293023 -0.365362 --0.507570 0.258114 0.784903 -0.800719 0.335871 -0.424087 -0.518786 0.235395 0.790495 --0.020748 0.321082 -0.915489 --0.614375 0.524152 0.589753 --0.698709 0.413833 0.583565 --0.593331 0.663779 -0.455363 -40 -0 1 3 2 1 3 2 1 -0 1 4 3 1 4 3 1 -0 4 5 3 4 5 3 1 -0 6 5 7 6 5 7 1 -0 6 9 8 6 9 8 1 -0 1 9 10 1 9 10 1 -0 1 2 9 1 2 9 1 -0 5 6 8 5 6 8 1 -0 5 4 7 5 4 7 1 -0 9 6 10 9 6 10 1 -0 8 11 5 8 11 5 1 -0 9 13 12 9 13 12 1 -0 9 2 13 9 2 13 1 -0 14 5 11 14 5 11 1 -0 2 0 13 2 0 13 1 -0 2 3 0 2 3 0 1 -0 12 8 9 12 8 9 1 -0 8 12 11 8 12 11 1 -0 3 14 0 3 14 0 1 -0 5 14 3 5 14 3 1 -0 27 29 28 27 29 28 1 -0 27 15 29 27 15 29 1 -0 16 29 15 16 29 15 1 -0 16 18 17 16 18 17 1 -0 19 18 20 19 18 20 1 -0 27 21 19 27 21 19 1 -0 27 28 21 27 28 21 1 -0 18 16 20 18 16 20 1 -0 29 16 17 29 16 17 1 -0 18 19 21 18 19 21 1 -0 22 27 23 22 27 23 1 -0 22 15 27 22 15 27 1 -0 24 20 16 24 20 16 1 -0 27 25 23 27 25 23 1 -0 27 19 25 27 19 25 1 -0 16 26 24 16 26 24 1 -0 20 25 19 20 25 19 1 -0 25 20 24 25 20 24 1 -0 26 15 22 26 15 22 1 -0 26 16 15 26 16 15 1 -"Mesh4" 0 4 -22 -0 0.272837 -1.427456 1.294944 0.000000 0.000000 4 -0 -0.415525 -1.427456 1.294944 0.000000 0.000000 4 -0 -1.011815 -1.427456 -1.117400 0.000000 0.000000 4 -0 0.814546 -1.427456 -1.117399 0.000000 0.000000 4 -0 0.482888 -1.427456 -2.323394 0.000000 0.000000 4 -0 -0.686739 -1.427456 -2.323394 0.000000 0.000000 4 -0 -0.740924 -0.750737 -2.608656 0.000000 0.000000 4 -0 0.595824 -0.750737 -2.608656 0.000000 0.000000 4 -0 0.719843 -0.792434 -0.897135 0.000000 0.000000 4 -0 -0.900872 -0.792434 -0.897135 0.000000 0.000000 4 -0 -0.272837 -1.427456 1.294944 0.000000 0.000000 11 -0 -0.595824 -0.750737 -2.608656 0.000000 0.000000 11 -0 0.740924 -0.750737 -2.608656 0.000000 0.000000 11 -0 0.686740 -1.427456 -2.323394 0.000000 0.000000 11 -0 -0.482888 -1.427456 -2.323394 0.000000 0.000000 11 -0 -0.272837 -1.427456 1.294944 0.000000 0.000000 11 -0 -0.719843 -0.792434 -0.897135 0.000000 0.000000 11 -0 0.900872 -0.792434 -0.897135 0.000000 0.000000 11 -0 0.415524 -1.427456 1.294944 0.000000 0.000000 11 -0 -0.814546 -1.427456 -1.117399 0.000000 0.000000 11 -0 1.011815 -1.427456 -1.117399 0.000000 0.000000 11 -0 0.415524 -1.427456 1.294944 0.000000 0.000000 11 -22 -0.458157 -0.617065 0.639784 --0.576711 -0.558808 0.595934 --0.706249 -0.707516 -0.025170 -0.698927 -0.714878 -0.021214 -0.302901 -0.664244 -0.683396 --0.318073 -0.862064 -0.394558 --0.632817 0.099790 -0.767844 -0.781883 0.318012 -0.536216 -0.942126 -0.150173 -0.299745 --0.944778 -0.019239 -0.327147 --0.478292 -0.451824 0.322794 --0.644250 0.074640 -0.761164 -0.760851 0.352050 -0.545129 -0.313758 -0.648189 -0.693835 --0.305334 -0.870313 -0.386427 --0.478292 -0.451824 0.322794 --0.759213 0.068818 -0.184414 -0.754480 -0.002744 -0.170980 -0.315500 -0.419145 0.233028 --0.698927 -0.714878 -0.021214 -0.706249 -0.707516 -0.025170 -0.315500 -0.419145 0.233028 -24 -0 0 2 1 0 2 1 1 -0 0 3 2 0 3 2 1 -0 4 6 5 4 6 5 1 -0 4 7 6 4 7 6 1 -0 6 2 5 6 2 5 1 -0 3 7 4 3 7 4 1 -0 3 5 2 3 5 2 1 -0 3 4 5 3 4 5 1 -0 8 3 0 8 3 0 1 -0 2 9 1 2 9 1 1 -0 6 9 2 6 9 2 1 -0 8 7 3 8 7 3 1 -0 19 21 20 19 21 20 1 -0 19 10 21 19 10 21 1 -0 11 13 12 11 13 12 1 -0 11 14 13 11 14 13 1 -0 20 12 13 20 12 13 1 -0 11 19 14 11 19 14 1 -0 14 20 13 14 20 13 1 -0 14 19 20 14 19 20 1 -0 19 16 15 19 16 15 1 -0 17 20 18 17 20 18 1 -0 17 12 20 17 12 20 1 -0 11 16 19 11 16 19 1 -"Mesh5" 0 5 -0 -0 -0 -"Mesh6" 0 6 -70 -0 0.741149 3.144082 -0.317635 0.000000 0.000000 0 -0 0.774140 2.421536 -0.767976 0.000000 0.000000 0 -0 0.453530 2.187757 -0.969263 0.000000 0.000000 0 -0 0.346869 2.888017 -0.598797 0.000000 0.000000 0 -0 -0.375499 2.882374 -0.590609 0.000000 0.000000 0 -0 -0.503530 2.187757 -0.969263 0.000000 0.000000 0 -0 -0.760554 2.421536 -0.767976 0.000000 0.000000 0 -0 -0.830949 3.144082 -0.317635 0.000000 0.000000 0 -0 -0.473000 3.649218 0.143900 0.000000 0.000000 0 -0 -0.301000 3.349218 0.554105 0.000000 0.000000 0 -0 0.301000 3.349218 0.554105 0.000000 0.000000 0 -0 0.473000 3.649218 0.143900 0.000000 0.000000 0 -0 0.217925 3.549218 -0.303596 0.000000 0.000000 0 -0 -0.217924 3.549218 -0.303596 0.000000 0.000000 0 -0 0.276294 0.006496 0.353946 0.000000 0.000000 5 -0 0.420723 -0.642485 -0.395587 0.000000 0.000000 5 -0 0.420724 -0.642485 -0.676543 0.000000 0.000000 5 -0 0.276295 0.006495 -0.261685 0.000000 0.000000 5 -0 -0.239132 0.006495 -0.261686 0.000000 0.000000 5 -0 0.083576 -0.750593 -0.676543 0.000000 0.000000 5 -0 -0.253571 -1.399237 0.447279 0.000000 0.000000 5 -0 -0.027615 -1.669505 0.391088 0.000000 0.000000 5 -0 0.197149 -1.561398 0.391088 0.000000 0.000000 5 -0 -0.028807 -1.291128 0.447279 0.000000 0.000000 5 -0 -0.422144 -0.966809 0.503469 0.000000 0.000000 5 -0 -0.239133 0.006496 0.353946 0.000000 0.000000 5 -0 -0.325037 0.006496 0.053280 0.000000 0.000000 5 -0 0.197150 -1.561398 -0.395588 0.000000 0.000000 5 -0 -0.027615 -1.669505 -0.395588 0.000000 0.000000 5 -0 -0.197380 -0.858701 0.503470 0.000000 0.000000 5 -0 -0.031535 0.245985 0.055003 0.000000 0.000000 5 -0 0.420724 -1.291128 -0.676543 0.000000 0.000000 5 -0 0.420723 -1.291128 -0.395587 0.000000 0.000000 5 -0 0.252149 -1.291128 -0.395587 0.000000 0.000000 5 -0 0.252149 -1.291128 -0.676542 0.000000 0.000000 5 -0 -0.422144 -0.966809 -0.507970 0.000000 0.000000 5 -0 -0.197379 -0.858701 -0.507970 0.000000 0.000000 5 -0 0.083576 -0.750593 -0.395587 0.000000 0.000000 5 -0 -0.253571 -1.399237 -0.451779 0.000000 0.000000 5 -0 -0.028806 -1.291128 -0.451778 0.000000 0.000000 5 -0 -0.284495 1.165808 0.416513 0.000000 0.000000 9 -0 -0.284495 1.165808 -0.317789 0.000000 0.000000 9 -0 0.284495 1.165808 0.416513 0.000000 0.000000 9 -0 0.284495 1.165808 -0.317789 0.000000 0.000000 9 -0 0.324327 0.002958 0.053280 0.000000 0.000000 12 -0 0.238422 0.002958 0.353946 0.000000 0.000000 12 -0 0.421433 -0.970347 0.503469 0.000000 0.000000 12 -0 0.026904 -1.673044 -0.395588 0.000000 0.000000 12 -0 -0.197861 -1.564937 -0.395588 0.000000 0.000000 12 -0 0.196669 -0.862239 0.503470 0.000000 0.000000 12 -0 0.030825 0.242447 0.055003 0.000000 0.000000 12 -0 -0.252860 -1.294666 -0.676542 0.000000 0.000000 12 -0 -0.252861 -1.294666 -0.395587 0.000000 0.000000 12 -0 -0.421431 -1.294667 -0.395587 0.000000 0.000000 12 -0 -0.421432 -1.294666 -0.676543 0.000000 0.000000 12 -0 0.196669 -0.862239 -0.507970 0.000000 0.000000 12 -0 0.421433 -0.970347 -0.507970 0.000000 0.000000 12 -0 -0.084286 -0.754130 -0.395587 0.000000 0.000000 12 -0 0.252860 -1.402775 -0.451779 0.000000 0.000000 12 -0 0.028096 -1.294667 -0.451778 0.000000 0.000000 12 -0 -0.421432 -0.646023 -0.676543 0.000000 0.000000 12 -0 -0.421431 -0.646023 -0.395587 0.000000 0.000000 12 -0 -0.277006 0.002958 0.353946 0.000000 0.000000 12 -0 -0.277006 0.002958 -0.261685 0.000000 0.000000 12 -0 -0.084286 -0.754131 -0.676543 0.000000 0.000000 12 -0 0.238422 0.002958 -0.261686 0.000000 0.000000 12 -0 0.028096 -1.294667 0.447279 0.000000 0.000000 12 -0 -0.197860 -1.564937 0.391088 0.000000 0.000000 12 -0 0.026904 -1.673044 0.391088 0.000000 0.000000 12 -0 0.252860 -1.402776 0.447279 0.000000 0.000000 12 -70 --0.266513 0.653713 -0.708258 --0.638041 0.507508 -0.579084 -0.317192 0.663267 -0.677839 -0.859102 0.102349 -0.501467 --0.733591 0.220461 -0.642838 --0.591345 0.568922 -0.571524 -0.300885 0.606282 -0.736132 -0.353383 0.634297 -0.687596 --0.658167 0.510267 -0.127416 -0.026034 0.224307 0.065927 --0.014882 0.213630 0.041523 -0.670849 0.502446 -0.139476 -0.272319 0.493694 -0.566907 --0.183457 0.502918 -0.613058 -0.805905 0.224587 0.547794 -0.785949 -0.176958 0.592427 -0.675303 0.336692 -0.656205 -0.500184 0.736896 -0.454753 --0.394000 0.535145 -0.747251 --0.424103 -0.196481 -0.884043 --0.557673 -0.445618 0.700304 --0.133445 -0.855714 0.499946 -0.765892 -0.244699 0.594585 -0.652288 0.268458 0.708837 --0.790177 0.003034 0.612872 --0.406143 0.518811 0.752252 --0.892149 0.451718 0.004531 -0.765893 -0.244698 -0.594585 --0.133444 -0.855714 -0.499946 -0.546009 -0.199902 0.813580 --0.160016 0.987085 0.007660 -0.577349 -0.577352 -0.577350 -0.577349 -0.577350 0.577352 --0.503466 -0.684392 0.527380 --0.503466 -0.684392 -0.527379 --0.799529 0.036445 -0.599520 -0.185039 -0.083615 -0.979168 -0.163898 -0.774333 0.611185 --0.422232 -0.379055 -0.823431 -0.652290 0.268458 -0.708836 --0.607254 0.144124 0.781327 --0.769991 0.133825 -0.623863 -0.788353 0.160166 0.594009 -0.589205 0.128420 -0.797713 -0.892149 0.451718 0.004531 -0.406143 0.518811 0.752252 -0.790176 0.003034 0.612872 -0.133445 -0.855714 -0.499947 --0.765893 -0.244697 -0.594585 --0.546009 -0.199903 0.813580 -0.160016 0.987085 0.007660 -0.503466 -0.684393 -0.527379 -0.503466 -0.684392 0.527380 --0.577349 -0.577350 0.577352 --0.577349 -0.577352 -0.577350 --0.185039 -0.083615 -0.979168 -0.799529 0.036445 -0.599520 --0.163898 -0.774333 0.611184 -0.422232 -0.379054 -0.823431 --0.652289 0.268458 -0.708836 --0.675303 0.336690 -0.656206 --0.785950 -0.176959 0.592426 --0.805905 0.224585 0.547794 --0.500185 0.736895 -0.454753 -0.424103 -0.196482 -0.884043 -0.394000 0.535145 -0.747251 --0.652288 0.268458 0.708837 --0.765892 -0.244698 0.594585 -0.133445 -0.855714 0.499946 -0.557673 -0.445617 0.700304 -110 -0 0 2 1 0 2 1 1 -0 0 3 2 0 3 2 1 -0 4 6 5 4 6 5 1 -0 4 7 6 4 7 6 1 -0 14 16 15 14 16 15 1 -0 14 17 16 14 17 16 1 -0 18 19 16 18 19 16 1 -0 20 22 21 20 22 21 1 -0 20 23 22 20 23 22 1 -0 24 26 25 24 26 25 1 -0 27 21 22 27 21 22 1 -0 27 28 21 27 28 21 1 -0 23 24 29 23 24 29 1 -0 23 20 24 23 20 24 1 -0 30 26 18 30 26 18 1 -0 31 33 32 31 33 32 1 -0 31 34 33 31 34 33 1 -0 35 36 18 35 36 18 1 -0 30 17 14 30 17 14 1 -0 30 14 25 30 14 25 1 -0 30 18 17 30 18 17 1 -0 37 14 15 37 14 15 1 -0 15 33 37 15 33 37 1 -0 15 32 33 15 32 33 1 -0 20 35 24 20 35 24 1 -0 20 38 35 20 38 35 1 -0 37 34 19 37 34 19 1 -0 37 33 34 37 33 34 1 -0 39 28 27 39 28 27 1 -0 39 38 28 39 38 28 1 -0 19 31 16 19 31 16 1 -0 19 34 31 19 34 31 1 -0 38 39 36 38 39 36 1 -0 26 30 25 26 30 25 1 -0 18 36 19 18 36 19 1 -0 38 21 28 38 21 28 1 -0 38 20 21 38 20 21 1 -0 38 36 35 38 36 35 1 -0 32 16 31 32 16 31 1 -0 32 15 16 32 15 16 1 -0 29 24 25 29 24 25 1 -0 26 24 35 26 24 35 1 -0 18 16 17 18 16 17 1 -0 37 29 14 37 29 14 1 -0 23 27 22 23 27 22 1 -0 23 39 27 23 39 27 1 -0 29 25 14 29 25 14 1 -0 29 19 36 29 19 36 1 -0 29 37 19 29 37 19 1 -0 26 35 18 26 35 18 1 -0 29 39 23 29 39 23 1 -0 29 36 39 29 36 39 1 -0 8 40 9 8 40 9 1 -0 10 40 42 10 40 42 1 -0 10 9 40 10 9 40 1 -0 11 43 12 11 43 12 1 -0 13 43 41 13 43 41 1 -0 13 12 43 13 12 43 1 -0 41 8 13 41 8 13 1 -0 40 8 41 40 8 41 1 -0 42 11 10 42 11 10 1 -0 11 42 43 11 42 43 1 -0 60 62 61 60 62 61 1 -0 63 62 60 63 62 60 1 -0 64 65 60 64 65 60 1 -0 66 68 67 66 68 67 1 -0 66 69 68 66 69 68 1 -0 44 46 45 44 46 45 1 -0 47 67 68 47 67 68 1 -0 47 48 67 47 48 67 1 -0 69 49 46 69 49 46 1 -0 69 66 49 69 66 49 1 -0 44 50 65 44 50 65 1 -0 51 53 52 51 53 52 1 -0 51 54 53 51 54 53 1 -0 55 56 65 55 56 65 1 -0 63 50 62 63 50 62 1 -0 62 50 45 62 50 45 1 -0 65 50 63 65 50 63 1 -0 62 57 61 62 57 61 1 -0 53 57 52 53 57 52 1 -0 53 61 57 53 61 57 1 -0 58 46 56 58 46 56 1 -0 58 69 46 58 69 46 1 -0 52 64 51 52 64 51 1 -0 52 57 64 52 57 64 1 -0 58 48 47 58 48 47 1 -0 58 59 48 58 59 48 1 -0 51 60 54 51 60 54 1 -0 51 64 60 51 64 60 1 -0 59 58 55 59 58 55 1 -0 50 44 45 50 44 45 1 -0 55 65 64 55 65 64 1 -0 69 47 68 69 47 68 1 -0 69 58 47 69 58 47 1 -0 55 58 56 55 58 56 1 -0 61 54 60 61 54 60 1 -0 61 53 54 61 53 54 1 -0 46 49 45 46 49 45 1 -0 46 44 56 46 44 56 1 -0 60 65 63 60 65 63 1 -0 49 57 62 49 57 62 1 -0 59 67 48 59 67 48 1 -0 59 66 67 59 66 67 1 -0 45 49 62 45 49 62 1 -0 57 55 64 57 55 64 1 -0 57 49 55 57 49 55 1 -0 56 44 65 56 44 65 1 -0 55 66 59 55 66 59 1 -0 55 49 66 55 49 66 1 -"Mesh7" 0 7 -133 -0 -0.586758 0.900000 -0.376105 0.333879 0.714173 0 -0 -0.800384 1.479107 -0.512623 0.273398 0.569656 0 -0 0.000000 1.500000 -0.700000 0.500000 0.564442 0 -0 -0.668289 0.900000 0.254475 0.310796 0.714173 0 -0 1.071220 2.385888 0.442661 0.803281 0.343368 0 -0 0.000000 2.850000 0.850000 0.500000 0.227548 0 -0 0.000000 0.900000 0.547500 0.500000 0.714173 0 -0 0.668289 0.900000 0.254475 0.689204 0.714173 0 -0 0.799946 1.477320 -0.511980 0.726478 0.570102 0 -0 1.119495 2.350000 -0.200000 0.816948 0.352324 0 -0 -1.071220 2.385888 0.442661 0.196720 0.343368 0 -0 -0.702477 1.704467 -0.918750 0.301117 0.513417 0 -0 1.154803 2.208148 -0.695795 0.826944 0.387723 0 -0 1.116469 3.047720 -0.266731 0.816091 0.178207 0 -0 0.652477 1.704467 -0.918750 0.684727 0.513417 0 -0 -1.140003 2.208148 -0.695795 0.177246 0.387723 0 -0 -1.119495 2.350000 -0.200000 0.183052 0.352324 0 -0 0.586758 0.900000 -0.376105 0.666121 0.714173 0 -0 0.000000 0.900000 -0.640000 0.500000 0.714173 0 -0 -0.969549 3.215841 0.424211 0.225504 0.136252 0 -0 -1.343011 3.073077 0.359041 0.119771 0.171879 0 -0 1.343011 3.073080 0.359041 0.880229 0.171878 0 -0 0.969549 3.215841 0.424211 0.774496 0.136252 0 -0 0.000000 2.850000 0.850000 0.500000 0.216563 0 -0 -0.969549 3.215841 0.424211 0.435665 0.119561 0 -0 -1.097826 1.555935 0.811112 0.427153 0.559682 0 -0 0.847915 1.320176 0.799866 0.556264 0.622193 0 -0 1.097826 1.555935 0.811112 0.572847 0.559682 0 -0 -0.847915 1.320176 0.799866 0.443736 0.622193 0 -0 0.969549 3.215841 0.424211 0.564335 0.119561 0 -0 -1.216469 3.047720 -0.266731 0.155597 0.178207 0 -0 -1.119495 2.350000 -0.200000 0.207927 0.055810 0 -0 -1.071220 2.385888 0.442661 0.524816 0.043608 0 -0 -1.343011 3.073077 0.359041 0.483584 0.112306 0 -0 -1.216469 3.047720 -0.266731 0.175022 0.055045 0 -0 1.071220 2.385888 0.442661 0.524816 0.043608 0 -0 1.119495 2.350000 -0.200000 0.207927 0.055810 0 -0 1.343011 3.073080 0.359041 0.483584 0.112306 0 -0 1.116469 3.047720 -0.266731 0.175022 0.055045 0 -0 0.836037 1.933844 -0.214802 0.409014 0.694738 1 -0 0.834864 1.558592 -0.782057 0.408918 0.857099 1 -0 -0.013148 2.122574 -0.368457 0.358177 0.738718 1 -0 -0.836033 1.933844 -0.214802 0.304801 0.694738 1 -0 -0.774866 1.996096 0.911106 0.309862 0.372389 1 -0 0.774869 1.996097 0.911106 0.403221 0.372389 1 -0 1.294243 1.487562 0.235998 0.446580 0.565710 1 -0 -0.834859 1.558591 -0.782057 0.304897 0.857099 1 -0 -1.294240 1.487562 0.235998 0.267235 0.565710 1 -0 -1.019456 1.234107 -0.437852 0.289763 0.758581 1 -0 1.019459 1.234107 -0.437852 0.424052 0.758581 1 -0 1.184663 0.735397 0.148246 0.437596 0.590827 1 -0 -0.013148 2.201141 0.863242 0.358304 0.385875 1 -0 0.000000 0.268936 1.059772 0.359801 0.330503 1 -0 0.818129 0.183210 0.477379 0.407546 0.496622 1 -0 1.331390 -1.632237 1.768700 0.450056 0.127276 1 -0 -1.331385 -1.632237 1.768700 0.268644 0.127276 1 -0 -0.818126 0.183210 0.477380 0.306269 0.496621 1 -0 -1.184658 0.735397 0.148246 0.276219 0.590827 1 -0 0.000000 1.090443 1.825479 0.359350 0.110251 1 -0 -0.000001 1.662471 -0.919120 0.359255 0.896330 1 -0 -1.217085 -1.038242 -0.960453 0.148950 0.593140 2 -0 -0.763000 -0.147431 -0.696289 0.279924 0.258109 2 -0 0.000000 -0.245367 -0.869494 0.500000 0.294942 2 -0 0.000001 -1.062726 -1.287383 0.500000 0.602348 2 -0 0.763000 -0.147431 -0.696288 0.720076 0.258109 2 -0 1.217085 -1.038242 -0.972951 0.851050 0.593140 2 -0 1.265950 -1.061434 1.196373 0.865144 0.601862 2 -0 0.763000 0.388121 0.666148 0.720076 0.056690 2 -0 0.000000 0.420078 0.781617 0.500000 0.044672 2 -0 0.000001 -1.057439 1.551764 0.500000 0.600359 2 -0 -0.763000 0.388121 0.666148 0.279924 0.056690 2 -0 -1.265951 -1.061434 1.196373 0.134855 0.601862 2 -0 1.090000 0.096377 -0.026673 0.814394 0.166415 2 -0 1.743697 -1.027291 0.115440 0.963651 0.589022 2 -0 -1.743697 -1.027290 0.115440 0.036349 0.589020 2 -0 -1.090000 0.096377 -0.026673 0.185606 0.166415 2 -0 -0.763000 0.388121 0.666148 0.281800 0.841912 2 -0 0.000000 0.420078 0.781617 0.500000 0.833938 2 -0 0.763000 -0.147431 -0.696288 0.718200 0.975560 2 -0 -0.763000 -0.147431 -0.696289 0.281800 0.975560 2 -0 -1.090000 0.096377 -0.026673 0.188286 0.914718 2 -0 0.000000 -0.245367 -0.869494 0.500000 1.000000 2 -0 0.763000 0.388121 0.666148 0.718200 0.841912 2 -0 1.090000 0.096377 -0.026673 0.811715 0.914718 2 -0 -0.385182 -0.631122 0.481773 0.098290 0.460503 3 -0 0.515939 -0.631122 0.481744 0.098306 0.460503 3 -0 -0.378782 -0.631122 -0.387007 0.580570 0.462701 3 -0 0.522761 -0.631122 -0.387055 0.580595 0.462701 3 -0 0.719843 -0.792434 -0.897135 0.575700 0.716441 4 -0 0.595824 -0.750737 -2.608656 0.576769 0.951488 4 -0 -0.740924 -0.750737 -2.608656 0.576769 0.951488 4 -0 -0.043295 -0.119525 -2.318063 0.810447 0.918607 4 -0 -0.900872 -0.792434 -0.897135 0.575700 0.716441 4 -0 -0.036561 0.042588 -1.339214 0.880060 0.788569 4 -0 0.437847 -0.108884 0.529255 0.583272 0.175413 8 -0 0.446950 -0.098025 -0.362338 0.143638 0.172641 8 -0 -0.388718 -3.082265 0.535157 0.586183 0.934565 8 -0 -0.263530 -0.089190 0.398027 0.518565 0.170384 8 -0 -0.286799 -0.043133 -0.266871 0.190712 0.158626 8 -0 -0.374701 -3.096954 -0.347619 0.150896 0.938315 8 -0 0.665363 -3.096968 -0.347673 0.573569 0.199432 8 -0 -0.374701 -3.096954 -0.347619 0.573540 0.199427 8 -0 0.665363 -3.096968 -0.347673 0.150869 0.938319 8 -0 0.356384 -0.847761 -0.260613 0.193797 0.364060 8 -0 0.346930 -0.852232 0.437567 0.538062 0.365202 8 -0 0.654853 -3.082275 0.535102 0.586156 0.934568 8 -0 0.654853 -3.082275 0.535102 0.083460 0.194799 8 -0 -0.388718 -3.082265 0.535157 0.083430 0.194794 8 -0 0.378781 -0.631122 -0.387007 0.128949 0.402377 10 -0 -0.522761 -0.631122 -0.387055 0.128923 0.402377 10 -0 -0.515939 -0.631122 0.481744 0.585685 0.402377 10 -0 0.385182 -0.631122 0.481773 0.585701 0.402377 10 -0 0.043295 -0.119525 -2.318063 0.787791 0.755360 11 -0 0.740924 -0.750737 -2.608656 0.580194 0.732045 11 -0 -0.595824 -0.750737 -2.608656 0.580194 0.732045 11 -0 0.036561 0.042588 -1.339214 0.848674 0.866740 11 -0 0.900872 -0.792434 -0.897135 0.580962 0.932232 11 -0 -0.719843 -0.792434 -0.897135 0.580962 0.932232 11 -0 0.036561 0.042588 -1.339214 0.848674 0.866740 11 -0 -0.437848 -0.108884 0.529255 0.583272 0.175413 15 -0 0.388719 -3.082265 0.535157 0.599847 0.136603 15 -0 -0.665363 -3.096968 -0.347673 0.136160 0.143097 15 -0 -0.446950 -0.098025 -0.362338 0.143638 0.172641 15 -0 0.286799 -0.043133 -0.266870 0.190712 0.158626 15 -0 0.263530 -0.089189 0.398027 0.518565 0.170384 15 -0 0.388719 -3.082265 0.535157 0.586183 0.934565 15 -0 0.374702 -3.096953 -0.347619 0.150896 0.938315 15 -0 -0.654852 -3.082276 0.535102 0.599819 0.136608 15 -0 0.374702 -3.096953 -0.347619 0.136189 0.143090 15 -0 -0.665363 -3.096968 -0.347673 0.150869 0.938319 15 -0 -0.356384 -0.847761 -0.260613 0.193797 0.364060 15 -0 -0.346930 -0.852232 0.437567 0.538062 0.365202 15 -0 -0.654852 -3.082276 0.535102 0.586156 0.934568 15 -133 --0.720741 0.074768 -0.689161 --0.757562 -0.531505 -0.378948 -0.000251 -0.514057 -0.857756 --0.952945 0.061920 0.296751 -0.121318 0.059929 0.898503 -0.000000 -0.065318 0.992846 -0.000000 0.199719 0.979853 -0.952937 0.061881 0.296787 -0.748102 -0.535089 -0.392459 -0.034656 -0.214261 -0.168619 --0.121318 0.059928 0.898504 --0.400644 -0.913722 -0.067792 -0.839696 -0.482211 0.249769 -0.831101 -0.003015 -0.052158 -0.259198 -0.955881 -0.138231 --0.874581 -0.447960 0.185578 --0.031521 -0.228366 -0.174291 -0.720751 0.074753 -0.689151 -0.000000 0.156598 -0.987662 -0.183361 0.448022 0.815537 --0.765462 -0.022516 -0.100626 -0.617406 -0.075157 -0.245175 --0.107411 0.335190 0.902107 -0.000000 -0.065318 0.992846 -0.183361 0.448022 0.815537 -0.309629 0.145799 0.189766 --0.087251 0.380651 0.209618 --0.315426 0.165437 0.204425 -0.208320 0.325535 0.200049 --0.107411 0.335190 0.902107 --0.809004 -0.038176 -0.049972 --0.031521 -0.228366 -0.174291 --0.121318 0.059928 0.898504 --0.765462 -0.022516 -0.100626 --0.809004 -0.038176 -0.049972 -0.121318 0.059929 0.898503 -0.034656 -0.214261 -0.168619 -0.617406 -0.075157 -0.245175 -0.831101 -0.003015 -0.052158 -0.540091 0.805569 -0.243639 -0.593957 0.365993 -0.716425 --0.003142 0.940411 -0.340026 --0.543384 0.803587 -0.242860 --0.543779 0.752541 0.371465 -0.540791 0.754627 0.371596 -0.955865 0.247059 -0.159010 --0.594798 0.364557 -0.716459 --0.955865 0.247058 -0.159011 --0.885286 -0.110990 -0.451608 -0.885285 -0.110993 -0.451610 -0.852123 -0.334245 -0.402698 --0.003382 0.919790 0.392397 -0.000000 -0.963157 0.268940 -0.452174 -0.831333 0.323147 -0.716499 -0.697303 -0.019955 --0.716498 -0.697303 -0.019958 --0.530561 -0.824284 0.197639 --0.852126 -0.334242 -0.402695 --0.000910 0.256554 0.966529 --0.000087 0.540983 -0.841033 --0.326759 0.789029 -0.520252 --0.550727 0.368416 -0.737470 --0.041435 0.309592 -0.941486 -0.008413 0.780968 -0.624514 -0.428218 0.381019 -0.811926 -0.389279 0.799599 -0.457279 -0.321808 0.808864 0.492117 -0.586652 0.513525 0.615473 -0.041449 0.437739 0.897187 --0.018859 0.804064 0.594243 --0.486200 0.501589 0.714084 --0.423024 0.823709 0.377564 -0.860752 0.462593 -0.192731 -0.599324 0.800463 0.008272 --0.567013 0.819020 -0.087765 --0.892136 0.441399 -0.045426 --0.486200 0.501589 0.714084 -0.041449 0.437739 0.897187 -0.428218 0.381019 -0.811926 --0.550727 0.368416 -0.737470 --0.892136 0.441399 -0.045426 --0.041435 0.309592 -0.941486 -0.586652 0.513525 0.615473 -0.860752 0.462593 -0.192731 --0.486320 0.647442 0.586780 -0.632803 0.661402 0.402626 --0.691086 0.524794 -0.496983 -0.357600 0.757669 -0.545949 -0.942126 -0.150173 -0.299745 -0.781883 0.318012 -0.536216 --0.632817 0.099790 -0.767844 --0.242495 0.881886 -0.404318 --0.944778 -0.019239 -0.327147 -0.107486 0.575032 -0.811039 -0.769270 -0.179984 0.613049 -0.675336 -0.121148 -0.727492 --0.798686 -0.018158 0.573388 --0.593622 0.352040 0.723658 --0.607728 0.121446 -0.784804 --0.572198 0.012746 -0.804219 -0.678971 -0.017201 -0.659074 --0.572198 0.012746 -0.804219 -0.678971 -0.017201 -0.659074 -0.831087 0.024618 -0.555597 -0.678470 -0.027160 0.734126 -0.659153 0.017283 0.673302 -0.659153 0.017283 0.673302 --0.798686 -0.018158 0.573388 -0.467661 0.637496 -0.612283 --0.624404 0.657646 -0.421451 --0.367452 0.760742 0.535024 -0.708617 0.543666 0.449766 --0.289398 0.869301 -0.400704 -0.760851 0.352050 -0.545129 --0.644250 0.074640 -0.761164 --0.032549 0.553166 -0.381879 -0.754480 -0.002744 -0.170980 --0.759213 0.068818 -0.184414 --0.032549 0.553166 -0.381879 --0.769271 -0.179984 0.613048 -0.575356 -0.011289 0.799675 --0.456841 0.021235 -0.886276 --0.679849 -0.123182 -0.722933 -0.617060 0.099779 -0.780565 -0.594142 0.330928 0.733132 -0.575356 -0.011289 0.799675 -0.794491 -0.011611 -0.583754 --0.878639 -0.007651 0.453799 -0.794491 -0.011611 -0.583754 --0.456841 0.021235 -0.886276 --0.831087 0.024618 -0.555597 --0.678470 -0.027160 0.734126 --0.878639 -0.007651 0.453799 -158 -0 0 2 1 0 2 1 1 -0 1 3 0 1 3 0 1 -0 4 6 5 4 6 5 1 -0 6 4 7 6 4 7 1 -0 7 9 8 7 9 8 1 -0 10 6 3 10 6 3 1 -0 6 10 5 6 10 5 1 -0 2 11 1 2 11 1 1 -0 12 9 13 12 9 13 1 -0 12 14 8 12 14 8 1 -0 15 16 1 15 16 1 1 -0 11 15 1 11 15 1 1 -0 76 6 77 76 6 77 1 -0 82 6 7 82 6 7 1 -0 83 7 17 83 7 17 1 -0 7 83 82 7 83 82 1 -0 18 78 17 18 78 17 1 -0 0 80 79 0 80 79 1 -0 6 76 3 6 76 3 1 -0 80 0 3 80 0 3 1 -0 18 79 81 18 79 81 1 -0 78 18 81 78 18 81 1 -0 79 18 0 79 18 0 1 -0 6 82 77 6 82 77 1 -0 83 17 78 83 17 78 1 -0 80 3 76 80 3 76 1 -0 19 10 20 19 10 20 1 -0 4 22 21 4 22 21 1 -0 22 4 5 22 4 5 1 -0 10 19 5 10 19 5 1 -0 23 25 24 23 25 24 1 -0 23 27 26 23 27 26 1 -0 23 26 28 23 26 28 1 -0 25 23 28 25 23 28 1 -0 27 23 29 27 23 29 1 -0 9 12 8 9 12 8 1 -0 16 15 30 16 15 30 1 -0 2 17 8 2 17 8 1 -0 2 18 17 2 18 17 1 -0 14 2 8 14 2 8 1 -0 2 14 11 2 14 11 1 -0 18 2 0 18 2 0 1 -0 7 8 17 7 8 17 1 -0 3 16 10 3 16 10 1 -0 9 7 4 9 7 4 1 -0 16 3 1 16 3 1 1 -0 39 41 40 39 41 40 1 -0 42 41 43 42 41 43 1 -0 39 45 44 39 45 44 1 -0 42 47 46 42 47 46 1 -0 41 39 44 41 39 44 1 -0 47 42 43 47 42 43 1 -0 48 46 47 48 46 47 1 -0 45 39 40 45 39 40 1 -0 49 50 45 49 50 45 1 -0 40 49 45 40 49 45 1 -0 44 51 41 44 51 41 1 -0 52 54 53 52 54 53 1 -0 55 52 56 55 52 56 1 -0 47 55 57 47 55 57 1 -0 57 48 47 57 48 47 1 -0 55 58 52 55 58 52 1 -0 59 41 46 59 41 46 1 -0 54 45 50 54 45 50 1 -0 53 54 50 53 54 50 1 -0 41 42 46 41 42 46 1 -0 55 56 57 55 56 57 1 -0 58 54 52 58 54 52 1 -0 41 59 40 41 59 40 1 -0 43 41 51 43 41 51 1 -0 54 44 45 54 44 45 1 -0 55 43 58 55 43 58 1 -0 58 51 44 58 51 44 1 -0 51 58 43 51 58 43 1 -0 43 55 47 43 55 47 1 -0 44 54 58 44 54 58 1 -0 60 62 61 60 62 61 1 -0 60 63 62 60 63 62 1 -0 63 64 62 63 64 62 1 -0 63 65 64 63 65 64 1 -0 66 68 67 66 68 67 1 -0 66 69 68 66 69 68 1 -0 69 70 68 69 70 68 1 -0 69 71 70 69 71 70 1 -0 65 72 64 65 72 64 1 -0 65 73 72 65 73 72 1 -0 74 61 75 74 61 75 1 -0 74 60 61 74 60 61 1 -0 71 75 70 71 75 70 1 -0 71 74 75 71 74 75 1 -0 73 67 72 73 67 72 1 -0 73 66 67 73 66 67 1 -0 84 106 85 84 106 85 1 -0 84 107 106 84 107 106 1 -0 86 107 84 86 107 84 1 -0 86 101 107 86 101 107 1 -0 87 101 86 87 101 86 1 -0 87 100 101 87 100 101 1 -0 85 100 87 85 100 87 1 -0 85 106 100 85 106 100 1 -0 89 91 90 89 91 90 1 -0 92 91 93 92 91 93 1 -0 92 90 91 92 90 91 1 -0 89 93 91 89 93 91 1 -0 89 88 93 89 88 93 1 -0 31 94 32 31 94 32 1 -0 95 94 31 95 94 31 1 -0 96 98 97 96 98 97 1 -0 99 98 96 99 98 96 1 -0 32 97 33 32 97 33 1 -0 94 97 32 94 97 32 1 -0 34 97 98 34 97 98 1 -0 102 98 99 102 98 99 1 -0 103 98 102 103 98 102 1 -0 104 97 94 104 97 94 1 -0 105 103 102 105 103 102 1 -0 104 103 105 104 103 105 1 -0 97 34 33 97 34 33 1 -0 34 95 31 34 95 31 1 -0 98 95 34 98 95 34 1 -0 98 103 95 98 103 95 1 -0 96 104 105 96 104 105 1 -0 97 104 96 97 104 96 1 -0 95 104 94 95 104 94 1 -0 103 104 95 103 104 95 1 -0 120 110 127 120 110 127 1 -0 120 111 110 120 111 110 1 -0 128 111 120 128 111 120 1 -0 128 108 111 128 108 111 1 -0 121 108 128 121 108 128 1 -0 121 109 108 121 109 108 1 -0 127 109 121 127 109 121 1 -0 127 110 109 127 110 109 1 -0 112 114 113 112 114 113 1 -0 113 115 112 113 115 112 1 -0 113 116 115 113 116 115 1 -0 117 112 118 117 112 118 1 -0 117 114 112 117 114 112 1 -0 119 36 35 119 36 35 1 -0 119 122 36 119 122 36 1 -0 123 125 124 123 125 124 1 -0 123 126 125 123 126 125 1 -0 124 35 37 124 35 37 1 -0 124 119 35 124 119 35 1 -0 124 38 123 124 38 123 1 -0 123 129 126 123 129 126 1 -0 123 130 129 123 130 129 1 -0 124 131 119 124 131 119 1 -0 130 132 129 130 132 129 1 -0 130 131 132 130 131 132 1 -0 38 124 37 38 124 37 1 -0 122 38 36 122 38 36 1 -0 122 123 38 122 123 38 1 -0 130 123 122 130 123 122 1 -0 131 125 132 131 125 132 1 -0 131 124 125 131 124 125 1 -0 131 122 119 131 122 119 1 -0 131 130 122 131 130 122 1 -"Mesh8" 0 8 -28 -0 0.000000 0.040113 -1.124064 0.503058 0.607698 1 -0 -0.000044 0.119704 -1.236208 0.503033 0.559863 1 -0 0.195842 0.115525 -1.061040 0.614516 0.562375 1 -0 0.434007 -0.422302 0.046328 0.750063 0.885614 1 -0 0.000000 -0.117804 0.676852 0.503058 0.770252 1 -0 0.000000 -0.635959 -0.706859 0.503058 0.964876 1 -0 0.249330 -0.492702 -0.814051 0.644958 0.927924 1 -0 0.261373 -0.582008 -0.673594 0.651812 0.932451 1 -0 0.000000 -0.559736 -0.867594 0.503058 0.968213 1 -0 -0.261631 -0.582008 -0.673594 0.354156 0.932451 1 -0 -0.249575 -0.492702 -0.814051 0.361017 0.927924 1 -0 -0.195839 0.115525 -1.061040 0.391600 0.562375 1 -0 -0.434089 -0.422302 0.046328 0.256005 0.885614 1 -0 -0.000043 0.212820 -1.241719 0.503033 0.503900 1 -0 -0.000036 0.382491 -1.060336 0.503037 0.401926 1 -0 -0.640070 0.392673 -0.714944 0.138776 0.395806 1 -0 -0.644026 0.117872 -0.851260 0.136524 0.560965 1 -0 -0.799714 0.108139 -0.101589 0.047918 0.566814 1 -0 0.799714 0.108139 -0.101590 0.958197 0.566814 1 -0 0.644029 0.117872 -0.851260 0.869592 0.560965 1 -0 0.640074 0.392673 -0.714944 0.867341 0.395806 1 -0 0.643436 -0.206834 -0.369460 0.869255 0.756115 1 -0 -0.643437 -0.206834 -0.369460 0.136860 0.756115 1 -0 0.000000 0.927975 -1.121621 0.503058 0.074085 1 -0 -0.669629 0.808752 -0.819767 0.121953 0.145740 1 -0 0.669629 0.808752 -0.819767 0.884162 0.145740 1 -0 -0.818126 0.183210 0.477380 0.037439 0.521695 1 -0 0.818129 0.183210 0.477379 0.968677 0.521695 1 -28 -0.000001 -0.625614 -0.780132 --0.000056 -0.522318 -0.852751 -0.530656 -0.154948 -0.833304 -0.522130 -0.817510 0.243017 --0.000005 -0.814910 0.579587 -0.000068 -0.999316 0.036980 -0.551993 -0.526206 -0.646847 -0.485883 -0.836366 -0.253790 -0.000108 -0.661180 -0.750227 --0.485871 -0.836377 -0.253778 --0.552009 -0.526125 -0.646899 --0.530688 -0.154975 -0.833279 --0.522180 -0.817471 0.243043 --0.000122 0.359694 -0.933070 --0.000039 0.347738 -0.937592 --0.716319 0.005522 -0.697751 --0.765387 -0.061250 -0.640649 --0.968780 -0.226614 -0.100552 -0.968775 -0.226644 -0.100532 -0.765356 -0.061301 -0.640681 -0.716308 0.005510 -0.697763 -0.833401 -0.527474 -0.164967 --0.833515 -0.527307 -0.164926 --0.000006 -0.036374 -0.999338 --0.656417 -0.156415 -0.738005 -0.656418 -0.156415 -0.738004 --0.530561 -0.824284 0.197639 -0.452174 -0.831333 0.323147 -44 -0 0 2 1 0 2 1 1 -0 3 5 4 3 5 4 1 -0 6 8 7 6 8 7 1 -0 8 10 9 8 10 9 1 -0 8 11 10 8 11 10 1 -0 2 8 6 2 8 6 1 -0 9 5 8 9 5 8 1 -0 5 9 12 5 9 12 1 -0 2 14 13 2 14 13 1 -0 7 5 3 7 5 3 1 -0 13 11 1 13 11 1 1 -0 2 13 1 2 13 1 1 -0 15 17 16 15 17 16 1 -0 18 20 19 18 20 19 1 -0 21 6 7 21 6 7 1 -0 3 21 7 3 21 7 1 -0 22 10 16 22 10 16 1 -0 3 18 21 3 18 21 1 -0 16 14 15 16 14 15 1 -0 14 19 20 14 19 20 1 -0 14 11 13 14 11 13 1 -0 19 14 2 19 14 2 1 -0 14 16 11 14 16 11 1 -0 18 19 21 18 19 21 1 -0 16 17 22 16 17 22 1 -0 6 21 19 6 21 19 1 -0 10 22 9 10 22 9 1 -0 2 6 19 2 6 19 1 -0 11 8 0 11 8 0 1 -0 9 22 12 9 22 12 1 -0 17 12 22 17 12 22 1 -0 5 12 4 5 12 4 1 -0 5 7 8 5 7 8 1 -0 20 23 14 20 23 14 1 -0 23 15 14 23 15 14 1 -0 8 2 0 8 2 0 1 -0 24 15 23 24 15 23 1 -0 23 20 25 23 20 25 1 -0 10 11 16 10 11 16 1 -0 0 1 11 0 1 11 1 -0 18 25 20 18 25 20 1 -0 24 17 15 24 17 15 1 -0 24 26 17 24 26 17 1 -0 27 25 18 27 25 18 1 -"Mesh9" 0 9 -30 -0 -0.434089 -0.422302 0.046328 0.415728 0.607952 1 -0 -0.818126 0.183210 0.477380 0.301096 0.317200 1 -0 -0.799714 0.108139 -0.101589 0.305742 0.351068 1 -0 0.799714 0.108139 -0.101590 0.308255 0.352302 1 -0 0.818129 0.183210 0.477379 0.303599 0.318509 1 -0 0.434007 -0.422302 0.046328 0.418287 0.608650 1 -0 0.000000 -0.117804 0.676852 0.434534 0.449236 1 -0 0.000000 0.268936 1.059772 0.465969 0.288569 1 -0 0.286744 -1.334971 -1.441181 0.466569 0.990812 1 -0 0.867345 -1.488142 -1.277715 0.103310 0.972745 1 -0 0.477275 -1.770257 -0.874227 0.299407 0.956371 1 -0 -0.477273 -1.770257 -0.874227 0.296532 0.956996 1 -0 -0.867346 -1.488142 -1.277714 0.100375 0.973070 1 -0 -0.286743 -1.334971 -1.441181 0.463836 0.991030 1 -0 -0.491833 -1.078749 -0.970652 0.349168 0.910909 1 -0 -0.811250 -1.105489 -0.815523 0.147956 0.908954 1 -0 0.811249 -1.105489 -0.815523 0.150887 0.908958 1 -0 0.491834 -1.078749 -0.970652 0.351996 0.910913 1 -0 -0.818126 0.183210 0.477380 0.301096 0.317200 1 -0 -1.023748 0.457010 -0.094874 0.203220 0.174074 1 -0 -1.222179 -0.417989 -0.441973 0.015949 0.510356 1 -0 0.691690 -1.241789 -0.695702 0.229608 0.915123 1 -0 -0.691687 -1.241789 -0.695702 0.226687 0.915135 1 -0 0.669629 0.808752 -0.819767 0.441198 0.079645 1 -0 1.023746 0.457010 -0.094874 0.205731 0.175668 1 -0 1.222178 -0.417989 -0.441974 0.018685 0.511101 1 -0 -0.669629 0.808752 -0.819767 0.438857 0.077730 1 -0 -0.763544 0.083751 -0.453690 0.324896 0.366344 1 -0 0.763545 0.083751 -0.453690 0.327403 0.367552 1 -0 0.818129 0.183210 0.477379 0.303599 0.318509 1 -30 --0.522180 -0.817471 0.243043 --0.530561 -0.824284 0.197639 --0.968780 -0.226614 -0.100552 -0.968775 -0.226644 -0.100532 -0.452174 -0.831333 0.323147 -0.522130 -0.817510 0.243017 --0.000005 -0.814910 0.579587 -0.000000 -0.963157 0.268940 --0.175572 0.484551 -0.856962 -0.896636 -0.414995 -0.154349 --0.579469 -0.650320 0.491223 --0.400745 -0.843980 0.356511 --0.738625 0.133804 -0.660704 -0.986147 -0.046710 -0.159160 -0.290044 0.809969 -0.509730 --0.929870 -0.036798 -0.366043 -0.979735 0.096382 -0.175583 --0.829230 0.476190 -0.292611 --0.530561 -0.824284 0.197639 --0.977418 -0.119877 -0.174022 --0.930520 -0.271431 -0.245883 -0.292337 -0.501245 0.814428 -0.395537 -0.474879 0.786156 -0.656418 -0.156415 -0.738004 -0.977417 -0.119881 -0.174027 -0.822670 -0.051664 -0.566167 --0.656417 -0.156415 -0.738005 -0.808015 0.003226 -0.589153 --0.803293 -0.007468 -0.595537 -0.452174 -0.831333 0.323147 -40 -0 0 2 1 0 2 1 1 -0 3 5 4 3 5 4 1 -0 6 4 5 6 4 5 1 -0 0 1 6 0 1 6 1 -0 7 6 1 7 6 1 1 -0 6 7 4 6 7 4 1 -0 8 10 9 8 10 9 1 -0 11 13 12 11 13 12 1 -0 14 12 13 14 12 13 1 -0 14 15 12 14 15 12 1 -0 16 8 9 16 8 9 1 -0 16 17 8 16 17 8 1 -0 18 20 19 18 20 19 1 -0 21 9 10 21 9 10 1 -0 21 16 9 21 16 9 1 -0 22 13 11 22 13 11 1 -0 22 14 13 22 14 13 1 -0 17 10 8 17 10 8 1 -0 17 21 10 17 21 10 1 -0 23 25 24 23 25 24 1 -0 20 26 19 20 26 19 1 -0 26 20 27 26 20 27 1 -0 25 23 28 25 23 28 1 -0 22 20 18 22 20 18 1 -0 22 15 20 22 15 20 1 -0 25 29 24 25 29 24 1 -0 16 29 25 16 29 25 1 -0 16 21 29 16 21 29 1 -0 29 28 23 29 28 23 1 -0 29 17 28 29 17 28 1 -0 29 21 17 29 21 17 1 -0 17 25 28 17 25 28 1 -0 17 16 25 17 16 25 1 -0 27 18 26 27 18 26 1 -0 27 22 18 27 22 18 1 -0 27 14 22 27 14 22 1 -0 15 11 12 15 11 12 1 -0 15 22 11 15 22 11 1 -0 15 27 20 15 27 20 1 -0 15 14 27 15 14 27 1 -"Mesh10" 0 10 -78 -0 0.996554 -0.733333 0.966338 0.293012 0.780375 2 -0 -2.336272 -1.988370 0.201170 0.096909 0.569818 2 -0 -1.022527 -0.733333 -0.561818 0.174209 0.780374 2 -0 -0.996554 -0.733333 0.966338 0.175738 0.780375 2 -0 0.000001 -1.982538 2.280167 0.234375 0.570797 2 -0 -1.678017 -1.983333 1.617116 0.135640 0.570663 2 -0 1.022527 -0.733333 -0.561818 0.294541 0.780374 2 -0 1.627146 -1.983333 -1.374600 0.330116 0.570663 2 -0 -1.627146 -1.983333 -1.374600 0.138634 0.570663 2 -0 0.000002 -1.987757 -1.941186 0.234375 0.569921 2 -0 -0.172372 -1.733333 0.675336 0.190427 0.230398 2 -0 -0.168166 -1.583333 -0.313034 0.837200 0.198181 2 -0 -0.168166 -1.583333 -0.313034 0.312956 0.198181 2 -0 -0.172372 -1.733333 0.675336 0.120945 0.230398 2 -0 -0.996554 -0.733333 0.966338 0.000000 0.015625 2 -0 -1.022527 -0.733333 -0.561818 1.000000 0.015625 2 -0 0.172372 -1.733333 0.675336 0.809573 0.230398 2 -0 0.168166 -1.583333 -0.313034 0.162800 0.198181 2 -0 0.168166 -1.583333 -0.313034 0.088708 0.198181 2 -0 0.172372 -1.733333 0.675336 0.321142 0.230398 2 -0 0.996554 -0.733333 0.966338 1.000000 0.015625 2 -0 1.022527 -0.733333 -0.561818 0.000000 0.015625 2 -0 2.336272 -1.988370 0.201171 0.371841 0.569818 2 -0 1.678017 -1.983333 1.617116 0.333110 0.570663 2 -0 0.479108 -1.164476 -0.402394 0.328604 0.812948 6 -0 0.419607 -1.279979 0.410987 0.220382 0.820957 6 -0 -0.178627 -1.203613 0.634724 0.073125 0.821491 6 -0 0.419607 -1.279979 0.410987 0.213634 0.826819 6 -0 -0.515135 -1.149327 0.036193 0.453622 0.817704 6 -0 0.479108 -1.164476 -0.402394 0.746418 0.817742 6 -0 -0.254883 -1.060248 -0.586006 0.871145 0.810495 6 -0 -0.325639 -0.352504 0.600070 0.081842 0.210460 7 -0 0.570447 -1.554968 0.695432 0.019439 0.468717 7 -0 -0.313739 -4.028666 -0.528629 0.822523 0.732732 7 -0 -0.313740 -4.028666 0.378147 0.227065 1.000000 7 -0 0.478740 -1.554968 -0.797891 0.996645 0.468717 7 -0 0.516931 -4.028666 -0.528629 0.820444 1.000000 7 -0 -0.313739 -4.028666 -0.528629 0.820444 1.000000 7 -0 0.722085 -1.604968 -0.055882 0.216141 0.479456 7 -0 0.516930 -4.028666 0.378147 0.131822 1.000000 7 -0 0.516931 -4.028666 -0.528629 0.307982 1.000000 7 -0 -0.309231 -0.352504 -0.785305 0.988409 0.210460 7 -0 0.516931 -4.028666 -0.528629 0.344063 0.737939 7 -0 -0.313740 -4.028666 0.378147 0.225340 0.733456 7 -0 0.516931 -4.028666 -0.528629 0.822523 0.732732 7 -0 0.570447 -1.554968 0.695432 0.070183 0.468717 7 -0 0.516930 -4.028666 0.378147 0.222760 0.738578 7 -0 0.516930 -4.028666 0.378147 0.225340 0.733456 7 -0 -0.680829 -0.252504 -0.054571 0.510229 0.188983 7 -0 0.516930 -4.028666 0.378147 0.227065 1.000000 7 -0 0.478740 -1.554968 -0.797891 0.360291 0.468717 7 -0 -0.419608 -1.279980 0.410986 0.782238 0.849115 13 -0 0.178627 -1.203615 0.634724 0.930081 0.844142 13 -0 0.515135 -1.149328 0.036193 0.534579 0.840607 13 -0 0.254883 -1.060249 -0.586006 0.136408 0.834807 13 -0 -0.479109 -1.164477 -0.402394 0.253945 0.841594 13 -0 -0.479109 -1.164477 -0.402394 0.114119 0.846567 13 -0 -0.419608 -1.279980 0.410986 0.328738 0.855091 13 -0 0.313739 -4.028666 -0.528629 0.179556 1.000000 14 -0 -0.516930 -4.028666 -0.528629 0.179556 1.000000 14 -0 -0.478740 -1.554968 -0.797891 0.003355 0.468717 14 -0 -0.516930 -4.028666 -0.528629 0.094730 1.000000 14 -0 -0.516930 -4.028666 0.378147 0.307976 1.000000 14 -0 -0.722085 -1.604968 -0.055882 0.205905 0.479456 14 -0 0.309231 -0.352504 -0.785304 0.011591 0.210460 14 -0 -0.516930 -4.028666 -0.528629 0.182227 0.761976 14 -0 -0.516930 -4.028666 -0.528629 0.084983 0.756333 14 -0 -0.478740 -1.554968 -0.797891 0.031408 0.468717 14 -0 -0.570447 -1.554968 0.695432 0.382591 0.468717 14 -0 -0.516930 -4.028666 0.378147 0.323734 0.756333 14 -0 0.313740 -4.028666 0.378147 0.769921 0.761976 14 -0 0.680829 -0.252504 -0.054571 0.489771 0.188983 14 -0 -0.516930 -4.028666 0.378147 0.769921 0.761976 14 -0 -0.516930 -4.028666 0.378147 0.772935 1.000000 14 -0 0.313739 -4.028666 -0.528629 0.182227 0.761976 14 -0 -0.570447 -1.554968 0.695432 0.980561 0.468717 14 -0 0.325639 -0.352504 0.600070 0.918158 0.210460 14 -0 0.313740 -4.028666 0.378147 0.772935 1.000000 14 -78 --0.091614 -0.498532 0.059475 --0.837670 -0.546116 0.008180 -0.087069 -0.484794 -0.070788 -0.078826 -0.529008 0.243554 -0.000000 -0.373008 0.927828 --0.280442 -0.912522 0.297753 --0.072707 -0.511329 -0.253282 -0.270545 -0.911206 -0.310658 --0.275634 -0.908558 -0.313924 --0.005861 -0.403510 -0.914956 -0.489256 -0.243107 0.630725 -0.490471 -0.213409 -0.669348 -0.490471 -0.213409 -0.669348 -0.489256 -0.243107 0.630725 -0.078826 -0.529008 0.243554 -0.087069 -0.484794 -0.070788 --0.489256 -0.243107 0.630725 --0.490471 -0.213409 -0.669348 --0.490471 -0.213409 -0.669348 --0.489256 -0.243107 0.630725 --0.091614 -0.498532 0.059475 --0.072707 -0.511329 -0.253282 -0.836243 -0.548254 0.010721 -0.280442 -0.912521 0.297753 -0.732872 0.458101 -0.503032 -0.510918 0.579406 0.635021 --0.281336 0.450638 0.847216 -0.510918 0.579406 0.635021 --0.938362 0.342350 0.047686 -0.732872 0.458101 -0.503032 --0.346613 0.180935 -0.920392 --0.380214 0.002344 0.924895 -0.509019 0.000969 0.860754 --0.719720 -0.004726 -0.676736 --0.582385 0.019816 0.800931 -0.490422 -0.017152 -0.871316 -0.678158 -0.058579 -0.701552 --0.719720 -0.004726 -0.676736 -0.999275 -0.012544 -0.035951 -0.866336 -0.075233 0.491705 -0.678158 -0.058579 -0.701552 --0.348462 0.019173 -0.937127 -0.678158 -0.058579 -0.701552 --0.582385 0.019816 0.800931 -0.678158 -0.058579 -0.701552 -0.509019 0.000969 0.860754 -0.866336 -0.075233 0.491705 -0.866336 -0.075233 0.491705 --0.997072 0.075648 0.011145 -0.866336 -0.075233 0.491705 -0.490422 -0.017152 -0.871316 --0.698709 0.413833 0.583565 -0.173677 0.583658 0.793209 -0.938362 0.342350 0.047686 -0.346613 0.180935 -0.920392 --0.593331 0.663779 -0.455363 --0.593331 0.663779 -0.455363 --0.698709 0.413833 0.583565 -0.719720 -0.004726 -0.676736 --0.793379 -0.067067 -0.601857 --0.490422 -0.017152 -0.871316 --0.793379 -0.067067 -0.601857 --0.778167 -0.076399 0.610534 --0.999275 -0.012544 -0.035951 -0.348462 0.019173 -0.937127 --0.793379 -0.067067 -0.601857 --0.793379 -0.067067 -0.601857 --0.490422 -0.017152 -0.871316 --0.509019 0.000969 0.860754 --0.778167 -0.076399 0.610534 -0.582385 0.019816 0.800931 -0.997072 0.075648 0.011145 --0.778167 -0.076399 0.610534 --0.778167 -0.076399 0.610534 -0.719720 -0.004726 -0.676736 --0.509019 0.000969 0.860754 -0.380214 0.002344 0.924896 -0.582385 0.019816 0.800931 -70 -0 22 0 23 22 0 23 1 -0 1 3 2 1 3 2 1 -0 4 3 5 4 3 5 1 -0 6 22 7 6 22 7 1 -0 1 2 8 1 2 8 1 -0 2 9 8 2 9 8 1 -0 9 6 7 9 6 7 1 -0 0 4 23 0 4 23 1 -0 0 3 4 0 3 4 1 -0 2 6 9 2 6 9 1 -0 3 1 5 3 1 5 1 -0 0 22 6 0 22 6 1 -0 24 46 42 24 46 42 1 -0 24 25 46 24 25 46 1 -0 43 27 26 43 27 26 1 -0 28 43 26 28 43 26 1 -0 44 30 29 44 30 29 1 -0 27 43 47 27 43 47 1 -0 30 44 33 30 44 33 1 -0 33 28 30 33 28 30 1 -0 28 33 43 28 33 43 1 -0 31 10 32 31 10 32 1 -0 32 34 31 32 34 31 1 -0 35 37 36 35 37 36 1 -0 38 40 39 38 40 39 1 -0 37 35 41 37 35 41 1 -0 11 41 35 11 41 35 1 -0 12 38 13 12 38 13 1 -0 13 38 45 13 38 45 1 -0 14 48 15 14 48 15 1 -0 15 48 41 15 48 41 1 -0 34 48 31 34 48 31 1 -0 34 32 49 34 32 49 1 -0 10 31 14 10 31 14 1 -0 38 39 45 38 39 45 1 -0 40 38 50 40 38 50 1 -0 41 11 15 41 11 15 1 -0 48 37 41 48 37 41 1 -0 48 34 37 48 34 37 1 -0 38 12 50 38 12 50 1 -0 48 14 31 48 14 31 1 -0 66 57 56 66 57 56 1 -0 66 69 57 66 69 57 1 -0 51 70 52 51 70 52 1 -0 70 53 52 70 53 52 1 -0 54 65 55 54 65 55 1 -0 70 51 72 70 51 72 1 -0 65 54 74 65 54 74 1 -0 53 74 54 53 74 54 1 -0 74 53 70 74 53 70 1 -0 16 76 75 16 76 75 1 -0 77 75 76 77 75 76 1 -0 58 60 59 58 60 59 1 -0 61 63 62 61 63 62 1 -0 60 58 64 60 58 64 1 -0 64 17 60 64 17 60 1 -0 18 63 67 18 63 67 1 -0 63 19 68 63 19 68 1 -0 20 71 76 20 71 76 1 -0 71 21 64 71 21 64 1 -0 71 77 76 71 77 76 1 -0 75 77 73 75 77 73 1 -0 76 16 20 76 16 20 1 -0 62 63 68 62 63 68 1 -0 63 61 67 63 61 67 1 -0 17 64 21 17 64 21 1 -0 58 71 64 58 71 64 1 -0 77 71 58 77 71 58 1 -0 63 18 19 63 18 19 1 -0 71 20 21 71 20 21 1 -"Mesh11" 0 11 -28 -0 -0.830949 3.144082 -0.317635 0.565001 0.347293 0 -0 -0.969549 3.215841 0.424211 0.533670 0.309877 0 -0 -0.473000 3.649218 0.143900 0.645918 0.083909 0 -0 -0.217924 3.549218 -0.303596 0.703580 0.136050 0 -0 0.217925 3.549218 -0.303596 0.802106 0.136050 0 -0 0.379277 3.404770 -0.791976 0.838581 0.211367 0 -0 -0.405478 3.397245 -0.781058 0.661182 0.215291 0 -0 0.346869 2.888017 -0.598797 0.902962 0.463876 0 -0 0.741149 3.144082 -0.317635 0.920384 0.347293 0 -0 0.000000 3.250000 0.990000 0.752843 0.292066 0 -0 0.969549 3.215841 0.424211 0.972016 0.309877 0 -0 0.409360 3.699218 0.654105 0.845381 0.057839 0 -0 0.473000 3.649218 0.143900 0.859767 0.083909 0 -0 0.287311 2.439439 -1.584815 0.877928 0.569932 0 -0 -0.318986 2.439439 -1.584815 0.623087 0.569932 0 -0 -0.637973 0.488880 -1.779631 0.529020 0.938533 0 -0 -0.604362 0.451099 -1.389539 0.540940 0.953753 0 -0 -0.570751 1.913319 -1.349447 0.552860 0.781886 0 -0 -0.503530 2.187757 -0.969263 0.576700 0.671325 0 -0 0.514076 1.913318 -1.349447 0.937592 0.781886 0 -0 0.544349 0.451099 -1.389539 0.948328 0.953753 0 -0 0.574622 0.488880 -1.779631 0.959065 0.938533 0 -0 0.453530 2.187757 -0.969263 0.916120 0.671325 0 -0 -0.409360 3.699218 0.654105 0.660304 0.057839 0 -0 0.000000 2.850000 0.850000 0.757165 0.484318 0 -0 -0.375499 2.882374 -0.590609 0.599333 0.466911 0 -0 0.301000 3.349218 0.554105 0.820886 0.240333 0 -0 -0.301000 3.349218 0.554105 0.684800 0.240333 0 -28 -0.353383 0.634297 -0.687596 -0.183361 0.448022 0.815537 --0.658167 0.510267 -0.127416 --0.183457 0.502918 -0.613058 -0.272319 0.493694 -0.566907 -0.477738 0.726699 -0.493634 --0.457295 0.667089 -0.588111 -0.859102 0.102349 -0.501467 --0.266513 0.653713 -0.708258 -0.000000 0.089093 0.996023 --0.107411 0.335190 0.902107 -0.100985 0.963973 0.246086 -0.670849 0.502446 -0.139476 -0.615291 0.355774 -0.703450 --0.829704 0.275560 -0.485445 --0.425901 -0.279588 -0.860488 --0.678795 -0.729353 0.085330 --0.666407 -0.180957 0.723295 --0.591345 0.568922 -0.571524 -0.811315 -0.319729 0.489429 -0.407372 -0.421678 0.810084 -0.629760 -0.571822 -0.525759 -0.317192 0.663267 -0.677839 --0.091098 0.981361 -0.169209 -0.000000 -0.065318 0.992846 --0.733591 0.220461 -0.642838 --0.014882 0.213630 0.041523 -0.026034 0.224307 0.065927 -41 -0 0 2 1 0 2 1 1 -0 3 5 4 3 5 4 1 -0 3 6 5 3 6 5 1 -0 7 8 5 7 8 5 1 -0 9 11 10 9 11 10 1 -0 5 12 4 5 12 4 1 -0 6 13 5 6 13 5 1 -0 6 14 13 6 14 13 1 -0 14 16 15 14 16 15 1 -0 14 17 16 14 17 16 1 -0 14 18 17 14 18 17 1 -0 19 21 20 19 21 20 1 -0 19 13 21 19 13 21 1 -0 19 22 13 19 22 13 1 -0 12 10 11 12 10 11 1 -0 1 2 23 1 2 23 1 -0 24 1 9 24 1 9 1 -0 10 24 9 10 24 9 1 -0 23 11 9 23 11 9 1 -0 12 8 10 12 8 10 1 -0 23 9 1 23 9 1 1 -0 2 6 3 2 6 3 1 -0 0 25 6 0 25 6 1 -0 11 26 12 11 26 12 1 -0 27 23 2 27 23 2 1 -0 26 23 27 26 23 27 1 -0 23 26 11 23 26 11 1 -0 5 13 7 5 13 7 1 -0 19 18 22 19 18 22 1 -0 19 17 18 19 17 18 1 -0 13 15 21 13 15 21 1 -0 13 14 15 13 14 15 1 -0 16 21 15 16 21 15 1 -0 16 20 21 16 20 21 1 -0 20 17 19 20 17 19 1 -0 20 16 17 20 16 17 1 -0 14 6 25 14 6 25 1 -0 2 0 6 2 0 6 1 -0 8 12 5 8 12 5 1 -0 13 22 7 13 22 7 1 -0 18 14 25 18 14 25 1 - -Materials: 12 -"Material0" -0.000000 0.740113 0.361582 1.000000 -0.000000 0.740113 0.361582 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material1" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material2" -0.800000 1.000000 1.000000 1.000000 -0.800000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material3" -0.994350 1.000000 1.000000 1.000000 -0.994350 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material4" -0.500000 0.200000 0.000000 1.000000 -0.500000 0.200000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material5" -0.500000 0.500000 0.500000 1.000000 -0.700000 0.700000 0.700000 1.000000 -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material6" -1.000000 0.800000 0.700000 1.000000 -1.000000 0.800000 0.700000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material7" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"t5_luna_00.bmp" -"" -"Material8" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"lunaface.ini" -"" -"Material9" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"t6_luna_00.bmp" -"" -"Material10" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"t4_luna_00.bmp" -"" -"Material11" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"t6_lluna_00.bmp" -"" - -Bones: 16 -"torso" -"" -8 0 0 0 0 0 0 -0 -0 -"head" -"" -8 0 0 0 0 0 0 -0 -0 -"pelvis" -"" -8 0 0 0 0 0 0 -0 -0 -"r lower arm" -"" -8 0 0 0 0 0 0 -0 -0 -"r foot" -"" -8 0 0 0 0 0 0 -0 -0 -"r hand" -"" -8 0 0 0 0 0 0 -0 -0 -"r leg" -"" -8 0 0 0 0 0 0 -0 -0 -"r thigh" -"" -8 0 0 0 0 0 0 -0 -0 -"r upper arm" -"" -8 0 0 0 0 0 0 -0 -0 -"neck" -"" -8 0 0 0 0 0 0 -0 -0 -"l lower arm" -"" -8 0 0 0 0 0 0 -0 -0 -"l foot" -"" -8 0 0 0 0 0 0 -0 -0 -"l hand" -"" -8 0 0 0 0 0 0 -0 -0 -"l leg" -"" -8 0 0 0 0 0 0 -0 -0 -"l thigh" -"" -8 0 0 0 0 0 0 -0 -0 -"l upper arm" -"" -8 0 0 0 0 0 0 -0 -0 diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/luna2.txt b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/luna2.txt deleted file mode 100644 index d279d9e029..0000000000 --- a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/luna2.txt +++ /dev/null @@ -1,2277 +0,0 @@ -// MilkShape 3D ASCII - -Frames: 1 -Frame: 1 - -Meshes: 12 -"Mesh0" 0 0 -0 -0 -0 -"Mesh1" 0 1 -183 -0 1.296401 3.449999 -0.400000 0.000000 0.000000 0 -0 1.347328 2.138988 -0.998232 0.000000 0.000000 0 -0 0.972345 2.309632 -1.257331 0.000000 0.000000 0 -0 0.948136 3.341617 -0.839285 0.000000 0.000000 0 -0 0.774140 2.421536 -0.767976 0.000000 0.000000 0 -0 0.741149 3.144082 -0.317635 0.000000 0.000000 0 -0 -1.312291 1.522615 1.445070 0.000000 0.000000 0 -0 -0.948494 1.116118 1.350199 0.000000 0.000000 0 -0 -0.847915 1.320176 0.799866 0.000000 0.000000 0 -0 -1.097826 1.555935 0.811112 0.000000 0.000000 0 -0 1.116469 3.047720 -0.266731 0.000000 0.000000 0 -0 1.154803 2.208148 -0.695795 0.000000 0.000000 0 -0 0.775433 1.661204 -1.084581 0.000000 0.000000 0 -0 0.652477 1.905953 -1.330286 0.000000 0.000000 0 -0 0.453530 2.187757 -0.969263 0.000000 0.000000 0 -0 0.948494 1.116117 1.350199 0.000000 0.000000 0 -0 1.312291 1.522614 1.445070 0.000000 0.000000 0 -0 1.097826 1.555935 0.811112 0.000000 0.000000 0 -0 0.847915 1.320176 0.799866 0.000000 0.000000 0 -0 0.652477 1.704467 -0.918750 0.000000 0.000000 0 -0 -0.825432 1.661204 -1.084581 0.000000 0.000000 0 -0 -0.702477 1.905953 -1.330286 0.000000 0.000000 0 -0 -0.503530 2.187757 -0.969263 0.000000 0.000000 0 -0 1.657846 1.163532 1.178716 0.000000 0.000000 0 -0 1.766055 1.467469 1.099928 0.000000 0.000000 0 -0 -0.702477 1.704467 -0.918750 0.000000 0.000000 0 -0 -1.332528 2.138988 -0.998232 0.000000 0.000000 0 -0 -0.959883 2.309632 -1.257331 0.000000 0.000000 0 -0 -0.760554 2.421536 -0.767976 0.000000 0.000000 0 -0 1.558540 1.345928 0.829613 0.000000 0.000000 0 -0 -1.140003 2.208148 -0.695795 0.000000 0.000000 0 -0 -1.396401 3.449999 -0.400000 0.000000 0.000000 0 -0 -0.948472 3.502278 -0.533269 0.000000 0.000000 0 -0 -1.008171 3.341617 -0.839285 0.000000 0.000000 0 -0 -0.830949 3.144082 -0.317635 0.000000 0.000000 0 -0 1.343011 3.073080 0.359041 0.000000 0.000000 0 -0 0.969549 3.215841 0.424211 0.000000 0.000000 0 -0 -1.216469 3.047720 -0.266731 0.000000 0.000000 0 -0 -1.766055 1.467469 1.099928 0.000000 0.000000 0 -0 -1.657846 1.163533 1.178716 0.000000 0.000000 0 -0 -1.184745 3.286865 0.884226 0.000000 0.000000 0 -0 -0.969549 3.215841 0.424211 0.000000 0.000000 0 -0 -1.047136 3.574949 0.462870 0.000000 0.000000 0 -0 -1.558540 1.345929 0.829613 0.000000 0.000000 0 -0 -1.343011 3.073077 0.359041 0.000000 0.000000 0 -0 -1.249433 0.782413 1.093965 0.000000 0.000000 0 -0 -1.126477 0.939430 0.784742 0.000000 0.000000 0 -0 1.249432 0.782413 1.093965 0.000000 0.000000 0 -0 1.126477 0.939430 0.784742 0.000000 0.000000 0 -0 1.505762 3.495021 0.402531 0.000000 0.000000 0 -0 0.870503 3.502278 -0.533269 0.000000 0.000000 0 -0 1.047136 3.574949 0.462870 0.000000 0.000000 0 -0 1.184745 3.286865 0.884226 0.000000 0.000000 0 -0 -1.505762 3.495021 0.402531 0.000000 0.000000 0 -0 -1.020143 -1.928791 2.312708 0.000000 0.000000 1 -0 -0.956963 -1.642865 1.334808 0.000000 0.000000 1 -0 -1.231167 -1.175115 1.657365 0.000000 0.000000 1 -0 -0.826543 -2.108663 1.739832 0.000000 0.000000 1 -0 -1.372442 -2.324882 1.970627 0.000000 0.000000 1 -0 -1.333394 -2.148170 1.366251 0.000000 0.000000 1 -0 -1.777066 -1.391333 1.888160 0.000000 0.000000 1 -0 -1.646645 -1.857131 2.293184 0.000000 0.000000 1 -0 -1.583466 -1.571205 1.315284 0.000000 0.000000 1 -0 -1.840245 -1.992715 1.708241 0.000000 0.000000 1 -0 -0.834859 1.558591 -0.782057 0.000000 0.000000 1 -0 -0.000001 1.662471 -0.919120 0.000000 0.000000 1 -0 0.000000 0.927975 -1.121621 0.000000 0.000000 1 -0 0.834864 1.558592 -0.782057 0.000000 0.000000 1 -0 0.669629 0.808752 -0.819767 0.000000 0.000000 1 -0 -0.669629 0.808752 -0.819767 0.000000 0.000000 1 -0 -1.019456 1.234107 -0.437852 0.000000 0.000000 1 -0 1.023746 0.457010 -0.094874 0.000000 0.000000 1 -0 1.019459 1.234107 -0.437852 0.000000 0.000000 1 -0 1.184663 0.735397 0.148246 0.000000 0.000000 1 -0 0.818129 0.183210 0.477379 0.000000 0.000000 1 -0 -1.023748 0.457010 -0.094874 0.000000 0.000000 1 -0 -1.184658 0.735397 0.148246 0.000000 0.000000 1 -0 -0.818126 0.183210 0.477380 0.000000 0.000000 1 -0 1.772866 -1.400567 1.890675 0.000000 0.000000 1 -0 1.264915 -1.351269 2.261589 0.000000 0.000000 1 -0 1.631355 -1.863741 2.294985 0.000000 0.000000 1 -0 1.578846 -1.576699 1.316780 0.000000 0.000000 1 -0 1.232462 -1.173867 1.657025 0.000000 0.000000 1 -0 1.825376 -2.003064 1.711061 0.000000 0.000000 1 -0 1.349877 -2.326130 1.970967 0.000000 0.000000 1 -0 1.317424 -2.148728 1.366403 0.000000 0.000000 1 -0 0.756963 -1.496933 1.916931 0.000000 0.000000 1 -0 1.003493 -1.923298 2.311212 0.000000 0.000000 1 -0 0.950984 -1.636256 1.333007 0.000000 0.000000 1 -0 0.809473 -2.099430 1.737317 0.000000 0.000000 1 -0 -0.763363 -1.507282 1.919751 0.000000 0.000000 1 -0 -1.270214 -1.351827 2.261741 0.000000 0.000000 1 -0 -1.469654 -1.118513 -1.138754 0.000000 0.000000 2 -0 0.000001 -1.118513 -1.574604 0.000000 0.000000 2 -0 0.000002 -1.987757 -1.941186 0.000000 0.000000 2 -0 1.469654 -1.118513 -1.158216 0.000000 0.000000 2 -0 1.459563 -1.118513 1.442617 0.000000 0.000000 2 -0 0.000001 -1.118513 1.896029 0.000000 0.000000 2 -0 0.000001 -1.982538 2.280167 0.000000 0.000000 2 -0 -1.459565 -1.118513 1.442616 0.000000 0.000000 2 -0 2.106873 -1.118513 0.191032 0.000000 0.000000 2 -0 2.336272 -1.988370 0.201171 0.000000 0.000000 2 -0 -2.336272 -1.988370 0.201170 0.000000 0.000000 2 -0 -2.106873 -1.118513 0.191031 0.000000 0.000000 2 -0 1.217085 -1.038242 -0.972951 0.000000 0.000000 2 -0 0.000001 -1.062726 -1.287383 0.000000 0.000000 2 -0 1.743697 -1.027291 0.115440 0.000000 0.000000 2 -0 1.265950 -1.061434 1.196373 0.000000 0.000000 2 -0 0.000001 -1.057439 1.551764 0.000000 0.000000 2 -0 -1.265951 -1.061434 1.196373 0.000000 0.000000 2 -0 -1.743697 -1.027290 0.115440 0.000000 0.000000 2 -0 -1.217085 -1.038242 -0.960453 0.000000 0.000000 2 -0 1.627146 -1.983333 -1.374600 0.000000 0.000000 2 -0 -1.627146 -1.983333 -1.374600 0.000000 0.000000 2 -0 -1.678017 -1.983333 1.617116 0.000000 0.000000 2 -0 1.678017 -1.983333 1.617116 0.000000 0.000000 2 -0 0.947560 -2.086612 0.632362 0.000000 0.000000 3 -0 0.126752 -2.099072 -0.807160 0.000000 0.000000 3 -0 0.112378 -0.711196 0.885424 0.000000 0.000000 3 -0 0.764617 -0.711196 0.616748 0.000000 0.000000 3 -0 0.515939 -0.631122 0.481744 0.000000 0.000000 3 -0 -0.535790 -0.711196 -0.350218 0.000000 0.000000 3 -0 -0.539860 -0.711196 0.444701 0.000000 0.000000 3 -0 -0.385182 -0.631122 0.481773 0.000000 0.000000 3 -0 -0.378782 -0.631122 -0.387007 0.000000 0.000000 3 -0 0.118098 -0.711196 -0.697343 0.000000 0.000000 3 -0 0.771986 -0.711196 -0.485768 0.000000 0.000000 3 -0 0.522761 -0.631122 -0.387055 0.000000 0.000000 3 -0 -0.693881 -2.099071 -0.470267 0.000000 0.000000 3 -0 0.070990 -2.293056 0.063412 0.000000 0.000000 3 -0 -0.693741 -2.086430 0.629765 0.000000 0.000000 3 -0 0.126909 -2.086521 1.080869 0.000000 0.000000 3 -0 0.947385 -2.099072 -0.472260 0.000000 0.000000 3 -0 -0.900872 -0.792434 -0.897135 0.000000 0.000000 4 -0 -0.415525 -1.427456 1.294944 0.000000 0.000000 4 -0 -1.270223 -1.179515 0.630732 0.000000 0.000000 4 -0 -0.971005 -0.175487 0.905878 0.000000 0.000000 4 -0 0.923931 -0.175487 0.905878 0.000000 0.000000 4 -0 -0.036561 0.042588 -1.339214 0.000000 0.000000 4 -0 -1.195783 -0.085691 -1.161907 0.000000 0.000000 4 -0 0.778872 -0.085691 -1.211906 0.000000 0.000000 4 -0 0.272837 -1.427456 1.294944 0.000000 0.000000 4 -0 0.923846 -1.179515 0.630732 0.000000 0.000000 4 -0 0.719843 -0.792434 -0.897135 0.000000 0.000000 4 -0 0.018470 -3.525103 -0.974784 0.000000 0.000000 6 -0 0.671653 -3.525103 0.701298 0.000000 0.000000 6 -0 -0.844520 -3.525104 -0.590016 0.000000 0.000000 6 -0 -0.622834 -3.525105 0.739075 0.000000 0.000000 6 -0 0.897629 -3.525104 -0.627793 0.000000 0.000000 6 -0 -0.764617 -0.711196 0.616748 0.000000 0.000000 10 -0 -0.112378 -0.711196 0.885424 0.000000 0.000000 10 -0 0.539860 -0.711196 0.444701 0.000000 0.000000 10 -0 0.378781 -0.631122 -0.387007 0.000000 0.000000 10 -0 0.385182 -0.631122 0.481773 0.000000 0.000000 10 -0 0.535790 -0.711196 -0.350218 0.000000 0.000000 10 -0 -0.118098 -0.711196 -0.697343 0.000000 0.000000 10 -0 -0.522761 -0.631122 -0.387055 0.000000 0.000000 10 -0 -0.771986 -0.711196 -0.485768 0.000000 0.000000 10 -0 0.693741 -2.086430 0.629765 0.000000 0.000000 10 -0 -0.070990 -2.293056 0.063412 0.000000 0.000000 10 -0 0.693881 -2.099071 -0.470267 0.000000 0.000000 10 -0 -0.126910 -2.086521 1.080868 0.000000 0.000000 10 -0 -0.947561 -2.086612 0.632362 0.000000 0.000000 10 -0 -0.947385 -2.099072 -0.472260 0.000000 0.000000 10 -0 -0.126752 -2.099072 -0.807160 0.000000 0.000000 10 -0 -0.515939 -0.631122 0.481744 0.000000 0.000000 10 -0 -0.778872 -0.085691 -1.211906 0.000000 0.000000 11 -0 -0.923846 -1.179515 0.630732 0.000000 0.000000 11 -0 -0.272837 -1.427456 1.294944 0.000000 0.000000 11 -0 0.415524 -1.427456 1.294944 0.000000 0.000000 11 -0 -0.719843 -0.792434 -0.897135 0.000000 0.000000 11 -0 1.270223 -1.179515 0.630732 0.000000 0.000000 11 -0 0.415524 -1.427456 1.294944 0.000000 0.000000 11 -0 0.900872 -0.792434 -0.897135 0.000000 0.000000 11 -0 -0.923931 -0.175487 0.905878 0.000000 0.000000 11 -0 0.971005 -0.175487 0.905878 0.000000 0.000000 11 -0 1.195783 -0.085691 -1.161907 0.000000 0.000000 11 -0 0.036561 0.042588 -1.339214 0.000000 0.000000 11 -0 -0.671653 -3.525106 0.701298 0.000000 0.000000 13 -0 -0.897629 -3.525106 -0.627793 0.000000 0.000000 13 -0 -0.018470 -3.525105 -0.974784 0.000000 0.000000 13 -0 0.844521 -3.525106 -0.590016 0.000000 0.000000 13 -0 0.622834 -3.525107 0.739075 0.000000 0.000000 13 -183 -0.878899 0.301203 -0.369882 -0.913785 -0.368812 -0.170218 -0.007004 0.464900 -0.885336 --0.572154 0.501566 -0.648899 --0.638041 0.507508 -0.579084 --0.266513 0.653713 -0.708258 -0.037381 0.346030 0.937479 -0.069764 0.263316 0.962184 -0.208320 0.325535 0.200049 -0.309629 0.145799 0.189766 -0.831101 -0.003015 -0.052158 -0.839696 -0.482211 0.249769 -0.323654 -0.927470 -0.187211 -0.112427 0.161589 -0.980433 -0.317192 0.663267 -0.677839 --0.309352 0.151883 0.938740 --0.207894 0.017395 0.977997 --0.315426 0.165437 0.204425 --0.087251 0.380651 0.209618 -0.259198 -0.955881 -0.138231 --0.372621 -0.890891 -0.259744 -0.052500 0.087533 -0.994777 --0.591345 0.568922 -0.571524 -0.819657 -0.569981 0.057305 -0.951648 0.021992 0.306404 --0.400644 -0.913722 -0.067792 --0.932282 -0.359341 -0.041519 -0.219951 0.192364 -0.956356 -0.300885 0.606282 -0.736132 -0.458913 -0.235445 -0.856717 --0.874581 -0.447960 0.185578 --0.855890 0.458966 -0.238331 -0.681263 0.716027 -0.152273 -0.122939 0.586698 -0.800420 -0.353383 0.634297 -0.687596 -0.617406 -0.075157 -0.245175 --0.107411 0.335190 0.902107 --0.809004 -0.038176 -0.049972 --0.993471 -0.090144 -0.069930 --0.717947 -0.526706 0.455118 -0.567206 0.411432 0.713443 -0.183361 0.448022 0.815537 -0.385692 0.892977 0.232021 --0.434056 -0.352269 -0.829158 --0.765462 -0.022516 -0.100626 --0.361300 -0.902502 0.234419 --0.133864 -0.446495 -0.884716 -0.270015 -0.925846 0.264390 -0.256988 -0.379176 -0.888922 -0.804769 0.573848 -0.151807 --0.348406 0.913470 -0.210205 --0.645076 0.690664 0.326894 --0.085826 0.520521 0.849525 --0.844999 0.480518 0.234689 -0.469426 -0.297983 0.831171 -0.574724 0.178551 -0.798631 -0.117726 0.958121 -0.261046 -0.792087 -0.597763 -0.123604 --0.117726 -0.958121 0.261046 --0.052649 -0.663606 -0.746227 --0.792087 0.597763 0.123604 --0.574724 -0.178551 0.798631 --0.469426 0.297983 -0.831171 --0.897384 -0.404519 -0.176254 --0.594798 0.364557 -0.716459 --0.000087 0.540983 -0.841033 --0.000006 -0.036374 -0.999338 -0.593957 0.365993 -0.716425 -0.656418 -0.156415 -0.738004 --0.656417 -0.156415 -0.738005 --0.885286 -0.110990 -0.451608 -0.977417 -0.119881 -0.174027 -0.885285 -0.110993 -0.451610 -0.852123 -0.334245 -0.402698 -0.452174 -0.831333 0.323147 --0.977418 -0.119877 -0.174022 --0.852126 -0.334242 -0.402695 --0.530561 -0.824284 0.197639 -0.802812 0.582375 0.127796 --0.043757 0.664537 0.745973 -0.566965 -0.189567 0.801633 -0.479452 0.288827 -0.828677 --0.097843 0.960201 -0.261613 -0.890326 -0.421768 -0.171555 -0.097843 -0.960201 0.261613 -0.043757 -0.664537 -0.745973 --0.890326 0.421768 0.171555 --0.479452 -0.288827 0.828677 --0.566965 0.189567 -0.801633 --0.802812 -0.582375 -0.127796 -0.897384 0.404519 0.176254 -0.052649 0.663607 0.746227 --0.459930 0.694803 -0.552913 -0.010485 0.830283 -0.557244 --0.005861 -0.403510 -0.914956 -0.493874 0.684632 -0.536067 -0.455877 0.714715 0.530432 --0.012496 0.852138 0.523169 -0.000000 -0.373008 0.927828 --0.479353 0.708113 0.518456 -0.580742 0.813555 0.029439 -0.836243 -0.548254 0.010721 --0.837670 -0.546116 0.008180 --0.591876 0.805581 -0.026891 -0.389279 0.799599 -0.457279 -0.008413 0.780968 -0.624514 -0.599324 0.800463 0.008272 -0.321808 0.808864 0.492117 --0.018859 0.804064 0.594243 --0.423024 0.823709 0.377564 --0.567013 0.819020 -0.087765 --0.326759 0.789029 -0.520252 -0.270545 -0.911206 -0.310658 --0.275634 -0.908558 -0.313924 --0.280442 -0.912522 0.297753 -0.280442 -0.912521 0.297753 -0.817080 -0.474046 0.328118 --0.026517 -0.618860 -0.785054 --0.100636 0.678732 0.727458 -0.548210 0.777190 0.308936 -0.632803 0.661402 0.402626 --0.677808 0.604013 -0.419220 --0.726585 0.514159 0.455757 --0.486320 0.647442 0.586780 --0.691086 0.524794 -0.496983 --0.086754 0.601474 -0.794168 -0.735868 0.576919 -0.354490 -0.357600 0.757669 -0.545949 --0.649270 -0.638863 -0.412678 --0.007300 -0.999970 -0.002667 --0.685124 -0.616788 0.387527 --0.030727 -0.623435 0.781271 -0.616889 -0.661720 -0.426117 --0.944778 -0.019239 -0.327147 --0.576711 -0.558808 0.595934 --0.893906 -0.433097 0.115580 --0.530889 0.340041 0.776228 -0.796288 0.213688 0.565918 -0.107486 0.575032 -0.811039 --0.863663 0.117648 -0.490149 -0.853453 0.009584 -0.521082 -0.458157 -0.617065 0.639784 -0.902143 -0.429432 0.041542 -0.942126 -0.150173 -0.299745 -0.020748 0.321082 -0.915489 -0.447205 0.235164 0.830940 --0.800719 0.335871 -0.424087 --0.637992 0.233664 0.699967 -0.846151 0.293366 -0.365234 --0.744817 0.586691 0.317871 -0.100636 0.678732 0.727458 -0.690506 0.625098 0.363942 -0.467661 0.637496 -0.612283 -0.708617 0.543666 0.449766 -0.704606 0.480228 -0.522409 -0.086754 0.601474 -0.794168 --0.624404 0.657646 -0.421451 --0.536814 0.770950 -0.342733 -0.685124 -0.616788 0.387527 -0.007300 -0.999970 -0.002667 -0.649270 -0.638863 -0.412678 -0.030727 -0.623435 0.781271 --0.652275 -0.639079 0.407571 --0.798587 -0.494961 -0.342450 -0.026517 -0.618860 -0.785054 --0.367452 0.760742 0.535024 --0.853453 0.009584 -0.521082 --0.902143 -0.429432 0.041542 --0.478292 -0.451824 0.322794 -0.315500 -0.419145 0.233028 --0.759213 0.068818 -0.184414 -0.893906 -0.433097 0.115580 -0.315500 -0.419145 0.233028 -0.754480 -0.002744 -0.170980 --0.694332 0.243123 0.677343 -0.608464 0.336593 0.718663 -0.863663 0.117648 -0.490149 --0.032549 0.553166 -0.381879 --0.507570 0.258114 0.784903 --0.846310 0.293023 -0.365362 --0.020748 0.321082 -0.915489 -0.800719 0.335871 -0.424087 -0.518786 0.235395 0.790495 -278 -0 0 2 1 0 2 1 1 -0 0 3 2 0 3 2 1 -0 3 4 2 3 4 2 1 -0 3 5 4 3 5 4 1 -0 6 8 7 6 8 7 1 -0 6 9 8 6 9 8 1 -0 10 1 11 10 1 11 1 -0 10 0 1 10 0 1 1 -0 1 13 12 1 13 12 1 -0 1 2 13 1 2 13 1 -0 2 14 13 2 14 13 1 -0 2 4 14 2 4 14 1 -0 15 17 16 15 17 16 1 -0 15 18 17 15 18 17 1 -0 11 12 19 11 12 19 1 -0 11 1 12 11 1 12 1 -0 12 21 20 12 21 20 1 -0 12 13 21 12 13 21 1 -0 13 22 21 13 22 21 1 -0 13 14 22 13 14 22 1 -0 16 24 23 16 24 23 1 -0 19 20 25 19 20 25 1 -0 19 12 20 19 12 20 1 -0 20 27 26 20 27 26 1 -0 20 21 27 20 21 27 1 -0 21 28 27 21 28 27 1 -0 21 22 28 21 22 28 1 -0 24 29 23 24 29 23 1 -0 25 26 30 25 26 30 1 -0 25 20 26 25 20 26 1 -0 31 33 32 31 33 32 1 -0 33 34 32 33 34 32 1 -0 35 17 29 35 17 29 1 -0 35 36 17 35 36 17 1 -0 37 26 31 37 26 31 1 -0 38 6 39 38 6 39 1 -0 40 9 6 40 9 6 1 -0 40 41 9 40 41 9 1 -0 41 40 42 41 40 42 1 -0 41 43 9 41 43 9 1 -0 41 44 43 41 44 43 1 -0 43 38 39 43 38 39 1 -0 39 7 45 39 7 45 1 -0 39 6 7 39 6 7 1 -0 9 46 8 9 46 8 1 -0 9 43 46 9 43 46 1 -0 43 45 46 43 45 46 1 -0 43 39 45 43 39 45 1 -0 45 15 47 45 15 47 1 -0 45 7 15 45 7 15 1 -0 7 18 15 7 18 15 1 -0 7 8 18 7 8 18 1 -0 8 48 18 8 48 18 1 -0 8 46 48 8 46 48 1 -0 46 47 48 46 47 48 1 -0 46 45 47 46 45 47 1 -0 47 16 23 47 16 23 1 -0 47 15 16 47 15 16 1 -0 18 29 17 18 29 17 1 -0 18 48 29 18 48 29 1 -0 48 23 29 48 23 29 1 -0 48 47 23 48 47 23 1 -0 49 50 0 49 50 0 1 -0 49 51 50 49 51 50 1 -0 51 5 50 51 5 50 1 -0 51 36 5 51 36 5 1 -0 36 16 17 36 16 17 1 -0 36 52 16 36 52 16 1 -0 35 0 10 35 0 10 1 -0 41 32 34 41 32 34 1 -0 41 42 32 41 42 32 1 -0 42 31 32 42 31 32 1 -0 42 53 31 42 53 31 1 -0 44 31 53 44 31 53 1 -0 52 36 51 52 36 51 1 -0 49 52 51 49 52 51 1 -0 40 53 42 40 53 42 1 -0 5 3 50 5 3 50 1 -0 3 0 50 3 0 50 1 -0 34 27 28 34 27 28 1 -0 34 33 27 34 33 27 1 -0 33 26 27 33 26 27 1 -0 33 31 26 33 31 26 1 -0 6 53 40 6 53 40 1 -0 6 38 53 6 38 53 1 -0 38 44 53 38 44 53 1 -0 38 43 44 38 43 44 1 -0 29 49 35 29 49 35 1 -0 29 24 49 29 24 49 1 -0 24 52 49 24 52 49 1 -0 24 16 52 24 16 52 1 -0 26 37 30 26 37 30 1 -0 0 35 49 0 35 49 1 -0 31 44 37 31 44 37 1 -0 78 80 79 78 80 79 1 -0 78 82 81 78 82 81 1 -0 83 84 80 83 84 80 1 -0 83 81 85 83 81 85 1 -0 86 79 87 86 79 87 1 -0 86 88 82 86 88 82 1 -0 89 87 84 89 87 84 1 -0 89 85 88 89 85 88 1 -0 78 79 82 78 79 82 1 -0 86 82 79 86 82 79 1 -0 83 85 84 83 85 84 1 -0 89 84 85 89 84 85 1 -0 80 78 83 80 78 83 1 -0 81 83 78 81 83 78 1 -0 87 89 86 87 89 86 1 -0 88 86 89 88 86 89 1 -0 79 80 87 79 80 87 1 -0 84 87 80 84 87 80 1 -0 82 88 81 82 88 81 1 -0 85 81 88 85 81 88 1 -0 90 54 91 90 54 91 1 -0 90 56 55 90 56 55 1 -0 57 58 54 57 58 54 1 -0 57 55 59 57 55 59 1 -0 60 91 61 60 91 61 1 -0 60 62 56 60 62 56 1 -0 63 61 58 63 61 58 1 -0 63 59 62 63 59 62 1 -0 90 91 56 90 91 56 1 -0 60 56 91 60 56 91 1 -0 57 59 58 57 59 58 1 -0 63 58 59 63 58 59 1 -0 54 90 57 54 90 57 1 -0 55 57 90 55 57 90 1 -0 61 63 60 61 63 60 1 -0 62 60 63 62 60 63 1 -0 91 54 61 91 54 61 1 -0 58 61 54 58 61 54 1 -0 56 62 55 56 62 55 1 -0 59 55 62 59 55 62 1 -0 64 66 65 64 66 65 1 -0 66 67 65 66 67 65 1 -0 67 66 68 67 66 68 1 -0 66 64 69 66 64 69 1 -0 64 70 69 64 70 69 1 -0 71 72 68 71 72 68 1 -0 72 67 68 72 67 68 1 -0 71 74 73 71 74 73 1 -0 70 75 69 70 75 69 1 -0 76 75 70 76 75 70 1 -0 73 72 71 73 72 71 1 -0 77 75 76 77 75 76 1 -0 92 94 93 92 94 93 1 -0 94 95 93 94 95 93 1 -0 96 98 97 96 98 97 1 -0 98 99 97 98 99 97 1 -0 95 101 100 95 101 100 1 -0 102 92 103 102 92 103 1 -0 99 102 103 99 102 103 1 -0 101 96 100 101 96 100 1 -0 104 93 95 104 93 95 1 -0 104 105 93 104 105 93 1 -0 106 95 100 106 95 100 1 -0 106 104 95 106 104 95 1 -0 107 100 96 107 100 96 1 -0 107 106 100 107 106 100 1 -0 108 96 97 108 96 97 1 -0 108 107 96 108 107 96 1 -0 109 97 99 109 97 99 1 -0 109 108 97 109 108 97 1 -0 110 99 103 110 99 103 1 -0 110 109 99 110 109 99 1 -0 111 103 92 111 103 92 1 -0 111 110 103 111 110 103 1 -0 105 92 93 105 92 93 1 -0 105 111 92 105 111 92 1 -0 95 94 112 95 94 112 1 -0 94 92 113 94 92 113 1 -0 99 98 114 99 98 114 1 -0 98 96 115 98 96 115 1 -0 96 101 115 96 101 115 1 -0 101 95 112 101 95 112 1 -0 92 102 113 92 102 113 1 -0 102 99 114 102 99 114 1 -0 128 130 129 128 130 129 1 -0 131 129 130 131 129 130 1 -0 132 129 116 132 129 116 1 -0 117 129 132 117 129 132 1 -0 118 120 119 118 120 119 1 -0 131 119 116 131 119 116 1 -0 131 118 119 131 118 119 1 -0 121 123 122 121 123 122 1 -0 121 124 123 121 124 123 1 -0 125 124 121 125 124 121 1 -0 125 132 126 125 132 126 1 -0 125 117 132 125 117 132 1 -0 119 127 126 119 127 126 1 -0 119 120 127 119 120 127 1 -0 126 116 119 126 116 119 1 -0 126 132 116 126 132 116 1 -0 122 128 121 122 128 121 1 -0 122 130 128 122 130 128 1 -0 117 121 128 117 121 128 1 -0 117 125 121 117 125 121 1 -0 127 125 126 127 125 126 1 -0 125 127 124 125 127 124 1 -0 118 130 122 118 130 122 1 -0 118 131 130 118 131 130 1 -0 123 118 122 123 118 122 1 -0 120 118 123 120 118 123 1 -0 129 131 116 129 131 116 1 -0 129 117 128 129 117 128 1 -0 133 135 134 133 135 134 1 -0 136 145 137 136 145 137 1 -0 138 146 139 138 146 139 1 -0 145 136 147 145 136 147 1 -0 148 137 145 148 137 145 1 -0 146 136 139 146 136 139 1 -0 138 148 144 138 148 144 1 -0 146 138 144 146 138 144 1 -0 148 138 140 148 138 140 1 -0 137 142 141 137 142 141 1 -0 136 141 134 136 141 134 1 -0 136 137 141 136 137 141 1 -0 135 136 134 135 136 134 1 -0 139 136 135 139 136 135 1 -0 140 142 137 140 142 137 1 -0 143 140 138 143 140 138 1 -0 139 133 138 139 133 138 1 -0 142 143 141 142 143 141 1 -0 135 133 139 135 133 139 1 -0 143 142 140 143 142 140 1 -0 136 146 147 136 146 147 1 -0 137 148 140 137 148 140 1 -0 158 160 159 158 160 159 1 -0 159 161 158 159 161 158 1 -0 159 163 162 159 163 162 1 -0 159 164 163 159 164 163 1 -0 165 150 149 165 150 149 1 -0 161 151 158 161 151 158 1 -0 161 150 151 161 150 151 1 -0 152 151 153 152 151 153 1 -0 152 154 151 152 154 151 1 -0 160 151 154 160 151 154 1 -0 160 158 151 160 158 151 1 -0 152 155 154 152 155 154 1 -0 155 160 154 155 160 154 1 -0 155 164 160 155 164 160 1 -0 165 157 156 165 157 156 1 -0 165 149 157 165 149 157 1 -0 163 149 162 163 149 162 1 -0 163 157 149 163 157 149 1 -0 150 153 151 150 153 151 1 -0 150 165 153 150 165 153 1 -0 150 162 149 150 162 149 1 -0 150 161 162 150 161 162 1 -0 164 157 163 164 157 163 1 -0 164 155 157 164 155 157 1 -0 155 156 157 155 156 157 1 -0 156 155 152 156 155 152 1 -0 161 159 162 161 159 162 1 -0 164 159 160 164 159 160 1 -0 171 173 172 171 173 172 1 -0 178 175 174 178 175 174 1 -0 181 177 176 181 177 176 1 -0 175 178 182 175 178 182 1 -0 174 179 178 174 179 178 1 -0 175 181 176 175 181 176 1 -0 179 177 180 179 177 180 1 -0 177 181 180 177 181 180 1 -0 177 179 166 177 179 166 1 -0 167 174 168 167 174 168 1 -0 174 169 168 174 169 168 1 -0 174 175 169 174 175 169 1 -0 175 171 169 175 171 169 1 -0 175 176 171 175 176 171 1 -0 167 166 174 167 166 174 1 -0 166 170 177 166 170 177 1 -0 173 176 177 173 176 177 1 -0 170 167 168 170 167 168 1 -0 173 171 176 173 171 176 1 -0 167 170 166 167 170 166 1 -0 181 175 182 181 175 182 1 -0 179 174 166 179 174 166 1 -"Mesh2" 0 2 -8 -0 -0.996554 -0.733333 0.966338 0.000000 0.000000 2 -0 -0.172372 -1.733333 0.675336 0.000000 0.000000 2 -0 0.172372 -1.733333 0.675336 0.000000 0.000000 2 -0 0.996554 -0.733333 0.966338 0.000000 0.000000 2 -0 1.022527 -0.733333 -0.561818 0.000000 0.000000 2 -0 0.168166 -1.583333 -0.313034 0.000000 0.000000 2 -0 -0.168166 -1.583333 -0.313034 0.000000 0.000000 2 -0 -1.022527 -0.733333 -0.561818 0.000000 0.000000 2 -8 -0.078826 -0.529008 0.243554 -0.489256 -0.243107 0.630725 --0.489256 -0.243107 0.630725 --0.091614 -0.498532 0.059475 --0.072707 -0.511329 -0.253282 --0.490471 -0.213409 -0.669348 -0.490471 -0.213409 -0.669348 -0.087069 -0.484794 -0.070788 -6 -0 4 6 5 4 6 5 1 -0 4 7 6 4 7 6 1 -0 0 2 1 0 2 1 1 -0 0 3 2 0 3 2 1 -0 2 6 1 2 6 1 1 -0 2 5 6 2 5 6 1 -"Mesh3" 0 3 -30 -0 0.897629 -3.525104 -0.627793 0.000000 0.000000 6 -0 0.419607 -1.279979 0.410987 0.000000 0.000000 6 -0 0.647604 -1.425104 0.536394 0.000000 0.000000 6 -0 0.698708 -1.275104 -0.501540 0.000000 0.000000 6 -0 0.479108 -1.164476 -0.402394 0.000000 0.000000 6 -0 -0.259145 -1.275105 -0.721937 0.000000 0.000000 6 -0 -0.515135 -1.149327 0.036193 0.000000 0.000000 6 -0 -0.254883 -1.060248 -0.586006 0.000000 0.000000 6 -0 -0.740171 -1.425103 0.092895 0.000000 0.000000 6 -0 -0.229985 -1.425104 0.837091 0.000000 0.000000 6 -0 -0.178627 -1.203613 0.634724 0.000000 0.000000 6 -0 -0.844520 -3.525104 -0.590016 0.000000 0.000000 6 -0 -0.622834 -3.525105 0.739075 0.000000 0.000000 6 -0 0.671653 -3.525103 0.701298 0.000000 0.000000 6 -0 0.018470 -3.525103 -0.974784 0.000000 0.000000 6 -0 -0.698708 -1.275105 -0.501540 0.000000 0.000000 13 -0 0.259145 -1.275106 -0.721936 0.000000 0.000000 13 -0 0.254883 -1.060249 -0.586006 0.000000 0.000000 13 -0 0.515135 -1.149328 0.036193 0.000000 0.000000 13 -0 0.229985 -1.425106 0.837091 0.000000 0.000000 13 -0 0.740171 -1.425105 0.092895 0.000000 0.000000 13 -0 0.178627 -1.203615 0.634724 0.000000 0.000000 13 -0 -0.897629 -3.525106 -0.627793 0.000000 0.000000 13 -0 -0.671653 -3.525106 0.701298 0.000000 0.000000 13 -0 0.844521 -3.525106 -0.590016 0.000000 0.000000 13 -0 0.622834 -3.525107 0.739075 0.000000 0.000000 13 -0 -0.018470 -3.525105 -0.974784 0.000000 0.000000 13 -0 -0.647604 -1.425106 0.536394 0.000000 0.000000 13 -0 -0.419608 -1.279980 0.410986 0.000000 0.000000 13 -0 -0.479109 -1.164477 -0.402394 0.000000 0.000000 13 -30 -0.846151 0.293366 -0.365234 -0.510918 0.579406 0.635021 -0.746389 0.466089 0.475042 -0.606471 0.636407 -0.476633 -0.732872 0.458101 -0.503032 --0.411919 0.443414 -0.796057 --0.938362 0.342350 0.047686 --0.346613 0.180935 -0.920392 --0.936292 0.341876 0.080481 --0.227316 0.489098 0.842087 --0.281336 0.450638 0.847216 --0.800719 0.335871 -0.424087 --0.637992 0.233664 0.699967 -0.447205 0.235164 0.830940 -0.020748 0.321082 -0.915489 --0.594284 0.524764 -0.609466 -0.411919 0.443414 -0.796057 -0.346613 0.180935 -0.920392 -0.938362 0.342350 0.047686 -0.400528 0.461901 0.791344 -0.936293 0.341876 0.080481 -0.173677 0.583658 0.793209 --0.846310 0.293023 -0.365362 --0.507570 0.258114 0.784903 -0.800719 0.335871 -0.424087 -0.518786 0.235395 0.790495 --0.020748 0.321082 -0.915489 --0.614375 0.524152 0.589753 --0.698709 0.413833 0.583565 --0.593331 0.663779 -0.455363 -40 -0 1 3 2 1 3 2 1 -0 1 4 3 1 4 3 1 -0 4 5 3 4 5 3 1 -0 6 5 7 6 5 7 1 -0 6 9 8 6 9 8 1 -0 1 9 10 1 9 10 1 -0 1 2 9 1 2 9 1 -0 5 6 8 5 6 8 1 -0 5 4 7 5 4 7 1 -0 9 6 10 9 6 10 1 -0 8 11 5 8 11 5 1 -0 9 13 12 9 13 12 1 -0 9 2 13 9 2 13 1 -0 14 5 11 14 5 11 1 -0 2 0 13 2 0 13 1 -0 2 3 0 2 3 0 1 -0 12 8 9 12 8 9 1 -0 8 12 11 8 12 11 1 -0 3 14 0 3 14 0 1 -0 5 14 3 5 14 3 1 -0 27 29 28 27 29 28 1 -0 27 15 29 27 15 29 1 -0 16 29 15 16 29 15 1 -0 16 18 17 16 18 17 1 -0 19 18 20 19 18 20 1 -0 27 21 19 27 21 19 1 -0 27 28 21 27 28 21 1 -0 18 16 20 18 16 20 1 -0 29 16 17 29 16 17 1 -0 18 19 21 18 19 21 1 -0 22 27 23 22 27 23 1 -0 22 15 27 22 15 27 1 -0 24 20 16 24 20 16 1 -0 27 25 23 27 25 23 1 -0 27 19 25 27 19 25 1 -0 16 26 24 16 26 24 1 -0 20 25 19 20 25 19 1 -0 25 20 24 25 20 24 1 -0 26 15 22 26 15 22 1 -0 26 16 15 26 16 15 1 -"Mesh4" 0 4 -22 -0 0.272837 -1.427456 1.294944 0.000000 0.000000 4 -0 -0.415525 -1.427456 1.294944 0.000000 0.000000 4 -0 -1.011815 -1.427456 -1.117400 0.000000 0.000000 4 -0 0.814546 -1.427456 -1.117399 0.000000 0.000000 4 -0 0.482888 -1.427456 -2.323394 0.000000 0.000000 4 -0 -0.686739 -1.427456 -2.323394 0.000000 0.000000 4 -0 -0.740924 -0.750737 -2.608656 0.000000 0.000000 4 -0 0.595824 -0.750737 -2.608656 0.000000 0.000000 4 -0 0.719843 -0.792434 -0.897135 0.000000 0.000000 4 -0 -0.900872 -0.792434 -0.897135 0.000000 0.000000 4 -0 -0.272837 -1.427456 1.294944 0.000000 0.000000 11 -0 -0.595824 -0.750737 -2.608656 0.000000 0.000000 11 -0 0.740924 -0.750737 -2.608656 0.000000 0.000000 11 -0 0.686740 -1.427456 -2.323394 0.000000 0.000000 11 -0 -0.482888 -1.427456 -2.323394 0.000000 0.000000 11 -0 -0.272837 -1.427456 1.294944 0.000000 0.000000 11 -0 -0.719843 -0.792434 -0.897135 0.000000 0.000000 11 -0 0.900872 -0.792434 -0.897135 0.000000 0.000000 11 -0 0.415524 -1.427456 1.294944 0.000000 0.000000 11 -0 -0.814546 -1.427456 -1.117399 0.000000 0.000000 11 -0 1.011815 -1.427456 -1.117399 0.000000 0.000000 11 -0 0.415524 -1.427456 1.294944 0.000000 0.000000 11 -22 -0.458157 -0.617065 0.639784 --0.576711 -0.558808 0.595934 --0.706249 -0.707516 -0.025170 -0.698927 -0.714878 -0.021214 -0.302901 -0.664244 -0.683396 --0.318073 -0.862064 -0.394558 --0.632817 0.099790 -0.767844 -0.781883 0.318012 -0.536216 -0.942126 -0.150173 -0.299745 --0.944778 -0.019239 -0.327147 --0.478292 -0.451824 0.322794 --0.644250 0.074640 -0.761164 -0.760851 0.352050 -0.545129 -0.313758 -0.648189 -0.693835 --0.305334 -0.870313 -0.386427 --0.478292 -0.451824 0.322794 --0.759213 0.068818 -0.184414 -0.754480 -0.002744 -0.170980 -0.315500 -0.419145 0.233028 --0.698927 -0.714878 -0.021214 -0.706249 -0.707516 -0.025170 -0.315500 -0.419145 0.233028 -24 -0 0 2 1 0 2 1 1 -0 0 3 2 0 3 2 1 -0 4 6 5 4 6 5 1 -0 4 7 6 4 7 6 1 -0 6 2 5 6 2 5 1 -0 3 7 4 3 7 4 1 -0 3 5 2 3 5 2 1 -0 3 4 5 3 4 5 1 -0 8 3 0 8 3 0 1 -0 2 9 1 2 9 1 1 -0 6 9 2 6 9 2 1 -0 8 7 3 8 7 3 1 -0 19 21 20 19 21 20 1 -0 19 10 21 19 10 21 1 -0 11 13 12 11 13 12 1 -0 11 14 13 11 14 13 1 -0 20 12 13 20 12 13 1 -0 11 19 14 11 19 14 1 -0 14 20 13 14 20 13 1 -0 14 19 20 14 19 20 1 -0 19 16 15 19 16 15 1 -0 17 20 18 17 20 18 1 -0 17 12 20 17 12 20 1 -0 11 16 19 11 16 19 1 -"Mesh5" 0 5 -0 -0 -0 -"Mesh6" 0 6 -70 -0 0.741149 3.144082 -0.317635 0.000000 0.000000 0 -0 0.774140 2.421536 -0.767976 0.000000 0.000000 0 -0 0.453530 2.187757 -0.969263 0.000000 0.000000 0 -0 0.346869 2.888017 -0.598797 0.000000 0.000000 0 -0 -0.375499 2.882374 -0.590609 0.000000 0.000000 0 -0 -0.503530 2.187757 -0.969263 0.000000 0.000000 0 -0 -0.760554 2.421536 -0.767976 0.000000 0.000000 0 -0 -0.830949 3.144082 -0.317635 0.000000 0.000000 0 -0 -0.473000 3.649218 0.143900 0.000000 0.000000 0 -0 -0.301000 3.349218 0.554105 0.000000 0.000000 0 -0 0.301000 3.349218 0.554105 0.000000 0.000000 0 -0 0.473000 3.649218 0.143900 0.000000 0.000000 0 -0 0.217925 3.549218 -0.303596 0.000000 0.000000 0 -0 -0.217924 3.549218 -0.303596 0.000000 0.000000 0 -0 0.276294 0.006496 0.353946 0.000000 0.000000 5 -0 0.420723 -0.642485 -0.395587 0.000000 0.000000 5 -0 0.420724 -0.642485 -0.676543 0.000000 0.000000 5 -0 0.276295 0.006495 -0.261685 0.000000 0.000000 5 -0 -0.239132 0.006495 -0.261686 0.000000 0.000000 5 -0 0.083576 -0.750593 -0.676543 0.000000 0.000000 5 -0 -0.253571 -1.399237 0.447279 0.000000 0.000000 5 -0 -0.027615 -1.669505 0.391088 0.000000 0.000000 5 -0 0.197149 -1.561398 0.391088 0.000000 0.000000 5 -0 -0.028807 -1.291128 0.447279 0.000000 0.000000 5 -0 -0.422144 -0.966809 0.503469 0.000000 0.000000 5 -0 -0.239133 0.006496 0.353946 0.000000 0.000000 5 -0 -0.325037 0.006496 0.053280 0.000000 0.000000 5 -0 0.197150 -1.561398 -0.395588 0.000000 0.000000 5 -0 -0.027615 -1.669505 -0.395588 0.000000 0.000000 5 -0 -0.197380 -0.858701 0.503470 0.000000 0.000000 5 -0 -0.031535 0.245985 0.055003 0.000000 0.000000 5 -0 0.420724 -1.291128 -0.676543 0.000000 0.000000 5 -0 0.420723 -1.291128 -0.395587 0.000000 0.000000 5 -0 0.252149 -1.291128 -0.395587 0.000000 0.000000 5 -0 0.252149 -1.291128 -0.676542 0.000000 0.000000 5 -0 -0.422144 -0.966809 -0.507970 0.000000 0.000000 5 -0 -0.197379 -0.858701 -0.507970 0.000000 0.000000 5 -0 0.083576 -0.750593 -0.395587 0.000000 0.000000 5 -0 -0.253571 -1.399237 -0.451779 0.000000 0.000000 5 -0 -0.028806 -1.291128 -0.451778 0.000000 0.000000 5 -0 -0.284495 1.165808 0.416513 0.000000 0.000000 9 -0 -0.284495 1.165808 -0.317789 0.000000 0.000000 9 -0 0.284495 1.165808 0.416513 0.000000 0.000000 9 -0 0.284495 1.165808 -0.317789 0.000000 0.000000 9 -0 0.324327 0.002958 0.053280 0.000000 0.000000 12 -0 0.238422 0.002958 0.353946 0.000000 0.000000 12 -0 0.421433 -0.970347 0.503469 0.000000 0.000000 12 -0 0.026904 -1.673044 -0.395588 0.000000 0.000000 12 -0 -0.197861 -1.564937 -0.395588 0.000000 0.000000 12 -0 0.196669 -0.862239 0.503470 0.000000 0.000000 12 -0 0.030825 0.242447 0.055003 0.000000 0.000000 12 -0 -0.252860 -1.294666 -0.676542 0.000000 0.000000 12 -0 -0.252861 -1.294666 -0.395587 0.000000 0.000000 12 -0 -0.421431 -1.294667 -0.395587 0.000000 0.000000 12 -0 -0.421432 -1.294666 -0.676543 0.000000 0.000000 12 -0 0.196669 -0.862239 -0.507970 0.000000 0.000000 12 -0 0.421433 -0.970347 -0.507970 0.000000 0.000000 12 -0 -0.084286 -0.754130 -0.395587 0.000000 0.000000 12 -0 0.252860 -1.402775 -0.451779 0.000000 0.000000 12 -0 0.028096 -1.294667 -0.451778 0.000000 0.000000 12 -0 -0.421432 -0.646023 -0.676543 0.000000 0.000000 12 -0 -0.421431 -0.646023 -0.395587 0.000000 0.000000 12 -0 -0.277006 0.002958 0.353946 0.000000 0.000000 12 -0 -0.277006 0.002958 -0.261685 0.000000 0.000000 12 -0 -0.084286 -0.754131 -0.676543 0.000000 0.000000 12 -0 0.238422 0.002958 -0.261686 0.000000 0.000000 12 -0 0.028096 -1.294667 0.447279 0.000000 0.000000 12 -0 -0.197860 -1.564937 0.391088 0.000000 0.000000 12 -0 0.026904 -1.673044 0.391088 0.000000 0.000000 12 -0 0.252860 -1.402776 0.447279 0.000000 0.000000 12 -70 --0.266513 0.653713 -0.708258 --0.638041 0.507508 -0.579084 -0.317192 0.663267 -0.677839 -0.859102 0.102349 -0.501467 --0.733591 0.220461 -0.642838 --0.591345 0.568922 -0.571524 -0.300885 0.606282 -0.736132 -0.353383 0.634297 -0.687596 --0.658167 0.510267 -0.127416 -0.026034 0.224307 0.065927 --0.014882 0.213630 0.041523 -0.670849 0.502446 -0.139476 -0.272319 0.493694 -0.566907 --0.183457 0.502918 -0.613058 -0.805905 0.224587 0.547794 -0.785949 -0.176958 0.592427 -0.675303 0.336692 -0.656205 -0.500184 0.736896 -0.454753 --0.394000 0.535145 -0.747251 --0.424103 -0.196481 -0.884043 --0.557673 -0.445618 0.700304 --0.133445 -0.855714 0.499946 -0.765892 -0.244699 0.594585 -0.652288 0.268458 0.708837 --0.790177 0.003034 0.612872 --0.406143 0.518811 0.752252 --0.892149 0.451718 0.004531 -0.765893 -0.244698 -0.594585 --0.133444 -0.855714 -0.499946 -0.546009 -0.199902 0.813580 --0.160016 0.987085 0.007660 -0.577349 -0.577352 -0.577350 -0.577349 -0.577350 0.577352 --0.503466 -0.684392 0.527380 --0.503466 -0.684392 -0.527379 --0.799529 0.036445 -0.599520 -0.185039 -0.083615 -0.979168 -0.163898 -0.774333 0.611185 --0.422232 -0.379055 -0.823431 -0.652290 0.268458 -0.708836 --0.607254 0.144124 0.781327 --0.769991 0.133825 -0.623863 -0.788353 0.160166 0.594009 -0.589205 0.128420 -0.797713 -0.892149 0.451718 0.004531 -0.406143 0.518811 0.752252 -0.790176 0.003034 0.612872 -0.133445 -0.855714 -0.499947 --0.765893 -0.244697 -0.594585 --0.546009 -0.199903 0.813580 -0.160016 0.987085 0.007660 -0.503466 -0.684393 -0.527379 -0.503466 -0.684392 0.527380 --0.577349 -0.577350 0.577352 --0.577349 -0.577352 -0.577350 --0.185039 -0.083615 -0.979168 -0.799529 0.036445 -0.599520 --0.163898 -0.774333 0.611184 -0.422232 -0.379054 -0.823431 --0.652289 0.268458 -0.708836 --0.675303 0.336690 -0.656206 --0.785950 -0.176959 0.592426 --0.805905 0.224585 0.547794 --0.500185 0.736895 -0.454753 -0.424103 -0.196482 -0.884043 -0.394000 0.535145 -0.747251 --0.652288 0.268458 0.708837 --0.765892 -0.244698 0.594585 -0.133445 -0.855714 0.499946 -0.557673 -0.445617 0.700304 -110 -0 0 2 1 0 2 1 1 -0 0 3 2 0 3 2 1 -0 4 6 5 4 6 5 1 -0 4 7 6 4 7 6 1 -0 14 16 15 14 16 15 1 -0 14 17 16 14 17 16 1 -0 18 19 16 18 19 16 1 -0 20 22 21 20 22 21 1 -0 20 23 22 20 23 22 1 -0 24 26 25 24 26 25 1 -0 27 21 22 27 21 22 1 -0 27 28 21 27 28 21 1 -0 23 24 29 23 24 29 1 -0 23 20 24 23 20 24 1 -0 30 26 18 30 26 18 1 -0 31 33 32 31 33 32 1 -0 31 34 33 31 34 33 1 -0 35 36 18 35 36 18 1 -0 30 17 14 30 17 14 1 -0 30 14 25 30 14 25 1 -0 30 18 17 30 18 17 1 -0 37 14 15 37 14 15 1 -0 15 33 37 15 33 37 1 -0 15 32 33 15 32 33 1 -0 20 35 24 20 35 24 1 -0 20 38 35 20 38 35 1 -0 37 34 19 37 34 19 1 -0 37 33 34 37 33 34 1 -0 39 28 27 39 28 27 1 -0 39 38 28 39 38 28 1 -0 19 31 16 19 31 16 1 -0 19 34 31 19 34 31 1 -0 38 39 36 38 39 36 1 -0 26 30 25 26 30 25 1 -0 18 36 19 18 36 19 1 -0 38 21 28 38 21 28 1 -0 38 20 21 38 20 21 1 -0 38 36 35 38 36 35 1 -0 32 16 31 32 16 31 1 -0 32 15 16 32 15 16 1 -0 29 24 25 29 24 25 1 -0 26 24 35 26 24 35 1 -0 18 16 17 18 16 17 1 -0 37 29 14 37 29 14 1 -0 23 27 22 23 27 22 1 -0 23 39 27 23 39 27 1 -0 29 25 14 29 25 14 1 -0 29 19 36 29 19 36 1 -0 29 37 19 29 37 19 1 -0 26 35 18 26 35 18 1 -0 29 39 23 29 39 23 1 -0 29 36 39 29 36 39 1 -0 8 40 9 8 40 9 1 -0 10 40 42 10 40 42 1 -0 10 9 40 10 9 40 1 -0 11 43 12 11 43 12 1 -0 13 43 41 13 43 41 1 -0 13 12 43 13 12 43 1 -0 41 8 13 41 8 13 1 -0 40 8 41 40 8 41 1 -0 42 11 10 42 11 10 1 -0 11 42 43 11 42 43 1 -0 60 62 61 60 62 61 1 -0 63 62 60 63 62 60 1 -0 64 65 60 64 65 60 1 -0 66 68 67 66 68 67 1 -0 66 69 68 66 69 68 1 -0 44 46 45 44 46 45 1 -0 47 67 68 47 67 68 1 -0 47 48 67 47 48 67 1 -0 69 49 46 69 49 46 1 -0 69 66 49 69 66 49 1 -0 44 50 65 44 50 65 1 -0 51 53 52 51 53 52 1 -0 51 54 53 51 54 53 1 -0 55 56 65 55 56 65 1 -0 63 50 62 63 50 62 1 -0 62 50 45 62 50 45 1 -0 65 50 63 65 50 63 1 -0 62 57 61 62 57 61 1 -0 53 57 52 53 57 52 1 -0 53 61 57 53 61 57 1 -0 58 46 56 58 46 56 1 -0 58 69 46 58 69 46 1 -0 52 64 51 52 64 51 1 -0 52 57 64 52 57 64 1 -0 58 48 47 58 48 47 1 -0 58 59 48 58 59 48 1 -0 51 60 54 51 60 54 1 -0 51 64 60 51 64 60 1 -0 59 58 55 59 58 55 1 -0 50 44 45 50 44 45 1 -0 55 65 64 55 65 64 1 -0 69 47 68 69 47 68 1 -0 69 58 47 69 58 47 1 -0 55 58 56 55 58 56 1 -0 61 54 60 61 54 60 1 -0 61 53 54 61 53 54 1 -0 46 49 45 46 49 45 1 -0 46 44 56 46 44 56 1 -0 60 65 63 60 65 63 1 -0 49 57 62 49 57 62 1 -0 59 67 48 59 67 48 1 -0 59 66 67 59 66 67 1 -0 45 49 62 45 49 62 1 -0 57 55 64 57 55 64 1 -0 57 49 55 57 49 55 1 -0 56 44 65 56 44 65 1 -0 55 66 59 55 66 59 1 -0 55 49 66 55 49 66 1 -"Mesh7" 0 7 -133 -0 -0.586758 0.900000 -0.376105 0.333879 0.714173 0 -0 -0.800384 1.479107 -0.512623 0.273398 0.569656 0 -0 0.000000 1.500000 -0.700000 0.500000 0.564442 0 -0 -0.668289 0.900000 0.254475 0.310796 0.714173 0 -0 1.071220 2.385888 0.442661 0.803281 0.343368 0 -0 0.000000 2.850000 0.850000 0.500000 0.227548 0 -0 0.000000 0.900000 0.547500 0.500000 0.714173 0 -0 0.668289 0.900000 0.254475 0.689204 0.714173 0 -0 0.799946 1.477320 -0.511980 0.726478 0.570102 0 -0 1.119495 2.350000 -0.200000 0.816948 0.352324 0 -0 -1.071220 2.385888 0.442661 0.196720 0.343368 0 -0 -0.702477 1.704467 -0.918750 0.301117 0.513417 0 -0 1.154803 2.208148 -0.695795 0.826944 0.387723 0 -0 1.116469 3.047720 -0.266731 0.816091 0.178207 0 -0 0.652477 1.704467 -0.918750 0.684727 0.513417 0 -0 -1.140003 2.208148 -0.695795 0.177246 0.387723 0 -0 -1.119495 2.350000 -0.200000 0.183052 0.352324 0 -0 0.586758 0.900000 -0.376105 0.666121 0.714173 0 -0 0.000000 0.900000 -0.640000 0.500000 0.714173 0 -0 -0.969549 3.215841 0.424211 0.225504 0.136252 0 -0 -1.343011 3.073077 0.359041 0.119771 0.171879 0 -0 1.343011 3.073080 0.359041 0.880229 0.171878 0 -0 0.969549 3.215841 0.424211 0.774496 0.136252 0 -0 0.000000 2.850000 0.850000 0.500000 0.216563 0 -0 -0.969549 3.215841 0.424211 0.435665 0.119561 0 -0 -1.097826 1.555935 0.811112 0.427153 0.559682 0 -0 0.847915 1.320176 0.799866 0.556264 0.622193 0 -0 1.097826 1.555935 0.811112 0.572847 0.559682 0 -0 -0.847915 1.320176 0.799866 0.443736 0.622193 0 -0 0.969549 3.215841 0.424211 0.564335 0.119561 0 -0 -1.216469 3.047720 -0.266731 0.155597 0.178207 0 -0 -1.119495 2.350000 -0.200000 0.207927 0.055810 0 -0 -1.071220 2.385888 0.442661 0.524816 0.043608 0 -0 -1.343011 3.073077 0.359041 0.483584 0.112306 0 -0 -1.216469 3.047720 -0.266731 0.175022 0.055045 0 -0 1.071220 2.385888 0.442661 0.524816 0.043608 0 -0 1.119495 2.350000 -0.200000 0.207927 0.055810 0 -0 1.343011 3.073080 0.359041 0.483584 0.112306 0 -0 1.116469 3.047720 -0.266731 0.175022 0.055045 0 -0 0.836037 1.933844 -0.214802 0.409014 0.694738 1 -0 0.834864 1.558592 -0.782057 0.408918 0.857099 1 -0 -0.013148 2.122574 -0.368457 0.358177 0.738718 1 -0 -0.836033 1.933844 -0.214802 0.304801 0.694738 1 -0 -0.774866 1.996096 0.911106 0.309862 0.372389 1 -0 0.774869 1.996097 0.911106 0.403221 0.372389 1 -0 1.294243 1.487562 0.235998 0.446580 0.565710 1 -0 -0.834859 1.558591 -0.782057 0.304897 0.857099 1 -0 -1.294240 1.487562 0.235998 0.267235 0.565710 1 -0 -1.019456 1.234107 -0.437852 0.289763 0.758581 1 -0 1.019459 1.234107 -0.437852 0.424052 0.758581 1 -0 1.184663 0.735397 0.148246 0.437596 0.590827 1 -0 -0.013148 2.201141 0.863242 0.358304 0.385875 1 -0 0.000000 0.268936 1.059772 0.359801 0.330503 1 -0 0.818129 0.183210 0.477379 0.407546 0.496622 1 -0 1.331390 -1.632237 1.768700 0.450056 0.127276 1 -0 -1.331385 -1.632237 1.768700 0.268644 0.127276 1 -0 -0.818126 0.183210 0.477380 0.306269 0.496621 1 -0 -1.184658 0.735397 0.148246 0.276219 0.590827 1 -0 0.000000 1.090443 1.825479 0.359350 0.110251 1 -0 -0.000001 1.662471 -0.919120 0.359255 0.896330 1 -0 -1.217085 -1.038242 -0.960453 0.148950 0.593140 2 -0 -0.763000 -0.147431 -0.696289 0.279924 0.258109 2 -0 0.000000 -0.245367 -0.869494 0.500000 0.294942 2 -0 0.000001 -1.062726 -1.287383 0.500000 0.602348 2 -0 0.763000 -0.147431 -0.696288 0.720076 0.258109 2 -0 1.217085 -1.038242 -0.972951 0.851050 0.593140 2 -0 1.265950 -1.061434 1.196373 0.865144 0.601862 2 -0 0.763000 0.388121 0.666148 0.720076 0.056690 2 -0 0.000000 0.420078 0.781617 0.500000 0.044672 2 -0 0.000001 -1.057439 1.551764 0.500000 0.600359 2 -0 -0.763000 0.388121 0.666148 0.279924 0.056690 2 -0 -1.265951 -1.061434 1.196373 0.134855 0.601862 2 -0 1.090000 0.096377 -0.026673 0.814394 0.166415 2 -0 1.743697 -1.027291 0.115440 0.963651 0.589022 2 -0 -1.743697 -1.027290 0.115440 0.036349 0.589020 2 -0 -1.090000 0.096377 -0.026673 0.185606 0.166415 2 -0 -0.763000 0.388121 0.666148 0.281800 0.841912 2 -0 0.000000 0.420078 0.781617 0.500000 0.833938 2 -0 0.763000 -0.147431 -0.696288 0.718200 0.975560 2 -0 -0.763000 -0.147431 -0.696289 0.281800 0.975560 2 -0 -1.090000 0.096377 -0.026673 0.188286 0.914718 2 -0 0.000000 -0.245367 -0.869494 0.500000 1.000000 2 -0 0.763000 0.388121 0.666148 0.718200 0.841912 2 -0 1.090000 0.096377 -0.026673 0.811715 0.914718 2 -0 -0.385182 -0.631122 0.481773 0.098290 0.460503 3 -0 0.515939 -0.631122 0.481744 0.098306 0.460503 3 -0 -0.378782 -0.631122 -0.387007 0.580570 0.462701 3 -0 0.522761 -0.631122 -0.387055 0.580595 0.462701 3 -0 0.719843 -0.792434 -0.897135 0.575700 0.716441 4 -0 0.595824 -0.750737 -2.608656 0.576769 0.951488 4 -0 -0.740924 -0.750737 -2.608656 0.576769 0.951488 4 -0 -0.043295 -0.119525 -2.318063 0.810447 0.918607 4 -0 -0.900872 -0.792434 -0.897135 0.575700 0.716441 4 -0 -0.036561 0.042588 -1.339214 0.880060 0.788569 4 -0 0.437847 -0.108884 0.529255 0.583272 0.175413 8 -0 0.446950 -0.098025 -0.362338 0.143638 0.172641 8 -0 -0.388718 -3.082265 0.535157 0.586183 0.934565 8 -0 -0.263530 -0.089190 0.398027 0.518565 0.170384 8 -0 -0.286799 -0.043133 -0.266871 0.190712 0.158626 8 -0 -0.374701 -3.096954 -0.347619 0.150896 0.938315 8 -0 0.665363 -3.096968 -0.347673 0.573569 0.199432 8 -0 -0.374701 -3.096954 -0.347619 0.573540 0.199427 8 -0 0.665363 -3.096968 -0.347673 0.150869 0.938319 8 -0 0.356384 -0.847761 -0.260613 0.193797 0.364060 8 -0 0.346930 -0.852232 0.437567 0.538062 0.365202 8 -0 0.654853 -3.082275 0.535102 0.586156 0.934568 8 -0 0.654853 -3.082275 0.535102 0.083460 0.194799 8 -0 -0.388718 -3.082265 0.535157 0.083430 0.194794 8 -0 0.378781 -0.631122 -0.387007 0.128949 0.402377 10 -0 -0.522761 -0.631122 -0.387055 0.128923 0.402377 10 -0 -0.515939 -0.631122 0.481744 0.585685 0.402377 10 -0 0.385182 -0.631122 0.481773 0.585701 0.402377 10 -0 0.043295 -0.119525 -2.318063 0.787791 0.755360 11 -0 0.740924 -0.750737 -2.608656 0.580194 0.732045 11 -0 -0.595824 -0.750737 -2.608656 0.580194 0.732045 11 -0 0.036561 0.042588 -1.339214 0.848674 0.866740 11 -0 0.900872 -0.792434 -0.897135 0.580962 0.932232 11 -0 -0.719843 -0.792434 -0.897135 0.580962 0.932232 11 -0 0.036561 0.042588 -1.339214 0.848674 0.866740 11 -0 -0.437848 -0.108884 0.529255 0.583272 0.175413 15 -0 0.388719 -3.082265 0.535157 0.599847 0.136603 15 -0 -0.665363 -3.096968 -0.347673 0.136160 0.143097 15 -0 -0.446950 -0.098025 -0.362338 0.143638 0.172641 15 -0 0.286799 -0.043133 -0.266870 0.190712 0.158626 15 -0 0.263530 -0.089189 0.398027 0.518565 0.170384 15 -0 0.388719 -3.082265 0.535157 0.586183 0.934565 15 -0 0.374702 -3.096953 -0.347619 0.150896 0.938315 15 -0 -0.654852 -3.082276 0.535102 0.599819 0.136608 15 -0 0.374702 -3.096953 -0.347619 0.136189 0.143090 15 -0 -0.665363 -3.096968 -0.347673 0.150869 0.938319 15 -0 -0.356384 -0.847761 -0.260613 0.193797 0.364060 15 -0 -0.346930 -0.852232 0.437567 0.538062 0.365202 15 -0 -0.654852 -3.082276 0.535102 0.586156 0.934568 15 -133 --0.720741 0.074768 -0.689161 --0.757562 -0.531505 -0.378948 -0.000251 -0.514057 -0.857756 --0.952945 0.061920 0.296751 -0.121318 0.059929 0.898503 -0.000000 -0.065318 0.992846 -0.000000 0.199719 0.979853 -0.952937 0.061881 0.296787 -0.748102 -0.535089 -0.392459 -0.034656 -0.214261 -0.168619 --0.121318 0.059928 0.898504 --0.400644 -0.913722 -0.067792 -0.839696 -0.482211 0.249769 -0.831101 -0.003015 -0.052158 -0.259198 -0.955881 -0.138231 --0.874581 -0.447960 0.185578 --0.031521 -0.228366 -0.174291 -0.720751 0.074753 -0.689151 -0.000000 0.156598 -0.987662 -0.183361 0.448022 0.815537 --0.765462 -0.022516 -0.100626 -0.617406 -0.075157 -0.245175 --0.107411 0.335190 0.902107 -0.000000 -0.065318 0.992846 -0.183361 0.448022 0.815537 -0.309629 0.145799 0.189766 --0.087251 0.380651 0.209618 --0.315426 0.165437 0.204425 -0.208320 0.325535 0.200049 --0.107411 0.335190 0.902107 --0.809004 -0.038176 -0.049972 --0.031521 -0.228366 -0.174291 --0.121318 0.059928 0.898504 --0.765462 -0.022516 -0.100626 --0.809004 -0.038176 -0.049972 -0.121318 0.059929 0.898503 -0.034656 -0.214261 -0.168619 -0.617406 -0.075157 -0.245175 -0.831101 -0.003015 -0.052158 -0.540091 0.805569 -0.243639 -0.593957 0.365993 -0.716425 --0.003142 0.940411 -0.340026 --0.543384 0.803587 -0.242860 --0.543779 0.752541 0.371465 -0.540791 0.754627 0.371596 -0.955865 0.247059 -0.159010 --0.594798 0.364557 -0.716459 --0.955865 0.247058 -0.159011 --0.885286 -0.110990 -0.451608 -0.885285 -0.110993 -0.451610 -0.852123 -0.334245 -0.402698 --0.003382 0.919790 0.392397 -0.000000 -0.963157 0.268940 -0.452174 -0.831333 0.323147 -0.716499 -0.697303 -0.019955 --0.716498 -0.697303 -0.019958 --0.530561 -0.824284 0.197639 --0.852126 -0.334242 -0.402695 --0.000910 0.256554 0.966529 --0.000087 0.540983 -0.841033 --0.326759 0.789029 -0.520252 --0.550727 0.368416 -0.737470 --0.041435 0.309592 -0.941486 -0.008413 0.780968 -0.624514 -0.428218 0.381019 -0.811926 -0.389279 0.799599 -0.457279 -0.321808 0.808864 0.492117 -0.586652 0.513525 0.615473 -0.041449 0.437739 0.897187 --0.018859 0.804064 0.594243 --0.486200 0.501589 0.714084 --0.423024 0.823709 0.377564 -0.860752 0.462593 -0.192731 -0.599324 0.800463 0.008272 --0.567013 0.819020 -0.087765 --0.892136 0.441399 -0.045426 --0.486200 0.501589 0.714084 -0.041449 0.437739 0.897187 -0.428218 0.381019 -0.811926 --0.550727 0.368416 -0.737470 --0.892136 0.441399 -0.045426 --0.041435 0.309592 -0.941486 -0.586652 0.513525 0.615473 -0.860752 0.462593 -0.192731 --0.486320 0.647442 0.586780 -0.632803 0.661402 0.402626 --0.691086 0.524794 -0.496983 -0.357600 0.757669 -0.545949 -0.942126 -0.150173 -0.299745 -0.781883 0.318012 -0.536216 --0.632817 0.099790 -0.767844 --0.242495 0.881886 -0.404318 --0.944778 -0.019239 -0.327147 -0.107486 0.575032 -0.811039 -0.769270 -0.179984 0.613049 -0.675336 -0.121148 -0.727492 --0.798686 -0.018158 0.573388 --0.593622 0.352040 0.723658 --0.607728 0.121446 -0.784804 --0.572198 0.012746 -0.804219 -0.678971 -0.017201 -0.659074 --0.572198 0.012746 -0.804219 -0.678971 -0.017201 -0.659074 -0.831087 0.024618 -0.555597 -0.678470 -0.027160 0.734126 -0.659153 0.017283 0.673302 -0.659153 0.017283 0.673302 --0.798686 -0.018158 0.573388 -0.467661 0.637496 -0.612283 --0.624404 0.657646 -0.421451 --0.367452 0.760742 0.535024 -0.708617 0.543666 0.449766 --0.289398 0.869301 -0.400704 -0.760851 0.352050 -0.545129 --0.644250 0.074640 -0.761164 --0.032549 0.553166 -0.381879 -0.754480 -0.002744 -0.170980 --0.759213 0.068818 -0.184414 --0.032549 0.553166 -0.381879 --0.769271 -0.179984 0.613048 -0.575356 -0.011289 0.799675 --0.456841 0.021235 -0.886276 --0.679849 -0.123182 -0.722933 -0.617060 0.099779 -0.780565 -0.594142 0.330928 0.733132 -0.575356 -0.011289 0.799675 -0.794491 -0.011611 -0.583754 --0.878639 -0.007651 0.453799 -0.794491 -0.011611 -0.583754 --0.456841 0.021235 -0.886276 --0.831087 0.024618 -0.555597 --0.678470 -0.027160 0.734126 --0.878639 -0.007651 0.453799 -158 -0 0 2 1 0 2 1 1 -0 1 3 0 1 3 0 1 -0 4 6 5 4 6 5 1 -0 6 4 7 6 4 7 1 -0 7 9 8 7 9 8 1 -0 10 6 3 10 6 3 1 -0 6 10 5 6 10 5 1 -0 2 11 1 2 11 1 1 -0 12 9 13 12 9 13 1 -0 12 14 8 12 14 8 1 -0 15 16 1 15 16 1 1 -0 11 15 1 11 15 1 1 -0 76 6 77 76 6 77 1 -0 82 6 7 82 6 7 1 -0 83 7 17 83 7 17 1 -0 7 83 82 7 83 82 1 -0 18 78 17 18 78 17 1 -0 0 80 79 0 80 79 1 -0 6 76 3 6 76 3 1 -0 80 0 3 80 0 3 1 -0 18 79 81 18 79 81 1 -0 78 18 81 78 18 81 1 -0 79 18 0 79 18 0 1 -0 6 82 77 6 82 77 1 -0 83 17 78 83 17 78 1 -0 80 3 76 80 3 76 1 -0 19 10 20 19 10 20 1 -0 4 22 21 4 22 21 1 -0 22 4 5 22 4 5 1 -0 10 19 5 10 19 5 1 -0 23 25 24 23 25 24 1 -0 23 27 26 23 27 26 1 -0 23 26 28 23 26 28 1 -0 25 23 28 25 23 28 1 -0 27 23 29 27 23 29 1 -0 9 12 8 9 12 8 1 -0 16 15 30 16 15 30 1 -0 2 17 8 2 17 8 1 -0 2 18 17 2 18 17 1 -0 14 2 8 14 2 8 1 -0 2 14 11 2 14 11 1 -0 18 2 0 18 2 0 1 -0 7 8 17 7 8 17 1 -0 3 16 10 3 16 10 1 -0 9 7 4 9 7 4 1 -0 16 3 1 16 3 1 1 -0 39 41 40 39 41 40 1 -0 42 41 43 42 41 43 1 -0 39 45 44 39 45 44 1 -0 42 47 46 42 47 46 1 -0 41 39 44 41 39 44 1 -0 47 42 43 47 42 43 1 -0 48 46 47 48 46 47 1 -0 45 39 40 45 39 40 1 -0 49 50 45 49 50 45 1 -0 40 49 45 40 49 45 1 -0 44 51 41 44 51 41 1 -0 52 54 53 52 54 53 1 -0 55 52 56 55 52 56 1 -0 47 55 57 47 55 57 1 -0 57 48 47 57 48 47 1 -0 55 58 52 55 58 52 1 -0 59 41 46 59 41 46 1 -0 54 45 50 54 45 50 1 -0 53 54 50 53 54 50 1 -0 41 42 46 41 42 46 1 -0 55 56 57 55 56 57 1 -0 58 54 52 58 54 52 1 -0 41 59 40 41 59 40 1 -0 43 41 51 43 41 51 1 -0 54 44 45 54 44 45 1 -0 55 43 58 55 43 58 1 -0 58 51 44 58 51 44 1 -0 51 58 43 51 58 43 1 -0 43 55 47 43 55 47 1 -0 44 54 58 44 54 58 1 -0 60 62 61 60 62 61 1 -0 60 63 62 60 63 62 1 -0 63 64 62 63 64 62 1 -0 63 65 64 63 65 64 1 -0 66 68 67 66 68 67 1 -0 66 69 68 66 69 68 1 -0 69 70 68 69 70 68 1 -0 69 71 70 69 71 70 1 -0 65 72 64 65 72 64 1 -0 65 73 72 65 73 72 1 -0 74 61 75 74 61 75 1 -0 74 60 61 74 60 61 1 -0 71 75 70 71 75 70 1 -0 71 74 75 71 74 75 1 -0 73 67 72 73 67 72 1 -0 73 66 67 73 66 67 1 -0 84 106 85 84 106 85 1 -0 84 107 106 84 107 106 1 -0 86 107 84 86 107 84 1 -0 86 101 107 86 101 107 1 -0 87 101 86 87 101 86 1 -0 87 100 101 87 100 101 1 -0 85 100 87 85 100 87 1 -0 85 106 100 85 106 100 1 -0 89 91 90 89 91 90 1 -0 92 91 93 92 91 93 1 -0 92 90 91 92 90 91 1 -0 89 93 91 89 93 91 1 -0 89 88 93 89 88 93 1 -0 31 94 32 31 94 32 1 -0 95 94 31 95 94 31 1 -0 96 98 97 96 98 97 1 -0 99 98 96 99 98 96 1 -0 32 97 33 32 97 33 1 -0 94 97 32 94 97 32 1 -0 34 97 98 34 97 98 1 -0 102 98 99 102 98 99 1 -0 103 98 102 103 98 102 1 -0 104 97 94 104 97 94 1 -0 105 103 102 105 103 102 1 -0 104 103 105 104 103 105 1 -0 97 34 33 97 34 33 1 -0 34 95 31 34 95 31 1 -0 98 95 34 98 95 34 1 -0 98 103 95 98 103 95 1 -0 96 104 105 96 104 105 1 -0 97 104 96 97 104 96 1 -0 95 104 94 95 104 94 1 -0 103 104 95 103 104 95 1 -0 120 110 127 120 110 127 1 -0 120 111 110 120 111 110 1 -0 128 111 120 128 111 120 1 -0 128 108 111 128 108 111 1 -0 121 108 128 121 108 128 1 -0 121 109 108 121 109 108 1 -0 127 109 121 127 109 121 1 -0 127 110 109 127 110 109 1 -0 112 114 113 112 114 113 1 -0 113 115 112 113 115 112 1 -0 113 116 115 113 116 115 1 -0 117 112 118 117 112 118 1 -0 117 114 112 117 114 112 1 -0 119 36 35 119 36 35 1 -0 119 122 36 119 122 36 1 -0 123 125 124 123 125 124 1 -0 123 126 125 123 126 125 1 -0 124 35 37 124 35 37 1 -0 124 119 35 124 119 35 1 -0 124 38 123 124 38 123 1 -0 123 129 126 123 129 126 1 -0 123 130 129 123 130 129 1 -0 124 131 119 124 131 119 1 -0 130 132 129 130 132 129 1 -0 130 131 132 130 131 132 1 -0 38 124 37 38 124 37 1 -0 122 38 36 122 38 36 1 -0 122 123 38 122 123 38 1 -0 130 123 122 130 123 122 1 -0 131 125 132 131 125 132 1 -0 131 124 125 131 124 125 1 -0 131 122 119 131 122 119 1 -0 131 130 122 131 130 122 1 -"Mesh8" 0 8 -28 -0 0.000000 0.040113 -1.124064 0.503058 0.607698 1 -0 -0.000044 0.119704 -1.236208 0.503033 0.559863 1 -0 0.195842 0.115525 -1.061040 0.614516 0.562375 1 -0 0.434007 -0.422302 0.046328 0.750063 0.885614 1 -0 0.000000 -0.117804 0.676852 0.503058 0.770252 1 -0 0.000000 -0.635959 -0.706859 0.503058 0.964876 1 -0 0.249330 -0.492702 -0.814051 0.644958 0.927924 1 -0 0.261373 -0.582008 -0.673594 0.651812 0.932451 1 -0 0.000000 -0.559736 -0.867594 0.503058 0.968213 1 -0 -0.261631 -0.582008 -0.673594 0.354156 0.932451 1 -0 -0.249575 -0.492702 -0.814051 0.361017 0.927924 1 -0 -0.195839 0.115525 -1.061040 0.391600 0.562375 1 -0 -0.434089 -0.422302 0.046328 0.256005 0.885614 1 -0 -0.000043 0.212820 -1.241719 0.503033 0.503900 1 -0 -0.000036 0.382491 -1.060336 0.503037 0.401926 1 -0 -0.640070 0.392673 -0.714944 0.138776 0.395806 1 -0 -0.644026 0.117872 -0.851260 0.136524 0.560965 1 -0 -0.799714 0.108139 -0.101589 0.047918 0.566814 1 -0 0.799714 0.108139 -0.101590 0.958197 0.566814 1 -0 0.644029 0.117872 -0.851260 0.869592 0.560965 1 -0 0.640074 0.392673 -0.714944 0.867341 0.395806 1 -0 0.643436 -0.206834 -0.369460 0.869255 0.756115 1 -0 -0.643437 -0.206834 -0.369460 0.136860 0.756115 1 -0 0.000000 0.927975 -1.121621 0.503058 0.074085 1 -0 -0.669629 0.808752 -0.819767 0.121953 0.145740 1 -0 0.669629 0.808752 -0.819767 0.884162 0.145740 1 -0 -0.818126 0.183210 0.477380 0.037439 0.521695 1 -0 0.818129 0.183210 0.477379 0.968677 0.521695 1 -28 -0.000001 -0.625614 -0.780132 --0.000056 -0.522318 -0.852751 -0.530656 -0.154948 -0.833304 -0.522130 -0.817510 0.243017 --0.000005 -0.814910 0.579587 -0.000068 -0.999316 0.036980 -0.551993 -0.526206 -0.646847 -0.485883 -0.836366 -0.253790 -0.000108 -0.661180 -0.750227 --0.485871 -0.836377 -0.253778 --0.552009 -0.526125 -0.646899 --0.530688 -0.154975 -0.833279 --0.522180 -0.817471 0.243043 --0.000122 0.359694 -0.933070 --0.000039 0.347738 -0.937592 --0.716319 0.005522 -0.697751 --0.765387 -0.061250 -0.640649 --0.968780 -0.226614 -0.100552 -0.968775 -0.226644 -0.100532 -0.765356 -0.061301 -0.640681 -0.716308 0.005510 -0.697763 -0.833401 -0.527474 -0.164967 --0.833515 -0.527307 -0.164926 --0.000006 -0.036374 -0.999338 --0.656417 -0.156415 -0.738005 -0.656418 -0.156415 -0.738004 --0.530561 -0.824284 0.197639 -0.452174 -0.831333 0.323147 -44 -0 0 2 1 0 2 1 1 -0 3 5 4 3 5 4 1 -0 6 8 7 6 8 7 1 -0 8 10 9 8 10 9 1 -0 8 11 10 8 11 10 1 -0 2 8 6 2 8 6 1 -0 9 5 8 9 5 8 1 -0 5 9 12 5 9 12 1 -0 2 14 13 2 14 13 1 -0 7 5 3 7 5 3 1 -0 13 11 1 13 11 1 1 -0 2 13 1 2 13 1 1 -0 15 17 16 15 17 16 1 -0 18 20 19 18 20 19 1 -0 21 6 7 21 6 7 1 -0 3 21 7 3 21 7 1 -0 22 10 16 22 10 16 1 -0 3 18 21 3 18 21 1 -0 16 14 15 16 14 15 1 -0 14 19 20 14 19 20 1 -0 14 11 13 14 11 13 1 -0 19 14 2 19 14 2 1 -0 14 16 11 14 16 11 1 -0 18 19 21 18 19 21 1 -0 16 17 22 16 17 22 1 -0 6 21 19 6 21 19 1 -0 10 22 9 10 22 9 1 -0 2 6 19 2 6 19 1 -0 11 8 0 11 8 0 1 -0 9 22 12 9 22 12 1 -0 17 12 22 17 12 22 1 -0 5 12 4 5 12 4 1 -0 5 7 8 5 7 8 1 -0 20 23 14 20 23 14 1 -0 23 15 14 23 15 14 1 -0 8 2 0 8 2 0 1 -0 24 15 23 24 15 23 1 -0 23 20 25 23 20 25 1 -0 10 11 16 10 11 16 1 -0 0 1 11 0 1 11 1 -0 18 25 20 18 25 20 1 -0 24 17 15 24 17 15 1 -0 24 26 17 24 26 17 1 -0 27 25 18 27 25 18 1 -"Mesh9" 0 9 -30 -0 -0.434089 -0.422302 0.046328 0.415728 0.607952 1 -0 -0.818126 0.183210 0.477380 0.301096 0.317200 1 -0 -0.799714 0.108139 -0.101589 0.305742 0.351068 1 -0 0.799714 0.108139 -0.101590 0.308255 0.352302 1 -0 0.818129 0.183210 0.477379 0.303599 0.318509 1 -0 0.434007 -0.422302 0.046328 0.418287 0.608650 1 -0 0.000000 -0.117804 0.676852 0.434534 0.449236 1 -0 0.000000 0.268936 1.059772 0.465969 0.288569 1 -0 0.286744 -1.334971 -1.441181 0.466569 0.990812 1 -0 0.867345 -1.488142 -1.277715 0.103310 0.972745 1 -0 0.477275 -1.770257 -0.874227 0.299407 0.956371 1 -0 -0.477273 -1.770257 -0.874227 0.296532 0.956996 1 -0 -0.867346 -1.488142 -1.277714 0.100375 0.973070 1 -0 -0.286743 -1.334971 -1.441181 0.463836 0.991030 1 -0 -0.491833 -1.078749 -0.970652 0.349168 0.910909 1 -0 -0.811250 -1.105489 -0.815523 0.147956 0.908954 1 -0 0.811249 -1.105489 -0.815523 0.150887 0.908958 1 -0 0.491834 -1.078749 -0.970652 0.351996 0.910913 1 -0 -0.818126 0.183210 0.477380 0.301096 0.317200 1 -0 -1.023748 0.457010 -0.094874 0.203220 0.174074 1 -0 -1.222179 -0.417989 -0.441973 0.015949 0.510356 1 -0 0.691690 -1.241789 -0.695702 0.229608 0.915123 1 -0 -0.691687 -1.241789 -0.695702 0.226687 0.915135 1 -0 0.669629 0.808752 -0.819767 0.441198 0.079645 1 -0 1.023746 0.457010 -0.094874 0.205731 0.175668 1 -0 1.222178 -0.417989 -0.441974 0.018685 0.511101 1 -0 -0.669629 0.808752 -0.819767 0.438857 0.077730 1 -0 -0.763544 0.083751 -0.453690 0.324896 0.366344 1 -0 0.763545 0.083751 -0.453690 0.327403 0.367552 1 -0 0.818129 0.183210 0.477379 0.303599 0.318509 1 -30 --0.522180 -0.817471 0.243043 --0.530561 -0.824284 0.197639 --0.968780 -0.226614 -0.100552 -0.968775 -0.226644 -0.100532 -0.452174 -0.831333 0.323147 -0.522130 -0.817510 0.243017 --0.000005 -0.814910 0.579587 -0.000000 -0.963157 0.268940 --0.175572 0.484551 -0.856962 -0.896636 -0.414995 -0.154349 --0.579469 -0.650320 0.491223 --0.400745 -0.843980 0.356511 --0.738625 0.133804 -0.660704 -0.986147 -0.046710 -0.159160 -0.290044 0.809969 -0.509730 --0.929870 -0.036798 -0.366043 -0.979735 0.096382 -0.175583 --0.829230 0.476190 -0.292611 --0.530561 -0.824284 0.197639 --0.977418 -0.119877 -0.174022 --0.930520 -0.271431 -0.245883 -0.292337 -0.501245 0.814428 -0.395537 -0.474879 0.786156 -0.656418 -0.156415 -0.738004 -0.977417 -0.119881 -0.174027 -0.822670 -0.051664 -0.566167 --0.656417 -0.156415 -0.738005 -0.808015 0.003226 -0.589153 --0.803293 -0.007468 -0.595537 -0.452174 -0.831333 0.323147 -40 -0 0 2 1 0 2 1 1 -0 3 5 4 3 5 4 1 -0 6 4 5 6 4 5 1 -0 0 1 6 0 1 6 1 -0 7 6 1 7 6 1 1 -0 6 7 4 6 7 4 1 -0 8 10 9 8 10 9 1 -0 11 13 12 11 13 12 1 -0 14 12 13 14 12 13 1 -0 14 15 12 14 15 12 1 -0 16 8 9 16 8 9 1 -0 16 17 8 16 17 8 1 -0 18 20 19 18 20 19 1 -0 21 9 10 21 9 10 1 -0 21 16 9 21 16 9 1 -0 22 13 11 22 13 11 1 -0 22 14 13 22 14 13 1 -0 17 10 8 17 10 8 1 -0 17 21 10 17 21 10 1 -0 23 25 24 23 25 24 1 -0 20 26 19 20 26 19 1 -0 26 20 27 26 20 27 1 -0 25 23 28 25 23 28 1 -0 22 20 18 22 20 18 1 -0 22 15 20 22 15 20 1 -0 25 29 24 25 29 24 1 -0 16 29 25 16 29 25 1 -0 16 21 29 16 21 29 1 -0 29 28 23 29 28 23 1 -0 29 17 28 29 17 28 1 -0 29 21 17 29 21 17 1 -0 17 25 28 17 25 28 1 -0 17 16 25 17 16 25 1 -0 27 18 26 27 18 26 1 -0 27 22 18 27 22 18 1 -0 27 14 22 27 14 22 1 -0 15 11 12 15 11 12 1 -0 15 22 11 15 22 11 1 -0 15 27 20 15 27 20 1 -0 15 14 27 15 14 27 1 -"Mesh10" 0 10 -78 -0 0.996554 -0.733333 0.966338 0.293012 0.780375 2 -0 -2.336272 -1.988370 0.201170 0.096909 0.569818 2 -0 -1.022527 -0.733333 -0.561818 0.174209 0.780374 2 -0 -0.996554 -0.733333 0.966338 0.175738 0.780375 2 -0 0.000001 -1.982538 2.280167 0.234375 0.570797 2 -0 -1.678017 -1.983333 1.617116 0.135640 0.570663 2 -0 1.022527 -0.733333 -0.561818 0.294541 0.780374 2 -0 1.627146 -1.983333 -1.374600 0.330116 0.570663 2 -0 -1.627146 -1.983333 -1.374600 0.138634 0.570663 2 -0 0.000002 -1.987757 -1.941186 0.234375 0.569921 2 -0 -0.172372 -1.733333 0.675336 0.190427 0.230398 2 -0 -0.168166 -1.583333 -0.313034 0.837200 0.198181 2 -0 -0.168166 -1.583333 -0.313034 0.312956 0.198181 2 -0 -0.172372 -1.733333 0.675336 0.120945 0.230398 2 -0 -0.996554 -0.733333 0.966338 0.000000 0.015625 2 -0 -1.022527 -0.733333 -0.561818 1.000000 0.015625 2 -0 0.172372 -1.733333 0.675336 0.809573 0.230398 2 -0 0.168166 -1.583333 -0.313034 0.162800 0.198181 2 -0 0.168166 -1.583333 -0.313034 0.088708 0.198181 2 -0 0.172372 -1.733333 0.675336 0.321142 0.230398 2 -0 0.996554 -0.733333 0.966338 1.000000 0.015625 2 -0 1.022527 -0.733333 -0.561818 0.000000 0.015625 2 -0 2.336272 -1.988370 0.201171 0.371841 0.569818 2 -0 1.678017 -1.983333 1.617116 0.333110 0.570663 2 -0 0.479108 -1.164476 -0.402394 0.328604 0.812948 6 -0 0.419607 -1.279979 0.410987 0.220382 0.820957 6 -0 -0.178627 -1.203613 0.634724 0.073125 0.821491 6 -0 0.419607 -1.279979 0.410987 0.213634 0.826819 6 -0 -0.515135 -1.149327 0.036193 0.453622 0.817704 6 -0 0.479108 -1.164476 -0.402394 0.746418 0.817742 6 -0 -0.254883 -1.060248 -0.586006 0.871145 0.810495 6 -0 -0.325639 -0.352504 0.600070 0.081842 0.210460 7 -0 0.570447 -1.554968 0.695432 0.019439 0.468717 7 -0 -0.313739 -4.028666 -0.528629 0.822523 0.732732 7 -0 -0.313740 -4.028666 0.378147 0.227065 1.000000 7 -0 0.478740 -1.554968 -0.797891 0.996645 0.468717 7 -0 0.516931 -4.028666 -0.528629 0.820444 1.000000 7 -0 -0.313739 -4.028666 -0.528629 0.820444 1.000000 7 -0 0.722085 -1.604968 -0.055882 0.216141 0.479456 7 -0 0.516930 -4.028666 0.378147 0.131822 1.000000 7 -0 0.516931 -4.028666 -0.528629 0.307982 1.000000 7 -0 -0.309231 -0.352504 -0.785305 0.988409 0.210460 7 -0 0.516931 -4.028666 -0.528629 0.344063 0.737939 7 -0 -0.313740 -4.028666 0.378147 0.225340 0.733456 7 -0 0.516931 -4.028666 -0.528629 0.822523 0.732732 7 -0 0.570447 -1.554968 0.695432 0.070183 0.468717 7 -0 0.516930 -4.028666 0.378147 0.222760 0.738578 7 -0 0.516930 -4.028666 0.378147 0.225340 0.733456 7 -0 -0.680829 -0.252504 -0.054571 0.510229 0.188983 7 -0 0.516930 -4.028666 0.378147 0.227065 1.000000 7 -0 0.478740 -1.554968 -0.797891 0.360291 0.468717 7 -0 -0.419608 -1.279980 0.410986 0.782238 0.849115 13 -0 0.178627 -1.203615 0.634724 0.930081 0.844142 13 -0 0.515135 -1.149328 0.036193 0.534579 0.840607 13 -0 0.254883 -1.060249 -0.586006 0.136408 0.834807 13 -0 -0.479109 -1.164477 -0.402394 0.253945 0.841594 13 -0 -0.479109 -1.164477 -0.402394 0.114119 0.846567 13 -0 -0.419608 -1.279980 0.410986 0.328738 0.855091 13 -0 0.313739 -4.028666 -0.528629 0.179556 1.000000 14 -0 -0.516930 -4.028666 -0.528629 0.179556 1.000000 14 -0 -0.478740 -1.554968 -0.797891 0.003355 0.468717 14 -0 -0.516930 -4.028666 -0.528629 0.094730 1.000000 14 -0 -0.516930 -4.028666 0.378147 0.307976 1.000000 14 -0 -0.722085 -1.604968 -0.055882 0.205905 0.479456 14 -0 0.309231 -0.352504 -0.785304 0.011591 0.210460 14 -0 -0.516930 -4.028666 -0.528629 0.182227 0.761976 14 -0 -0.516930 -4.028666 -0.528629 0.084983 0.756333 14 -0 -0.478740 -1.554968 -0.797891 0.031408 0.468717 14 -0 -0.570447 -1.554968 0.695432 0.382591 0.468717 14 -0 -0.516930 -4.028666 0.378147 0.323734 0.756333 14 -0 0.313740 -4.028666 0.378147 0.769921 0.761976 14 -0 0.680829 -0.252504 -0.054571 0.489771 0.188983 14 -0 -0.516930 -4.028666 0.378147 0.769921 0.761976 14 -0 -0.516930 -4.028666 0.378147 0.772935 1.000000 14 -0 0.313739 -4.028666 -0.528629 0.182227 0.761976 14 -0 -0.570447 -1.554968 0.695432 0.980561 0.468717 14 -0 0.325639 -0.352504 0.600070 0.918158 0.210460 14 -0 0.313740 -4.028666 0.378147 0.772935 1.000000 14 -78 --0.091614 -0.498532 0.059475 --0.837670 -0.546116 0.008180 -0.087069 -0.484794 -0.070788 -0.078826 -0.529008 0.243554 -0.000000 -0.373008 0.927828 --0.280442 -0.912522 0.297753 --0.072707 -0.511329 -0.253282 -0.270545 -0.911206 -0.310658 --0.275634 -0.908558 -0.313924 --0.005861 -0.403510 -0.914956 -0.489256 -0.243107 0.630725 -0.490471 -0.213409 -0.669348 -0.490471 -0.213409 -0.669348 -0.489256 -0.243107 0.630725 -0.078826 -0.529008 0.243554 -0.087069 -0.484794 -0.070788 --0.489256 -0.243107 0.630725 --0.490471 -0.213409 -0.669348 --0.490471 -0.213409 -0.669348 --0.489256 -0.243107 0.630725 --0.091614 -0.498532 0.059475 --0.072707 -0.511329 -0.253282 -0.836243 -0.548254 0.010721 -0.280442 -0.912521 0.297753 -0.732872 0.458101 -0.503032 -0.510918 0.579406 0.635021 --0.281336 0.450638 0.847216 -0.510918 0.579406 0.635021 --0.938362 0.342350 0.047686 -0.732872 0.458101 -0.503032 --0.346613 0.180935 -0.920392 --0.380214 0.002344 0.924895 -0.509019 0.000969 0.860754 --0.719720 -0.004726 -0.676736 --0.582385 0.019816 0.800931 -0.490422 -0.017152 -0.871316 -0.678158 -0.058579 -0.701552 --0.719720 -0.004726 -0.676736 -0.999275 -0.012544 -0.035951 -0.866336 -0.075233 0.491705 -0.678158 -0.058579 -0.701552 --0.348462 0.019173 -0.937127 -0.678158 -0.058579 -0.701552 --0.582385 0.019816 0.800931 -0.678158 -0.058579 -0.701552 -0.509019 0.000969 0.860754 -0.866336 -0.075233 0.491705 -0.866336 -0.075233 0.491705 --0.997072 0.075648 0.011145 -0.866336 -0.075233 0.491705 -0.490422 -0.017152 -0.871316 --0.698709 0.413833 0.583565 -0.173677 0.583658 0.793209 -0.938362 0.342350 0.047686 -0.346613 0.180935 -0.920392 --0.593331 0.663779 -0.455363 --0.593331 0.663779 -0.455363 --0.698709 0.413833 0.583565 -0.719720 -0.004726 -0.676736 --0.793379 -0.067067 -0.601857 --0.490422 -0.017152 -0.871316 --0.793379 -0.067067 -0.601857 --0.778167 -0.076399 0.610534 --0.999275 -0.012544 -0.035951 -0.348462 0.019173 -0.937127 --0.793379 -0.067067 -0.601857 --0.793379 -0.067067 -0.601857 --0.490422 -0.017152 -0.871316 --0.509019 0.000969 0.860754 --0.778167 -0.076399 0.610534 -0.582385 0.019816 0.800931 -0.997072 0.075648 0.011145 --0.778167 -0.076399 0.610534 --0.778167 -0.076399 0.610534 -0.719720 -0.004726 -0.676736 --0.509019 0.000969 0.860754 -0.380214 0.002344 0.924896 -0.582385 0.019816 0.800931 -70 -0 22 0 23 22 0 23 1 -0 1 3 2 1 3 2 1 -0 4 3 5 4 3 5 1 -0 6 22 7 6 22 7 1 -0 1 2 8 1 2 8 1 -0 2 9 8 2 9 8 1 -0 9 6 7 9 6 7 1 -0 0 4 23 0 4 23 1 -0 0 3 4 0 3 4 1 -0 2 6 9 2 6 9 1 -0 3 1 5 3 1 5 1 -0 0 22 6 0 22 6 1 -0 24 46 42 24 46 42 1 -0 24 25 46 24 25 46 1 -0 43 27 26 43 27 26 1 -0 28 43 26 28 43 26 1 -0 44 30 29 44 30 29 1 -0 27 43 47 27 43 47 1 -0 30 44 33 30 44 33 1 -0 33 28 30 33 28 30 1 -0 28 33 43 28 33 43 1 -0 31 10 32 31 10 32 1 -0 32 34 31 32 34 31 1 -0 35 37 36 35 37 36 1 -0 38 40 39 38 40 39 1 -0 37 35 41 37 35 41 1 -0 11 41 35 11 41 35 1 -0 12 38 13 12 38 13 1 -0 13 38 45 13 38 45 1 -0 14 48 15 14 48 15 1 -0 15 48 41 15 48 41 1 -0 34 48 31 34 48 31 1 -0 34 32 49 34 32 49 1 -0 10 31 14 10 31 14 1 -0 38 39 45 38 39 45 1 -0 40 38 50 40 38 50 1 -0 41 11 15 41 11 15 1 -0 48 37 41 48 37 41 1 -0 48 34 37 48 34 37 1 -0 38 12 50 38 12 50 1 -0 48 14 31 48 14 31 1 -0 66 57 56 66 57 56 1 -0 66 69 57 66 69 57 1 -0 51 70 52 51 70 52 1 -0 70 53 52 70 53 52 1 -0 54 65 55 54 65 55 1 -0 70 51 72 70 51 72 1 -0 65 54 74 65 54 74 1 -0 53 74 54 53 74 54 1 -0 74 53 70 74 53 70 1 -0 16 76 75 16 76 75 1 -0 77 75 76 77 75 76 1 -0 58 60 59 58 60 59 1 -0 61 63 62 61 63 62 1 -0 60 58 64 60 58 64 1 -0 64 17 60 64 17 60 1 -0 18 63 67 18 63 67 1 -0 63 19 68 63 19 68 1 -0 20 71 76 20 71 76 1 -0 71 21 64 71 21 64 1 -0 71 77 76 71 77 76 1 -0 75 77 73 75 77 73 1 -0 76 16 20 76 16 20 1 -0 62 63 68 62 63 68 1 -0 63 61 67 63 61 67 1 -0 17 64 21 17 64 21 1 -0 58 71 64 58 71 64 1 -0 77 71 58 77 71 58 1 -0 63 18 19 63 18 19 1 -0 71 20 21 71 20 21 1 -"Mesh11" 0 11 -28 -0 -0.830949 3.144082 -0.317635 0.565001 0.347293 0 -0 -0.969549 3.215841 0.424211 0.533670 0.309877 0 -0 -0.473000 3.649218 0.143900 0.645918 0.083909 0 -0 -0.217924 3.549218 -0.303596 0.703580 0.136050 0 -0 0.217925 3.549218 -0.303596 0.802106 0.136050 0 -0 0.379277 3.404770 -0.791976 0.838581 0.211367 0 -0 -0.405478 3.397245 -0.781058 0.661182 0.215291 0 -0 0.346869 2.888017 -0.598797 0.902962 0.463876 0 -0 0.741149 3.144082 -0.317635 0.920384 0.347293 0 -0 0.000000 3.250000 0.990000 0.752843 0.292066 0 -0 0.969549 3.215841 0.424211 0.972016 0.309877 0 -0 0.409360 3.699218 0.654105 0.845381 0.057839 0 -0 0.473000 3.649218 0.143900 0.859767 0.083909 0 -0 0.287311 2.439439 -1.584815 0.877928 0.569932 0 -0 -0.318986 2.439439 -1.584815 0.623087 0.569932 0 -0 -0.637973 0.488880 -1.779631 0.529020 0.938533 0 -0 -0.604362 0.451099 -1.389539 0.540940 0.953753 0 -0 -0.570751 1.913319 -1.349447 0.552860 0.781886 0 -0 -0.503530 2.187757 -0.969263 0.576700 0.671325 0 -0 0.514076 1.913318 -1.349447 0.937592 0.781886 0 -0 0.544349 0.451099 -1.389539 0.948328 0.953753 0 -0 0.574622 0.488880 -1.779631 0.959065 0.938533 0 -0 0.453530 2.187757 -0.969263 0.916120 0.671325 0 -0 -0.409360 3.699218 0.654105 0.660304 0.057839 0 -0 0.000000 2.850000 0.850000 0.757165 0.484318 0 -0 -0.375499 2.882374 -0.590609 0.599333 0.466911 0 -0 0.301000 3.349218 0.554105 0.820886 0.240333 0 -0 -0.301000 3.349218 0.554105 0.684800 0.240333 0 -28 -0.353383 0.634297 -0.687596 -0.183361 0.448022 0.815537 --0.658167 0.510267 -0.127416 --0.183457 0.502918 -0.613058 -0.272319 0.493694 -0.566907 -0.477738 0.726699 -0.493634 --0.457295 0.667089 -0.588111 -0.859102 0.102349 -0.501467 --0.266513 0.653713 -0.708258 -0.000000 0.089093 0.996023 --0.107411 0.335190 0.902107 -0.100985 0.963973 0.246086 -0.670849 0.502446 -0.139476 -0.615291 0.355774 -0.703450 --0.829704 0.275560 -0.485445 --0.425901 -0.279588 -0.860488 --0.678795 -0.729353 0.085330 --0.666407 -0.180957 0.723295 --0.591345 0.568922 -0.571524 -0.811315 -0.319729 0.489429 -0.407372 -0.421678 0.810084 -0.629760 -0.571822 -0.525759 -0.317192 0.663267 -0.677839 --0.091098 0.981361 -0.169209 -0.000000 -0.065318 0.992846 --0.733591 0.220461 -0.642838 --0.014882 0.213630 0.041523 -0.026034 0.224307 0.065927 -41 -0 0 2 1 0 2 1 1 -0 3 5 4 3 5 4 1 -0 3 6 5 3 6 5 1 -0 7 8 5 7 8 5 1 -0 9 11 10 9 11 10 1 -0 5 12 4 5 12 4 1 -0 6 13 5 6 13 5 1 -0 6 14 13 6 14 13 1 -0 14 16 15 14 16 15 1 -0 14 17 16 14 17 16 1 -0 14 18 17 14 18 17 1 -0 19 21 20 19 21 20 1 -0 19 13 21 19 13 21 1 -0 19 22 13 19 22 13 1 -0 12 10 11 12 10 11 1 -0 1 2 23 1 2 23 1 -0 24 1 9 24 1 9 1 -0 10 24 9 10 24 9 1 -0 23 11 9 23 11 9 1 -0 12 8 10 12 8 10 1 -0 23 9 1 23 9 1 1 -0 2 6 3 2 6 3 1 -0 0 25 6 0 25 6 1 -0 11 26 12 11 26 12 1 -0 27 23 2 27 23 2 1 -0 26 23 27 26 23 27 1 -0 23 26 11 23 26 11 1 -0 5 13 7 5 13 7 1 -0 19 18 22 19 18 22 1 -0 19 17 18 19 17 18 1 -0 13 15 21 13 15 21 1 -0 13 14 15 13 14 15 1 -0 16 21 15 16 21 15 1 -0 16 20 21 16 20 21 1 -0 20 17 19 20 17 19 1 -0 20 16 17 20 16 17 1 -0 14 6 25 14 6 25 1 -0 2 0 6 2 0 6 1 -0 8 12 5 8 12 5 1 -0 13 22 7 13 22 7 1 -0 18 14 25 18 14 25 1 - -Materials: 12 -"Material0" -0.000000 0.740113 0.361582 1.000000 -0.000000 0.740113 0.361582 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material1" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material2" -0.800000 1.000000 1.000000 1.000000 -0.800000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material3" -0.994350 1.000000 1.000000 1.000000 -0.994350 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material4" -0.500000 0.200000 0.000000 1.000000 -0.500000 0.200000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material5" -0.500000 0.500000 0.500000 1.000000 -0.700000 0.700000 0.700000 1.000000 -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material6" -1.000000 0.800000 0.700000 1.000000 -1.000000 0.800000 0.700000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"" -"" -"Material7" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"t5_luna_00.bmp" -"" -"Material8" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"luna2face.ini" -"" -"Material9" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"t6_luna_00.bmp" -"" -"Material10" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"t4_luna_00.bmp" -"" -"Material11" -1.000000 1.000000 1.000000 1.000000 -1.000000 1.000000 1.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 0.000000 0.000000 1.000000 -0.000000 -1.000000 -"t6_lluna_00.bmp" -"" - -Bones: 16 -"torso" -"" -8 0 0 0 0 0 0 -0 -0 -"head" -"" -8 0 0 0 0 0 0 -0 -0 -"pelvis" -"" -8 0 0 0 0 0 0 -0 -0 -"r lower arm" -"" -8 0 0 0 0 0 0 -0 -0 -"r foot" -"" -8 0 0 0 0 0 0 -0 -0 -"r hand" -"" -8 0 0 0 0 0 0 -0 -0 -"r leg" -"" -8 0 0 0 0 0 0 -0 -0 -"r thigh" -"" -8 0 0 0 0 0 0 -0 -0 -"r upper arm" -"" -8 0 0 0 0 0 0 -0 -0 -"neck" -"" -8 0 0 0 0 0 0 -0 -0 -"l lower arm" -"" -8 0 0 0 0 0 0 -0 -0 -"l foot" -"" -8 0 0 0 0 0 0 -0 -0 -"l hand" -"" -8 0 0 0 0 0 0 -0 -0 -"l leg" -"" -8 0 0 0 0 0 0 -0 -0 -"l thigh" -"" -8 0 0 0 0 0 0 -0 -0 -"l upper arm" -"" -8 0 0 0 0 0 0 -0 -0 diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/luna2face.ini b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/luna2face.ini deleted file mode 100644 index ec9933b2fb..0000000000 --- a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/luna2face.ini +++ /dev/null @@ -1,21 +0,0 @@ -[AnimatedTexture] -Frame0000=t0_luna_00.bmp -Delay0000=2.00 -Frame0001=t1_luna_00.bmp -Delay0001=0.30 -Frame0002=t0_luna_00.bmp -Delay0002=2.00 -Frame0003=t1_luna_00.bmp -Delay0003=0.30 -Frame0004=t0_luna_00.bmp -Delay0004=2.00 -Frame0005=t2_luna_00.bmp -Delay0005=2.00 -Frame0006=t0_luna_00.bmp -Delay0006=2.00 -Frame0007=t1_luna_00.bmp -Delay0007=0.30 -Frame0008=t0_luna_00.bmp -Delay0008=2.00 -Frame0009=t7_luna_00.bmp -Delay0009=2.00 diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/lunaface.ini b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/lunaface.ini deleted file mode 100644 index bc44fad4e9..0000000000 --- a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/lunaface.ini +++ /dev/null @@ -1,21 +0,0 @@ -[AnimatedTexture] -Frame0000=t0_luna_00.bmp -Delay0000=2.00 -Frame0001=t1_luna_00.bmp -Delay0001=0.30 -Frame0002=t0_luna_00.bmp -Delay0002=2.00 -Frame0003=t1_luna_00.bmp -Delay0003=0.30 -Frame0004=t0_luna_00.bmp -Delay0004=2.00 -Frame0005=t2_luna_00.bmp -Delay0005=2.00 -Frame0006=t0_luna_00.bmp -Delay0006=2.00 -Frame0007=t1_luna_00.bmp -Delay0007=0.30 -Frame0008=t0_luna_00.bmp -Delay0008=2.00 -Frame0009=t3_luna_00.bmp -Delay0009=2.00 diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/miniskirtbelt.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/miniskirtbelt.bmp deleted file mode 100644 index 96a4e835c6..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/miniskirtbelt.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t0_alex_01.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t0_alex_01.bmp deleted file mode 100644 index 6f567309ef..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t0_alex_01.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t0_gfac.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t0_gfac.bmp deleted file mode 100644 index 12a29aa3ca..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t0_gfac.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t0_luna_00.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t0_luna_00.bmp deleted file mode 100644 index c492b01da1..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t0_luna_00.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t1_alex_01.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t1_alex_01.bmp deleted file mode 100644 index 7c954661a0..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t1_alex_01.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t1_gfac.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t1_gfac.bmp deleted file mode 100644 index 88028291c3..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t1_gfac.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t1_luna_00.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t1_luna_00.bmp deleted file mode 100644 index d4913f72f7..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t1_luna_00.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t2_alex_01.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t2_alex_01.bmp deleted file mode 100644 index 0ff1847774..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t2_alex_01.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t2_gfac.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t2_gfac.bmp deleted file mode 100644 index 76206d790e..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t2_gfac.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t2_luna_00.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t2_luna_00.bmp deleted file mode 100644 index 5c6d10ae12..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t2_luna_00.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t3_alex_01.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t3_alex_01.bmp deleted file mode 100644 index 09907b1eca..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t3_alex_01.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t3_gfac.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t3_gfac.bmp deleted file mode 100644 index ba05c658e3..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t3_gfac.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t3_luna_00.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t3_luna_00.bmp deleted file mode 100644 index 2040faa615..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t3_luna_00.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t4_ghip.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t4_ghip.bmp deleted file mode 100644 index 9f4e43f96c..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t4_ghip.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t4_luna_00.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t4_luna_00.bmp deleted file mode 100644 index 8bc30af634..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t4_luna_00.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t5_gsoe.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t5_gsoe.bmp deleted file mode 100644 index 661d9ebfa1..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t5_gsoe.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t5_luna_00.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t5_luna_00.bmp deleted file mode 100644 index 48b07bfad6..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t5_luna_00.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t6_gnec.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t6_gnec.bmp deleted file mode 100644 index a0a1e5411c..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t6_gnec.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t6_lluna_00.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t6_lluna_00.bmp deleted file mode 100644 index 22044f7461..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t6_lluna_00.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t6_luna_00.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t6_luna_00.bmp deleted file mode 100644 index 9f56df164f..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t6_luna_00.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t7_bikeF_00.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t7_bikeF_00.bmp deleted file mode 100644 index ff60ec4a14..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t7_bikeF_00.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t7_ghir.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t7_ghir.bmp deleted file mode 100644 index 7792ba22fd..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t7_ghir.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t7_luna_00.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t7_luna_00.bmp deleted file mode 100644 index 7605bd68a6..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t7_luna_00.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t9_FF_00.bmp b/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t9_FF_00.bmp deleted file mode 100644 index 9a90a64ce5..0000000000 Binary files a/Themes/test/BGAnimations/ScreenBlendMode2 overlay/t9_FF_00.bmp and /dev/null differ diff --git a/Themes/test/BGAnimations/ScreenSelectMusic overlay.lua b/Themes/test/BGAnimations/ScreenSelectMusic overlay.lua deleted file mode 100644 index bf8839558f..0000000000 --- a/Themes/test/BGAnimations/ScreenSelectMusic overlay.lua +++ /dev/null @@ -1,33 +0,0 @@ -local t = Def.ActorFrame{}; - -t[#t+1] = LoadFont("Common Normal")..{ - InitCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y;); - --CurrentSongChangedMessageCommand=cmd(playcommand,"Set"); - --CurrentStepsChangedP1MessageCommand=cmd(playcommand,"Set"); - OnCommand=cmd(playcommand,"Set"); - SetCommand=function(self,params) - -- song test cases - --[[ - local song = GAMESTATE:GetCurrentSong(); - if not song then self:settext(""); return; end; - - -- song file path test case - self:settext( song:GetSongFilePath() ); - - -- get bpm from beat test case - self:settext( "BPM at beat 45 = "..song:GetBPMAtBeat(45) ); - - -- lol - --Trace( "MD5 of ".. song:GetDisplayFullTitle() .." = "..CRYPTMAN:MD5File(song:GetSongFilePath()) ); - - -- writing to profile dir! - local profDir = PROFILEMAN:GetProfileDir('ProfileSlot_Player1') or nil; - if profDir then - self:settext(profDir); - WriteFile(profDir.."hello.txt","hello world! eat my dick, from all your friends at SSC, but aj wrote it so really just him."); - end; - ]] - end; -}; - -return t; \ No newline at end of file diff --git a/Themes/test/BGAnimations/ScreenSelectMusic underlay/default.lua b/Themes/test/BGAnimations/ScreenSelectMusic underlay/default.lua deleted file mode 100644 index ba26b0ccd4..0000000000 --- a/Themes/test/BGAnimations/ScreenSelectMusic underlay/default.lua +++ /dev/null @@ -1,76 +0,0 @@ -local t = Def.ActorFrame{}; - -t[#t+1] = LoadFont("Common normal")..{ - InitCommand=cmd(x,SCREEN_CENTER_X*0.5;y,SCREEN_CENTER_Y); - SetCommand=function(self) - local song = GAMESTATE:GetCurrentSong(); - if song then - --[[ - -- test of TimingData:GetBPMs - local timing = song:GetTimingData(); - local bpms = timing:GetBPMs(); - local text = ""; - for i=1,#bpms do - text = text ..bpms[i]; - if i < (#bpms) then - text = text..", "; - end; - end; - self:settext(text); - --]] - --[[ - -- test of TimingData:GetStops - -- format: - -- start row (float as beat)=stop length (float as seconds) - local timing = song:GetTimingData(); - local stops = timing:GetStops(); - local text = ""; - for i=1,#stops do - text = text ..stops[i]; - if i < (#stops) then - text = text..", "; - end; - end; - self:settext(text); - --]] - --[[ - -- test of TimingData:GetBPMsAndTimes - -- format: - -- start row (float as beat)=new bpm (float) - local timing = song:GetTimingData(); - local bpmchanges = timing:GetBPMsAndTimes(); - local text = ""; - for i=1,#bpmchanges do - text = text ..bpmchanges[i]; - if i < (#bpmchanges) then - text = text..",\n"; - end; - end; - self:settext(text); - --]] - -- test of TimingData:GetActualBPM (may need to be renamed) - -- bpms[1] = min, bpms[2] = max - local timing = song:GetTimingData(); - local bpms = timing:GetActualBPM(); - local minBPM = bpms[1]; - local maxBPM = bpms[2]; - local text = ""; - if minBPM == maxBPM then - text = "min = max = ".. maxBPM; - else - text = "min = ".. minBPM .." | max = ".. maxBPM; - end; - self:settext(text); - else - self:settext(""); - end; - end; - CurrentSongChangedMessageCommand=cmd(playcommand,"Set"); - CurrentCourseChangedMessageCommand=cmd(playcommand,"Set"); - CurrentStepsP1ChangedMessageCommand=cmd(playcommand,"Set"); - CurrentTrailP1ChangedMessageCommand=cmd(playcommand,"Set"); - CurrentStepsP2ChangedMessageCommand=cmd(playcommand,"Set"); - CurrentTrailP2ChangedMessageCommand=cmd(playcommand,"Set"); -}; - -return t; \ No newline at end of file diff --git a/Themes/test/BGAnimations/ScreenTitleMenu background.lua b/Themes/test/BGAnimations/ScreenTitleMenu background.lua deleted file mode 100644 index c6386d63de..0000000000 --- a/Themes/test/BGAnimations/ScreenTitleMenu background.lua +++ /dev/null @@ -1,61 +0,0 @@ -local t = Def.ActorFrame{ FOV=45; }; -t[#t+1] = LoadActor( THEME:GetPathB("","_titlebg") )..{ - InitCommand=cmd(Center;zoomto,SCREEN_WIDTH,SCREEN_WIDTH;); -}; -t[#t+1] = Def.Quad{ - InitCommand=cmd(Center;zoomto,SCREEN_WIDTH,SCREEN_HEIGHT;diffusealpha,0.2); - --OnCommand=cmd(diffuse,color("0.65,0.35,0,0.35")); - OnCommand=cmd(diffuse,color("0,0.5,0.75,0.35")); -}; -t[#t+1] = Def.Quad{ - InitCommand=cmd(CenterX;y,SCREEN_TOP;vertalign,top;zoomto,SCREEN_WIDTH,SCREEN_HEIGHT*0.25;); - OnCommand=cmd(fadebottom,0.5;diffuse,color("0.0625,0.15625,0.28175,1")); -}; - --- stars -local numStars= 250; -local maxZ = SCREEN_WIDTH; -local zStep = 5; -local reverse = false; -local zSpeed = 0.025; -- was 0.1 - -for i=1,numStars do - local starSize = math.random(0.25,4); - local randX = math.random(SCREEN_CENTER_X*0.05,SCREEN_CENTER_X*1.95); - local randY = math.random(SCREEN_CENTER_Y*0.05,SCREEN_CENTER_Y*1.95); - local fxOffset = math.random(0,15); - local fxPeriod = math.random(5,60); - t[#t+1] = Def.Quad{ - InitCommand=cmd(x,randX;y,randY;zoomto,starSize,starSize;blend,bmAdd); - OnCommand=cmd(diffuseshift;effectperiod,fxPeriod;effectoffset,fxOffset;effectcolor1,color("1,1,1,0.25");effectcolor2,color("1,1,1,0.5");queuecommand,'Zoomer'); - ZoomerCommand=function(self) - -- check Z - --[[ - if self:GetZ()-starSize > maxZ then - self:linear(0.2); - self:diffusealpha(0); - self:sleep(0.001); - self:z(0); - self:linear(0.2); - self:diffusealpha(1); - end; - --]] - if self:GetZ()-starSize > maxZ then - reverse = true; - end; - if self:GetZ() == 0 then - reverse = false; - end; - - local multi = 1; - if reverse then multi = -1; end; - - self:linear(zSpeed); - self:addz(zStep * multi); - self:queuecommand('Zoomer'); - end; - cmd(linear,starSize*20;addz,200;); - }; -end; - -return t; \ No newline at end of file diff --git a/Themes/test/BGAnimations/ScreenTitleMenu underlay.lua b/Themes/test/BGAnimations/ScreenTitleMenu underlay.lua deleted file mode 100644 index ad97076f97..0000000000 --- a/Themes/test/BGAnimations/ScreenTitleMenu underlay.lua +++ /dev/null @@ -1,34 +0,0 @@ -local t = Def.ActorFrame{}; -t[#t+1] = LoadActor( THEME:GetPathG("","_theme/logo") )..{ - InitCommand=cmd(Center;diffusealpha,0.2;blend,bmAdd;pulse;effectmagnitude,0.95,1.25,1;effectcolor1,1.5,0.5,1,1;effectcolor2,0.5,1.5,2,1); -}; -t[#t+1] = LoadActor( THEME:GetPathG("","_theme/logo") )..{ - InitCommand=cmd(Center); - --[[ - OnCommand=function(self) - -- let's test getpixel - local sxx = ""; - --local pixCol = self:GetTexture():GetPixel(850,70); - local pixCol = color("0.75,0.9,0,1"); - for i=1,#pixCol do - sxx = sxx..pixCol[i]; - if i < #pixCol then - sxx = sxx..","; - end; - end; - Trace( "pixCol(850,70) = "..sxx ); - end; - --]] -}; ---[[ --- old version -t[#t+1] = LoadActor( THEME:GetPathG("","_theme/logo") )..{ - InitCommand=cmd(Center;diffusealpha,0.2;blend,bmAdd;pulse;effectperiod,15;effectmagnitude,1,1.05,1;); -}; ---]] - --- returns a table of all the files and directories in the scripts dir ---local files = FILEMAN:GetDirListing( "/Themes/test/Scripts/*" ); --- ActorUtil:GetFileType(path); - -return t; \ No newline at end of file diff --git a/Themes/test/BGAnimations/_titlebg.png b/Themes/test/BGAnimations/_titlebg.png deleted file mode 100644 index f66ca7c893..0000000000 Binary files a/Themes/test/BGAnimations/_titlebg.png and /dev/null differ diff --git a/Themes/test/Docs/Lua bindings errata.txt b/Themes/test/Docs/Lua bindings errata.txt deleted file mode 100644 index ddc81e5db7..0000000000 --- a/Themes/test/Docs/Lua bindings errata.txt +++ /dev/null @@ -1,8 +0,0 @@ -to note, the current Lua bindings have bugs or don't work as intended: - -BPMDisplay:GetText() is always one off from the current song. - -Steps:GetHash() just plain doesn't work? - -CRYPTMAN hash strings use the literal characters instead of the hex displayed as -ASCII. Not a bug, but something to make a note of, lest people get confused. \ No newline at end of file diff --git a/Themes/test/Graphics/ScreenPackages PackagesBG.lua b/Themes/test/Graphics/ScreenPackages PackagesBG.lua deleted file mode 100644 index 851a87cc9e..0000000000 --- a/Themes/test/Graphics/ScreenPackages PackagesBG.lua +++ /dev/null @@ -1,3 +0,0 @@ -return Def.Quad{ - InitCommand=cmd(zoomto,SCREEN_CENTER_X*0.8,SCREEN_HEIGHT*0.75;diffuse,color("0.9,0.75,0,0.9")); -}; \ No newline at end of file diff --git a/Themes/test/Graphics/ScreenPackages WebBG.lua b/Themes/test/Graphics/ScreenPackages WebBG.lua deleted file mode 100644 index e9ce638d5a..0000000000 --- a/Themes/test/Graphics/ScreenPackages WebBG.lua +++ /dev/null @@ -1,3 +0,0 @@ -return Def.Quad{ - InitCommand=cmd(zoomto,SCREEN_CENTER_X*0.8,SCREEN_HEIGHT*0.75;diffuse,color("0,0.75,0.9,0.9")); -}; \ No newline at end of file diff --git a/Themes/test/Graphics/ScreenPackages WebSel.redir b/Themes/test/Graphics/ScreenPackages WebSel.redir deleted file mode 100644 index 04b2ead777..0000000000 --- a/Themes/test/Graphics/ScreenPackages WebSel.redir +++ /dev/null @@ -1 +0,0 @@ -_blank \ No newline at end of file diff --git a/Themes/test/Graphics/ScreenSelectPlayMode CursorP1.lua b/Themes/test/Graphics/ScreenSelectPlayMode CursorP1.lua deleted file mode 100644 index 6327c831bb..0000000000 --- a/Themes/test/Graphics/ScreenSelectPlayMode CursorP1.lua +++ /dev/null @@ -1,3 +0,0 @@ -return LoadFont("Common Normal") .. { - Text="P1"; -}; \ No newline at end of file diff --git a/Themes/test/Graphics/ScreenSelectPlayMode CursorP2.lua b/Themes/test/Graphics/ScreenSelectPlayMode CursorP2.lua deleted file mode 100644 index 06d5a2061a..0000000000 --- a/Themes/test/Graphics/ScreenSelectPlayMode CursorP2.lua +++ /dev/null @@ -1,3 +0,0 @@ -return LoadFont("Common Normal") .. { - Text="P2"; -}; \ No newline at end of file diff --git a/Themes/test/Graphics/ScreenSelectPlayMode icon.lua b/Themes/test/Graphics/ScreenSelectPlayMode icon.lua deleted file mode 100644 index a5f1e52e43..0000000000 --- a/Themes/test/Graphics/ScreenSelectPlayMode icon.lua +++ /dev/null @@ -1,99 +0,0 @@ -local gc = Var("GameCommand"); -local index = gc:GetIndex(); -local name = gc:GetName(); -local text = gc:GetText(); - -local itemY = SCREEN_CENTER_Y*0.5 + (50 * index); - -local t = Def.ActorFrame { - InitCommand=cmd(x,SCREEN_CENTER_X;y,itemY); - OffUnfocusedCommand=cmd(sleep,0.95/2;bounceend,0.3;zoomy,0); ---[[ OffFocusedCommand=function(self) - local bIsFirst = (index == 0) and true or false; - self:playcommand( (bIsFirst) and "LeftPick" or "RightPick"); - end; --]] - OffFocusedCommand=cmd(sleep,0.5;linear,0.75;x,SCREEN_CENTER_X;zoom,1.25;sleep,0.75;decelerate,0.15;zoomy,0); - LeftPickCommand=cmd(sleep,1.25;linear,0.25;x,-SCREEN_WIDTH); - RightPickCommand=cmd(sleep,1.25;linear,0.25;x,SCREEN_WIDTH*2); - - Def.Quad { - InitCommand=cmd(zoomto,274,42); - OnCommand=cmd(); - }; - - -- Under - Def.ActorFrame { - Def.Quad { - InitCommand=cmd(zoomto,274-4,42-4); - OnCommand=cmd(diffuse,ThemeColor("Primary")); - }; - }; - - -- Over - Def.ActorFrame { - Def.Quad { - InitCommand=cmd(zoomto,274-4,42-4); - OnCommand=cmd(diffuse,ThemeColor("Secondary"); - diffuseshift;effectcolor2,ThemeColor("Secondary");effectcolor1,GenericColor("cStealth"); - effectoffset,4.5;effecttiming,0.25,3.75,0.5,3.5); - -- Explanation: - -- 4 seconds for the each card to show on/off - -- 0.25 seconds of each card to transition inbetween. - -- 4.5 seconds to offset the transition of EffectColor2 - -- therefore - -- EffectOffset = Time + TransitionTime*2 - }; - LoadFont("Common Stroke") .. { - Text=name; - InitCommand=cmd(shadowlength,0;zoomy,1.1); - OnCommand=cmd(y,-1;diffuse,ThemeColor("Secondary"); - diffuseshift;effectcolor2,ThemeColor("Primary");effectcolor1,GenericColor("cStealth"); - effectoffset,4.5;effecttiming,0.25,3.75,0.5,3.5 - diffusealpha,0.5); - }; - --[[ - Def.ActorFrame { - OnCommand=cmd(vibrate;effectmagnitude,0,4,0); - LoadFont("Common Stroke") .. { - Text=name; - InitCommand=cmd(shadowlength,0;zoomy,1); - OnCommand=cmd(y,-1;diffuse,ThemeColor("Secondary"); - diffuseshift;effectcolor2,ThemeColor("Primary");effectcolor1,GenericColor("cStealth"); - effectoffset,4.5;effecttiming,0.25,3.75,0.5,3.5); - }; - }; - ]] - LoadFont("Common Normal") .. { - Text=name; - InitCommand=cmd(shadowlength,0); - OnCommand=cmd(y,-1;diffuse,ThemeColor("Secondary"); - diffuseshift;effectcolor2,GenericColor("cWhite");effectcolor1,GenericColor("cStealth"); - effectoffset,4.5;effecttiming,0.25,3.75,0.5,3.5); - }; - }; - - -- Choose - Def.ActorFrame { - Def.Quad { - InitCommand=cmd(zoomto,274-4,42-4); - OnCommand=cmd( - diffuseshift;effectcolor1,ThemeColor("Secondary");effectcolor2,ThemeColor("Primary"); - effectoffset,4.5;effecttiming,0.25,3.75,0.5,3.5); - GainFocusCommand=cmd(stoptweening;linear,0.1;diffusealpha,1); - LoseFocusCommand=cmd(stoptweening;linear,0.25;diffusealpha,0); - OffFocusedCommand=cmd(sleep,0.25;linear,0.5;); - }; - LoadFont("Common Normal") .. { - Text=name; - InitCommand=cmd(shadowlength,1); - OnCommand=cmd(y,-1; - diffuseshift;effectcolor2,ThemeColor("Secondary");effectcolor1,ThemeColor("Primary"); - effectoffset,4.5;effecttiming,0.25,3.75,0.5,3.5); - GainFocusCommand=cmd(stoptweening;zoom,1.2;decelerate,0.2;zoom,1;diffusealpha,1); - LoseFocusCommand=cmd(stoptweening;zoom,1;decelerate,0.1;zoom,1;diffusealpha,0); - OffFocusedCommand=cmd(settext,"OK!";); - }; - }; -}; - -return t; \ No newline at end of file diff --git a/Themes/test/Graphics/ScreenTitleMenu scroll.lua b/Themes/test/Graphics/ScreenTitleMenu scroll.lua deleted file mode 100644 index 36fe28ff45..0000000000 --- a/Themes/test/Graphics/ScreenTitleMenu scroll.lua +++ /dev/null @@ -1,43 +0,0 @@ -local gc = Var("GameCommand"); -local index = gc:GetIndex(); -local name = gc:GetName(); -local text = gc:GetText(); - -local itemColors = { - HSV(128, 0.6, 0.85), -- play - HSV(192, 0.6, 0.85), -- options - HSV(160, 0.6, 0.85), -- customization - HSV( 64, 0.6, 0.85), -- edit - HSV( 0, 0.6, 0.85), -- exit -}; - -local t = Def.ActorFrame{ - --[[ - Def.Actor{ - Name="TitleMenuController"; - GainFocusCommand=function(self) - MESSAGEMAN:Broadcast("TitleChange",{NewColor=itemColors[index+1]}); - end; - }; - ]] - LoadFont("Common Normal")..{ - Text=Screen.String(text); - InitCommand=cmd(diffuse,color("1,1,1,1")); - DisabledCommand=cmd(diffuse,color("0.5,0.5,0.5,0.85")); - --GainFocusCommand=cmd(stoptweening;linear,0.25;diffuse,itemColors[index+1]); - GainFocusCommand=cmd(stoptweening;linear,0.25;diffuse,color("1,0.2,0.2,1")); - LoseFocusCommand=cmd(stoptweening;linear,0.25;diffuse,color("1,1,1,1")); - }; - --[[ begin triangle ]] - Def.Quad{ - InitCommand=cmd(x,-SCREEN_WIDTH*0.105;zoomto,8,24;zwrite,true;blend,'BlendMode_NoEffect'); - }; - Def.Quad{ - InitCommand=cmd(x,-SCREEN_WIDTH*0.1;zoomto,12,12;rotationz,45;diffuselowerleft,color("0,0,0,0");ztest,true); - GainFocusCommand=cmd(stoptweening;visible,true); - LoseFocusCommand=cmd(stoptweening;visible,false); - }; - --[[ end triangle ]] -}; - -return t; \ No newline at end of file diff --git a/Themes/test/Graphics/_Cursor.lua b/Themes/test/Graphics/_Cursor.lua deleted file mode 100644 index 6327c831bb..0000000000 --- a/Themes/test/Graphics/_Cursor.lua +++ /dev/null @@ -1,3 +0,0 @@ -return LoadFont("Common Normal") .. { - Text="P1"; -}; \ No newline at end of file diff --git a/Themes/test/Graphics/_theme/logo (doubleres).png b/Themes/test/Graphics/_theme/logo (doubleres).png deleted file mode 100644 index 5283817da2..0000000000 Binary files a/Themes/test/Graphics/_theme/logo (doubleres).png and /dev/null differ diff --git a/Themes/test/Languages/en.ini b/Themes/test/Languages/en.ini deleted file mode 100644 index 4d008a48d2..0000000000 --- a/Themes/test/Languages/en.ini +++ /dev/null @@ -1,4 +0,0 @@ -[ScreenTitleMenu] -Packages=Packages -CustomMenu=Custom Menu -Test Blend Modes=Test Blend Modes \ No newline at end of file diff --git a/Themes/test/Scripts/02 ProductivityHelpers.lua b/Themes/test/Scripts/02 ProductivityHelpers.lua deleted file mode 100644 index db2a34c7fe..0000000000 --- a/Themes/test/Scripts/02 ProductivityHelpers.lua +++ /dev/null @@ -1,105 +0,0 @@ --- temp, delete me when default is finalized - --- ProductivityHelpers: A set of useful aliases for theming. --- Latest version at http://kki.ajworld.net/wiki/ProductivityHelpers - ---[[ Aliases ]] - --- Blend Modes --- Aliases for blend modes. -bmNormal = 'BlendMode_Normal'; -bmAdd = 'BlendMode_Add'; -bmMultiply = 'BlendMode_WeightedMultiply'; -bmInvert = 'BlendMode_InvertDest'; -bmNoEffect = 'BlendMode_NoEffect'; - --- Health Declarations --- Used primarily for lifebars. -hsMax = 'HealthState_Hot'; -hsAlive = 'HealthState_Alive'; -hsDanger = 'HealthState_Danger'; -hsDead = 'HealthState_Dead'; - ---[[ Actor commands ]] -function Actor:CenterX() - self:x(SCREEN_CENTER_X); -end; - -function Actor:CenterY() - self:y(SCREEN_CENTER_Y); -end; - --- xy(actorX,actorY) --- Sets the x and y of an actor in one command. -function Actor:xy(actorX,actorY) - self:x(actorX); - self:y(actorY); -end; - --- MaskSource() --- Sets an actor up as the source for a mask. -function Actor:MaskSource() - self:clearzbuffer(true); - self:zwrite(true); - self:blend('BlendMode_NoEffect'); -end; - --- MaskDest() --- Sets an actor up to be masked by anything with MaskSource(). -function Actor:MaskDest() - self:ztest(true); -end; - ---[[ BitmapText commands ]] - --- PixelFont() --- An alias that turns off texture filtering. --- Named because it works best with pixel fonts. -function BitmapText:PixelFont() - self:SetTextureFiltering(false); -end; - --- Stroke(color) --- Sets the text's stroke color. -function BitmapText:Stroke(c) - self:strokecolor( c ); -end; - --- NoStroke() --- Removes any stroke. -function BitmapText:NoStroke() - self:strokecolor( color("0,0,0,0") ); -end; - --- DiffuseAndStroke(diffuse,stroke) --- Set diffuse and stroke at the same time. -function BitmapText:DiffuseAndStroke(diffuseC,strokeC) - self:diffuse(diffuseC); - self:strokecolor(strokeC); -end; ---[[ end BitmapText commands ]] - ---[[ ----------------------------------------------------------------------- ]] - ---[[ helper functions ]] -function tobool(v) - if type(v) == "string" then - local cmp = string.lower(v); - if cmp == "true" or cmp == "t" then - return true; - elseif cmp == "false" or cmp == "f" then - return false; - end; - elseif type(v) == "number" then - if v == 0 then return false; - else return true; - end; - end; -end; - --- does not assume multiplayer, that would be mpname, if it existed. -function pname(pn) - return (pn == PLAYER_1) and "P1" or "P2"; -end; ---[[ end helper functions ]] --- this code is in the public domain. \ No newline at end of file diff --git a/Themes/test/Sounds/ScreenTitleMenu music.lua b/Themes/test/Sounds/ScreenTitleMenu music.lua deleted file mode 100644 index 27e672961d..0000000000 --- a/Themes/test/Sounds/ScreenTitleMenu music.lua +++ /dev/null @@ -1,8 +0,0 @@ -local a = math.random(50); -local ret; -if a % 2 == 0 then - ret = "_agB"; -else - ret = "_agA"; -end; -return THEME:GetPathS("",ret); \ No newline at end of file diff --git a/Themes/test/Sounds/_agA (loop).ogg b/Themes/test/Sounds/_agA (loop).ogg deleted file mode 100644 index fe38875e7b..0000000000 Binary files a/Themes/test/Sounds/_agA (loop).ogg and /dev/null differ diff --git a/Themes/test/Sounds/_agB (loop).ogg b/Themes/test/Sounds/_agB (loop).ogg deleted file mode 100644 index da59ed75d8..0000000000 Binary files a/Themes/test/Sounds/_agB (loop).ogg and /dev/null differ diff --git a/Themes/test/ThemeInfo.ini b/Themes/test/ThemeInfo.ini deleted file mode 100644 index 8005cae790..0000000000 --- a/Themes/test/ThemeInfo.ini +++ /dev/null @@ -1,3 +0,0 @@ -[ThemeInfo] -DisplayName=sm-ssc test theme -Author=the spinal shark collective \ No newline at end of file diff --git a/Themes/test/_psd/_logo.psd b/Themes/test/_psd/_logo.psd deleted file mode 100644 index 132a1a3ad9..0000000000 Binary files a/Themes/test/_psd/_logo.psd and /dev/null differ diff --git a/Themes/test/_psd/crazybg.psd b/Themes/test/_psd/crazybg.psd deleted file mode 100644 index 603b6254e4..0000000000 Binary files a/Themes/test/_psd/crazybg.psd and /dev/null differ diff --git a/Themes/test/metrics.ini b/Themes/test/metrics.ini deleted file mode 100644 index fac8eccb2d..0000000000 --- a/Themes/test/metrics.ini +++ /dev/null @@ -1,67 +0,0 @@ -[Global] -#FallbackTheme=default - -[Common] -InitialScreen="ScreenTitleMenu" - -[ScreenTitleMenu] -IdleTimeoutSeconds=-1 -IdleTimeoutScreen="ScreenTitleMenu" - -ScrollerY=SCREEN_CENTER_Y*1.5 -ScrollerTransform=function(self,offset,itemIndex,numItems) self:y(28*(itemIndex-(numItems-1)/2)); end - -ChoiceNames="1,2,3,T1,4,Bl,5" -ChoiceT1="screen,ScreenLuaMenu;text,CustomMenu" -Choice1="applydefaultoptions;screen,ScreenProfileLoad;text,Game Start" -Choice2="screen,ScreenOptionsService;text,Options" -Choice3="screen,ScreenOptionsEdit;text,Edit/Share" -Choice4="screen,ScreenPackages;text,Packages" -Choice5="screen,ScreenExit;text,Exit" -ChoiceBl="screen,ScreenBlendMode2;text,Test Blend Modes" - -[ScreenPackages] -DefaultUrl="http://ssc.ajworld.net/sm-ssc/drop/" - -DownloadY=22 -DownloadX=SCREEN_WIDTH*4.0/7.0 -DownloadProgressCommand=diffuse,0.1,0.1,0.9,0.8 -DownloadOnCommand=diffusealpha,0.0;linear,1.0;diffusealpha,1.0 -DownloadOffCommand=diffusealpha,1.0;linear,0.6;diffusealpha,0.0 -DownloadStatusY=22 -DownloadStatusX=SCREEN_WIDTH*4.0/7.0 -DownloadStatusOnCommand=diffusealpha,0.0;linear,1.0;diffusealpha,1.0 -DownloadStatusOffCommand=diffusealpha,1.0;linear,0.6;diffusealpha,0.0 - -[ScreenLuaMenu] -Fallback="ScreenAttract" -Class="ScreenWithMenuElements" - -PrevScreen="ScreenTitleMenu" -NextScreen="ScreenTitleMenu" - -CodeNames="Up,Down,Left,Right,Start,Select" -CodeUp="Up" -CodeDown="Down" -CodeRight="Right" -CodeLeft="Left" -CodeStart="Start" -CodeSelect="Select" - -[ScreenSelectPlayMode] -ShowCursor=false -SharedSelection=true - -[ScreenBlendMode] -Class="ScreenAttract" -Fallback="ScreenAttract" -NextScreen="ScreenTitleMenu" -PrevScreen="ScreenTitleMenu" -TimerSeconds=60 - -[ScreenBlendMode2] -Class="ScreenSplash" -Fallback="ScreenSplash" -NextScreen="ScreenTitleMenu" -PrevScreen="ScreenTitleMenu" -TimerSeconds=-1 \ No newline at end of file