diff --git a/3d_models/akira/model 3.0/EZAnims.lua b/3d_models/akira/model 3.0/EZAnims.lua new file mode 100644 index 0000000..3f47a9f --- /dev/null +++ b/3d_models/akira/model 3.0/EZAnims.lua @@ -0,0 +1,700 @@ +-- V1.14 for 0.1.0 and above +-- Made by JimmyHelp +-- Contains Manuel's runLater + +local anims = {} + +local controller = {} +local controllerMT = {__index = controller} + +local objects = {} + +local exList = { + "idling", + "walking", + "walkingback", + "jumpingup", + "jumpingdown", + "falling", + "sprinting", + "sprintjumpup", + "sprintjumpdown", + "crouching", + "crouchwalk", + "crouchwalkback", + "crouchjumpup", + "crouchjumpdown", + "elytra", + "elytradown", + "trident", + "sleeping", + "swimming", + "sitting", + "sitmove", + "sitmoveback", + "sitjumpup", + "sitjumpdown", + "sitpass", + "crawling", + "crawlstill", + "flying", + "flywalk", + "flywalkback", + "flysprint", + "flyup", + "flydown", + "climbing", + "climbstill", + "climbdown", + "climbcrouch", + "climbcrouchwalking", + "water", + "waterwalk", + "waterwalkback", + "waterup", + "waterdown", + "watercrouch", + "watercrouchwalk", + "watercrouchwalkback", + "watercrouchup", + "watercrouchdown", + "hurt", + "death" +} + +local incList = { + "attackR", + "attackL", + "mineR", + "mineL", + "holdR", + "holdL", + "eatR", + "eatL", + "drinkR", + "drinkL", + "blockR", + "blockL", + "bowR", + "bowL", + "loadR", + "loadL", + "crossR", + "crossL", + "spearR", + "spearL", + "spyglassR", + "spyglassL", + "hornR", + "hornL", + "brushR", + "brushL", +} + +--[[local oldList = {} -- simply make the list again + +for key, _ in pairs(aList) do + oldList[key] = {active = false} +end]] + +local GSAnimBlend +for _, key in ipairs(listFiles(nil,true)) do + if key:find("GSAnimBlend$") then + GSAnimBlend = require(key) + break + end +end +if GSAnimBlend then GSAnimBlend.safe = false end + +local function setBlendTime(ex,inc,o) + for _,list in pairs(o.aList) do + for _,value in pairs(list.list) do + value:setBlendTime(list.type == "excluAnims" and ex or inc) + end + end +end + +---@param ex? number +---@param inc? number +function controller:setBlendTimes(ex,inc) + if not GSAnimBlend then error("GSAnimBlend was not found in the avatar, and this function is for interacting with GSAnimBlend.",2) end + if type(ex) ~= "number" and ex ~= nil then + error("The first arg is a non-number value ("..type(ex).."), must be a number or nil.",2) + end + if type(inc) ~= "number" and inc ~= nil then + error("The second arg is a non-number value ("..type(inc).."), must be a number or nil.",2) + end + if ex == nil then + ex = 0 + end + if inc == nil then + inc = ex + end + setBlendTime(ex,inc,self) + return self +end + +local flyinit +local function addAnims(bb,o) + local listy = o.aList + for _,anim in pairs(bb) do + for name,animation in pairs(anim) do + if name:find("fly") then flyinit = true end + for key, _ in pairs(o.aList) do + if name:find(key.."$") then + listy[key].list[#listy[key].list+1] = animation + break + end + end + end + end + + if GSAnimBlend then setBlendTime(4,4,o) end +end + +---@param anim table +---@param ifFly? boolean +function controller:setAnims(anim,ifFly) + flyinit = ifFly + for key, value in pairs(anim) do + self.aList[key].list = value + end + if GSAnimBlend then setBlendTime(4,4,self) end + return self +end + +---- Run Later by manuel_2867 ---- +local tmrs={} +local t=0 +---Schedules a function to run after a certain amount of ticks +---@param ticks number|function Amount of ticks to wait, or a predicate function to check each tick until it returns true +---@param next function Function to run after amount of ticks, or after the predicate function returned true +local function wait(ticks,next) + local x=type(ticks)=="number" + table.insert(tmrs,{t=x and t+ticks,p=x and function()end or ticks,n=next}) +end +function events.TICK() + t=t+1 + for key,timer in pairs(tmrs) do + if timer.p()or(timer.t and t >= timer.t)then + timer.n() + tmrs[key]=nil + end + end +end + +local fallVel = -0.6 +---@param vel? number +function anims:setFallVel(vel) + if type(vel) ~= "number" and vel ~= nil then + error("Tried to set the velocity to a non-number value ("..type(vel)..").") + end + fallVel = vel or -0.6 + return self +end + +local oneJump = false +---@param state? boolean +function anims:setOneJump(state) + oneJump = state or false + return self +end + +local auto = true +function anims:disableAutoSearch() + auto = false + return self +end + +local function getPlay(anim) + local exists, hold = pcall(anim.isHolding,anim) + return anim:isPlaying() or (exists and hold) +end + +local function getOverriders(type,o) + return o.overrideStates[type] or o.overrideStates.allAnims +end + +local function addOverriders(self,type,...) + for _, value in pairs({...}) do + if #self.overriders[type] == 64 then + error("The max amount of overriding animations for "..type.." (64) was reached. Do not put the code for adding overriding animations in a function, it will infinitely add animations.",3) + end + self.overriders[type][#self.overriders[type]+1] = value + end +end + +---@param state? boolean +function controller:setAllOff(state) + self.setOverrides.allAnims = state + return self +end + +---@param state? boolean +function controller:setExcluOff(state) + self.setOverrides.excluAnims = state + return self +end + +---@param state? boolean +function controller:setIncluOff(state) + self.setOverrides.incluAnims = state + return self +end + +---@param ... Animation +function controller:addExcluOverrider(...) + addOverriders(self,"excluAnims",...) + return self +end + +---@param ... Animation +function controller:addIncluOverrider(...) + addOverriders(self,"incluAnims",...) + return self +end + +---@param ... Animation +function controller:addAllOverrider(...) + addOverriders(self,"allAnims",...) + return self +end + +---@param exState? string +---@param inState? string +function controller:setState(exState,inState) + if type(exState) ~= "string" and exState ~= nil then + error("The first arg is a non-string value ("..type(exState).."), must be a string or nil.",2) + end + if type(inState) ~= "string" and inState ~= nil then + error("The second arg is a non-string value ("..type(inState).."), must be a string or nil.",2) + end + self.toggleState = {excluAnims = exState or "",incluAnims = inState or exState or ""} + return self +end + +function controller:getState() + return self.toggleState +end + +local function getStates(type,o) + return o.toggleState[type] +end + +---@param spec? string +function controller:getAnimationStates(spec) + if type(spec) ~= "string" and spec ~= nil then + error("The animation state is a non-string value ("..type(spec).."), must be a string or nil.",2) + end + local states = {} + for k,v in pairs(self.aList) do + states[k] = v.active + end + if spec then return self.aList[spec].active else return states end +end + +local function setAnimation(anim,override,state,o) + local saved = o.aList[anim] + local exists = true + for _,value in pairs(saved.list) do + if value:getName() == state..anim then + if not saved.active and saved.stop then break end + value:setPlaying(saved.active and not override) + if saved.active and saved.stop and not override then + value:stop():play() + end + exists = false + else + if not saved.active and saved.stop then break end + value:stop() + end + end + for _,value in pairs(saved.list) do + if exists and value:getName() == anim then + if not saved.active and saved.stop then break end + if saved.active and saved.stop and not override then + value:stop():play() + break + end + value:setPlaying(saved.active and not override) + end + end +end + +local flying +function pings.EZAnims_cFly(x) + flying = x +end + +local diff = false +local rightResult, leftResult, targetEntity, rightMine, leftMine, rightAttack, leftAttack, oldhitBlock, targetBlock, blockSuccess, blockResult, hitBlock +local yvel, grounded, oldgrounded, hasJumped, cFlying, oldcFlying +local cooldown = false +local updateTimer = 0 +local toggleDiff +local function getInfo() + if host:isHost() then + if flyinit then + cFlying = host:isFlying() + if cFlying ~= oldcFlying then + pings.EZAnims_cFly(cFlying) + end + oldcFlying = cFlying + + updateTimer = updateTimer + 1 + if updateTimer % 200 == 0 then + pings.EZAnims_cFly(cFlying) + end + end + end + + local pose = player:getPose() + local velocity = player:getVelocity() + local moving = velocity.xz:length() > 0.01 + local sprinty = player:isSprinting() + local vehicle = player:getVehicle() + local sitting = vehicle ~= nil or pose == "SITTING" -- if you're reading this code and see this, "SITTING" isn't a vanilla pose, this is for mods + local passenger = vehicle and vehicle:getControllingPassenger() ~= player + local creativeFlying = (flying or false) and not sitting + local standing = pose == "STANDING" + local crouching = pose == "CROUCHING" and not creativeFlying + local gliding = pose == "FALL_FLYING" + local spin = pose == "SPIN_ATTACK" + local sleeping = pose == "SLEEPING" + local swimming = pose == "SWIMMING" + local inWater = player:isUnderwater() and not sitting + local inLiquid = player:isInWater() or player:isInLava() + local liquidSwim = swimming and inLiquid + local crawling = swimming and not inLiquid + + -- hasJumped stuff + + yvel = velocity.y + local hover = yvel < .01 and yvel > -.01 + local goingUp = yvel > .01 + local goingDown = yvel < -.01 + local falling = yvel < fallVel + local playerGround = world.getBlockState(player:getPos():add(0,-.1,0)) + local vehicleGround = sitting and world.getBlockState(vehicle:getPos():add(0,-.1,0)) + oldgrounded = grounded + grounded = playerGround:isSolidBlock() or player:isOnGround() or (sitting and vehicleGround:isSolidBlock() or sitting and vehicle:isOnGround()) + + local pv = velocity:mul(1, 0, 1):normalize() + local pl = models:partToWorldMatrix():applyDir(0,0,-1):mul(1, 0, 1):normalize() + local fwd = pv:dot(pl) + local backwards = fwd < -.8 + --local sideways = pv:cross(pl) + --local right = sideways.y > .6 + --local left = sideways.y < -.6 + + -- canJump stuff + local webbed = world.getBlockState(player:getPos()).id == "minecraft:cobweb" + local ladder = player:isClimbing() and not grounded and not flying + + local canJump = not (inLiquid or webbed or grounded) + + local hp = player:getHealth() + player:getAbsorptionAmount() + + if oldgrounded ~= grounded and not grounded and yvel > 0 then + cooldown = true + wait(10,function() cooldown = false end) + end + + if (oldgrounded ~= grounded and not grounded and yvel > 0) and canJump then hasJumped = true end + if (grounded and (yvel <= 0 and yvel > -0.1)) or (gliding or inLiquid) then hasJumped = false end + + local neverJump = not (gliding or spin or sleeping or swimming or ladder) + local jumpingUp = hasJumped and goingUp and neverJump + local jumpingDown = hasJumped and goingDown and not falling and neverJump or (cooldown and not jumpingUp) + local isJumping = jumpingUp or jumpingDown or falling + local sprinting = sprinty and standing and not inLiquid and not sitting + local walking = moving and not sprinting and not isJumping and not sitting + local forward = walking and not backwards + local backward = walking and backwards + + local handedness = player:isLeftHanded() + local rightItem = player:getHeldItem(handedness) + local leftItem = player:getHeldItem(not handedness) + local rightActive = handedness and "OFF_HAND" or "MAIN_HAND" + local leftActive = not handedness and "OFF_HAND" or "MAIN_HAND" + local activeness = player:getActiveHand() + local using = player:isUsingItem() + local rightSuccess = pcall(rightItem.getUseAction,rightItem) + if rightSuccess then rightResult = rightItem:getUseAction() else rightResult = "NONE" end + local usingR = using and activeness == rightActive and rightResult + local leftSuccess = pcall(leftItem.getUseAction,leftItem) + if leftSuccess then leftResult = leftItem:getUseAction() else leftResult = "NONE" end + local usingL = using and activeness == leftActive and leftResult + local swing = player:getSwingTime() + local arm = swing == 1 and not sleeping and player:getSwingArm() + local rTag= rightItem.tag + local lTag = leftItem.tag + local crossR = rTag and (rTag["Charged"] == 1 or (rTag["ChargedProjectiles"] and next(rTag["ChargedProjectiles"])~= nil)) or false + local crossL = lTag and (lTag["Charged"] == 1 or (lTag["ChargedProjectiles"] and next(lTag["ChargedProjectiles"])~= nil)) or false + local exclude = not (crossR or crossL or using) + local game = player:getGamemode() + local reach = game and 6 or 3 + + if swing == 1 then + targetEntity = type(player:getTargetedEntity(reach)) == "PlayerAPI" or type(player:getTargetedEntity(reach)) == "LivingEntityAPI" + rightMine = oldhitBlock and not targetEntity + leftMine = oldhitBlock and not targetEntity + rightAttack = (not oldhitBlock or targetEntity) + leftAttack = (not oldhitBlock or targetEntity) + end + + for _,o in pairs(objects) do + + o.diff = false + for types, tabs in pairs(o.overriders) do + o.overrideStates[types] = o.setOverrides[types] or false + for _, value in pairs(tabs) do + if getPlay(value) then + o.overrideStates[types] = true + break + end + end + if o.oldoverStates[types] ~= o.overrideStates[types] then + o.diff = true + end + o.oldoverStates[types] = o.overrideStates[types] + end + + local ob = o.aList + + ob.flywalkback.active = creativeFlying and backward and (not (goingDown or goingUp)) + ob.flysprint.active = creativeFlying and sprinting and not isJumping and (not (goingDown or goingUp)) + ob.flyup.active = creativeFlying and goingUp + ob.flydown.active = creativeFlying and goingDown + ob.flywalk.active = creativeFlying and forward and (not (goingDown or goingUp)) and not sleeping or (ob.flysprint.active and next(ob.flysprint.list)==nil) or (ob.flywalkback.active and next(ob.flywalkback.list)==nil) + or (ob.flyup.active and next(ob.flyup.list)==nil) or (ob.flydown.active and next(ob.flydown.list)==nil) + ob.flying.active = creativeFlying and not sprinting and not moving and standing and not isJumping and (not (goingDown or goingUp)) and not sleeping or (ob.flywalk.active and next(ob.flywalk.list)==nil) + + ob.watercrouchwalkback.active = inWater and crouching and backward and not goingDown + ob.watercrouchwalk.active = inWater and crouching and forward and not (goingDown or goingUp) or (ob.watercrouchwalkback.active and next(ob.watercrouchwalkback.list)==nil) + ob.watercrouchup.active = inWater and crouching and goingUp + ob.watercrouchdown.active = inWater and crouching and goingDown or (ob.watercrouchup.active and next(ob.watercrouchup.list)==nil) + ob.watercrouch.active = inWater and crouching and not moving and not (goingDown or goingUp) or (ob.watercrouchdown.active and next(ob.watercrouchdown.list)==nil) or (ob.watercrouchwalk.active and next(ob.watercrouchwalk.list)==nil) + + ob.waterdown.active = inWater and goingDown and not falling and standing and not creativeFlying + ob.waterup.active = inWater and goingUp and standing and not creativeFlying + ob.waterwalkback.active = inWater and backward and hover and standing and not creativeFlying + ob.waterwalk.active = inWater and forward and hover and standing and not creativeFlying or (ob.waterwalkback.active and next(ob.waterwalkback.list)==nil) or (ob.waterdown.active and next(ob.waterdown.list)==nil) + or (ob.waterup.active and next(ob.waterup.list)==nil) + ob.water.active = inWater and not moving and standing and hover and not creativeFlying or (ob.waterwalk.active and next(ob.waterwalk.list)==nil) + + + + ob.crawlstill.active = crawling and not moving + ob.crawling.active = crawling and moving or (ob.crawlstill.active and next(ob.crawlstill.list)==nil) + + ob.swimming.active = liquidSwim or (ob.crawling.active and next(ob.crawling.list)==nil) + + ob.elytradown.active = gliding and goingDown + ob.elytra.active = gliding and not goingDown or (ob.elytradown.active and next(ob.elytradown.list)==nil) + + ob.sitpass.active = passenger and standing or false + ob.sitjumpdown.active = sitting and not passenger and standing and (jumpingDown or falling) + ob.sitjumpup.active = sitting and not passenger and jumpingUp and standing or (ob.sitjumpdown.active and next(ob.sitjumpdown.list)==nil) + ob.sitmoveback.active = sitting and not passenger and not isJumping and backwards and standing + ob.sitmove.active = velocity:length() > 0 and not passenger and not backwards and standing and sitting and not isJumping or (ob.sitmoveback.active and next(ob.sitmoveback.list)==nil) or (ob.sitjumpup.active and next(ob.sitjumpup.list)==nil) + ob.sitting.active = sitting and not passenger and velocity:length() == 0 and not isJumping and standing or (ob.sitmove.active and next(ob.sitmove.list)==nil) or (ob.sitpass.active and next(ob.sitpass.list)==nil) or false + + ob.trident.active = spin + ob.sleeping.active = sleeping + + ob.climbcrouchwalking.active = ladder and crouching and not inWater and (moving or yvel ~= 0) + ob.climbcrouch.active = ladder and crouching and hover and not moving or (ob.climbcrouchwalking.active and next(ob.climbcrouchwalking.list)==nil) + ob.climbdown.active = ladder and goingDown and not crouching + ob.climbstill.active = ladder and not crouching and hover + ob.climbing.active = ladder and goingUp and not crouching or (ob.climbdown.active and next(ob.climbdown.list)==nil) or (ob.climbstill.active and next(ob.climbstill.list)==nil) + + ob.crouchjumpdown.active = crouching and jumpingDown and not inWater and not ladder + ob.crouchjumpup.active = crouching and jumpingUp and not inWater and not ladder or (not oneJump and (ob.crouchjumpdown.active and next(ob.crouchjumpdown.list)==nil)) + ob.crouchwalkback.active = backward and crouching and not inWater and not ladder or (ob.watercrouchwalkback.active and next(ob.watercrouchwalkback.list)==nil and next(ob.watercrouchwalk.list)==nil and next(ob.watercrouch.list)==nil) + ob.crouchwalk.active = forward and crouching and not (jumpingDown or jumpingUp) and not inWater and not ladder or (ob.crouchwalkback.active and next(ob.crouchwalkback.list)==nil) or (not oneJump and (ob.crouchjumpup.active and next(ob.crouchjumpup.list)==nil)) or ((ob.watercrouchwalk.active and not ob.watercrouchwalkback.active) and next(ob.watercrouchwalk.list)==nil and next(ob.watercrouch.list)==nil) + ob.crouching.active = crouching and not walking and not inWater and not isJumping and not ladder and not cooldown or (ob.crouchwalk.active and next(ob.crouchwalk.list)==nil) or (ob.climbcrouch.active and next(ob.climbcrouch.list)==nil) or ((ob.watercrouch.active and not ob.watercrouchwalk.active) and next(ob.watercrouch.list)==nil) + + ob.falling.active = falling and not gliding and not creativeFlying and not sitting + + ob.sprintjumpdown.active = jumpingDown and sprinting and not creativeFlying and not ladder or false + ob.sprintjumpup.active = jumpingUp and sprinting and not creativeFlying and not ladder or (not oneJump and (ob.sprintjumpdown.active and next(ob.sprintjumpdown.list)==nil)) or false + ob.jumpingdown.active = jumpingDown and not ladder and not sprinting and not crouching and not sitting and not sleeping and not gliding and not creativeFlying and not spin and not inWater or (ob.falling.active and next(ob.falling.list)==nil) or (oneJump and (ob.sprintjumpdown.active and next(ob.sprintjumpdown.list)==nil)) or (oneJump and (ob.crouchjumpdown.active and next(ob.crouchjumpdown.list)==nil)) + ob.jumpingup.active = jumpingUp and not ladder and not sprinting and not crouching and not sitting and not creativeFlying and not inWater or (ob.jumpingdown.active and next(ob.jumpingdown.list)==nil) or (ob.trident.active and next(ob.trident.list)==nil) or (oneJump and (ob.sprintjumpup.active and next(ob.sprintjumpup.list)==nil)) or (oneJump and (ob.crouchjumpup.active and next(ob.crouchjumpup.list)==nil)) + + ob.sprinting.active = sprinting and not isJumping and not creativeFlying and not ladder and not cooldown and not inWater or (not oneJump and (ob.sprintjumpup.active and next(ob.sprintjumpup.list)==nil)) or false + ob.walkingback.active = backward and standing and not creativeFlying and not ladder and not inWater or (ob.flywalkback.active and next(ob.flywalkback.list)==nil and next(ob.flywalk.list)==nil and next(ob.flying.list)==nil) + ob.walking.active = forward and standing and not creativeFlying and not ladder and not cooldown and not inWater or (ob.walkingback.active and next(ob.walkingback.list)==nil) or (ob.sprinting.active and next(ob.sprinting.list)==nil) or (ob.climbing.active and next(ob.climbing.list)==nil) + or (ob.swimming.active and next(ob.swimming.list)==nil) or (ob.elytra.active and next(ob.elytra.list)==nil) or (ob.jumpingup.active and next(ob.jumpingup.list)==nil) or (ob.waterwalk.active and (next(ob.waterwalk.list)==nil and next(ob.water.list)==nil)) or ((ob.flywalk.active and not ob.flywalkback.active) and next(ob.flywalk.list)==nil and next(ob.flying.list)==nil) + or (ob.crouchwalk.active and (next(ob.crouchwalk)==nil or next(ob.crouching.list)==nil)) + ob.idling.active = not moving and not sprinting and standing and not isJumping and not sitting and not inWater and not creativeFlying and not ladder or (ob.sleeping.active and next(ob.sleeping.list)==nil) or (ob.sitting.active and next(ob.sitting.list)==nil) + or ((ob.water.active and not ob.waterwalk.active) and next(ob.water.list)==nil) or ((ob.flying.active and not ob.flywalk.active) and next(ob.flying.list)==nil) or ((ob.crouching.active and not ob.crouchwalk.active) and next(ob.crouching.list)==nil) + + ob.death.active = hp <= 0 + ob.hurt.active = player:getNbt().HurtTime > 0 and hp > 0 + + ob.attackR.active = arm == rightActive and rightAttack + ob.attackL.active = arm == leftActive and leftAttack + ob.mineR.active = arm == rightActive and rightMine + ob.mineL.active = arm == leftActive and leftMine + ob.holdR.active = rightItem.id~="minecraft:air" and exclude + ob.holdL.active = leftItem.id~="minecraft:air" and exclude + ob.eatR.active = usingR == "EAT" + ob.eatL.active = usingL == "EAT" + ob.drinkR.active = usingR == "DRINK" + ob.drinkL.active = usingL == "DRINK" + ob.blockR.active = usingR == "BLOCK" + ob.blockL.active = usingL == "BLOCK" + ob.bowR.active = usingR == "BOW" + ob.bowL.active = usingL == "BOW" + ob.loadR.active = usingR == "CROSSBOW" + ob.loadL.active = usingL == "CROSSBOW" + ob.crossR.active = crossR + ob.crossL.active = crossL + ob.spearR.active = usingR == "SPEAR" + ob.spearL.active = usingL == "SPEAR" + ob.spyglassR.active = usingR == "SPYGLASS" + ob.spyglassL.active = usingL == "SPYGLASS" + ob.hornR.active = usingR == "TOOT_HORN" + ob.hornL.active = usingL == "TOOT_HORN" + ob.brushR.active = usingR == "BRUSH" + ob.brushL.active = usingL == "BRUSH" + + for key,value in pairs(o.aList) do + if (value.active ~= o.oldList[key].active) then + setAnimation(key,getOverriders(value.type,o),getStates(value.type,o),o) + end + if (o.toggleDiff or o.diff) and value.active then + setAnimation(key,getOverriders(value.type,o),getStates(value.type,o),o) + end + o.oldList[key].active = value.active + end + + o.toggleDiff = false + for key,_ in pairs(o.toggleState) do + if o.oldToggle[key] ~= o.toggleState[key] then + o.toggleDiff = true + end + o.oldToggle[key] = o.toggleState[key] + end + end + oldhitBlock = hitBlock + targetBlock = player:getTargetedBlock(true, game and 5 or 4.5) + blockSuccess, blockResult = pcall(targetBlock.getTextures, targetBlock) + if blockSuccess then hitBlock = not (next(blockResult) == nil) else hitBlock = true end +end + +function events.tick() + getInfo() +end + +local function getBBModels() + local bbmodels = {} + for _,layer in pairs(models:getChildren()) do + local name = layer:getName() + if animations[name] then + bbmodels[name] = animations[name] + else + for _,layer2 in pairs(layer:getChildren()) do + local name2 = name.."."..layer2:getName() + bbmodels[name2] = animations[name2] + end + end + end + + if next(bbmodels) == nil then + error("No blockbench models containing animations were found.") + end + + local aList = {} + local oldList = {} + for _, value in pairs(exList) do + aList[value] = {active = false,list = {},type = "excluAnims"} + oldList[value] = {active = false} + end + + for _, value in pairs(incList) do + aList[value] = {active = false,list = {},type = "incluAnims"} + oldList[value] = {active = false} + end + + aList.attackR.stop = true + aList.attackL.stop = true + aList.mineR.stop = true + aList.mineL.stop = true + aList.hurt.stop = true + + local o = setmetatable( + { + bbmodels=bbmodels, + aList=aList, + oldList=oldList, + toggleState = {excluAnims="",incluAnims=""}, + oldToggle = {excluAnims="",incluAnims=""}, + toggleDiff = toggleDiff, + overriders = {excluAnims = {},incluAnims = {}, allAnims = {}}, + overrideStates = {excluAnims = false,incluAnims = false, allAnims = false}, + oldoverStates = {excluAnims = false,incluAnims = false, allAnims = false}, + setOverrides = {excluAnims = false,incluAnims = false, allAnims = false}, + diff = diff + }, + controllerMT) + objects[1] = o + addAnims(bbmodels,o) +end + +function events.entity_init() + if #objects == 0 then getBBModels() end +end + +local firstRun = true +---@param ... table +function anims:addBBModel(...) + local bbmodels = {...} + if next(bbmodels) == nil then + error("The blockbench model provided couldn't be found because it has no animations, or because of a typo or some other mistake.",2) + end + + local aList = {} + local oldList = {} + for _, value in pairs(exList) do + aList[value] = {active = false,list = {},type = "excluAnims"} + oldList[value] = {active = false} + end + + for _, value in pairs(incList) do + aList[value] = {active = false,list = {},type = "incluAnims"} + oldList[value] = {active = false} + end + + aList.attackR.stop = true + aList.attackL.stop = true + aList.mineR.stop = true + aList.mineL.stop = true + aList.hurt.stop = true + + local o = setmetatable( + { + bbmodels=bbmodels, + aList=aList, + oldList=oldList, + toggleState = {excluAnims="",incluAnims=""}, + oldToggle = {excluAnims="",incluAnims=""}, + toggleDiff = toggleDiff, + overriders = {excluAnims = {},incluAnims = {}, allAnims = {}}, + overrideStates = {excluAnims = false,incluAnims = false, allAnims = false}, + oldoverStates = {excluAnims = false,incluAnims = false, allAnims = false}, + setOverrides = {excluAnims = false,incluAnims = false, allAnims = false}, + diff = diff + }, + controllerMT) + objects[#objects+1] = o + if #objects == 16 then + error("The max amount of blockbench models (16) was reached. Do not put the code for adding blockbench models in a function, it will infinitely add blockbench models.",3) + end + if auto then addAnims(bbmodels,o) end + return o +end + +anims.controller = controller +return anims diff --git a/3d_models/akira/model 3.0/GSAnimBlend.lua b/3d_models/akira/model 3.0/GSAnimBlend.lua new file mode 100644 index 0000000..db0530b --- /dev/null +++ b/3d_models/akira/model 3.0/GSAnimBlend.lua @@ -0,0 +1,2041 @@ +-- ┌───┐ ┌───┐ -- +-- │ ┌─┘ ┌─────┐┌─────┐ └─┐ │ -- +-- │ │ │ ┌───┘│ ╶───┤ │ │ -- +-- │ │ │ ├───┐└───┐ │ │ │ -- +-- │ │ │ └─╴ │┌───┘ │ │ │ -- +-- │ └─┐ └─────┘└─────┘ ┌─┘ │ -- +-- └───┘ └───┘ -- +---@module "Animation Blending Library" +---@version v2.0.2 +---@see GrandpaScout @ https://github.com/GrandpaScout +-- Adds prewrite-like animation blending to the rewrite. +-- Also includes the ability to modify how the blending works per-animation with blending callbacks. +-- +-- Simply `require`ing this library is enough to make it run. However, if you place this library in +-- a variable, you can get access to functions and tools that allow for generating pre-build blend +-- callbacks or creating your own blend callbacks. +-- +-- This library is fully documented. If you use Sumneko's Lua Language server, you will get +-- descriptions of each function, method, and field in this library. + +local ID = "GSAnimBlend" +local VER = "2.0.2" +local FIG = {"0.1.0-rc.14", "0.1.5"} + +-- Safe version comparison -- +local CLIENT_VERSION = client.getFiguraVersion() + :match("^([^%+]*)") + :gsub("^([pr])", "0.1.3-%1") +local COMPARABLE_VERSION = CLIENT_VERSION + :gsub("^(%d+).-%..-(%d+).-%..-(%d+).-(%-?)", "%1.%2.%3%4") + +local cmp = function(to) + local s, r = pcall(client.compareVersions, COMPARABLE_VERSION, to) + return s and r or nil +end +----------------------------- + +---@type boolean, Lib.GS.AnimBlend +local s, this = pcall(function() + --|================================================================================================================|-- + --|=====|| SCRIPT ||===============================================================================================|-- + --||==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==||-- + + -- Localize Lua basic + local getmetatable = getmetatable + local setmetatable = setmetatable + local type = type + local assert = assert + local error = error + local next = next + local ipairs = ipairs + local pairs = pairs + local rawset = rawset + local tostring = tostring + -- Localize Lua math + local m_abs = math.abs + local m_cos = math.cos + local m_lerp = math.lerp + local m_map = math.map + local m_max = math.max + local m_sin = math.sin + local m_sqrt = math.sqrt + local m_pi = math.pi + local m_1s2pi = m_pi * 0.5 + local m_2s3pi = m_pi / 1.5 + local m_4s9pi = m_pi / 2.25 + -- Localize Figura globals + local animations = animations + local figuraMetatables = figuraMetatables + local vanilla_model = vanilla_model + local events = events + -- Localize current environment + local _ENV = _ENV --[[@as _G]] + local FUTURE = cmp("0.1.4") == 1 + + ---@diagnostic disable: duplicate-set-field, duplicate-doc-field + + ---This library is used to allow prewrite-like animation blending with one new feature with infinite + ---possibility added on top. + ---Any fields, functions, and methods injected by this library will be prefixed with + ---**[GS AnimBlend Library]** in their description. + --- + ---If this library is required without being stored to a variable, it will automatically set up the + ---blending features. + ---If this library is required *and* stored to a variable, it will also contain tools for generating + ---pre-built blending callbacks and creating custom blending callbacks. + ---```lua + ---require "···" + --- -- OR -- + ---local anim_blend = require "···" + ---``` + ---@class Lib.GS.AnimBlend + ---This library's perferred ID. + ---@field _ID string + ---This library's version. + ---@field _VERSION string + local this = { + ---Enables error checking in the library. `true` by default. + --- + ---Turning off error checking will greatly reduce the amount of instructions used by this library + ---at the cost of not telling you when you put in a wrong value. + --- + ---If an error pops up while this is `false`, try setting it to `true` and see if a different + ---error pops up. + safe = true + } + local thismt = { + __type = ID, + __metatable = false, + __index = { + _ID = ID, + _VERSION = VER + } + } + + -- Create private space for blending trigger. + -- This is done non-destructively so other scripts may do this as well. + if not getmetatable(_ENV) then setmetatable(_ENV, {}) end + + + -----======================================= VARIABLES ========================================----- + + local _ENVMT = getmetatable(_ENV) + + ---Contains the data required to make animation blending for each animation. + ---@type {[Animation]: Lib.GS.AnimBlend.AnimData} + local animData = {} + + ---Contains the currently blending animations. + ---@type {[Animation]?: true} + local blending = {} + + this.animData = animData + this.blending = blending + + local ticker = 0 + local last_delta = 0 + local allowed_contexts = { + RENDER = true, + FIRST_PERSON = true, + OTHER = true + } + + + -----=================================== UTILITY FUNCTIONS ====================================----- + + local chk = {} + + chk.types = { + ["nil"] = "nil", + boolean = "boolean", + number = "number", + string = "string", + table = "table", + ["function"] = "function" + } + + function chk.badarg(i, name, got, exp, opt) + if opt and got == nil then return true end + local gotT = type(got) + local gotType = chk.types[gotT] or "userdata" + + local expType = chk.types[exp] or "userdata" + if gotType ~= expType then + if expType == "function" and gotType == "table" then + local mt = getmetatable(got) + if mt and mt.__call then return true end + end + return false, ("bad argument #%s to '%s' (%s expected, got %s)") + :format(i, name, expType, gotType) + elseif expType ~= exp and gotT ~= exp then + return false, ("bad argument #%s to '%s' (%s expected, got %s)") + :format(i, name, exp, gotType) + end + + return true + end + + function chk.badnum(i, name, got, opt) + if opt and got == nil then + return true + elseif type(got) ~= "number" then + local gotType = chk.types[type(got)] or "userdata" + return false, ("bad argument #%s to '%s' (number expected, got %s)"):format(i, name, gotType) + elseif got * 0 ~= 0 then + return false, ("bad argument #%s to '%s' (value cannot be %s)"):format(i, name, got) + end + + return true + end + + local function makeSane(val, def) + return val * 0 == 0 and val or def + end + + + -----=================================== PREPARE ANIMATIONS ===================================----- + + local animPause + local blendCommand = [[getmetatable(_ENV).GSLib_triggerBlend[%d](%s, ...)]] + + _ENVMT.GSLib_triggerBlend = {} + + local anim_nbt = avatar:getNBT().animations + if anim_nbt then + for i, nbt in ipairs(anim_nbt) do + ---@type Animation + local anim = animations[nbt.mdl][nbt.name] + local blend = anim:getBlend() + local len = anim:getLength() + local lenSane = makeSane(len, false) + + ---@type function?, function? + local start_func, end_func + ---@type string?, string? + local start_src, end_src + if nbt.code then + for _, code in ipairs(nbt.code) do + if code.time == 0 then + start_src = code.src + ---@diagnostic disable-next-line: redundant-parameter + start_func = load(start_src, ("animations.%s.%s"):format(nbt.mdl, nbt.name)) + elseif code.time == len then + end_src = code.src + ---@diagnostic disable-next-line: redundant-parameter + end_func = load(end_src, ("animations.%s.%s"):format(nbt.mdl, nbt.name)) + end + if start_func and (len == 0 or end_func) then break end + end + end + + animData[anim] = { + blendTimeIn = 0, + blendTimeOut = 0, + blend = blend, + blendSane = makeSane(blend, 0), + length = lenSane, + triggerId = i, + startFunc = start_func, + startSource = start_src, + endFunc = end_func, + endSource = end_src + } + + _ENVMT.GSLib_triggerBlend[i] = function(at_start, ...) + if + anim:getLoop() == "ONCE" + and (animData[...].blendTimeOut > 0) + and (at_start == nil or (anim:getSpeed() < 0) == at_start) + then + animPause(anim) + anim:stop() + end + local data = animData[anim] + if at_start == false then + if data.endFunc then data.endFunc(...) end + elseif data.startFunc then + data.startFunc(...) + end + end + + if lenSane == 0 then + anim:newCode(0, blendCommand:format(i, "nil")) + else + anim:newCode(0, blendCommand:format(i, "true")) + if lenSane then anim:newCode(lenSane, blendCommand:format(i, "false")) end + end + end + end + + + -----============================ PREPARE METATABLE MODIFICATIONS =============================----- + + local animation_mt = figuraMetatables.Animation + local animationapi_mt = figuraMetatables.AnimationAPI + + local ext_Animation = next(animData) + if not ext_Animation then + error( + "No animations have been found!\n" .. + "This library cannot build its functions without an animation to use.\n" .. + "Create an animation or stop this library from running to fix the error." + ) + end + + + -- Check for conflicts + if ext_Animation.blendTime then + local path = tostring(ext_Animation.blendTime):match("^function: (.-):%d+%-%d+$") + error( + "Conflicting script [" .. path .. "] found!\n" .. + "Remove the other script or this script to fix the error." + ) + end + + local _animationIndex = animation_mt.__index + local _animationNewIndex = animation_mt.__newindex or rawset + local _animationapiIndex = animationapi_mt.__index + + local animPlay = ext_Animation.play + local animStop = ext_Animation.stop + animPause = ext_Animation.pause + local animRestart = ext_Animation.restart + local animBlend = ext_Animation.blend + local animLength = ext_Animation.length + local animGetPlayState = ext_Animation.getPlayState + local animGetBlend = ext_Animation.getBlend + local animGetTime = ext_Animation.getTime + local animIsPlaying = ext_Animation.isPlaying + local animIsPaused = ext_Animation.isPaused + local animNewCode = ext_Animation.newCode + local animPlaying = ext_Animation.playing + local animapiGetPlaying = animations.getPlaying + + ---Contains the old functions, just in case you need direct access to them again. + --- + ---These are useful for creating your own blending callbacks. + this.oldF = { + play = animPlay, + stop = animStop, + pause = animPause, + restart = animRestart, + + getBlend = animGetBlend, + getPlayState = animGetPlayState, + getTime = animGetTime, + isPlaying = animIsPlaying, + isPaused = animIsPaused, + + setBlend = ext_Animation.setBlend, + setLength = ext_Animation.setLength, + setPlaying = ext_Animation.setPlaying, + + blend = animBlend, + length = animLength, + playing = animPlaying, + + api_getPlaying = animapiGetPlaying + } + + + -----===================================== SET UP LIBRARY =====================================----- + + ---Causes a blending event to happen and returns the blending state for that event. + ---If a blending event could not happen for some reason, nothing will be returned. + --- + ---If `time`, `from`, or `to` are `nil`, they will take from the animation's data to determine this + ---value. + --- + ---One of `from` or `to` *must* be set. + --- + ---If `starting` is given, it will be used instead of the guessed value from the data given. + ---@param anim Animation + ---@param time? number + ---@param from? number + ---@param to? number + ---@param starting? boolean + ---@return Lib.GS.AnimBlend.BlendState + function this.blend(anim, time, from, to, starting) + if this.safe then + assert(chk.badarg(1, "blend", anim, "Animation")) + assert(chk.badarg(2, "blend", time, "number", true)) + assert(chk.badarg(3, "blend", from, "number", true)) + assert(chk.badarg(4, "blend", to, "number", true)) + if not from and not to then error("one of arguments #3 or #4 must be a number", 2) end + end + + local data = animData[anim] + local blendSane = data.blendSane + + if starting == nil then + starting = (from or blendSane) < (to or blendSane) + end + + data.state = { + time = 0, + max = time or false, + + from = from or false, + to = to or false, + + callback = data.callback or this.defaultCallback, + curve = data.curve or this.defaultCurve, + + paused = false, + starting = starting, + delay = starting and m_max(anim:getStartDelay() * 20, 0) or 0, + + callbackState = { + anim = anim, + time = 0, + max = time or (starting and data.blendTimeIn or data.blendTimeOut), + progress = 0, + rawProgress = 0, + from = from or blendSane, + to = to or blendSane, + starting = starting, + done = false + } + } + + blending[anim] = true + + animBlend(anim, from or blendSane) + if starting then + animPlay(anim) + if anim:getSpeed() < 0 then + anim:setTime(anim:getLength() - anim:getOffset()) + else + anim:setTime(anim:getOffset()) + end + end + animPause(anim) + + return blendState + end + + + -----==================================== PRESET CALLBACKS ====================================----- + + ---Contains blending callback generators. + --- + ---These are *not* callbacks themselves. They are meant to be called to generate a callback which + ---can *then* be used. + local callbackFunction = {} + + ---Contains custom blending curves. + --- + ---These callbacks change the curve used when blending. These cannot be used to modify custom or + ---generated callbacks (yet). + local easingCurve = {} + + + ---===== CALLBACK FUNCTIONS =====--- + + ---The base blending callback used by GSAnimBlend. + ---Does the bare minimum of setting the blend weight of the animation to match the blend progress. + ---@param state Lib.GS.AnimBlend.CallbackState + function callbackFunction.base(state) + animBlend(state.anim, m_lerp(state.from, state.to, state.progress)) + end + + ---Given a list of parts, this will generate a blending callback that will blend between the vanilla + ---parts' normal rotations and the rotations of the animation. + --- + ---The list of parts given is expected to the the list of parts that have a vanilla parent type in + ---the chosen animation in no particular order. + --- + ---This callback *also* expects the animation to override vanilla rotations. + --- + ---Note: The resulting callback makes *heavy* use of `:offsetRot()` and will conflict with any other + ---code that also uses that method! + ---@param parts ModelPart[] + ---@return Lib.GS.AnimBlend.blendCallback + function callbackFunction.genBlendVanilla(parts) + -- Because some dumbass won't read the instructions... + ---@diagnostic disable-next-line: undefined-field + if parts.done ~= nil then + error("attempt to use generator 'genBlendVanilla' as a blend callback.", 2) + end + + if this.safe then + for i, part in ipairs(parts) do + assert(chk.badarg("1[" .. i .. "]", "genBlendVanilla", part, "ModelPart")) + end + end + + ---@type {[string]: ModelPart[]} + local part_list = {} + local partscopy = {} + + -- Gather the vanilla parent of each part. + for i, part in ipairs(parts) do + partscopy[i] = part + local vpart = part:getParentType():gsub("([a-z])([A-Z])", "%1_%2"):upper() + if vanilla_model[vpart] then + if not part_list[vpart] then part_list[vpart] = {} end + local plvp = part_list[vpart] + plvp[#plvp+1] = part + end + end + + -- The actual callback is created here. + return function(state) + if state.done then + local id = "GSAnimBlend:BlendVanillaCleanup_" .. math.random(0, 0xFFFF) + events.POST_RENDER:register(function(_, ctx) + if not allowed_contexts[ctx] then return end + for _, part in ipairs(partscopy) do part:offsetRot() end + events.POST_RENDER:remove(id) + end, id) + else + local pct = state.starting and 1 - state.progress or state.progress + + for n, v in pairs(part_list) do + ---@type Vector3 + local rot = vanilla_model[n]:getOriginRot() + if n == "HEAD" then rot[2] = ((rot[2] + 180) % 360) - 180 end + rot:scale(pct) + for _, p in ipairs(v) do p:offsetRot(rot) end + end + + animBlend(state.anim, m_lerp(state.from, state.to, state.progress)) + end + end + end + + ---Generates a callback that causes an animation to blend into another animation. + ---@param anim Animation + ---@return Lib.GS.AnimBlend.blendCallback + function callbackFunction.genBlendTo(anim) + -- Because some dumbass won't read the instructions... + ---@diagnostic disable-next-line: undefined-field + if anim.done ~= nil then + error("attempt to use generator 'genBlendTo' as a blend callback.", 2) + end + + if this.safe then + assert(chk.badarg(1, "genBlendTo", anim, "Animation")) + end + + ---This is used to track when the next animation should start blending. + local ready = true + + return function(state, data) + if state.done then + ready = true + else + if not state.starting and ready then + ready = false + anim:play() + end + animBlend(state.anim, m_lerp(state.from, state.to, state.progress)) + end + end + end + + ---Generates a callback that forces all given animations to blend out if they are playing. + ---@param anims Animation[] + ---@return Lib.GS.AnimBlend.blendCallback + function callbackFunction.genBlendOut(anims) + -- Because some dumbass won't read the instructions... + ---@diagnostic disable-next-line: undefined-field + if anim.done ~= nil then + error("attempt to use generator 'genBlendOut' as a blend callback.", 2) + end + + if this.safe then + for i, anim in ipairs(anims) do + assert(chk.badarg("1[" .. i .. "]", "genBlendOut", anim, "Animation")) + end + end + + local ready = true + + return function(state) + if state.done then + ready = true + else + if state.starting and ready then + ready = false + for _, anim in ipairs(anims) do anim:stop() end + end + animBlend(state.anim, m_lerp(state.from, state.to, state.progress)) + end + end + end + + ---Generates a callback that plays one callback while blending in and another callback while blending out. + --- + ---If `nil` is given, the default callback is used. + ---@param blend_in? Lib.GS.AnimBlend.blendCallback + ---@param blend_out? Lib.GS.AnimBlend.blendCallback + ---@return Lib.GS.AnimBlend.blendCallback + function callbackFunction.genDualBlend(blend_in, blend_out) + -- The dumbass check is a bit further down. + + local tbin, tbout = type(blend_in), type(blend_out) + local infunc, outfunc = blend_in, blend_out + if tbin == "table" then + -- Because some dumbass won't read the instructions... + ---@diagnostic disable-next-line: undefined-field + if blend_in.done ~= nil then + error("attempt to use generator 'genDualBlend' as a blend callback.", 2) + end + local mt = getmetatable(blend_in) + if not (mt and mt.__call) then + error("bad argument #1 to 'genDualBlend' (function expected, got " .. tbin .. ")") + end + else + assert(chk.badarg(1, "genDualBlend", blend_in, "function", true)) + end + + if tbout == "table" then + local mt = getmetatable(blend_out) + if not (mt and mt.__call) then + error("bad argument #2 to 'genDualBlend' (function expected, got " .. tbin .. ")") + end + else + assert(chk.badarg(2, "genDualBlend", blend_out, "function", true)) + end + + return function(state, data) + (state.starting and (infunc or this.defaultCallback) or (outfunc or this.defaultCallback))(state, data) + end + end + + ---Generates a callback that plays other callbacks on a timeline. + --- + ---Callbacks generated by this function *ignore easing curves in favor of the curves provided by the timeline*. + --- + ---An example of a valid timeline: + ---```lua + ---...timeline({ + --- {time = 0, min = 0, max = 1, curve = "easeInSine"}, + --- {time = 0.25, min = 1, max = 0.5, curve = "easeOutCubic"}, + --- {time = 0.8, min = 0.5, max = 1, curve = "easeInCubic"} + ---}) + ---``` + ---@param tl Lib.GS.AnimBlend.timeline + ---@return Lib.GS.AnimBlend.blendCallback + function callbackFunction.genTimeline(tl) + -- Because some dumbass won't read the instructions... + ---@diagnostic disable-next-line: undefined-field + if tl.done ~= nil then + error("attempt to use generator 'genTimeline' as a blend callback.", 2) + end + + if this.safe then + assert(chk.badarg(1, "genTimeline", tl, "table")) + for i, kf in ipairs(tl) do + assert(chk.badarg("1[" .. i .. "]", "genTimeline", kf, "table")) + end + local time = 0 + local ftime = tl[1].time + if ftime ~= 0 then error("error in keyframe #1: timeline does not start at 0 (got " .. ftime .. ")") end + for i, kf in ipairs(tl) do + assert(chk.badnum("1[" .. i .. ']["time"]', "genTimeline", kf.time)) + if kf.time <= time then + error( + "error in keyframe #" .. i .. + ": timeline did not move forward (from " .. time .. " to " .. kf.time .. ")", 2 + ) + end + + if kf.min then assert(chk.badnum("1[" .. i .. ']["min"]', "genTimeline", kf.min)) end + if kf.max then assert(chk.badnum("1[" .. i .. ']["max"]', "genTimeline", kf.max)) end + + assert(chk.badarg("1[" .. i .. ']["callback"]', "genTimeline", kf.callback, "function", true)) + if type(kf.curve) ~= "string" then + assert(chk.badarg("1[" .. i .. ']["curve"]', "genTimeline", kf.callback, "function", true)) + elseif not easingCurve[kf.curve] then + error("bad argument 1[" .. i .. "][\"curve\"] of 'genTimeline' ('" .. kf.curve .. "' is not a valid curve)") + end + end + end + + return function(state, data) + ---@type Lib.GS.AnimBlend.tlKeyframe, Lib.GS.AnimBlend.tlKeyframe + local kf, nextkf + for _, _kf in ipairs(tl) do + if _kf.time > state.rawProgress then + if _kf.time < 1 then nextkf = _kf end + break + end + kf = _kf + end + + local adj_prog = m_map( + state.rawProgress, + kf.time, nextkf and nextkf.time or 1, + kf.min or 0, kf.max or 1 + ) + + local newstate = setmetatable( + {time = state.max * adj_prog, progress = (kf.curve or this.defaultCurve)(adj_prog)}, + {__index = state} + ); + (kf.callback or this.defaultCallback)(newstate, data) + end + end + + + ---===== EASING CURVES =====--- + + ---The `linear` easing curve. + --- + ---This is the default curve used by GSAnimBlend. + ---@param x number + ---@return number + function easingCurve.linear(x) return x end + + ---The `smoothstep` easing curve. + --- + ---This is a more performant, but slightly less accurate version of `easeInOutSine`. + ---@param x number + ---@return number + function easingCurve.smoothstep(x) return x^2 * (3 - 2 * x) end + + -- I planned to add easeOutIn curves but I'm lazy. I'll do it if people request it. + + ---The [`easeInSine`](https://easings.net/#easeInSine) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInSine(x) return 1 - m_cos(x * m_1s2pi) end + + ---The [`easeOutSine`](https://easings.net/#easeOutSine) easing curve. + ---@param x number + ---@return number + function easingCurve.easeOutSine(x) return m_sin(x * m_1s2pi) end + + ---The [`easeInOutSine`](https://easings.net/#easeInOutSine) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInOutSine(x) return (m_cos(x * m_pi) - 1) * -0.5 end + + ---The [`easeInQuad`](https://easings.net/#easeInQuad) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInQuad(x) return x^2 end + + ---The [`easeOutQuad`](https://easings.net/#easeOutQuad) easing curve. + ---@param x number + ---@return number + function easingCurve.easeOutQuad(x) return 1 - (1 - x)^2 end + + ---The [`easeInOutQuad`](https://easings.net/#easeInOutQuad) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInOutQuad(x) + return x < 0.5 + and 2 * x^2 + or 1 - (-2 * x + 2)^2 * 0.5 + end + + ---The [`easeInCubic`](https://easings.net/#easeInCubic) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInCubic(x) return x^3 end + + ---The [`easeOutCubic`](https://easings.net/#easeOutCubic) easing curve. + ---@param x number + ---@return number + function easingCurve.easeOutCubic(x) return 1 - (1 - x)^3 end + + ---The [`easeInOutCubic`](https://easings.net/#easeInOutCubic) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInOutCubic(x) + return x < 0.5 + and 4 * x^3 + or 1 - (-2 * x + 2)^3 * 0.5 + end + + ---The [`easeInQuart`](https://easings.net/#easeInQuart) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInQuart(x) return x^4 end + + ---The [`easeOutQuart`](https://easings.net/#easeOutQuart) easing curve. + ---@param x number + ---@return number + function easingCurve.easeOutQuart(x) return 1 - (1 - x)^4 end + + ---The [`easeInOutQuart`](https://easings.net/#easeInOutQuart) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInOutQuart(x) + return x < 0.5 + and 8 * x^4 + or 1 - (-2 * x + 2)^4 * 0.5 + end + + ---The [`easeInQuint`](https://easings.net/#easeInQuint) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInQuint(x) return x^5 end + + ---The [`easeOutQuint`](https://easings.net/#easeOutQuint) easing curve. + ---@param x number + ---@return number + function easingCurve.easeOutQuint(x) return 1 - (1 - x)^5 end + + ---The [`easeInOutQuint`](https://easings.net/#easeInOutQuint) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInOutQuint(x) + return x < 0.5 + and 16 * x^5 + or 1 - (-2 * x + 2)^5 * 0.5 + end + + ---The [`easeInExpo`](https://easings.net/#easeInExpo) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInExpo(x) + return x == 0 + and 0 + or 2^(10 * x - 10) + end + + ---The [`easeOutExpo`](https://easings.net/#easeOutExpo) easing curve. + ---@param x number + ---@return number + function easingCurve.easeOutExpo(x) + return x == 1 + and 1 + or 1 - 2^(-10 * x) + end + + ---The [`easeInOutExpo`](https://easings.net/#easeInOutExpo) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInOutExpo(x) + return (x == 0 or x == 1) and x + or x < 0.5 and 2^(20 * x - 10) * 0.5 + or (2 - 2^(-20 * x + 10)) * 0.5 + end + + ---The [`easeInCirc`](https://easings.net/#easeInCirc) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInCirc(x) return 1 - m_sqrt(1 - x^2) end + + ---The [`easeOutCirc`](https://easings.net/#easeOutCirc) easing curve. + ---@param x number + ---@return number + function easingCurve.easeOutCirc(x) return m_sqrt(1 - (x - 1)^2) end + + ---The [`easeInOutCirc`](https://easings.net/#easeInOutCirc) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInOutCirc(x) + return x < 0.5 + and (1 - m_sqrt(1 - (2 * x)^2)) * 0.5 + or (m_sqrt(1 - (-2 * x + 2)^2) + 1) * 0.5 + end + + ---The [`easeInBack`](https://easings.net/#easeInBack) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInBack(x) return 2.70158 * x^3 - 1.70158 * x^2 end + + ---The [`easeOutBack`](https://easings.net/#easeOutBack) easing curve. + ---@param x number + ---@return number + function easingCurve.easeOutBack(x) + x = x - 1 + return 1 + 2.70158 * x^3 + 1.70158 * x^2 + end + + ---The [`easeInOutBack`](https://easings.net/#easeInOutBack) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInOutBack(x) + x = x * 2 + return x < 1 + and (x^2 * (3.5949095 * x - 2.5949095)) * 0.5 + or ((x - 2)^2 * (3.5949095 * (x - 2) + 2.5949095) + 2) * 0.5 + end + + ---The [`easeInElastic`](https://easings.net/#easeInElastic) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInElastic(x) + return (x == 0 or x == 1) and x + or -(2^(10 * x - 10)) * m_sin((x * 10 - 10.75) * m_2s3pi) + end + + ---The [`easeOutElastic`](https://easings.net/#easeOutElastic) easing curve. + ---@param x number + ---@return number + function easingCurve.easeOutElastic(x) + return (x == 0 or x == 1) and x + or 2^(-10 * x) * m_sin((x * 10 - 0.75) * m_2s3pi) + 1 + end + + ---The [`easeInOutElastic`](https://easings.net/#easeInOutElastic) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInOutElastic(x) + return (x == 0 or x == 1) and x + or x < 0.5 and -(2^(x * 20 - 10) * m_sin((x * 20 - 11.125) * m_4s9pi)) * 0.5 + or (2^(x * -20 + 10) * m_sin((x * 20 - 11.125) * m_4s9pi)) * 0.5 + 1 + end + + ---The [`easeInBounce`](https://easings.net/#easeInBounce) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInBounce(x) + x = 1 - x + return 1 - ( + x < (1 / 2.75) and 7.5625 * x^2 + or x < (2 / 2.75) and 7.5625 * (x - 1.5 / 2.75)^2 + 0.75 + or x < (2.5 / 2.75) and 7.5625 * (x - 2.25 / 2.75)^2 + 0.9375 + or 7.5625 * (x - 2.625 / 2.75)^2 + 0.984375 + ) + end + + ---The [`easeOutBounce`](https://easings.net/#easeOutBounce) easing curve. + ---@param x number + ---@return number + function easingCurve.easeOutBounce(x) + return x < (1 / 2.75) and 7.5625 * x^2 + or x < (2 / 2.75) and 7.5625 * (x - 1.5 / 2.75)^2 + 0.75 + or x < (2.5 / 2.75) and 7.5625 * (x - 2.25 / 2.75)^2 + 0.9375 + or 7.5625 * (x - 2.625 / 2.75)^2 + 0.984375 + end + + ---The [`easeInOutBounce`](https://easings.net/#easeInOutBounce) easing curve. + ---@param x number + ---@return number + function easingCurve.easeInOutBounce(x) + local s = x < 0.5 and -1 or 1 + x = x < 0.5 and 1 - 2 * x or 2 * x - 1 + return (1 + s * ( + x < (1 / 2.75) and 7.5625 * x^2 + or x < (2 / 2.75) and 7.5625 * (x - 1.5 / 2.75)^2 + 0.75 + or x < (2.5 / 2.75) and 7.5625 * (x - 2.25 / 2.75)^2 + 0.9375 + or 7.5625 * (x - 2.625 / 2.75)^2 + 0.984375 + )) * 0.5 + end + + + do ---@source https://github.com/gre/bezier-easing/blob/master/src/index.js + + -- Bezier curves are extremely expensive to use especially with higher settings. + -- Every function has been in-lined to improve instruction counts as much as possible. + -- + -- In-lined functions are labeled with a --[[funcName(param1, paramN, ...)]] + -- If an in-lined function spans more than one line, it will contain a #marker# that will appear later to close the + -- function. + -- + -- All of the functions below in the block comment are in-lined somewhere else. + + local default_subdiv_iters = 10 + local default_subdiv_prec = 0.0000001 + local default_newton_minslope = 0.001 + local default_newton_iters = 4 + local default_sample_size = 11 + + --[=[ + local function _A(A1, A2) return 1.0 - 3.0 * A2 + 3.0 * A1 end + local function _B(A1, A2) return 3.0 * A2 - 6.0 * A1 end + local function _C(A1) return 3.0 * A1 end + + -- Returns x(t) given t, x1, and x2, or y(t) given t, y1, and y2. + local function calcBezier(T, A1, A2) + --[[((_A(A1, A2) * T + _B(A1, A2)) * T + _C(A1)) * T]] + return (((1.0 - 3.0 * A2 + 3.0 * A1) * T + (3.0 * A2 - 6.0 * A1)) * T + (3.0 * A1)) * T + end + + -- Returns dx/dt given t, x1, and x2, or dy/dt given t, y1, and y2. + local function getSlope(T, A1, A2) + --[[3.0 * _A(A1, A2) * T ^ 2 + 2.0 * _B(A1, A2) * T + _C(A1)]] + return 3.0 * (1.0 - 3.0 * A2 + 3.0 * A1) * T ^ 2 + 2.0 * (3.0 * A2 - 6.0 * A1) * T + (3.0 * A1) + end + + local function binarySubdivide(X, A, B, X1, X2) + local curX, curT + local iter = 0 + while (m_abs(curX) > SUBDIVISION_PRECISION and iter < SUBDIVISION_MAX_ITERATIONS) do + curT = A + (B - A) * 0.5 + --[[calcBezier(curT, X1, X2) - X]] + curX = ((((1.0 - 3.0 * X2 + 3.0 * X1) * curT + (3.0 * X2 - 6.0 * X1)) * curT + (3.0 * X1)) * curT) - X + if curX > 0.0 then B = curT else A = curT end + iter = iter + 1 + end + return curT or (A + (B - A) * 0.5) + end + + local function newtonRaphsonIterate(X, Tguess, X1, X2) + for _ = 1, NEWTON_ITERATIONS do + --[[getSlope(Tguess, X1, X2)]] + local curSlope = 3.0 * (1.0 - 3.0 * X2 + 3.0 * X1) * Tguess ^ 2 + 2.0 * (3.0 * X2 - 6.0 * X1) * Tguess + (3.0 * X1) + if (curSlope == 0.0) then return Tguess end + --[[calcBezier(Tguess, X1, X2) - X]] + local curX = ((((1.0 - 3.0 * X2 + 3.0 * X1) * Tguess + (3.0 * X2 - 6.0 * X1)) * Tguess + (3.0 * X1)) * Tguess) - X + Tguess = Tguess - (curX / curSlope) + end + return Tguess + end + + local function getTForX(X) + local intervalStart = 0.0 + local curSample = 1 + local lastSample = SAMPLE_SIZE - 1 + + while curSample ~= lastSample and SAMPLES[curSample] <= X do + intervalStart = intervalStart + STEP_SIZE + curSample = curSample + 1 + end + curSample = curSample - 1 + + -- Interpolate to provide an initial guess for t + local dist = (X - SAMPLES[curSample]) / (SAMPLES[curSample + 1] - SAMPLES[curSample]) + local Tguess = intervalStart + dist * STEP_SIZE + + local initSlope = getSlope(Tguess, X1, X2) + if (initSlope >= NEWTON_MIN_SLOPE) then + return newtonRaphsonIterate(X, Tguess, X1, X2) + elseif (initSlope == 0) then + return Tguess + else + return binarySubdivide(X, intervalStart, intervalStart + STEP_SIZE, X1, X2) + end + end + ]=] + + local BezierMT = { + ---@param self Lib.GS.AnimBlend.Bezier + __call = function(self, X) + local X1, X2 = self[1], self[3] + local Y1, Y2 = self[2], self[4] + local T + --[[getTForX(state.progress) #start getTForX#]] + local intervalStart = 0 + local curSample = 1 + local lastSample = self.options.sample_size - 1 + local samples = self.samples + local step_size = samples.step + + while curSample ~= lastSample and samples[curSample] <= X do + intervalStart = intervalStart + step_size + curSample = curSample + 1 + end + curSample = curSample - 1 + + -- Interpolate to provide an initial guess for T + local dist = (X - samples[curSample]) / (samples[curSample + 1] - samples[curSample]) + local Tguess = intervalStart + dist * step_size + + local c1 = (1.0 - 3.0 * X2 + 3.0 * X1) + local c2 = (3.0 * X2 - 6.0 * X1) + local c3 = (3.0 * X1) + --[[getSlope(Tguess, X1, X2)]] + local initSlope = 3.0 * c1 * Tguess ^ 2 + 2.0 * c2 * Tguess + c3 + if (initSlope >= self.options.newton_minslope) then + --[[newtonRaphsonIterate(X, Tguess, X1, X2)]] + for _ = 1, self.options.newton_iters do + --[[getSlope(Tguess, X1, X2)]] + local curSlope = 3.0 * c1 * Tguess ^ 2 + 2.0 * c2 * Tguess + c3 + if (curSlope == 0.0) then break end + --[[calcBezier(Tguess, X1, X2) - X]] + local curX = (((c1 * Tguess + c2) * Tguess + c3) * Tguess) - X + Tguess = Tguess - (curX / curSlope) + end + T = Tguess + elseif (initSlope == 0) then + T = Tguess + else + local A = intervalStart + local B = intervalStart + step_size + --[[binarySubdivide(X, A, B, X1, X2)]] + local curX, curT + local iter = 0 + while (m_abs(curX) > self.options.subdiv_prec and iter < self.options.subdiv_iters) do + curT = A + (B - A) * 0.5 + --[[calcBezier(curT, X1, X2) - X]] + curX = ((((1.0 - 3.0 * X2 + 3.0 * X1) * curT + (3.0 * X2 - 6.0 * X1)) * curT + (3.0 * X1)) * curT) - X + if curX > 0.0 then B = curT else A = curT end + iter = iter + 1 + end + T = curT or (A + (B - A) * 0.5) + end + --#end getTForX# + --[[calcBezier(T, Y1, Y2)]] + return (((1.0 - 3.0 * Y2 + 3.0 * Y1) * T + (3.0 * Y2 - 6.0 * Y1)) * T + (3.0 * Y1)) * T + end, + __index = { + wrap = function(self) return function(state, data) self(state, data) end end + }, + type = "Bezier" + } + + + ---Generates a custom bezier curve. + --- + ---These are expensive to run so use them sparingly or use low settings. + ---@param x1 number + ---@param y1 number + ---@param x2 number + ---@param y2 number + ---@param options? Lib.GS.AnimBlend.BezierOptions + ---@return Lib.GS.AnimBlend.blendCurve + function callbackFunction.genBezier(x1, y1, x2, y2, options) + -- Because some dumbass won't read the instructions... + ---@diagnostic disable-next-line: undefined-field + if type(x1) == "table" and x1.done ~= nil then + error("attempt to use generator 'bezierEasing' as a blend callback.", 2) + end + + -- Optimization. This may cause an issue if a Bezier object is expected. + -- If you actually need a Bezier object then don't make a linear bezier lmao. + if x1 == y1 and x2 == y2 then return easingCurve.linear end + + ---===== Verify options =====--- + local to = type(options) + if to == "nil" then + options = { + newton_iters = default_newton_iters, + newton_minslope = default_newton_minslope, + subdiv_prec = default_subdiv_prec, + subdiv_iters = default_subdiv_iters, + sample_size = default_sample_size + } + elseif to ~= "table" then + error("bad argument #5 to 'bezierEasing' (table expected, got " .. to .. ")") + else + local safe = this.safe + local oni = options.newton_iters + if oni == nil then + options.newton_iters = default_newton_iters + elseif safe then + assert(chk.badnum('5["newton_iters"]', "bezierEasing", oni)) + end + + local onm = options.newton_minslope + if onm == nil then + options.newton_minslope = default_newton_minslope + elseif safe then + assert(chk.badnum('5["newton_minslope"]', "bezierEasing", onm)) + end + + local osp = options.subdiv_prec + if osp == nil then + options.subdiv_prec = default_subdiv_prec + elseif safe then + assert(chk.badnum('5["subdiv_prec"]', "bezierEasing", osp)) + end + + local osi = options.subdiv_iters + if osi == nil then + options.subdiv_iters = default_subdiv_iters + elseif safe then + assert(chk.badnum('5["subdiv_iters"]', "bezierEasing", osi)) + end + + local oss = options.sample_size + if oss == nil then + options.sample_size = default_sample_size + elseif safe then + assert(chk.badnum('5["sample_size"]', "bezierEasing", oss)) + end + end + + if this.safe then + chk.badnum(1, "bezierEasing", x1) + chk.badnum(2, "bezierEasing", y1) + chk.badnum(3, "bezierEasing", x2) + chk.badnum(4, "bezierEasing", y2) + end + + if x1 > 1 or x1 < 0 then + error("bad argument #1 to 'bezierEasing' (value out of [0, 1] range)", 2) + end + if x2 > 1 or x2 < 0 then + error("bad argument #3 to 'bezierEasing' (value out of [0, 1] range)", 2) + end + + local samples = {step = 1 / (options.sample_size - 1)} + + ---@type Lib.GS.AnimBlend.bezierCurve + local obj = setmetatable({ + x1, y1, x2, y2, + options = options, + samples = samples + }, BezierMT) + + local step = samples.step + local c1 = (1.0 - 3.0 * x2 + 3.0 * x1) + local c2 = (3.0 * x2 - 6.0 * x1) + local c3 = (3.0 * x1) + for i = 0, options.sample_size - 1 do + local istep = i * step + --[[calcBezier(istep, X1, X2)]] + samples[i] = ((c1 * istep + c2) * istep + c3) * istep + end + + return obj + end + end + + + ---The default callback used by this library. This is used when no other callback is being used. + ---@type Lib.GS.AnimBlend.blendCallback + this.defaultCallback = callbackFunction[("base")] + ---The default curve used by this library. This is used when no other curve is being used. + ---@type Lib.GS.AnimBlend.blendCurve + this.defaultCurve = easingCurve[("linear")] + this.callback = callbackFunction + this.curve = easingCurve + + + -----===================================== BLENDING LOGIC =====================================----- + + events.TICK:register(function() + ticker = ticker + 1 + end, "GSAnimBlend:Tick_TimeTicker") + + events.RENDER:register(function(delta, ctx) + if not allowed_contexts[ctx] or (delta == last_delta and ticker == 0) then return end + local elapsed_time = ticker + (delta - last_delta) + ticker = 0 + for anim in pairs(blending) do + -- Every frame, update time and progress, then call the callback. + local data = animData[anim] + local state = data.state + if not state.paused then + if state.delay > 0 then state.delay = state.delay - elapsed_time end + if state.delay <= 0 then + local cbs = state.callbackState + state.time = state.time + elapsed_time + cbs.max = state.max or (state.starting and data.blendTimeIn or data.blendTimeOut) + if not state.from then + cbs.from = data.blendSane + cbs.to = state.to + elseif not state.to then + cbs.from = state.from + cbs.to = data.blendSane + else + cbs.from = state.from + cbs.to = state.to + end + + -- When a blend stops, update all info to signal it has stopped. + if (state.time >= cbs.max) or (animGetPlayState(anim) == "STOPPED") then + cbs.time = cbs.max + cbs.rawProgress = 1 + cbs.progress = state.curve(1) + cbs.done = true + + -- Do final callback. + state.callback(cbs, animData[anim]) + blending[anim] = nil + animPlaying(cbs.anim, state.starting) + animBlend(cbs.anim, data.blend) + else + cbs.time = state.time + cbs.rawProgress = cbs.time / cbs.max + cbs.progress = state.curve(cbs.rawProgress) + state.callback(cbs, animData[anim]) + end + end + end + end + last_delta = delta + end, "GSAnimBlend:Render_UpdateBlendStates") + + + -----================================ METATABLE MODIFICATIONS =================================----- + + ---===== FIELDS =====--- + + local animationGetters = {} + local animationSetters = {} + + function animationGetters:blendCallback() + if this.safe then assert(chk.badarg(1, "__index", self, "Animation")) end + return animData[self].callback + end + function animationSetters:blendCallback(value) + if this.safe then + assert(chk.badarg(1, "__newindex", self, "Animation")) + if type(value) ~= "string" then + assert(chk.badarg(3, "__newindex", value, "function", true)) + end + end + + if type(func) == "string" then + value = easingCurve[value] + if not value then error("bad argument #3 of '__newindex' ('" .. func .. "' is not a valid curve)") end + end + animData[self].callback = value + end + + + ---===== METHODS =====--- + + local animationMethods = {} + + function animationMethods:newCode(time, code) + local data = animData[self] + if time == 0 then + ---@diagnostic disable-next-line: redundant-parameter + data.startFunc = load(code, ("animations.%s.%s"):format(nbt.mdl, nbt.name)) + data.startSource = code + elseif time == data.length then + ---@diagnostic disable-next-line: redundant-parameter + data.endFunc = load(code, ("animations.%s.%s"):format(nbt.mdl, nbt.name)) + data.endSource = code + else + return animNewCode(self, time, code) + end + + return self + end + + function animationMethods:play(instant) + if this.safe then assert(chk.badarg(1, "play", self, "Animation")) end + + if blending[self] then + local data = animData[self] + local state = data.state + if instant then + local cbs = state.callbackState + cbs.progress = 1 + cbs.time = cbs.max + cbs.done = true + state.callback(cbs, data) + blending[self] = nil + animBlend(self, data.blend) + return animPlay(self) + elseif state.paused then + state.paused = false + return self + elseif state.starting then + return self + end + + animStop(self) + local time = data.blendTimeIn * state.callbackState.progress + this.blend(self, time, animGetBlend(self), nil, true) + return self + elseif instant or animData[self].blendTimeIn == 0 or animGetPlayState(self) ~= "STOPPED" then + return animPlay(self) + end + + this.blend(self, nil, 0, nil, true) + return self + end + + function animationMethods:stop(instant) + if this.safe then assert(chk.badarg(1, "stop", self, "Animation")) end + + if blending[self] then + local data = animData[self] + local state = data.state + if instant then + local cbs = state.callbackState + cbs.progress = 1 + cbs.time = cbs.max + cbs.done = true + state.callback(cbs, data) + blending[self] = nil + animBlend(self, data.blend) + return animStop(self) + elseif not state.starting then + return self + end + + local time = data.blendTimeOut * state.callbackState.progress + this.blend(self, time, animGetBlend(self), 0, false) + return self + elseif instant or animData[self].blendTimeOut == 0 or animGetPlayState(self) == "STOPPED" then + return animStop(self) + end + + this.blend(self, nil, nil, 0, false) + return self + end + + function animationMethods:pause() + if this.safe then assert(chk.badarg(1, "pause", self, "Animation")) end + + if blending[self] then + animData[self].state.paused = true + return self + end + + return animPause(self) + end + + function animationMethods:restart(blend) + if this.safe then assert(chk.badarg(1, "restart", self, "Animation")) end + + if blend then + animStop(self) + this.blend(self, nil, 0, nil, true) + elseif blending[self] then + animBlend(self, animData[self].blend) + blending[self] = nil + else + animRestart(self) + end + + return self + end + + + ---===== GETTERS =====--- + + function animationMethods:getBlendTime() + if this.safe then assert(chk.badarg(1, "getBlendTime", self, "Animation")) end + local data = animData[self] + return data.blendTimeIn, data.blendTimeOut + end + + function animationMethods:isBlending() + if this.safe then assert(chk.badarg(1, "isBlending", self, "Animation")) end + return not not blending[self] + end + + function animationMethods:getBlend() + if this.safe then assert(chk.badarg(1, "getBlend", self, "Animation")) end + return animData[self].blend + end + + function animationMethods:getPlayState() + if this.safe then assert(chk.badarg(1, "getPlayState", self, "Animation")) end + return blending[self] and (animData[self].state.paused and "PAUSED" or "PLAYING") or animGetPlayState(self) + end + + function animationMethods:getTime() + if this.safe then assert(chk.badarg(1, "getPlayState", self, "Animation")) end + local state = animData[self].state + return blending[self] and state.delay > 0 and (state.delay / -20) or animGetTime(self) + end + + function animationMethods:isPlaying() + if this.safe then assert(chk.badarg(1, "isPlaying", self, "Animation")) end + return blending[self] and not animData[self].state.paused or animIsPlaying(self) + end + + function animationMethods:isPaused() + if this.safe then assert(chk.badarg(1, "isPaused", self, "Animation")) end + return (not blending[self] or animData[self].state.paused) and animIsPaused(self) + end + + + ---===== SETTERS =====--- + + function animationMethods:setBlendTime(time_in, time_out) + if time_in == nil then time_in = 0 end + if this.safe then + assert(chk.badarg(1, "setBlendTime", self, "Animation")) + assert(chk.badnum(2, "setBlendTime", time_in)) + assert(chk.badnum(3, "setBlendTime", time_out, true)) + end + + animData[self].blendTimeIn = m_max(time_in, 0) + animData[self].blendTimeOut = m_max(time_out or time_in, 0) + return self + end + + function animationMethods:setOnBlend(func) + if this.safe then + assert(chk.badarg(1, "setOnBlend", self, "Animation")) + assert(chk.badarg(2, "setOnBlend", func, "function", true)) + end + + animData[self].callback = func + return self + end + + function animationMethods:setBlendCurve(curve) + if this.safe then + assert(chk.badarg(1, "setBlendCurve", self, "Animation")) + if type(curve) ~= "string" then + assert(chk.badarg(2, "setBlendCurve", curve, "function", true)) + end + end + + if type(curve) == "string" then + local str = curve + curve = easingCurve[str] + if not curve then error("bad argument #2 of 'setBlendCurve' ('" .. str .. "' is not a valid curve)") end + end + animData[self].curve = curve + return self + end + + function animationMethods:setBlend(weight) + if weight == nil then weight = 0 end + if this.safe then + assert(chk.badarg(1, "setBlend", self, "Animation")) + assert(chk.badarg(2, "setBlend", weight, "number")) + end + + local data = animData[self] + data.blend = weight + data.blendSane = makeSane(weight, 0) + return blending[self] and self or animBlend(self, weight) + end + + function animationMethods:setLength(len) + if len == nil then len = 0 end + if len == anim:getLength() then return animLength(self, len) end + if this.safe then + assert(chk.badarg(1, "setLength", self, "Animation")) + assert(chk.badarg(2, "setLength", len, "number")) + end + + local data = animData[self] + if data.endSource or (data.length and data.length ~= 0) then + animNewCode(self, data.length, data.endSource or "") + data.endFunc = nil + data.endSource = nil + end + + local lenSane = makeSane(len, false) + + if data.length == 0 then + animNewCode(self, 0, blendCommand:format(data.triggerId, "true")) + end + + if lenSane then + if lenSane == 0 then + animNewCode(self, 0, blendCommand:format(data.triggerId, "nil")) + else + animNewCode(self, lenSane, blendCommand:format(data.triggerId, "false")) + end + end + data.length = lenSane + + return animLength(self, len) + end + + function animationMethods:setPlaying(state, instant) + if this.safe then assert(chk.badarg(1, "setPlaying", self, "Animation")) end + return state and self:play(instant) or self:stop(instant) + end + + + ---===== CHAINED =====--- + + animationMethods.blendTime = animationMethods.setBlendTime + animationMethods.onBlend = animationMethods.setOnBlend + animationMethods.blendCurve = animationMethods.setBlendCurve + animationMethods.blend = animationMethods.setBlend + animationMethods.length = animationMethods.setLength + animationMethods.playing = animationMethods.setPlaying + + + ---===== METAMETHODS =====--- + + function animation_mt:__index(key) + if animationGetters[key] then + return animationGetters[key](self) + elseif animationMethods[key] then + return animationMethods[key] + else + return _animationIndex(self, key) + end + end + + function animation_mt:__newindex(key, value) + if animationSetters[key] then + animationSetters[key](self, value) + else + _animationNewIndex(self, key, value) + end + end + + + -----============================== ANIMATION API MODIFICATIONS ===============================----- + + if animationapi_mt then + local apiMethods = {} + + if FUTURE then + function apiMethods:getPlaying(hold, ignore_blending) + if this.safe then assert(chk.badarg(1, "getPlaying", self, "AnimationAPI")) end + if ignore_blending then return animapiGetPlaying(animations, hold) end + local anims = {} + ---@diagnostic disable-next-line: redundant-parameter + for _, anim in ipairs(animations:getAnimations(hold)) do + if anim:isPlaying() then anims[#anims+1] = anim end + end + + return anims + end + else + function apiMethods:getPlaying(ignore_blending) + if this.safe then assert(chk.badarg(1, "getPlaying", self, "AnimationAPI")) end + if ignore_blending then return animapiGetPlaying(animations) end + local anims = {} + for _, anim in ipairs(animations:getAnimations()) do + if anim:isPlaying() then anims[#anims+1] = anim end + end + + return anims + end + end + + function animationapi_mt:__index(key) + return apiMethods[key] or _animationapiIndex(self, key) + end + end + + + return setmetatable(this, thismt) +end) + +if s then + return this +else -- This is *all* error handling. + ---@cast this string + local e_msg, e_stack = string.match(this, "^(.-)\nstack traceback:\n(.*)$") + + -- Modify Stack + local stack_lines = {} + local skip_next + for line in e_stack:gmatch("[ \t]*([^\n]+)") do + -- If the level is not a Java level, keep it. + if not line:match("^%[Java]:") then + if not skip_next then + stack_lines[#stack_lines+1] = (" §4" .. line) + else + skip_next = false + end + elseif line:match("in function 'pcall'") then + -- If the level *is* a Java level and it contains the pcall, remove both it and the level above. + stack_lines[#stack_lines] = stack_lines[#stack_lines]:gsub("in function %b<>", "in protected chunk") + skip_next = true + end + end + + local extra_reason = "" + + local check = 0 + if FIG[1] then + local check = cmp(FIG[1]) + if check == -1 then + extra_reason = ("\n§7§oYour Figura version (%s) is below the recommended minimum of %s§r"):format(CLIENT_VERSION, FIG[1]) + elseif not check then + check = -1 + extra_reason = ("\n§7§oYour Figura version (%s) is not valid!§r"):format(CLIENT_VERSION) + end + end + if check >= 0 and FIG[2] then + local check = cmp(FIG[2]) + if check == -1 then + extra_reason = ("\n§7§oYour Figura version (%s) is above the recommended maximum of %s§r"):format(CLIENT_VERSION, FIG[2]) + elseif not check then + extra_reason = ("\n§7§oYour Figura version (%s) is not valid!§r"):format(CLIENT_VERSION) + end + end + + error( + ( + "'%s' failed to load\z + \n§7INFO: %s v%s | %s§r%s\z + \ncaused by:\z + \n §4%s\z + \n §7stack traceback:\z + \n%s§r" + ):format( + ID, + ID, VER, CLIENT_VERSION, extra_reason, + e_msg:gsub("\n", "\n §4"), + table.concat(stack_lines, "\n") + ), + 2 + ) +end + +--|==================================================================================================================|-- +--|=====|| DOCUMENTATION ||==========================================================================================|-- +--||=:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:=:==:=:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:==:=||-- + +---@diagnostic disable: duplicate-set-field, duplicate-doc-field, duplicate-doc-alias +---@diagnostic disable: missing-return, unused-local, lowercase-global, unreachable-code + +---@class Lib.GS.AnimBlend.AnimData +---The blending-in time of this animation in ticks. +---@field blendTimeIn number +---The blending-out time of this animation in ticks. +---@field blendTimeOut number +---The faked blend weight value of this animation. +---@field blend number +---The preferred blend weight that blending will use. +---@field blendSane number +---Where in the timeline the stop instruction is placed. +---If this is `false`, there is no stop instruction due to length limits. +---@field length number|false +---The id for this animation's blend trigger +---@field triggerId integer +---The original instruction keyframe at the start of the animation. +---@field startFunc? function +---The original instruction keyframe at the end of the animation. +---@field endFunc? function +---The original string source of the instruction keyframe at the start of the animation. +---@field startSource? string +---The original string source of the instruction keyframe at the end of the animation. +---@field endSource? string +---The callback function this animation will call every frame while it is blending and one final +---time when blending finishes. +---@field callback? Lib.GS.AnimBlend.blendCallback +---The curve that the blending progress is modified with. +---@field curve? Lib.GS.AnimBlend.blendCurve +---The active blend state. +---@field state? Lib.GS.AnimBlend.BlendState + +---@class Lib.GS.AnimBlend.BlendState +---The amount of time this blend has been running for in ticks. +---@field time number +---The maximum time this blend will run in ticks. +---@field max number|false +---The starting blend weight. +---@field from number|false +---The ending blend weight. +---@field to number|false +---The callback to call each blending frame. +---@field callback Lib.GS.AnimBlend.blendCallback +---The curve that the blending progress is modified with. +---@field curve? Lib.GS.AnimBlend.blendCurve +---The state proxy used in the blend callback function. +---@field callbackState Lib.GS.AnimBlend.CallbackState +---Determines if this blend is paused. +---@field paused boolean +---Determines if this blend is starting or ending an animation. +---@field starting boolean +---Determines how long a delay waits before playing. +---@field delay number + +---@class Lib.GS.AnimBlend.CallbackState +---The animation this callback is acting on. +---@field anim Animation +---The amount of time this blend has been running for in ticks. +---@field time number +---The maximum time this blend will run in ticks. +---@field max number +---The progress as a percentage modified by the current curve. +---This can be above 1 or below 0 if the curve results in it. +---@field progress number +---The progress as a percentage without any curve modifications. +---@field rawProgress number +---The starting blend weight. +---@field from number +---The ending blend weight. +---@field to number +---Determines if this blend is starting or ending an animation. +---@field starting boolean +---Determines if this blend is finishing up. +---@field done boolean + +---@class Lib.GS.AnimBlend.BezierOptions +---How many time to use the Newton-Raphson method to approximate. +---Higher numbers create more accurate approximations at the cost of instructions. +--- +---The default value is `4`. +---@field newton_iters? integer +---The minimum slope required to attempt to use the Newton-Raphson method. +---Lower numbers cause smaller slopes to be approximated at the cost of instructions. +--- +---The default value is `0.001`. +---@field newton_minslope? number +---The most precision that subdivision will allow before stopping early. +---Lower numbers cause subdivision to allow more precision at the cost of instructions. +--- +---The default value is `0.0000001`. +---@field subdiv_prec? number +---The maximum amount of times that subdivision will be performed. +---Higher numbers cause more subdivision to happen at the cost of instructions. +--- +---The default value is `10`. +---@field subdiv_iters? integer +---The amount of samples to gather from the bezier curve. +---Higher numbers gather more samples at the cost of more instructions when creating the curve. +---Lower numbers gather less samples at the cost of more instructions when blending with the curve. +--- +---The default value is `11`. +---@field sample_size? integer + +---@class Lib.GS.AnimBlend.Bezier: function +---@overload fun(progress: number): number +---The X1 value. +---@field [1] number +---The Y1 value. +---@field [2] number +---The X2 value. +---@field [3] number +---The Y2 value. +---@field [4] number +---The options used to make this bezier. +---@field options Lib.GS.AnimBlend.BezierOptions +---The samples gathered from this bezier. +---@field samples {step: number, [integer]: number} + +---@class Lib.GS.AnimBlend.tlKeyframe +---The progress this keyframe starts at in the range [0, 1). +--- +---If the first keyframe does not start at `0`, an error will be thrown. +---A keyframe at or after time `1` will never run as completing the blend will be preferred. +---@field time number +---The starting adjusted-progress of this keyframe. +---Despite the name of this option, it does not need to be smaller than `max`. +--- +---All keyframes get an adjusted-progress which starts when the keyframe starts and ends when the next keyframe (or the +---end of the timeline) is hit. +--- +---The default value is `0`. +---@field min? number +---The ending adjusted-progress of this keyframe. +---Despite the name of this option, it does not need to be bigger than `min`. +--- +---All keyframes get an adjusted-progress which starts when the keyframe starts and ends when the next keyframe (or the +---end of the timeline) is hit. +--- +---The default value is `1`. +---@field max? number +---The blending callback to use for this entire keyframe. +---The adjusted-progress is given to this callback as it runs. +--- +---If `nil` is given, the default callback is used. +--- +---Note: Blending callbacks called by this function will **never** call cleanup code. Care should be taken to make sure +---this does not break anything. +---@field callback? Lib.GS.AnimBlend.blendCallback +---The easing curve to use for this entire keyframe. +---The adjusted-progress is given to this callback as it runs. +--- +---If a string is given instead of a callback, it is treated as the name of a curve found in +---`.callbackCurve`. +---If `nil` is given, the default curve is used. +---@field curve? Lib.GS.AnimBlend.blendCurve | Lib.GS.AnimBlend.curve + +---@alias Lib.GS.AnimBlend.blendCallback +---| fun(state: Lib.GS.AnimBlend.CallbackState, data: Lib.GS.AnimBlend.AnimData) + +---@alias Lib.GS.AnimBlend.blendCurve fun(progress: number): number + +---@alias Lib.GS.AnimBlend.bezierCurve Lib.GS.AnimBlend.Bezier | Lib.GS.AnimBlend.blendCurve + +---@alias Lib.GS.AnimBlend.timeline Lib.GS.AnimBlend.tlKeyframe[] + +---@alias Lib.GS.AnimBlend.curve +---| "linear" # The default blending curve. Goes from 0 to 1 without any fancy stuff. +---| "smoothStep" # A more performant but less accurate version of easeInOutSine. +---| "easeInSine" # [Learn More...](https://easings.net/#easeInSine) +---| "easeOutSine" # [Learn More...](https://easings.net/#easeOutSine) +---| "easeInOutSine" # [Learn More...](https://easings.net/#easeInOutSine) +---| "easeInQuad" # [Learn More...](https://easings.net/#easeInQuad) +---| "easeOutQuad" # [Learn More...](https://easings.net/#easeOutQuad) +---| "easeInOutQuad" # [Learn More...](https://easings.net/#easeInOutQuad) +---| "easeInCubic" # [Learn More...](https://easings.net/#easeInCubic) +---| "easeOutCubic" # [Learn More...](https://easings.net/#easeOutCubic) +---| "easeInOutCubic" # [Learn More...](https://easings.net/#easeInOutCubic) +---| "easeInQuart" # [Learn More...](https://easings.net/#easeInQuart) +---| "easeOutQuart" # [Learn More...](https://easings.net/#easeOutQuart) +---| "easeInOutQuart" # [Learn More...](https://easings.net/#easeInOutQuart) +---| "easeInQuint" # [Learn More...](https://easings.net/#easeInQuint) +---| "easeOutQuint" # [Learn More...](https://easings.net/#easeOutQuint) +---| "easeInOutQuint" # [Learn More...](https://easings.net/#easeInOutQuint) +---| "easeInExpo" # [Learn More...](https://easings.net/#easeInExpo) +---| "easeOutExpo" # [Learn More...](https://easings.net/#easeOutExpo) +---| "easeInOutExpo" # [Learn More...](https://easings.net/#easeInOutExpo) +---| "easeInCirc" # [Learn More...](https://easings.net/#easeInCirc) +---| "easeOutCirc" # [Learn More...](https://easings.net/#easeOutCirc) +---| "easeInOutCirc" # [Learn More...](https://easings.net/#easeInOutCirc) +---| "easeInBack" # [Learn More...](https://easings.net/#easeInBack) +---| "easeOutBack" # [Learn More...](https://easings.net/#easeOutBack) +---| "easeInOutBack" # [Learn More...](https://easings.net/#easeInOutBack) +---| "easeInElastic" # [Learn More...](https://easings.net/#easeInElastic) +---| "easeOutElastic" # [Learn More...](https://easings.net/#easeOutElastic) +---| "easeInOutElastic" # [Learn More...](https://easings.net/#easeInOutElastic) +---| "easeInBounce" # [Learn More...](https://easings.net/#easeInBounce) +---| "easeOutBounce" # [Learn More...](https://easings.net/#easeOutBounce) +---| "easeInOutBounce" # [Learn More...](https://easings.net/#easeInOutBounce) + + +---@class Animation +---#### [GS AnimBlend Library] +---The callback that should be called every frame while the animation is blending. +--- +---This allows adding custom behavior to the blending feature. +--- +---If this is `nil`, it will default to the library's basic callback. +---@field blendCallback? Lib.GS.AnimBlend.blendCallback +local Animation + + +---===== METHODS =====--- + +---#### [GS AnimBlend Library] +---Starts or resumes this animation. Does nothing if the animation is already playing. +---If `instant` is set, no blending will occur. +--- +---If `instant` is `nil`, it will default to `false`. +---@generic self +---@param self self +---@param instant? boolean +---@return self +function Animation:play(instant) end + +---#### [GS AnimBlend Library] +---Starts this animation from the beginning, even if it is currently paused or playing. +--- +---If `blend` is set, it will also restart with a blend. +---@generic self +---@param self self +---@param blend? boolean +---@return self +function Animation:restart(blend) end + +---#### [GS AnimBlend Library] +---Stops this animation. +---If `instant` is set, no blending will occur. +--- +---If `instant` is `nil`, it will default to `false`. +---@generic self +---@param self self +---@param instant? boolean +---@return self +function Animation:stop(instant) end + + +---===== GETTERS =====--- + +---#### [GS AnimBlend Library] +---Gets the blending times of this animation in ticks. +---@return number, number +function Animation:getBlendTime() end + +---#### [GS AnimBlend Library] +---Gets if this animation is currently blending. +---@return boolean +function Animation:isBlending() end + + +---===== SETTERS =====--- + +---#### [GS AnimBlend Library] +---Sets the blending time of this animation in ticks. +---@generic self +---@param self self +---@param time? number +---@return self +function Animation:setBlendTime(time) end + +---#### [GS AnimBlend Library] +---Sets the blending-in and blending-out times of this animation in ticks. +---@generic self +---@param self self +---@param time_in? number +---@param time_out? number +---@return self +function Animation:setBlendTime(time_in, time_out) end + +---#### [GS AnimBlend Library] +---Sets the blending callback of this animation. +---@generic self +---@param self self +---@param func? Lib.GS.AnimBlend.blendCallback +---@return self +function Animation:setOnBlend(func) end + +---#### [GS AnimBlend Library] +---Sets the easing curve of this animation. +---@generic self +---@param self self +---@param curve? Lib.GS.AnimBlend.blendCurve | Lib.GS.AnimBlend.curve +---@return self +function Animation:setBlendCurve(curve) end + +---#### [GS AnimBlend Library] +---Sets if this animation is currently playing. +---If `instant` is set, no blending will occur. +--- +---If `state` or `instant` are `nil`, they will default to `false`. +---@generic self +---@param self self +---@param state? boolean +---@param instant? boolean +---@return self +function Animation:setPlaying(state, instant) end + + +---===== CHAINED =====--- + +---#### [GS AnimBlend Library] +---Sets the blending time of this animation in ticks. +---@generic self +---@param self self +---@param time? number +---@return self +function Animation:blendTime(time) end + +---#### [GS AnimBlend Library] +---Sets the blending-in and blending-out times of this animation in ticks. +---@generic self +---@param self self +---@param time_in? number +---@param time_out? number +---@return self +function Animation:blendTime(time_in, time_out) end + +---#### [GS AnimBlend Library] +---Sets the blending callback of this animation. +---@generic self +---@param self self +---@param func? Lib.GS.AnimBlend.blendCallback +---@return self +function Animation:onBlend(func) end + +---#### [GS AnimBlend Library] +---Sets the easing curve of this animation. +---@generic self +---@param self self +---@param curve? Lib.GS.AnimBlend.blendCurve | Lib.GS.AnimBlend.curve +---@return self +---@diagnostic disable-next-line: assign-type-mismatch +function Animation:blendCurve(curve) end + +---#### [GS AnimBlend Library] +---Sets if this animation is currently playing. +---If `instant` is set, no blending will occur. +--- +---If `state` or `instant` are `nil`, they will default to `false`. +---@generic self +---@param self self +---@param state? boolean +---@param instant? boolean +---@return self +function Animation:playing(state, instant) end + + +---@class AnimationAPI +local AnimationAPI + + +---===== GETTERS =====--- + +---#### [GS AnimBlend Library] (0.1.4-) +---Gets an array of every playing animation. +--- +---Set `ignore_blending` to ignore animations that are currently blending. +---@param ignore_blending? boolean +---@return Animation[] +function AnimationAPI:getPlaying(ignore_blending) end + +---#### [GS AnimBlend Library] (0.1.5+) +---Gets an array of every playing animation. +---If `hold` is set, HOLDING animations are included. +--- +---Set `ignore_blending` to ignore animations that are currently blending. +---@param hold? boolean +---@param ignore_blending? boolean +---@return Animation[] +function AnimationAPI:getPlaying(hold, ignore_blending) end diff --git a/3d_models/akira/model 3.0/actionwheel.lua b/3d_models/akira/model 3.0/actionwheel.lua new file mode 100644 index 0000000..a73951b --- /dev/null +++ b/3d_models/akira/model 3.0/actionwheel.lua @@ -0,0 +1,58 @@ +--EMOTES-- + +local mainPage = action_wheel:newPage() +action_wheel:setPage(mainPage) + +function pings.Follow() + animations.akira_olivia_pink.followMe:play() +end +--- +function pings.Wave() + animations.akira_olivia_pink.wave:play() +end +--- +function pings.Clap() + animations.akira_olivia_pink.clap:play() +end +--- +-- function pings.Gun(state) +-- animations.akira_olivia_pink.ready_gun:setPlaying(state) +-- end +--- +function pings.Sitting(state) + animations.akira_olivia_pink.sit_emote:setPlaying(state) +end +--- +-------------------------------------------------------------------- + +mainPage:newAction() + :title("Wave") + :item("minecraft:lantern") + :hoverColor(1,1,0) + :onLeftClick(pings.Wave) + + +mainPage:newAction() + :title("Follow Me") + :item("minecraft:compass") + :hoverColor(1,1,0) + :onLeftClick(pings.Follow) + +mainPage:newAction() + :title("Clap") + :item("minecraft:rabbit_foot") + :hoverColor(1,1,0) + :onLeftClick(pings.Clap) + +mainPage:newAction() + :title("Sit") + :item("minecraft:purpur_stairs") + :hoverColor(1,1,0) + :onToggle(pings.Sitting) + +-- mainPage:newAction() +-- :title("Gun") +-- :item("minecraft:crossbow") +-- :hoverColor(1,1,0) +-- :onToggle(pings.Gun) + diff --git a/3d_models/akira/model 3.0/avatar.json b/3d_models/akira/model 3.0/avatar.json new file mode 100644 index 0000000..69851de --- /dev/null +++ b/3d_models/akira/model 3.0/avatar.json @@ -0,0 +1,9 @@ +{ + "authors": [ + "oatmealine", + "akirapink" + ], + "name": "Akira Olivia Pink (v2)", + "description":"The Human (Eek!)", + "color": "#ff73d3" +} diff --git a/3d_models/akira/model 3.0/avatar.json~ b/3d_models/akira/model 3.0/avatar.json~ new file mode 100644 index 0000000..babfc99 --- /dev/null +++ b/3d_models/akira/model 3.0/avatar.json~ @@ -0,0 +1,8 @@ +{ + "authors": [ + "oatmealine", + "akirapink" + ], + "name": "Akira Olivia Pink", + "description":"§e§lINHERITED CONTEXT::" +} diff --git a/3d_models/akira/model 3.0/avatar.png b/3d_models/akira/model 3.0/avatar.png new file mode 100644 index 0000000..ff45213 Binary files /dev/null and b/3d_models/akira/model 3.0/avatar.png differ diff --git a/3d_models/akira/model 3.0/script.lua b/3d_models/akira/model 3.0/script.lua new file mode 100644 index 0000000..ae16dd5 --- /dev/null +++ b/3d_models/akira/model 3.0/script.lua @@ -0,0 +1,29 @@ +require("GSAnimBlend") +local anims = require("EZAnims") +local example = anims:addBBModel(animations.akira_olivia_pink) +vanilla_model.PLAYER:setVisible(false) +vanilla_model.ARMOR:setVisible(false) +vanilla_model.HELD_ITEMS:setVisible(true) +vanilla_model.ELYTRA:setVisible(true) +vanilla_model.CAPE:setVisible(false) +BlendTime = 2 +animations.akira_olivia_pink.sit_emote:setBlendTime(2) +-- nameplate.All:setText('[{"text":"akirapink","color":"#ff73d3"}]') + + +-- models.akira_olivia_pink.root.RightArm +-- :copy("RightArmCopy") -- Create a copy of the arm +-- :setParentType("models.akira_olivia_pink.root.Torso.RightArm") -- Set the parent type of the copy +-- :moveTo(models.akira_olivia_pink.root.Torso) -- Move it to some location in the model +-- +--function events.RENDER(_, context) +-- local is_firstperson = context == "FIRST_PERSON"f +-- models.akira_olivia_pink.root.Torso.RightArm:setVisible(not is_firstperson) +-- models.akira_olivia_pink.root.Torso:setVisible(not is_firstperson) +-- models.akira_olivia_pink.root.Torso.backpack:setVisible(not is_firstperson) +-- models.akira_olivia_pink.root.Torso.RightArmCopy:setVisible(is_firstperson) +--end + + +--hide vanilla elytra model +vanilla_model.ELYTRA:setVisible(false) diff --git a/3d_models/akira/model 4.13/CharterIntegration.lua b/3d_models/akira/model 4.13/CharterIntegration.lua deleted file mode 100644 index fff2c35..0000000 --- a/3d_models/akira/model 4.13/CharterIntegration.lua +++ /dev/null @@ -1,155 +0,0 @@ -local IMMUNITIES = { - Movement = false, - Charter = false -} ---- @class MovementAPI -local movement = {} ---- @class CharterIntegration -local CharterIntegration = {} -local page = { - immunities = IMMUNITIES, - movement = function (state, self) - IMMUNITIES.Movement = state - host:actionbar("§fMovement Immunity: " .. tostring(IMMUNITIES.Movement)) - end, - charter = function (state, self) - IMMUNITIES.Charter = state - host:actionbar("§6Charter Immunity: " .. tostring(IMMUNITIES.Charter)) - end -} - - ----Divine Dominance's clamping of position. Creates the "stuck in the field" effect. ----@param c1 Vector3 ----@param c2 Vector3 ----@return boolean; return false to symbolize that you don't want this to happen. Any CI-compliant avatar will cancel upon returning false. -function CharterIntegration:DD_ClampPos(c1, c2) - if IMMUNITIES.Charter or not player:isLoaded() then return false end - local p = player:getPos() - local newVec = vec( - math.clamp(p.x, c1.x, c2.x), - math.clamp(p.y, c1.y, c2.y), - math.clamp(p.z, c1.z, c2.z) - ) - if newVec ~= p then - c1 = c1 + 0.01 - c2 = c2 - 0.01 - newVec = vec( - math.clamp(p.x, c1.x, c2.x), - math.clamp(p.y, c1.y+0.1, c2.y), - math.clamp(p.z, c1.z, c2.z) - ) - movement.SetPos(newVec) - if p.y ~= newVec.y then - movement.AddVelocity(0,0.1,0) - end - end - - - - return true -end - ----Function that is called when the player is caught in the Divine Dominance's area of effect. ----@param attacker string ----@return boolean; return false to symbolize that you don't want this to happen. Any CI-compliant avatar will cancel upon returning false. -function CharterIntegration:DD_Collapse(attacker) - if IMMUNITIES.Charter or not player:isLoaded() then return false end - movement.AddVelocity(0,60,0) - return true -end - ----Function that is called when the player is hit by the Lesser Divinity ----@param attacker string ----@return boolean?; return false to symbolize that you don't want this to happen. Any CI-compliant avatar will cancel upon returning false. -function CharterIntegration:LD_Hit(attacker) - if IMMUNITIES.Charter or not player:isLoaded() then return end - movement.AddVelocity(0,60,0) - return true -end - ----Function that is called when the player is hit by the Broken Lesser Divinity ----@param attacker string ----@return boolean?; return false to symbolize that you don't want this to happen. Any CI-compliant avatar will cancel upon returning false. -function CharterIntegration:BLD_Hit(attacker) - if IMMUNITIES.Charter or not player:isLoaded() then return end - movement.AddVelocity(-30 ,30,0) - return true -end - ----Adds velocity to the player. ----@param x integer | Vector3 ----@param y integer? ----@param z integer? -function movement.AddVelocity(x, y, z) - if IMMUNITIES.Movement or not player:isLoaded() then return end - local velocity - if type(x) == "number" then - velocity = vec(x,y--[[@as number]],z--[[@as number]]) - else - velocity = x - end - if host:isHost() and goofy then - goofy:setVelocity((getActualPlayerVelocity() + velocity):clampLength(-60, 60)--[[@as Vector3]]) - end -end - ----Adds velocity to the player. ----@param x integer | Vector3 ----@param y integer? ----@param z integer? -function movement.SetVelocity(x, y, z) - if IMMUNITIES.Movement or not player:isLoaded() then return end - local velocity - if type(x) == "number" then - velocity = vec(x,y--[[@as number]],z--[[@as number]]) - else - velocity = x - end - if host:isHost() and goofy then - goofy:setVelocity(velocity:clampLength(-60, 60)) - end -end - ---- Sets the position of the player. ----@param x integer | Vector3 ----@param y integer? ----@param z integer? -function movement.SetPos(x, y, z) - if IMMUNITIES.Movement or not player:isLoaded() then return end - local pos - if type(x) == "number" then - pos = vec(x,y--[[@as number]],z--[[@as number]]) - else - pos = x - end - if host:isHost() and goofy then - goofy:setPos(pos) - end -end - - ---- Sets the position of the player. ----@param x integer | Vector3 ----@param y integer? ----@param z integer? -function movement.ThrowToPos(x, y, z) - if IMMUNITIES.Movement or not player:isLoaded() then return end - local pos - if type(x) == "number" then - pos = vec(x,y--[[@as number]],z--[[@as number]]) - else - pos = x - end - if host:isHost() and goofy then - goofy:setVelocity((pos - player:getPos()):clampLength(-60, 60)) - end -end - -function getActualPlayerVelocity() - return vec(table.unpack(player:getNbt().Motion)) -end -avatar:store("MovementAPI", movement) -avatar:store("CharterIntegration", CharterIntegration) - -return page diff --git a/3d_models/akira/model 4.13/EZItems.lua b/3d_models/akira/model 4.13/EZItems.lua deleted file mode 100644 index 5e03e4f..0000000 --- a/3d_models/akira/model 4.13/EZItems.lua +++ /dev/null @@ -1,181 +0,0 @@ --- V3 - -local items = {} - -local function getItem(item,itemid) - return item.id:find(itemid) or item:getName():find(itemid) -end - -local function isPlaying(equip,unequip) - return (equip and equip:isPlaying()) or (unequip and unequip:isPlaying()) -end - -local complexList = {} - -function events.render(_,ctx) - vanilla_model.RIGHT_ITEM:setVisible(true) - vanilla_model.RIGHT_ITEM:setVisible(true) - for _, value in pairs(complexList) do - if value.right then - vanilla_model.RIGHT_ITEM:setVisible(ctx == "FIRST_PERSON" or false) - end - if value.left then - vanilla_model.LEFT_ITEM:setVisible(ctx == "FIRST_PERSON" or false) - end - end -end - ----@param itemtype string ----@param extrapart? ModelPart | table ----@param firstpart ModelPart ----@param thirdpartright ModelPart | table ----@param thirdpartleft ModelPart | table ----@param rightequip? Animation ----@param rightunequip? Animation ----@param leftequip? Animation ----@param leftunequip? Animation ----@param rightholding? Animation ----@param leftholding? Animation -function items:complexReplace(itemtype,extrapart,firstpart,thirdpartright,thirdpartleft,rightequip,rightunequip,leftequip,leftunequip,rightholding,leftholding) - if type(itemtype) ~= "string" then - error("Provided item to replace is not a string",2) - end - if type(firstpart) ~= "ModelPart" then - error("Provided first person part isn't a modelpart",2) - end - if type(thirdpartright) ~= "ModelPart" and type(thirdpartright) ~= "table" then - error("Provided third person right hand part isn't a modelpart or a table",2) - end - if type(thirdpartleft) ~= "ModelPart" and type(thirdpartleft) ~= "table" then - error("Provided third person left hand part isn't a modelpartor a table",2) - end - - complexList[itemtype] = {} - - if rightequip then rightequip:setLoop("ONCE") end - if rightunequip then rightunequip:setLoop("ONCE") end - if leftequip then leftequip:setLoop("ONCE") end - if leftunequip then leftunequip:setLoop("ONCE") end - - local expart = type(extrapart) == "table" and extrapart or {extrapart} - local rpart = type(thirdpartright) == "table" and thirdpartright or {thirdpartright} - local lpart = type(thirdpartleft) == "table" and thirdpartleft or {thirdpartleft} - - firstpart:setParentType("Item") - events.item_render:remove(itemtype.."Complex") - events.item_render:register( - function(item,mode) - if getItem(item,itemtype) and mode:find("FIRST") then - return firstpart - end - end, - itemtype.."Complex") - - local oldrighthold - local oldlefthold - events.entity_init:remove(itemtype.."Complex") - events.entity_init:register( - function() - local lefty = player:isLeftHanded() - oldrighthold = getItem(player:getHeldItem(lefty),itemtype) - oldlefthold = getItem(player:getHeldItem(not lefty),itemtype) - end, - itemtype.."Complex") - - events.render:remove(itemtype.."Complex") - events.render:register( - function(delta,context) - local lefty = player:isLeftHanded() - local righthold = getItem(player:getHeldItem(lefty),itemtype) - local lefthold = getItem(player:getHeldItem(not lefty),itemtype) - complexList[itemtype].right = righthold or false - complexList[itemtype].left = lefthold or false - - local rightequipping = isPlaying(rightequip,rightunequip) - local leftequipping = isPlaying(leftequip,leftunequip) - - for _,ex in pairs(expart) do - ex:setVisible((not (righthold or lefthold)) or rightequipping or leftequipping) - end - - for _, right in pairs(rpart) do - right:setVisible(righthold or rightequipping and context~="FIRST_PERSON") - end - for _,left in pairs(lpart) do - left:setVisible(lefthold or leftequipping and context~="FIRST_PERSON") - end - - if rightholding then - rightholding:setPlaying(righthold and not rightequipping) - end - if leftholding then - leftholding:setPlaying(lefthold and not leftequipping) - end - - local newrighthold = righthold - if oldrighthold ~= newrighthold then - for _, right in pairs(rpart) do - right:setVisible(oldrighthold) - end - for _,ex in pairs(expart) do - ex:setVisible(newrighthold) - end - if rightequip then rightequip:setPlaying(newrighthold) end - if rightunequip then rightunequip:setPlaying(oldrighthold) end - end - oldrighthold = newrighthold - - local newlefthold = lefthold - if oldlefthold ~= newlefthold then - for _,left in pairs(lpart) do - left:setVisible(oldlefthold) - end - for _,ex in pairs(expart) do - ex:setVisible(newlefthold) - end - if leftequip then leftequip:setPlaying(newlefthold) end - if leftunequip then leftunequip:setPlaying(oldlefthold) end - end - oldlefthold = newlefthold - end, - itemtype.."Complex") - return self -end - ----@param itemtype string ----@param newparts ModelPart ----@param extrapart? ModelPart | table ----@param righthold? Animation ----@param lefthold? Animation -function items:simpleReplace(itemtype,newparts,extrapart,righthold,lefthold) - if type(itemtype) ~= "string" then - error("Provided item to replace is not a string",2) - end - if newparts then newparts:setParentType("Item") end - events.item_render:remove(itemtype.."Simple") - events.item_render:register( - function(item) - if getItem(item,itemtype) then - return newparts - end - end, - itemtype.."Simple") - if not (extrapart or righthold or lefthold) then return self end - local part = type(extrapart) == "table" and extrapart or {extrapart} - events.tick:remove(itemtype.."Simple") - events.tick:register( - function() - local lefty = player:isLeftHanded() - local rightI = player:getHeldItem(lefty) - local leftI = player:getHeldItem(not lefty) - for _, value in pairs(part) do - value:setVisible(not (getItem(rightI,itemtype) or getItem(leftI,itemtype))) - end - if righthold then righthold:setPlaying(getItem(rightI,itemtype)) end - if lefthold then lefthold:setPlaying(getItem(leftI,itemtype)) end - end, - itemtype.."Simple") - return self -end - -return items \ No newline at end of file diff --git a/3d_models/akira/model 4.13/README.txt b/3d_models/akira/model 4.13/README.txt new file mode 100644 index 0000000..f4cd5f4 --- /dev/null +++ b/3d_models/akira/model 4.13/README.txt @@ -0,0 +1,14 @@ +- Figura Discord Hellpers + - kcin2001 + - kitcat962 + - totaltakeover + - poollovernathan + - meepoffaith + - grandpa_scout + - jimmyhelp +- Figura Discord Free Libraries + - grandpa_scout + - jimmyhelp +- Miscellaneous assets + - ivaskiygood (Dark Fountain emote) + - diff --git a/3d_models/akira/model 4.13/actionwheel.lua b/3d_models/akira/model 4.13/actionwheel.lua index 2508d5b..60ac769 100644 --- a/3d_models/akira/model 4.13/actionwheel.lua +++ b/3d_models/akira/model 4.13/actionwheel.lua @@ -163,4 +163,78 @@ function pings.taunt() end +]] + + +-- Auto generated script file -- +models.akira_eiko_olivia_pink.Add:setPrimaryRenderType("EMISSIVE_SOLID") +models.akira_eiko_olivia_pink.Add:setOpacity(1) +models.akira_eiko_olivia_pink.Add.fountain.inner:setOpacity(1) +models.akira_eiko_olivia_pink.symbols:setVisible(false) +local testBind = keybinds:newKeybind("Тест","key.keyboard.z") +fountain_darking=false +hide_all=false + +function pings.open_fountain() + animations.akira_eiko_olivia_pink.fountain_opening:play() + models.akira_eiko_olivia_pink.Add:setParentType("World") + models.akira_eiko_olivia_pink.Add:setPos(player:getPos(delta)*16) + models.akira_eiko_olivia_pink.Add:setRot(0,-player:getBodyYaw()-180,0) + models.akira_eiko_olivia_pink.Add:setPrimaryRenderType("EMISSIVE_SOLID") +end +function pings.setLighed() + +end +--testBind.press = pings.test + +local open_f = mainPage:newAction() +open_f:title("Fountain") +open_f:item("iron_sword") +open_f.leftClick=pings.open_fountain + +function events.entity_init() + --player functions goes here +end + +function events.tick() + if fountain_darking then + models.akira_eiko_olivia_pink.Add.fountain.inner:setOpacity(models.akira_eiko_olivia_pink.Add.fountain.inner:getOpacity()+0.02) + if models.akira_eiko_olivia_pink.Add.fountain.inner:getOpacity()>0.98 then + fountain_darking=false + models.akira_eiko_olivia_pink.Add.fountain.inner:setPrimaryRenderType("EMISSIVE_SOLID") + end + end + if hide_all then + models.akira_eiko_olivia_pink.Add:setOpacity(models.akira_eiko_olivia_pink.Add:getOpacity()-0.02) + if models.akira_eiko_olivia_pink.Add:getOpacity()<0.02 then + hide_all=false + models.akira_eiko_olivia_pink.Add:setVisible(false) + end + end +end + +--render event, called every time your avatar is rendered +--it have two arguments, "delta" and "context" +--"delta" is the percentage between the last and the next tick (as a decimal value, 0.0 to 1.0) +--"context" is a string that tells from where this render event was called (the paperdoll, gui, player render, first person) +function events.render(delta, context) + --code goes here +end + + + +-- Example code begins here -- +--[[local confetti = require("confetti") +confetti.registerSprite( + "blob_single", + textures["blob_single"], + vec(0,72,0,72), 30) + +function events.tick() + confetti.newParticle( + "blob_single", + player:getPos()+vec(0,math.random(),0), + vec(0,0,0) +) +end ]] \ No newline at end of file diff --git a/3d_models/akira/model 4.13/akira_eiko_olivia_pink.bbmodel b/3d_models/akira/model 4.13/akira_eiko_olivia_pink.bbmodel index b367e9e..fb3dfc1 100644 --- a/3d_models/akira/model 4.13/akira_eiko_olivia_pink.bbmodel +++ b/3d_models/akira/model 4.13/akira_eiko_olivia_pink.bbmodel @@ -1,15 +1,54 @@ { "meta": { "format_version": "4.10", - "model_format": "free", + "model_format": "figura", "box_uv": false }, - "name": "akira_eiko_olivia_pink", - "model_identifier": "", "visible_box": [1, 1, 0], "variable_placeholders": "", "variable_placeholder_buttons": [], - "timeline_setups": [], + "timeline_setups": [ + { + "name": "Timeline Setup", + "channels": { + "position": true, + "rotation": true, + "scale": true, + "hide_empty": true + }, + "animators": [ + "8ecb49a9-4063-567f-d5d6-13e34c61fda2", + "846f9d7a-ba3e-d736-4c01-93392d16f75d", + "fe5e6be7-280c-dde4-b847-12a2b028e66d", + "7c7e536c-89b4-51d2-510c-fc1007e0df3b", + "4e86d352-c1b0-ba95-6122-3030f58ec345", + "0062d29b-c2f9-6c29-ecdb-744857789699", + "dd3dbc09-2543-5b44-0d51-139155e860e2", + "bb176c22-6ae6-6c8d-3125-6dc4a4b34b04", + "34dfaf06-1387-a2c6-f3e6-99793044e82d", + "8af6dfdb-3ff0-e614-572d-238ed04ce4ef", + "8091a46a-25d6-0558-047c-e2098bb1126c", + "43622244-f03f-dc0d-a522-2d01c2ca50e1", + "cd23c28a-f1a0-ae4e-00cd-c519e5e71ed0", + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5", + "257888ea-540d-c844-892e-76855e5ac593", + "9b1cdac1-623c-a07f-13cf-50b4cba2d280", + "3a163167-946a-9709-bfaa-60c63fb36d88", + "d9627f7e-c2cc-0b7d-f0e3-267976830e09", + "39b8f506-2d25-9ffc-4844-a483667159b6", + "4532a408-8267-4ac1-f89b-9c02843401c5", + "80ca9439-0183-c534-a9eb-ada28e85b1ec", + "4ef21934-9598-a1cc-d2cb-2a978ecab20f", + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687", + "703b9bfd-bdc6-385a-89b3-b900d1de58f5", + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d", + "d5c28e0c-2ec5-296a-42c7-59967676aebe", + "02123f94-db06-5dae-758f-a4b6191791e5", + "9d530b83-521c-52ff-34ec-05833bb4753c", + "e4367907-6cfc-00b5-304f-2ad528647ca3" + ] + } + ], "unhandled_root_fields": {}, "resolution": { "width": 96, @@ -43,103 +82,103 @@ "faces": { "rLMf7opp": { "uv": { - "dP2U": [0, 27.9836], - "eok7": [0, 25.9836], - "BtHE": [4, 27.9836], - "p9SG": [4, 25.9836] + "dP2U": [4, 29.9836], + "eok7": [1, 29.9836], + "BtHE": [4, 26.9836], + "p9SG": [1, 26.9836] }, "vertices": ["p9SG", "BtHE", "eok7", "dP2U"], - "texture": 0 + "texture": 1 }, "lK1uZ4ZU": { "uv": { - "oqGO": [0, 27.9836], - "EUsg": [0, 25.9836], - "vUhB": [4, 27.9836], - "ocfu": [4, 25.9836] + "oqGO": [4, 29.9836], + "EUsg": [1, 29.9836], + "vUhB": [4, 26.9836], + "ocfu": [1, 26.9836] }, "vertices": ["ocfu", "vUhB", "EUsg", "oqGO"], - "texture": 0 + "texture": 1 }, "IOcJK5rY": { "uv": { - "ocfu": [0, 29.9836], - "BtHE": [0, 25.9836], - "vUhB": [3, 29.9836], - "p9SG": [3, 25.9836] + "ocfu": [1, 28.9836], + "BtHE": [1, 24.9836], + "vUhB": [4, 28.9836], + "p9SG": [4, 24.9836] }, "vertices": ["p9SG", "vUhB", "BtHE", "ocfu"], - "texture": 0 + "texture": 1 }, "TZD9oDhP": { "uv": { - "oqGO": [0, 29.9836], - "eok7": [0, 25.9836], - "EUsg": [3, 29.9836], - "dP2U": [3, 25.9836] + "oqGO": [8, 48.9836], + "eok7": [10, 48.9836], + "EUsg": [8, 56.9836], + "dP2U": [10, 56.9836] }, "vertices": ["dP2U", "EUsg", "eok7", "oqGO"], - "texture": 0 + "texture": 1 }, "h8ImDcMA": { "uv": { - "EUsg": [0, 27.9836], - "dP2U": [0, 25.9836], - "ocfu": [3, 27.9836], - "BtHE": [3, 25.9836] + "EUsg": [3.25, 29.9836], + "dP2U": [1, 29.9836], + "ocfu": [3.25, 26.9836], + "BtHE": [1, 26.9836] }, "vertices": ["BtHE", "ocfu", "dP2U", "EUsg"], - "texture": 0 + "texture": 1 }, "4tbVDhEo": { "uv": { - "X2US": [0, 27.9836], - "EDaA": [0, 25.9836], - "xXtl": [3, 27.9836], - "LuHl": [3, 25.9836] + "X2US": [3.25, 29.9836], + "EDaA": [1, 29.9836], + "xXtl": [3.25, 26.9836], + "LuHl": [1, 26.9836] }, "vertices": ["LuHl", "xXtl", "EDaA", "X2US"], - "texture": 0 + "texture": 1 }, "EtmLgTse": { "uv": { - "vUhB": [3, 25.9836], - "oqGO": [0, 25.9836], - "EDaA": [0, 27.9836], - "LuHl": [3, 27.9836] + "vUhB": [1, 26.9836], + "oqGO": [1, 29.9836], + "EDaA": [3.25, 29.9836], + "LuHl": [3.25, 26.9836] }, "vertices": ["LuHl", "EDaA", "oqGO", "vUhB"], - "texture": 0 + "texture": 1 }, "iRHEFw0e": { "uv": { - "p9SG": [3, 28.9836], - "vUhB": [3, 25.9836], - "LuHl": [0, 25.9836], - "xXtl": [0, 28.9836] + "p9SG": [4, 28.9836], + "vUhB": [4, 25.9836], + "LuHl": [1, 25.9836], + "xXtl": [1, 28.9836] }, "vertices": ["xXtl", "LuHl", "vUhB", "p9SG"], - "texture": 0 + "texture": 1 }, "5H56KX26": { "uv": { - "eok7": [0, 27.9836], - "p9SG": [3, 27.9836], - "xXtl": [3, 25.9836], - "X2US": [0, 25.9836] + "eok7": [3.25, 29.9836], + "p9SG": [3.25, 26.9836], + "xXtl": [1, 26.9836], + "X2US": [1, 29.9836] }, "vertices": ["X2US", "xXtl", "p9SG", "eok7"], - "texture": 0 + "texture": 1 }, "YPxuRqB2": { "uv": { - "oqGO": [0, 25.9836], - "eok7": [0, 28.9836], - "X2US": [3, 28.9836], - "EDaA": [3, 25.9836] + "oqGO": [8, 56.9836], + "eok7": [10, 56.9836], + "X2US": [10, 48.9836], + "EDaA": [8, 48.9836] }, "vertices": ["EDaA", "X2US", "eok7", "oqGO"], - "texture": 0 + "texture": 1 } }, "type": "mesh", @@ -148,7 +187,7 @@ { "name": "Head", "color": 8, - "origin": [0, 21.6, -0.9], + "origin": [0, 21.6, -0.4], "rotation": [0, 0, 0], "export": true, "visibility": true, @@ -156,1517 +195,828 @@ "render_order": "default", "allow_mirror_modeling": true, "vertices": { - "ppnZ": [0, 0.9, 0.08194], - "TV9o": [1.14168, 2.05, 1.29973], + "ppnZ": [0, 0.9, 1.18194], + "TV9o": [1.14168, 2.05, 0.99973], "n3UK": [1.30478, 6.95, 1.99986], - "xI8D": [2.75625, 2.05, 0.47689], + "xI8D": [2.75625, 2.05, 0.17689], "If9H": [3.15, 6.95, 1.05948], - "NlFz": [2.75625, 1.87, -0.93308], - "lH3O": [2.86875, 6.95, -1.26057], - "BlXc": [1.14168, 1.31941, -2.38257], - "j3zU": [1.38199, 6.95, -2.91102], - "8Vaz": [1.30478, 3.18607, -3.35271], - "2fMz": [1.30478, 3.93333, -2.90109], - "DFnu": [2.75625, 3.38666, -1.26057], - "ZKz3": [2.75625, 3.93333, -1.26057], - "9wlZ": [3.15, 3.11666, 1.05948], + "NlFz": [2.75625, 1.87, -1.20822], + "lH3O": [2.86875, 6.95, -1.33842], + "BlXc": [1.14168, 1.31941, -2.74159], + "j3zU": [1.38199, 6.95, -2.97969], + "8Vaz": [1.30478, 2.95166, -3.45271], + "2fMz": [1.30478, 3.93333, -2.96934], + "DFnu": [2.75625, 2.95166, -1.33842], + "ZKz3": [2.75625, 3.93333, -1.33842], + "9wlZ": [3.15, 2.95166, 1.05948], "HeA6": [3.15, 4.63334, 1.05948], - "ETfb": [1.30478, 3.11666, 2.7], + "ETfb": [1.30478, 2.95166, 2.7], "EqZH": [1.30478, 5.33334, 2.7], - "yF3x": [-1.14168, 2.05, 1.29973], + "yF3x": [-1.14168, 2.05, 0.99973], "lXqu": [-1.30477, 6.95, 1.99986], - "C6cU": [-2.75625, 2.05, 0.47689], + "C6cU": [-2.75625, 2.05, 0.17689], "qc0L": [-3.15, 6.95, 1.05948], - "HCVy": [-2.75625, 1.87, -0.93308], - "dgCx": [-2.8, 6.95, -1.26057], - "a6Ti": [-1.14168, 1.31941, -2.38257], - "2NA1": [-1.5098, 6.95, -2.91102], - "5WyA": [-1.30477, 3.18607, -3.35271], - "FBal": [-1.30477, 3.93333, -2.90109], - "XPZQ": [-2.75625, 3.38666, -1.26057], - "tTFb": [-2.75625, 3.93333, -1.26057], - "A49p": [-3.15, 3.11666, 1.05948], + "HCVy": [-2.75625, 1.87, -1.11061], + "dgCx": [-2.8, 6.95, -1.25991], + "a6Ti": [-1.14168, 1.31941, -2.74159], + "2NA1": [-1.5098, 6.95, -2.97969], + "5WyA": [-1.30477, 2.95166, -3.45271], + "FBal": [-1.30477, 3.93333, -2.96934], + "XPZQ": [-2.75625, 2.95166, -1.25991], + "tTFb": [-2.75625, 3.93333, -1.25991], + "A49p": [-3.15, 2.95166, 1.05948], "uuLd": [-3.15, 4.63334, 1.05948], - "Jfz9": [-1.30477, 3.11666, 2.7], + "Jfz9": [-1.30477, 2.95166, 2.7], "ZHiN": [-1.30477, 5.33334, 2.7], - "y7s6": [1.00507, 8.27214, -2.22], - "r4hz": [-1.00507, 8.27214, -2.22], - "eD5k": [0, 8.99996, -0.14998], - "AfLN": [-2.13776, 8.27598, -0.96465], + "y7s6": [1.00507, 8.27214, -2.25948], + "r4hz": [-1.00507, 8.27214, -2.25948], + "eD5k": [0, 8.99996, 0.74632], + "AfLN": [-2.13776, 8.27598, -0.85392], "yYAy": [-2.41141, 8.2805, 0.64749], "TwUw": [-0.99092, 8.26204, 1.35238], "jqYQ": [0.99092, 8.26204, 1.35238], - "cR8P": [2.41141, 8.2805, 0.64749], - "Wmhk": [2.13776, 8.27598, -0.96465], - "aBmc": [0, 8.27214, -2.22], - "fLpt": [0, 6.95, -2.91102], - "7lzt": [0, 3.93333, -2.90109], - "TQ4O": [0, 3.18607, -3.35271], - "5haT": [0, 1.31941, -2.38257], + "cR8P": [2.41141, 8.2805, 0.74749], + "Wmhk": [2.13776, 8.27598, -0.94969], + "aBmc": [0, 8.27214, -2.35948], + "fLpt": [0, 6.95, -3.07969], + "7lzt": [0, 3.93333, -3.06934], + "TQ4O": [0, 2.95166, -3.55271], + "5haT": [0, 1.31941, -2.84159], "O2fe": [1.30478, 6.14166, 2.34994], "2pNO": [3.15, 5.79166, 1.05948], - "zkoC": [2.86875, 5.44166, -1.26057], - "V1kR": [1.38199, 5.44166, -2.90605], - "MHH5": [0, 5.44166, -2.90605], - "vdUT": [-1.5098, 5.44166, -2.90605], - "wxOS": [-2.8, 5.44166, -1.26057], + "zkoC": [2.86875, 5.44166, -1.33842], + "V1kR": [1.38199, 5.44166, -2.97451], + "MHH5": [0, 5.44166, -3.07451], + "vdUT": [-1.5098, 5.44166, -2.97451], + "wxOS": [-2.8, 5.44166, -1.25991], "1l81": [-3.15, 5.79166, 1.05948], - "yyfa": [-1.30477, 6.14166, 2.34994] + "yyfa": [-1.30477, 6.14166, 2.34994], + "j7O6": [2.12537, 5.44166, -2.71327], + "haP5": [2.03052, 3.93333, -2.71001], + "ZVaC": [2.03052, 2.95166, -3.00664], + "ONPR": [1.94897, 1.59471, -2.45434], + "qR5g": [2.12537, 6.95, -2.71653], + "xIv9": [1.57142, 8.27406, -2.0683], + "lSbW": [-2.1549, 5.44166, -2.70024], + "LKQZ": [-2.03051, 3.93333, -2.69684], + "N8tQ": [-2.03051, 2.95166, -3.00664], + "sGur": [-1.94896, 1.59471, -2.4165], + "4pYc": [-2.1549, 6.95, -2.70365], + "xuod": [-1.57141, 8.27406, -2.02664] }, "faces": { "SGOtJOVi": { "uv": { - "ppnZ": [0, 8.9836], - "TV9o": [6, 5.9836], - "xI8D": [8, 8.9836] + "ppnZ": [0, 9], + "TV9o": [6, 6], + "xI8D": [8, 9] }, "vertices": ["xI8D", "TV9o", "ppnZ"], - "texture": 0 + "texture": 1 }, "qybQHbiM": { "uv": { - "EqZH": [0, 8.9836], - "2pNO": [6, 7.4836], - "O2fe": [0, 7.4836], - "HeA6": [6, 8.9836] + "EqZH": [0, 9], + "2pNO": [6, 7], + "O2fe": [0, 7], + "HeA6": [6, 9] }, "vertices": ["HeA6", "O2fe", "2pNO", "EqZH"], - "texture": 0 + "texture": 1 }, "OTX97j14": { "uv": { - "eD5k": [0, 6.9836], - "cR8P": [6, 9.9836], - "jqYQ": [0, 11.9836] + "eD5k": [0, 7], + "cR8P": [6, 10], + "jqYQ": [0, 12] }, "vertices": ["jqYQ", "cR8P", "eD5k"], - "texture": 0 + "texture": 1 }, "NeEi2vFZ": { "uv": { - "ppnZ": [0, 7.9836], - "xI8D": [7, 5.9836], - "NlFz": [7, 9.9836] + "ppnZ": [0, 8], + "xI8D": [7, 6], + "NlFz": [7, 10] }, "vertices": ["NlFz", "xI8D", "ppnZ"], - "texture": 0 + "texture": 1 }, "WedP020P": { "uv": { - "HeA6": [0, 8.9836], - "zkoC": [6, 7.4836], - "2pNO": [0, 7.4836], - "ZKz3": [6, 8.9836] + "HeA6": [0, 9], + "zkoC": [6, 7], + "2pNO": [0, 7], + "ZKz3": [6, 9] }, "vertices": ["ZKz3", "2pNO", "zkoC", "HeA6"], - "texture": 0 + "texture": 1 }, "BYsI7aC0": { "uv": { - "eD5k": [0, 8.9836], - "Wmhk": [7, 6.9836], - "cR8P": [7, 10.9836] + "eD5k": [0, 9], + "Wmhk": [7, 7], + "cR8P": [7, 11] }, "vertices": ["cR8P", "Wmhk", "eD5k"], - "texture": 0 + "texture": 1 }, "WWTxBVtP": { "uv": { - "ppnZ": [0, 5.9836], - "NlFz": [6, 8.9836], - "BlXc": [0, 10.9836] + "NlFz": [0, 11], + "ONPR": [0, 11], + "ppnZ": [0, 11] }, - "vertices": ["BlXc", "NlFz", "ppnZ"], - "texture": 0 + "vertices": ["ppnZ", "ONPR", "NlFz"], + "texture": 1 }, "m9E4bexa": { "uv": { - "ZKz3": [0, 8], - "V1kR": [3, 12], - "zkoC": [0, 12], - "2fMz": [3, 8] + "zkoC": [0, 6], + "haP5": [4.5, 4], + "j7O6": [4.5, 6], + "ZKz3": [0, 4] }, - "vertices": ["2fMz", "zkoC", "V1kR", "ZKz3"], - "texture": 0 + "vertices": ["ZKz3", "j7O6", "haP5", "zkoC"], + "texture": 1 }, "1K3IilLx": { "uv": { - "eD5k": [0, 9.9836], - "y7s6": [6, 6.9836], - "Wmhk": [8, 9.9836] + "y7s6": [6, 7], + "xIv9": [7, 8.5], + "eD5k": [0, 10] }, - "vertices": ["Wmhk", "y7s6", "eD5k"], - "texture": 0 + "vertices": ["eD5k", "xIv9", "y7s6"], + "texture": 1 }, "gkvqNXSk": { "uv": { - "BlXc": [6, 9.9836], - "5haT": [3, 9.9836], - "ppnZ": [3, 5.9836] + "BlXc": [0, 11], + "5haT": [0, 11], + "ppnZ": [0, 11] }, "vertices": ["ppnZ", "5haT", "BlXc"], - "texture": 0 + "texture": 1 }, "WZA3BCX4": { "uv": { - "2fMz": [3, 8], - "MHH5": [0, 12], - "V1kR": [3, 12], - "7lzt": [0, 8] + "2fMz": [9, 4], + "MHH5": [0, 6], + "V1kR": [9, 6], + "7lzt": [0, 4] }, "vertices": ["7lzt", "V1kR", "MHH5", "2fMz"], - "texture": 0 + "texture": 1 }, "UfluJ6be": { "uv": { - "r4hz": [0, 6.9836], - "aBmc": [3, 6.9836], - "eD5k": [3, 10.9836] + "r4hz": [0, 7], + "aBmc": [3, 7], + "eD5k": [3, 11] }, "vertices": ["eD5k", "aBmc", "r4hz"], - "texture": 0 + "texture": 1 }, "mCNrpYIj": { "uv": { - "ppnZ": [3, 9.9836], - "yF3x": [0, 5.9836], - "TV9o": [6, 5.9836] + "ppnZ": [3, 10], + "yF3x": [0, 6], + "TV9o": [6, 6] }, "vertices": ["TV9o", "yF3x", "ppnZ"], - "texture": 0 + "texture": 1 }, "taIZthpZ": { "uv": { - "ZHiN": [0, 8.9836], - "O2fe": [6, 7.4836], - "yyfa": [0, 7.4836], - "EqZH": [6, 8.9836] + "ZHiN": [0, 9], + "O2fe": [6, 7], + "yyfa": [0, 7], + "EqZH": [6, 9] }, "vertices": ["EqZH", "yyfa", "O2fe", "ZHiN"], - "texture": 0 + "texture": 1 }, "eHr3thlr": { "uv": { - "eD5k": [3, 6.9836], - "jqYQ": [6, 10.9836], - "TwUw": [0, 10.9836] + "eD5k": [3, 7], + "jqYQ": [6, 11], + "TwUw": [0, 11] }, "vertices": ["TwUw", "jqYQ", "eD5k"], - "texture": 0 + "texture": 1 }, "mOGzqJIk": { "uv": { - "8Vaz": [13, 3], + "8Vaz": [12, 1], "5haT": [18, 10], - "TQ4O": [18, 3], - "BlXc": [13, 10] + "TQ4O": [18, 1], + "BlXc": [12, 10] }, "vertices": ["BlXc", "TQ4O", "5haT", "8Vaz"], - "texture": 0 + "texture": 1 }, "IspizuX0": { "uv": { - "2fMz": [0, 8.9836], - "TQ4O": [3, 11.9836], - "7lzt": [3, 8.9836], - "8Vaz": [0, 11.9836] + "2fMz": [0, 11], + "TQ4O": [0, 11], + "7lzt": [0, 11], + "8Vaz": [0, 11] }, "vertices": ["8Vaz", "7lzt", "TQ4O", "2fMz"], - "texture": 0 + "texture": 1 }, "4elRqR2m": { "uv": { - "NlFz": [0, 11.9836], - "DFnu": [0, 5.9836], - "8Vaz": [3.18182, 5.9836], - "BlXc": [3.18182, 11.9836] + "DFnu": [0, 11], + "ONPR": [0, 11], + "ZVaC": [0, 11], + "NlFz": [0, 11] }, - "vertices": ["BlXc", "8Vaz", "DFnu", "NlFz"], - "texture": 0 + "vertices": ["NlFz", "ZVaC", "ONPR", "DFnu"], + "texture": 1 }, "Pro0QCF0": { "uv": { - "DFnu": [0, 11.9836], - "ZKz3": [0, 8.9836], - "2fMz": [6, 8.9836], - "8Vaz": [6, 11.9836] + "ZKz3": [0, 11], + "ZVaC": [0, 11], + "haP5": [0, 11], + "DFnu": [0, 11] }, - "vertices": ["8Vaz", "2fMz", "ZKz3", "DFnu"], - "texture": 0 + "vertices": ["DFnu", "haP5", "ZVaC", "ZKz3"], + "texture": 1 }, "0wLusB14": { "uv": { - "xI8D": [0, 8.9836], - "9wlZ": [0, 5.9836], - "DFnu": [6, 5.9836], - "NlFz": [6, 8.9836] + "xI8D": [0, 9], + "9wlZ": [0, 6], + "DFnu": [6, 6], + "NlFz": [6, 9] }, "vertices": ["NlFz", "DFnu", "9wlZ", "xI8D"], - "texture": 0 + "texture": 1 }, "wGe6CeFl": { "uv": { - "9wlZ": [0, 11.9836], - "HeA6": [0, 8.9836], - "ZKz3": [6, 8.9836], - "DFnu": [6, 11.9836] + "9wlZ": [0, 12], + "HeA6": [0, 9], + "ZKz3": [6, 9], + "DFnu": [6, 12] }, "vertices": ["DFnu", "ZKz3", "HeA6", "9wlZ"], - "texture": 0 + "texture": 1 }, "ZCt7nfD8": { "uv": { - "TV9o": [0, 8.9836], - "ETfb": [0, 5.9836], - "9wlZ": [6, 5.9836], - "xI8D": [6, 8.9836] + "TV9o": [0, 9], + "ETfb": [0, 6], + "9wlZ": [6, 6], + "xI8D": [6, 9] }, "vertices": ["xI8D", "9wlZ", "ETfb", "TV9o"], - "texture": 0 + "texture": 1 }, "yq9buZK2": { "uv": { - "ETfb": [0, 11.9836], - "EqZH": [0, 8.9836], - "HeA6": [6, 8.9836], - "9wlZ": [6, 11.9836] + "ETfb": [0, 12], + "EqZH": [0, 9], + "HeA6": [6, 9], + "9wlZ": [6, 12] }, "vertices": ["9wlZ", "HeA6", "EqZH", "ETfb"], - "texture": 0 + "texture": 1 }, "3RmOj4jX": { "uv": { - "yF3x": [0, 8.9836], - "Jfz9": [0, 5.9836], - "ETfb": [6, 5.9836], - "TV9o": [6, 8.9836] + "yF3x": [0, 9], + "Jfz9": [0, 6], + "ETfb": [6, 6], + "TV9o": [6, 9] }, "vertices": ["TV9o", "ETfb", "Jfz9", "yF3x"], - "texture": 0 + "texture": 1 }, "5QqsYfQ8": { "uv": { - "Jfz9": [0, 11.9836], - "ZHiN": [0, 8.9836], - "EqZH": [6, 8.9836], - "ETfb": [6, 11.9836] + "Jfz9": [0, 12], + "ZHiN": [0, 9], + "EqZH": [6, 9], + "ETfb": [6, 12] }, "vertices": ["ETfb", "EqZH", "ZHiN", "Jfz9"], - "texture": 0 + "texture": 1 }, "Fg9vJv4N": { "uv": { - "ppnZ": [0, 8.9836], - "C6cU": [8, 8.9836], - "yF3x": [6, 5.9836] + "ppnZ": [0, 9], + "C6cU": [8, 9], + "yF3x": [6, 6] }, "vertices": ["yF3x", "C6cU", "ppnZ"], - "texture": 0 + "texture": 1 }, "wfInJ26T": { "uv": { - "uuLd": [6, 8.9836], - "yyfa": [0, 7.4836], - "1l81": [6, 7.4836], - "ZHiN": [0, 8.9836] + "uuLd": [6, 9], + "yyfa": [0, 7], + "1l81": [6, 7], + "ZHiN": [0, 9] }, "vertices": ["ZHiN", "1l81", "yyfa", "uuLd"], - "texture": 0 + "texture": 1 }, "eiK1svyY": { "uv": { - "eD5k": [0, 6.9836], - "TwUw": [0, 11.9836], - "yYAy": [6, 9.9836] + "eD5k": [0, 7], + "TwUw": [0, 12], + "yYAy": [6, 10] }, "vertices": ["yYAy", "TwUw", "eD5k"], - "texture": 0 + "texture": 1 }, "ZFEG13AU": { "uv": { - "ppnZ": [0, 7.9836], - "HCVy": [7, 9.9836], - "C6cU": [7, 5.9836] + "ppnZ": [0, 11], + "HCVy": [7, 12], + "C6cU": [7, 10] }, "vertices": ["C6cU", "HCVy", "ppnZ"], - "texture": 0 + "texture": 1 }, "BcBa4KR3": { "uv": { - "tTFb": [6, 8.9836], - "1l81": [0, 7.4836], - "wxOS": [6, 7.4836], - "uuLd": [0, 8.9836] + "tTFb": [6, 9], + "1l81": [0, 7], + "wxOS": [6, 7], + "uuLd": [0, 9] }, "vertices": ["uuLd", "wxOS", "1l81", "tTFb"], - "texture": 0 + "texture": 1 }, "ixMgOYvh": { "uv": { - "eD5k": [0, 8.9836], - "yYAy": [7, 10.9836], - "AfLN": [7, 6.9836] + "eD5k": [0, 9], + "yYAy": [7, 11], + "AfLN": [7, 7] }, "vertices": ["AfLN", "yYAy", "eD5k"], - "texture": 0 + "texture": 1 }, "RBqNM3aV": { "uv": { - "ppnZ": [0, 5.9836], - "a6Ti": [0, 10.9836], - "HCVy": [6, 8.9836] + "a6Ti": [0, 11], + "sGur": [3.5, 11.5], + "ppnZ": [0, 11] }, - "vertices": ["HCVy", "a6Ti", "ppnZ"], - "texture": 0 + "vertices": ["ppnZ", "sGur", "a6Ti"], + "texture": 1 }, "PbRsxzNF": { "uv": { - "FBal": [3, 8], - "wxOS": [0, 12], - "vdUT": [3, 12], - "tTFb": [0, 8] + "vdUT": [9, 6], + "LKQZ": [4.5, 4], + "lSbW": [4.5, 6], + "FBal": [9, 4] }, - "vertices": ["tTFb", "vdUT", "wxOS", "FBal"], - "texture": 0 + "vertices": ["FBal", "lSbW", "LKQZ", "vdUT"], + "texture": 1 }, "YLxZHzXa": { "uv": { - "eD5k": [0, 9.9836], - "AfLN": [8, 9.9836], - "r4hz": [6, 6.9836] + "AfLN": [8, 10], + "xuod": [7, 8.5], + "eD5k": [0, 10] }, - "vertices": ["r4hz", "AfLN", "eD5k"], - "texture": 0 + "vertices": ["eD5k", "xuod", "AfLN"], + "texture": 1 }, "j7kPMev4": { "uv": { - "HCVy": [0, 5.9836], - "XPZQ": [0, 11.9836], - "a6Ti": [3.18182, 5.9836], - "5WyA": [3.18182, 11.9836] + "5WyA": [0, 11], + "sGur": [3.5, 11.5], + "N8tQ": [0, 11], + "a6Ti": [0, 11] }, - "vertices": ["5WyA", "a6Ti", "XPZQ", "HCVy"], - "texture": 0 + "vertices": ["a6Ti", "N8tQ", "sGur", "5WyA"], + "texture": 1 }, "oYEZeJop": { "uv": { - "XPZQ": [0, 11.9836], - "tTFb": [0, 8.9836], - "5WyA": [6, 11.9836], - "FBal": [6, 8.9836] + "FBal": [0, 11], + "N8tQ": [0, 11], + "LKQZ": [0, 11], + "5WyA": [0, 11] }, - "vertices": ["FBal", "5WyA", "tTFb", "XPZQ"], - "texture": 0 + "vertices": ["5WyA", "LKQZ", "N8tQ", "FBal"], + "texture": 1 }, "JN2qxV70": { "uv": { - "C6cU": [0, 8.9836], - "A49p": [0, 5.9836], - "HCVy": [6, 8.9836], - "XPZQ": [6, 5.9836] + "C6cU": [7, 10], + "A49p": [0, 11], + "HCVy": [7, 12], + "XPZQ": [0, 11] }, "vertices": ["XPZQ", "HCVy", "A49p", "C6cU"], - "texture": 0 + "texture": 1 }, "s7idVvdI": { "uv": { - "A49p": [0, 11.9836], - "uuLd": [0, 8.9836], - "XPZQ": [6, 11.9836], - "tTFb": [6, 8.9836] + "A49p": [0, 12], + "uuLd": [0, 9], + "XPZQ": [6, 12], + "tTFb": [6, 9] }, "vertices": ["tTFb", "XPZQ", "uuLd", "A49p"], - "texture": 0 + "texture": 1 }, "3YxMl6ID": { "uv": { - "yF3x": [0, 8.9836], - "Jfz9": [0, 5.9836], - "C6cU": [6, 8.9836], - "A49p": [6, 5.9836] + "yF3x": [0, 9], + "Jfz9": [0, 6], + "C6cU": [6, 9], + "A49p": [6, 6] }, "vertices": ["A49p", "C6cU", "Jfz9", "yF3x"], - "texture": 0 + "texture": 1 }, "W7j54Eei": { "uv": { - "Jfz9": [0, 11.9836], - "ZHiN": [0, 8.9836], - "A49p": [6, 11.9836], - "uuLd": [6, 8.9836] + "Jfz9": [0, 12], + "ZHiN": [0, 9], + "A49p": [6, 12], + "uuLd": [6, 9] }, "vertices": ["uuLd", "A49p", "ZHiN", "Jfz9"], - "texture": 0 + "texture": 1 }, "M8wNGDX4": { "uv": { - "y7s6": [4.45455, 11.9836], - "fLpt": [1.90909, 9.4836], - "aBmc": [1.90909, 11.9836], - "j3zU": [4.45455, 9.4836] + "y7s6": [6, 3], + "fLpt": [0, 2], + "aBmc": [0, 3], + "j3zU": [6, 2] }, "vertices": ["j3zU", "aBmc", "fLpt", "y7s6"], - "texture": 0 + "texture": 1 }, "yDqHbo9h": { "uv": { - "dgCx": [7, 9.4836], - "2NA1": [4.45455, 9.4836], - "r4hz": [4.45455, 11.9836], - "AfLN": [7, 11.9836] + "r4hz": [6, 3], + "4pYc": [9, 2], + "xuod": [9, 3], + "2NA1": [6, 2] }, - "vertices": ["AfLN", "r4hz", "2NA1", "dgCx"], - "texture": 0 + "vertices": ["2NA1", "xuod", "4pYc", "r4hz"], + "texture": 1 }, "MoW8TQLr": { "uv": { - "qc0L": [5, 8.9836], - "dgCx": [2, 8.9836], - "AfLN": [2, 7.9836], - "yYAy": [5, 7.9836] + "qc0L": [5, 9], + "dgCx": [2, 9], + "AfLN": [2, 8], + "yYAy": [5, 8] }, "vertices": ["yYAy", "AfLN", "dgCx", "qc0L"], - "texture": 0 + "texture": 1 }, "0jS0Uy5k": { "uv": { - "lXqu": [1, 9.9836], - "qc0L": [1, 7.9836], - "yYAy": [2, 7.9836], - "TwUw": [2, 9.9836] + "lXqu": [1, 10], + "qc0L": [1, 8], + "yYAy": [2, 8], + "TwUw": [2, 10] }, "vertices": ["TwUw", "yYAy", "qc0L", "lXqu"], - "texture": 0 + "texture": 1 }, "LWutpvwP": { "uv": { - "n3UK": [3, 9.9836], - "lXqu": [0, 9.9836], - "TwUw": [0, 8.9836], - "jqYQ": [3, 8.9836] + "n3UK": [3, 10], + "lXqu": [0, 10], + "TwUw": [0, 9], + "jqYQ": [3, 9] }, "vertices": ["jqYQ", "TwUw", "lXqu", "n3UK"], - "texture": 0 + "texture": 1 }, "jpZwlyIV": { "uv": { - "If9H": [2, 9.9836], - "n3UK": [0, 9.9836], - "jqYQ": [0, 8.9836], - "cR8P": [2, 8.9836] + "If9H": [2, 10], + "n3UK": [0, 10], + "jqYQ": [0, 9], + "cR8P": [2, 9] }, "vertices": ["cR8P", "jqYQ", "n3UK", "If9H"], - "texture": 0 + "texture": 1 }, "KFDI8HrX": { "uv": { - "lH3O": [4, 9.9836], - "If9H": [4, 6.9836], - "cR8P": [5, 6.9836], - "Wmhk": [5, 9.9836] + "lH3O": [4, 10], + "If9H": [4, 7], + "cR8P": [5, 7], + "Wmhk": [5, 10] }, "vertices": ["Wmhk", "cR8P", "If9H", "lH3O"], - "texture": 0 + "texture": 1 }, "9U6WwQ2l": { "uv": { - "j3zU": [5.09091, 9.4836], - "lH3O": [2.54545, 9.4836], - "Wmhk": [2.54545, 11.9836], - "y7s6": [5.09091, 11.9836] + "Wmhk": [1, 3], + "qR5g": [4, 2], + "xIv9": [4, 3], + "lH3O": [1, 2] }, - "vertices": ["y7s6", "Wmhk", "lH3O", "j3zU"], - "texture": 0 + "vertices": ["lH3O", "xIv9", "qR5g", "Wmhk"], + "texture": 1 }, "v1ehew7P": { "uv": { - "2NA1": [4.45455, 9.4836], - "fLpt": [1.90909, 9.4836], - "aBmc": [1.90909, 11.9836], - "r4hz": [4.45455, 11.9836] + "2NA1": [6, 2], + "fLpt": [0, 2], + "aBmc": [0, 3], + "r4hz": [6, 3] }, "vertices": ["r4hz", "aBmc", "fLpt", "2NA1"], - "texture": 0 + "texture": 1 }, "CR7AFEZW": { "uv": { - "7lzt": [0, 8], - "vdUT": [4, 12], - "MHH5": [0, 12], - "FBal": [4, 8] + "7lzt": [0, 4], + "vdUT": [12, 6], + "MHH5": [0, 6], + "FBal": [12, 4] }, "vertices": ["FBal", "MHH5", "vdUT", "7lzt"], - "texture": 0 + "texture": 1 }, "Mm2kvP11": { "uv": { - "5WyA": [6, 11.9836], - "TQ4O": [3, 11.9836], - "7lzt": [3, 8.9836], - "FBal": [6, 8.9836] + "5WyA": [0, 11], + "TQ4O": [0, 11], + "7lzt": [0, 11], + "FBal": [0, 11] }, "vertices": ["FBal", "7lzt", "TQ4O", "5WyA"], - "texture": 0 + "texture": 1 }, "4W0EnR3i": { "uv": { - "a6Ti": [23, 10], + "a6Ti": [24, 10], "5haT": [18, 10], - "TQ4O": [18, 3], - "5WyA": [23, 3] + "TQ4O": [18, 1], + "5WyA": [24, 1] }, "vertices": ["5WyA", "TQ4O", "5haT", "a6Ti"], - "texture": 0 + "texture": 1 }, "dnGjh5q7": { "uv": { - "ppnZ": [3, 5.9836], - "5haT": [3, 9.9836], - "a6Ti": [0, 9.9836] + "ppnZ": [0, 11], + "5haT": [0, 11], + "a6Ti": [0, 11] }, "vertices": ["a6Ti", "5haT", "ppnZ"], - "texture": 0 + "texture": 1 }, "kKJrjpb6": { "uv": { - "eD5k": [3, 10.9836], - "aBmc": [3, 6.9836], - "y7s6": [6, 6.9836] + "eD5k": [3, 11], + "aBmc": [3, 7], + "y7s6": [6, 7] }, "vertices": ["y7s6", "aBmc", "eD5k"], - "texture": 0 + "texture": 1 }, "lYXDWMd3": { "uv": { - "If9H": [6, 5.9836], - "2pNO": [6, 7.4836], - "O2fe": [0, 7.4836], - "n3UK": [0, 5.9836] + "If9H": [6, 6], + "2pNO": [6, 7], + "O2fe": [0, 7], + "n3UK": [0, 6] }, "vertices": ["n3UK", "O2fe", "2pNO", "If9H"], - "texture": 0 + "texture": 1 }, "8e3URcRo": { "uv": { - "lH3O": [6, 5.9836], - "zkoC": [6, 7.4836], - "2pNO": [0, 7.4836], - "If9H": [0, 5.9836] + "lH3O": [6, 6], + "zkoC": [6, 7], + "2pNO": [0, 7], + "If9H": [0, 6] }, "vertices": ["If9H", "2pNO", "zkoC", "lH3O"], - "texture": 0 + "texture": 1 }, "CVAgmYM8": { "uv": { - "j3zU": [30, 3.5], - "V1kR": [30, 9.5], - "zkoC": [36, 9.5], - "lH3O": [36, 3.5] + "lH3O": [36, 4], + "j7O6": [33, 10], + "qR5g": [33, 4], + "zkoC": [36, 10] }, - "vertices": ["lH3O", "zkoC", "V1kR", "j3zU"], - "texture": 0 + "vertices": ["zkoC", "qR5g", "j7O6", "lH3O"], + "texture": 1 }, "t8V2Pqnx": { "uv": { - "fLpt": [24, 3.5], - "MHH5": [24, 9.5], - "V1kR": [30, 9.5], - "j3zU": [30, 3.5] + "fLpt": [24, 4], + "MHH5": [24, 10], + "V1kR": [30, 10], + "j3zU": [30, 4] }, "vertices": ["j3zU", "V1kR", "MHH5", "fLpt"], - "texture": 0 + "texture": 1 }, "260ADKqo": { "uv": { - "2NA1": [30, 3.5], - "vdUT": [30, 9.5], - "MHH5": [24, 9.5], - "fLpt": [24, 3.5] + "2NA1": [30, 4], + "vdUT": [30, 10], + "MHH5": [24, 10], + "fLpt": [24, 4] }, "vertices": ["fLpt", "MHH5", "vdUT", "2NA1"], - "texture": 0 + "texture": 1 }, "yjLgvyYt": { "uv": { - "dgCx": [36, 3.5], - "wxOS": [36, 9.5], - "vdUT": [30, 9.5], - "2NA1": [30, 3.5] + "2NA1": [30, 4], + "lSbW": [33, 10], + "4pYc": [33, 4], + "vdUT": [30, 10] }, - "vertices": ["2NA1", "vdUT", "wxOS", "dgCx"], - "texture": 0 + "vertices": ["vdUT", "4pYc", "lSbW", "2NA1"], + "texture": 1 }, "xEfTTb4g": { "uv": { - "qc0L": [0, 5.9836], - "1l81": [0, 7.4836], - "wxOS": [6, 7.4836], - "dgCx": [6, 5.9836] + "qc0L": [0, 6], + "1l81": [0, 7], + "wxOS": [6, 7], + "dgCx": [6, 6] }, "vertices": ["dgCx", "wxOS", "1l81", "qc0L"], - "texture": 0 + "texture": 1 }, "VUv0d16w": { "uv": { - "lXqu": [0, 5.9836], - "yyfa": [0, 7.4836], - "1l81": [6, 7.4836], - "qc0L": [6, 5.9836] + "lXqu": [0, 6], + "yyfa": [0, 7], + "1l81": [6, 7], + "qc0L": [6, 6] }, "vertices": ["qc0L", "1l81", "yyfa", "lXqu"], - "texture": 0 + "texture": 1 }, "v470CMMW": { "uv": { - "n3UK": [6, 5.9836], - "O2fe": [6, 7.4836], - "yyfa": [0, 7.4836], - "lXqu": [0, 5.9836] + "n3UK": [6, 6], + "O2fe": [6, 7], + "yyfa": [0, 7], + "lXqu": [0, 6] }, "vertices": ["lXqu", "yyfa", "O2fe", "n3UK"], - "texture": 0 + "texture": 1 + }, + "v10EtBdo": { + "uv": { + "2fMz": [9, 4], + "haP5": [4.5, 4], + "j7O6": [4.5, 6], + "V1kR": [9, 6] + }, + "vertices": ["V1kR", "j7O6", "haP5", "2fMz"], + "texture": 1 + }, + "834XtG05": { + "uv": { + "8Vaz": [0, 11], + "ZVaC": [0, 11], + "haP5": [0, 11], + "2fMz": [0, 11] + }, + "vertices": ["2fMz", "haP5", "ZVaC", "8Vaz"], + "texture": 1 + }, + "c3syJs9d": { + "uv": { + "BlXc": [0, 11], + "ONPR": [0, 11], + "ZVaC": [0, 11], + "8Vaz": [0, 11] + }, + "vertices": ["8Vaz", "ZVaC", "ONPR", "BlXc"], + "texture": 1 + }, + "VFBsgULl": { + "uv": { + "ppnZ": [0, 11], + "ONPR": [0, 11], + "BlXc": [0, 11] + }, + "vertices": ["BlXc", "ONPR", "ppnZ"], + "texture": 1 + }, + "2Nmp7vah": { + "uv": { + "V1kR": [30, 10], + "j7O6": [33, 10], + "qR5g": [33, 4], + "j3zU": [30, 4] + }, + "vertices": ["j3zU", "qR5g", "j7O6", "V1kR"], + "texture": 1 + }, + "KUJOEuq1": { + "uv": { + "j3zU": [7, 2], + "qR5g": [4, 2], + "xIv9": [4, 3], + "y7s6": [7, 3] + }, + "vertices": ["y7s6", "xIv9", "qR5g", "j3zU"], + "texture": 1 + }, + "KDuDiaVA": { + "uv": { + "eD5k": [0, 10], + "xIv9": [7, 8.5], + "Wmhk": [8, 10] + }, + "vertices": ["Wmhk", "xIv9", "eD5k"], + "texture": 1 + }, + "dmoRpiOt": { + "uv": { + "tTFb": [0, 4], + "LKQZ": [4.5, 4], + "lSbW": [4.5, 6], + "wxOS": [0, 6] + }, + "vertices": ["wxOS", "lSbW", "LKQZ", "tTFb"], + "texture": 1 + }, + "9CcuQmUQ": { + "uv": { + "XPZQ": [0, 11], + "N8tQ": [0, 11], + "LKQZ": [0, 11], + "tTFb": [0, 11] + }, + "vertices": ["tTFb", "LKQZ", "N8tQ", "XPZQ"], + "texture": 1 + }, + "lGA3uG9t": { + "uv": { + "HCVy": [7, 12], + "sGur": [3.5, 11.5], + "N8tQ": [0, 11], + "XPZQ": [0, 11] + }, + "vertices": ["XPZQ", "N8tQ", "sGur", "HCVy"], + "texture": 1 + }, + "V88miogy": { + "uv": { + "ppnZ": [0, 11], + "sGur": [3.5, 11.5], + "HCVy": [7, 12] + }, + "vertices": ["HCVy", "sGur", "ppnZ"], + "texture": 1 + }, + "jcpdlH88": { + "uv": { + "wxOS": [36, 10], + "lSbW": [33, 10], + "4pYc": [33, 4], + "dgCx": [36, 4] + }, + "vertices": ["dgCx", "4pYc", "lSbW", "wxOS"], + "texture": 1 + }, + "BnmpbmSp": { + "uv": { + "dgCx": [12, 2], + "4pYc": [9, 2], + "xuod": [9, 3], + "AfLN": [12, 3] + }, + "vertices": ["AfLN", "xuod", "4pYc", "dgCx"], + "texture": 1 + }, + "HGAjhTQu": { + "uv": { + "eD5k": [0, 10], + "xuod": [7, 8.5], + "r4hz": [6, 7] + }, + "vertices": ["r4hz", "xuod", "eD5k"], + "texture": 1 } }, "type": "mesh", "uuid": "7564b320-32ad-f191-5c63-fdfa5abfafd5" }, - { - "name": "sphere", - "color": 8, - "origin": [0, 27, -0.45], - "rotation": [0, 0, 0], - "export": true, - "visibility": true, - "locked": false, - "render_order": "default", - "allow_mirror_modeling": true, - "vertices": { - "jKok": [-4.99829, 1.42535, 2.47075], - "FXfo": [-4.36738, -4.70018, 3.6726], - "75IQ": [-4.99829, 1.29867, -2.33264], - "jDJU": [-4.76614, 2.20008, -1.35527], - "vple": [-4.76614, 2.20008, 2.16847], - "HSIv": [-5.59919, -1.34381, -0.4728], - "nHut": [-5.59919, -1.34381, 2.67465], - "LbBY": [-4.88221, -0.42628, -2.21937], - "5AXE": [-3.64969, 0.86428, -2.64685], - "4Aek": [-4.88221, -0.01255, 2.31961], - "nGlq": [-0.85031, -0.11072, -2.15352], - "lIQ3": [-4.36738, -5.67518, 2.68593], - "GFNw": [-4.36738, -5.67518, 1.64702], - "owwU": [3.53433, 3.95017, 1.86617], - "yJdM": [4.99829, 1.42535, 2.47075], - "Vz8M": [4.36738, -4.70018, 3.6726], - "jbYw": [4.99829, 1.29867, -2.33264], - "LInl": [2.21884, 1.90413, -3.77932], - "CEed": [4.76614, 2.20008, -1.35527], - "aAun": [4.76614, 2.20008, 2.16847], - "b8kf": [5.59919, -1.34381, -0.4728], - "kpeJ": [5.59919, -1.34381, 2.67465], - "BHgp": [4.88221, -0.42628, -2.21937], - "NL1s": [3.64969, 0.86428, -2.64685], - "UilW": [4.88221, -0.01255, 2.31961], - "HRTL": [1.13652, 2.38818, -2.94839], - "ytho": [0.85031, -0.11072, -2.15352], - "PCb6": [-3.53433, 3.95017, 1.86617], - "cefY": [-3.53433, 3.95017, -1.05298], - "1Acn": [-2.21884, 1.90413, -3.77932], - "PG6A": [-3.64029, -2.86217, -1.06434], - "YKrh": [-2.07036, 1.42535, 5.38991], - "9Vbx": [-2.46853, -5.67518, 5.73675], - "AETh": [-1.9742, 2.20008, 4.66012], - "B9LH": [-2.60021, -1.34381, 6.46655], - "T24w": [-1.91876, -0.01255, 5.84476], - "0y1E": [0, -6.3, 3.19327], - "7NKt": [0, 4.95, 0.4066], - "9osI": [-1.46397, 3.95017, 3.93033], - "NXb9": [-1.46397, 3.95017, -3.11714], - "wOfP": [-1.46397, -4.70018, 0.76286], - "grtz": [1.46397, 3.95017, 3.93033], - "QrYn": [1.46397, 3.95017, -3.11714], - "AAGn": [1.46397, -4.70018, 0.76286], - "MGSN": [2.07036, 1.42535, 5.38991], - "cVzJ": [2.46853, -5.67518, 5.73675], - "pSuD": [1.9742, 2.20008, 4.66012], - "fvDz": [2.60021, -1.34381, 6.46655], - "EApG": [1.91876, -0.01255, 5.84476], - "TmnP": [4.36738, -5.67518, 2.68593], - "z83N": [3.53433, 3.95017, -1.05298], - "zWCT": [4.36738, -5.67518, 1.64702], - "zBbf": [-1.13652, 1.99818, -3.21839], - "mjln": [3.64029, -2.86217, -1.06434] - }, - "faces": { - "CfZlFLu3": { - "uv": { - "7NKt": [15.35365, 24.2836], - "9osI": [18.30731, 28.92881], - "PCb6": [12.4, 28.92881] - }, - "vertices": ["PCb6", "9osI", "7NKt"], - "texture": 0 - }, - "YMU6twbg": { - "uv": { - "YKrh": [12.4, 28.445], - "vple": [22.42197, 24.86432], - "jKok": [23.2138, 28.445], - "AETh": [13.19183, 24.86432] - }, - "vertices": ["AETh", "jKok", "vple", "YKrh"], - "texture": 0 - }, - "599E21cC": { - "uv": { - "9Vbx": [13.98366, 35.445], - "nHut": [22.42197, 29.8643], - "FXfo": [21.63014, 35.445], - "B9LH": [13.19183, 29.8643] - }, - "vertices": ["B9LH", "FXfo", "nHut", "9Vbx"], - "texture": 0 - }, - "e3aOm5Hl": { - "uv": { - "0y1E": [16.22324, 35.445], - "FXfo": [20.04648, 24.2836], - "9Vbx": [12.4, 24.2836] - }, - "vertices": ["9Vbx", "FXfo", "0y1E"], - "texture": 0 - }, - "R9EdmOeg": { - "uv": { - "7NKt": [15.35365, 24.2836], - "PCb6": [18.30731, 28.92881], - "cefY": [12.4, 28.92881] - }, - "vertices": ["cefY", "PCb6", "7NKt"], - "texture": 0 - }, - "GjEjz7Ro": { - "uv": { - "jKok": [12.4, 28.445], - "jDJU": [22.42197, 24.86432], - "75IQ": [23.2138, 28.445], - "vple": [13.19183, 24.86432] - }, - "vertices": ["vple", "75IQ", "jDJU", "jKok"], - "texture": 0 - }, - "J6qum8Ns": { - "uv": { - "FXfo": [13.98366, 35.445], - "HSIv": [22.42197, 29.8643], - "GFNw": [21.63014, 35.445], - "nHut": [13.19183, 29.8643] - }, - "vertices": ["nHut", "GFNw", "HSIv", "FXfo"], - "texture": 0 - }, - "p7QAgnbw": { - "uv": { - "0y1E": [16.22324, 35.445], - "GFNw": [20.04648, 24.2836], - "FXfo": [12.4, 24.2836] - }, - "vertices": ["FXfo", "GFNw", "0y1E"], - "texture": 0 - }, - "VqJzQYeL": { - "uv": { - "75IQ": [12.4, 28.445], - "1Acn": [22.81789, 26.65466], - "jDJU": [13.19183, 24.86432] - }, - "vertices": ["jDJU", "1Acn", "75IQ"], - "texture": 0 - }, - "rjwxyevX": { - "uv": { - "GFNw": [13.98366, 35.445], - "wOfP": [21.63014, 35.445], - "HSIv": [13.19183, 29.8643] - }, - "vertices": ["HSIv", "wOfP", "GFNw"], - "texture": 0 - }, - "FpGG2OsV": { - "uv": { - "NXb9": [19.11966, 24.2836], - "1Acn": [13.74808, 24.2836], - "cefY": [19.67591, 27.111], - "jDJU": [13.19183, 27.111] - }, - "vertices": ["jDJU", "cefY", "1Acn", "NXb9"], - "texture": 0 - }, - "WVywrfkh": { - "uv": { - "PCb6": [19.11966, 24.2836], - "vple": [13.74808, 24.2836], - "9osI": [19.67591, 27.111], - "AETh": [13.19183, 27.111] - }, - "vertices": ["AETh", "9osI", "vple", "PCb6"], - "texture": 0 - }, - "wjPrqXqq": { - "uv": { - "cefY": [19.11966, 24.2836], - "jDJU": [13.74808, 24.2836], - "PCb6": [19.67591, 27.111], - "vple": [13.19183, 27.111] - }, - "vertices": ["vple", "PCb6", "jDJU", "cefY"], - "texture": 0 - }, - "U2CwdCcf": { - "uv": { - "HSIv": [13.19183, 29.8643], - "5AXE": [22.81788, 27.07395], - "PG6A": [22.42197, 29.8643], - "LbBY": [12.79592, 27.07395] - }, - "vertices": ["LbBY", "PG6A", "5AXE", "HSIv"], - "texture": 0 - }, - "oPupHgRI": { - "uv": { - "B9LH": [13.19183, 29.8643], - "4Aek": [22.81788, 27.07395], - "nHut": [22.42197, 29.8643], - "T24w": [12.79592, 27.07395] - }, - "vertices": ["T24w", "nHut", "4Aek", "B9LH"], - "texture": 0 - }, - "JZ21qe1j": { - "uv": { - "nHut": [13.19183, 29.8643], - "LbBY": [22.81788, 27.07395], - "HSIv": [22.42197, 29.8643], - "4Aek": [12.79592, 27.07395] - }, - "vertices": ["4Aek", "HSIv", "LbBY", "nHut"], - "texture": 0 - }, - "cGzqpGPN": { - "uv": { - "5AXE": [22.81788, 27.07395], - "75IQ": [12.4, 24.2836], - "LbBY": [12.79592, 27.07395] - }, - "vertices": ["LbBY", "75IQ", "5AXE"], - "texture": 0 - }, - "n4JqRr2O": { - "uv": { - "jKok": [23.2138, 24.2836], - "4Aek": [22.81788, 27.07395], - "YKrh": [12.4, 24.2836], - "T24w": [12.79592, 27.07395] - }, - "vertices": ["T24w", "YKrh", "4Aek", "jKok"], - "texture": 0 - }, - "5TE5NA9Q": { - "uv": { - "75IQ": [23.2138, 24.2836], - "LbBY": [22.81788, 27.07395], - "jKok": [12.4, 24.2836], - "4Aek": [12.79592, 27.07395] - }, - "vertices": ["4Aek", "jKok", "LbBY", "75IQ"], - "texture": 0 - }, - "qpAUxEXX": { - "uv": { - "GFNw": [13.98366, 35.445], - "PG6A": [22.42197, 29.8643], - "HSIv": [13.19183, 29.8643] - }, - "vertices": ["HSIv", "PG6A", "GFNw"], - "texture": 0 - }, - "v2wDlkRg": { - "uv": { - "wOfP": [17.44698, 34.61157], - "GFNw": [20.63818, 34.61157], - "PG6A": [19.79468, 32.54355] - }, - "vertices": ["PG6A", "GFNw", "wOfP"], - "texture": 0 - }, - "3OIMqIi2": { - "uv": { - "1Acn": [24, 28], - "5AXE": [23, 31], - "nGlq": [13, 31], - "zBbf": [12, 28] - }, - "vertices": ["zBbf", "nGlq", "5AXE", "1Acn"], - "texture": 0 - }, - "O5x06ylH": { - "uv": { - "7NKt": [15.35365, 24.2836], - "owwU": [12.4, 28.92881], - "grtz": [18.30731, 28.92881] - }, - "vertices": ["grtz", "owwU", "7NKt"], - "texture": 0 - }, - "tIZmB4lc": { - "uv": { - "7NKt": [15.35365, 24.2836], - "z83N": [12.4, 28.92881], - "owwU": [18.30731, 28.92881] - }, - "vertices": ["owwU", "z83N", "7NKt"], - "texture": 0 - }, - "wxE5wvrO": { - "uv": { - "7NKt": [18.09971, 25.20137], - "QrYn": [15.14606, 29.84659], - "z83N": [21.05337, 29.84659] - }, - "vertices": ["z83N", "QrYn", "7NKt"], - "texture": 0 - }, - "ubicc3vF": { - "uv": { - "7NKt": [18.09971, 26.11915], - "grtz": [15.14606, 30.76436], - "9osI": [21.05337, 30.76436] - }, - "vertices": ["9osI", "grtz", "7NKt"], - "texture": 0 - }, - "16KVhNq8": { - "uv": { - "7NKt": [19.93042, 29.84659], - "NXb9": [16.97677, 25.20137], - "QrYn": [22.88407, 25.20137] - }, - "vertices": ["QrYn", "NXb9", "7NKt"], - "texture": 0 - }, - "Tuh4qWWV": { - "uv": { - "wOfP": [13.98366, 35.445], - "mjln": [22.42197, 29.8643], - "AAGn": [21.63014, 35.445], - "PG6A": [13.19183, 29.8643] - }, - "vertices": ["PG6A", "AAGn", "mjln", "wOfP"], - "texture": 0 - }, - "rBoCNANZ": { - "uv": { - "0y1E": [16.22324, 35.445], - "AAGn": [20.04648, 24.2836], - "wOfP": [12.4, 24.2836] - }, - "vertices": ["wOfP", "AAGn", "0y1E"], - "texture": 0 - }, - "NvWxXDXs": { - "uv": { - "cVzJ": [13.98366, 35.445], - "B9LH": [22.42197, 29.8643], - "9Vbx": [21.63014, 35.445], - "fvDz": [13.19183, 29.8643] - }, - "vertices": ["fvDz", "9Vbx", "B9LH", "cVzJ"], - "texture": 0 - }, - "rewAC0ru": { - "uv": { - "0y1E": [16.22324, 35.445], - "9Vbx": [20.04648, 24.2836], - "cVzJ": [12.4, 24.2836] - }, - "vertices": ["cVzJ", "9Vbx", "0y1E"], - "texture": 0 - }, - "TCkvc3xB": { - "uv": { - "0y1E": [16.22324, 35.445], - "lIQ3": [20.04648, 24.2836], - "9Vbx": [12.4, 24.2836] - }, - "vertices": ["9Vbx", "lIQ3", "0y1E"], - "texture": 0 - }, - "7TpoJPYf": { - "uv": { - "0y1E": [16.22324, 35.445], - "GFNw": [20.04648, 24.2836], - "lIQ3": [12.4, 24.2836] - }, - "vertices": ["lIQ3", "GFNw", "0y1E"], - "texture": 0 - }, - "AbcasAJX": { - "uv": { - "7NKt": [15.35365, 28.92881], - "cefY": [12.4, 24.2836], - "NXb9": [18.30731, 24.2836] - }, - "vertices": ["NXb9", "cefY", "7NKt"], - "texture": 0 - }, - "Y4GP8LGk": { - "uv": { - "0y1E": [16.22324, 35.445], - "wOfP": [20.04648, 24.2836], - "GFNw": [12.4, 24.2836] - }, - "vertices": ["GFNw", "wOfP", "0y1E"], - "texture": 0 - }, - "ybqKUDwY": { - "uv": { - "7NKt": [15.35365, 24.2836], - "owwU": [12.4, 28.92881], - "grtz": [18.30731, 28.92881] - }, - "vertices": ["grtz", "owwU", "7NKt"], - "texture": 0 - }, - "YCAiOAhK": { - "uv": { - "MGSN": [12.4, 28.445], - "aAun": [22.42197, 24.86432], - "pSuD": [13.19183, 24.86432], - "yJdM": [23.2138, 28.445] - }, - "vertices": ["yJdM", "pSuD", "aAun", "MGSN"], - "texture": 0 - }, - "2lrSoywG": { - "uv": { - "cVzJ": [13.98366, 35.445], - "kpeJ": [22.42197, 29.8643], - "fvDz": [13.19183, 29.8643], - "Vz8M": [21.63014, 35.445] - }, - "vertices": ["Vz8M", "fvDz", "kpeJ", "cVzJ"], - "texture": 0 - }, - "T0O1Qklz": { - "uv": { - "0y1E": [16.22324, 35.445], - "cVzJ": [12.4, 24.2836], - "Vz8M": [20.04648, 24.2836] - }, - "vertices": ["Vz8M", "cVzJ", "0y1E"], - "texture": 0 - }, - "fxmhnWuI": { - "uv": { - "7NKt": [15.35365, 24.2836], - "z83N": [12.4, 28.92881], - "owwU": [18.30731, 28.92881] - }, - "vertices": ["owwU", "z83N", "7NKt"], - "texture": 0 - }, - "e9g1ZM2R": { - "uv": { - "yJdM": [12.4, 28.445], - "CEed": [22.42197, 24.86432], - "aAun": [13.19183, 24.86432], - "jbYw": [23.2138, 28.445] - }, - "vertices": ["jbYw", "aAun", "CEed", "yJdM"], - "texture": 0 - }, - "hvzCyS3N": { - "uv": { - "Vz8M": [13.98366, 35.445], - "b8kf": [22.42197, 29.8643], - "kpeJ": [13.19183, 29.8643], - "zWCT": [21.63014, 35.445] - }, - "vertices": ["zWCT", "kpeJ", "b8kf", "Vz8M"], - "texture": 0 - }, - "M7w0Y8jw": { - "uv": { - "0y1E": [16.22324, 35.445], - "Vz8M": [12.4, 24.2836], - "zWCT": [20.04648, 24.2836] - }, - "vertices": ["zWCT", "Vz8M", "0y1E"], - "texture": 0 - }, - "QWd7RZLx": { - "uv": { - "jbYw": [12.4, 28.445], - "CEed": [13.19183, 24.86432], - "LInl": [22.81789, 26.65466] - }, - "vertices": ["LInl", "CEed", "jbYw"], - "texture": 0 - }, - "TauxAtoF": { - "uv": { - "zWCT": [13.98366, 35.445], - "b8kf": [13.19183, 29.8643], - "AAGn": [21.63014, 35.445] - }, - "vertices": ["AAGn", "b8kf", "zWCT"], - "texture": 0 - }, - "ZDHBz7cG": { - "uv": { - "QrYn": [19.11966, 24.2836], - "LInl": [13.74808, 24.2836], - "CEed": [13.19183, 27.111], - "z83N": [19.67591, 27.111] - }, - "vertices": ["z83N", "CEed", "LInl", "QrYn"], - "texture": 0 - }, - "Ywlp2A5z": { - "uv": { - "owwU": [19.11966, 24.2836], - "aAun": [13.74808, 24.2836], - "pSuD": [13.19183, 27.111], - "grtz": [19.67591, 27.111] - }, - "vertices": ["grtz", "pSuD", "aAun", "owwU"], - "texture": 0 - }, - "qQ6VpRZe": { - "uv": { - "z83N": [19.11966, 24.2836], - "CEed": [13.74808, 24.2836], - "aAun": [13.19183, 27.111], - "owwU": [19.67591, 27.111] - }, - "vertices": ["owwU", "aAun", "CEed", "z83N"], - "texture": 0 - }, - "9Xmbk06f": { - "uv": { - "b8kf": [13.19183, 29.8643], - "NL1s": [22.81788, 27.07395], - "BHgp": [12.79592, 27.07395], - "mjln": [22.42197, 29.8643] - }, - "vertices": ["mjln", "BHgp", "NL1s", "b8kf"], - "texture": 0 - }, - "90U61sQs": { - "uv": { - "fvDz": [13.19183, 29.8643], - "UilW": [22.81788, 27.07395], - "EApG": [12.79592, 27.07395], - "kpeJ": [22.42197, 29.8643] - }, - "vertices": ["kpeJ", "EApG", "UilW", "fvDz"], - "texture": 0 - }, - "3nAPr5Vb": { - "uv": { - "kpeJ": [13.19183, 29.8643], - "BHgp": [22.81788, 27.07395], - "UilW": [12.79592, 27.07395], - "b8kf": [22.42197, 29.8643] - }, - "vertices": ["b8kf", "UilW", "BHgp", "kpeJ"], - "texture": 0 - }, - "N7gZZzuE": { - "uv": { - "NL1s": [22.81788, 27.07395], - "BHgp": [12.79592, 27.07395], - "jbYw": [12.4, 24.2836] - }, - "vertices": ["jbYw", "BHgp", "NL1s"], - "texture": 0 - }, - "oCsF34PS": { - "uv": { - "yJdM": [23.2138, 24.2836], - "UilW": [22.81788, 27.07395], - "EApG": [12.79592, 27.07395], - "MGSN": [12.4, 24.2836] - }, - "vertices": ["MGSN", "EApG", "UilW", "yJdM"], - "texture": 0 - }, - "7OtzI9CF": { - "uv": { - "jbYw": [23.2138, 24.2836], - "BHgp": [22.81788, 27.07395], - "UilW": [12.79592, 27.07395], - "yJdM": [12.4, 24.2836] - }, - "vertices": ["yJdM", "UilW", "BHgp", "jbYw"], - "texture": 0 - }, - "MHxYSMHA": { - "uv": { - "zWCT": [13.98366, 35.445], - "b8kf": [13.19183, 29.8643], - "mjln": [22.42197, 29.8643] - }, - "vertices": ["mjln", "b8kf", "zWCT"], - "texture": 0 - }, - "e1EGiE0x": { - "uv": { - "AAGn": [17.44698, 34.61157], - "mjln": [19.79468, 32.54355], - "zWCT": [20.63818, 34.61157] - }, - "vertices": ["zWCT", "mjln", "AAGn"], - "texture": 0 - }, - "EnOjasRk": { - "uv": { - "LInl": [24, 28], - "NL1s": [12, 28], - "HRTL": [23, 31], - "ytho": [13, 31] - }, - "vertices": ["ytho", "HRTL", "NL1s", "LInl"], - "texture": 0 - }, - "BnVyjGEr": { - "uv": { - "7NKt": [15.35365, 24.2836], - "9osI": [18.30731, 28.92881], - "PCb6": [12.4, 28.92881] - }, - "vertices": ["PCb6", "9osI", "7NKt"], - "texture": 0 - }, - "1GP5oMXt": { - "uv": { - "7NKt": [15.35365, 24.2836], - "PCb6": [18.30731, 28.92881], - "cefY": [12.4, 28.92881] - }, - "vertices": ["cefY", "PCb6", "7NKt"], - "texture": 0 - }, - "HbmqV6wX": { - "uv": { - "7NKt": [18.09971, 25.20137], - "cefY": [21.05337, 29.84659], - "NXb9": [15.14606, 29.84659] - }, - "vertices": ["NXb9", "cefY", "7NKt"], - "texture": 0 - }, - "TZISD7Ta": { - "uv": { - "7NKt": [18.09971, 26.11915], - "grtz": [21.05337, 30.76436], - "9osI": [15.14606, 30.76436] - }, - "vertices": ["9osI", "grtz", "7NKt"], - "texture": 0 - }, - "jLIOfIVV": { - "uv": { - "grtz": [19.11966, 24.2836], - "pSuD": [19.67591, 27.111], - "AETh": [13.19183, 27.111], - "9osI": [13.74808, 24.2836] - }, - "vertices": ["9osI", "AETh", "pSuD", "grtz"], - "texture": 0 - }, - "EEI5QteS": { - "uv": { - "7NKt": [19.93042, 29.84659], - "NXb9": [22.88407, 25.20137], - "QrYn": [16.97677, 25.20137] - }, - "vertices": ["QrYn", "NXb9", "7NKt"], - "texture": 0 - }, - "DDwjMZN5": { - "uv": { - "NXb9": [19.94808, 27.1836], - "1Acn": [20.67591, 31.011], - "LInl": [12.19183, 31.011], - "QrYn": [12.91966, 27.1836] - }, - "vertices": ["QrYn", "LInl", "1Acn", "NXb9"], - "texture": 0 - }, - "ujSOPSMx": { - "uv": { - "AAGn": [13.98366, 35.445], - "PG6A": [22.42197, 29.8643], - "mjln": [13.19183, 29.8643], - "wOfP": [21.63014, 35.445] - }, - "vertices": ["wOfP", "mjln", "PG6A", "AAGn"], - "texture": 0 - }, - "J8OhjxTG": { - "uv": { - "0y1E": [16.22324, 35.445], - "AAGn": [12.4, 24.2836], - "wOfP": [20.04648, 24.2836] - }, - "vertices": ["wOfP", "AAGn", "0y1E"], - "texture": 0 - }, - "oKAkzerh": { - "uv": { - "YKrh": [12.4, 28.445], - "pSuD": [22.42197, 24.86432], - "AETh": [13.19183, 24.86432], - "MGSN": [23.2138, 28.445] - }, - "vertices": ["MGSN", "AETh", "pSuD", "YKrh"], - "texture": 0 - }, - "74vyrQL4": { - "uv": { - "0y1E": [16.22324, 35.445], - "9Vbx": [12.4, 24.2836], - "cVzJ": [20.04648, 24.2836] - }, - "vertices": ["cVzJ", "9Vbx", "0y1E"], - "texture": 0 - }, - "QwElfzPz": { - "uv": { - "B9LH": [13.19183, 29.8643], - "EApG": [22.81788, 27.07395], - "T24w": [12.79592, 27.07395], - "fvDz": [22.42197, 29.8643] - }, - "vertices": ["fvDz", "T24w", "EApG", "B9LH"], - "texture": 0 - }, - "UAW1iLNx": { - "uv": { - "MGSN": [23.2138, 24.2836], - "EApG": [22.81788, 27.07395], - "T24w": [12.79592, 27.07395], - "YKrh": [12.4, 24.2836] - }, - "vertices": ["YKrh", "T24w", "EApG", "MGSN"], - "texture": 0 - }, - "PqO49L9U": { - "uv": { - "0y1E": [16.22324, 35.445], - "cVzJ": [12.4, 24.2836], - "TmnP": [20.04648, 24.2836] - }, - "vertices": ["TmnP", "cVzJ", "0y1E"], - "texture": 0 - }, - "LktzJ856": { - "uv": { - "0y1E": [16.22324, 35.445], - "TmnP": [12.4, 24.2836], - "zWCT": [20.04648, 24.2836] - }, - "vertices": ["zWCT", "TmnP", "0y1E"], - "texture": 0 - }, - "biSz2U4t": { - "uv": { - "7NKt": [15.35365, 28.92881], - "QrYn": [18.30731, 24.2836], - "z83N": [12.4, 24.2836] - }, - "vertices": ["z83N", "QrYn", "7NKt"], - "texture": 0 - }, - "gFu0yaKG": { - "uv": { - "0y1E": [16.22324, 35.445], - "zWCT": [12.4, 24.2836], - "AAGn": [20.04648, 24.2836] - }, - "vertices": ["AAGn", "zWCT", "0y1E"], - "texture": 0 - }, - "LxyrzKoA": { - "uv": { - "1Acn": [23.2138, 24.2836], - "75IQ": [12.4, 24.2836], - "5AXE": [22.81788, 27.07395] - }, - "vertices": ["5AXE", "75IQ", "1Acn"], - "texture": 0 - }, - "mtdFIh3D": { - "uv": { - "LInl": [23.2138, 24.2836], - "NL1s": [22.81788, 27.07395], - "jbYw": [12.4, 24.2836] - }, - "vertices": ["jbYw", "NL1s", "LInl"], - "texture": 0 - }, - "YVCc997S": { - "uv": { - "1Acn": [12, 29.82347], - "zBbf": [13.3481, 28.22928], - "HRTL": [16.29357, 26.9836], - "LInl": [17.69612, 29.82347] - }, - "vertices": ["LInl", "HRTL", "zBbf", "1Acn"], - "texture": 0 - }, - "7JMKLqjo": { - "uv": { - "zBbf": [16.07105, 32.93739], - "HRTL": [16.04119, 29.9836], - "nGlq": [13.29124, 32.93739], - "ytho": [13, 30.76341] - }, - "vertices": ["ytho", "nGlq", "HRTL", "zBbf"], - "texture": 0 - }, - "s6PlbZph": { - "uv": { - "mjln": [13, 29.77682], - "NL1s": [13, 24.9836], - "ytho": [16.60807, 26.27909] - }, - "vertices": ["ytho", "NL1s", "mjln"], - "texture": 0 - }, - "CxGUwfqa": { - "uv": { - "5AXE": [16.8336, 24.9836], - "PG6A": [15.21383, 29.49484], - "nGlq": [13, 24.9836] - }, - "vertices": ["nGlq", "PG6A", "5AXE"], - "texture": 0 - }, - "o31175XQ": { - "uv": { - "PG6A": [22.3898, 28.4913], - "nGlq": [18.7916, 24.9836], - "mjln": [13, 28.4913], - "ytho": [16.5982, 24.9836] - }, - "vertices": ["ytho", "mjln", "nGlq", "PG6A"], - "texture": 0 - } - }, - "type": "mesh", - "uuid": "6ee6c485-55e3-677f-8a8a-6437317da917" - }, { "name": "cylinder", "color": 8, @@ -1724,11 +1074,6 @@ "zojw": [1.08212, 8.93096, -3.1567], "BQWs": [1.08212, 7.00051, -2.50503], "OaX5": [1.08212, 5.0953, -3.17988], - "rN5K": [-1.13411, 12.72132, -2.95922], - "V5o8": [-2.4565, 12.64499, -2.13536], - "2YyB": [-1.71994, 12.49646, 1.68307], - "4uEE": [-0.99277, 12.5609, 1.26799], - "vfKR": [-1.45132, 11.52806, 1.60898], "lVHe": [-2.4061, 11.56499, -2.1391], "95Wr": [-1.08212, 11.64282, -2.06143], "2hIL": [0.95205, 11.54948, 1.43849], @@ -1744,18 +1089,24 @@ "LyZP": [0.85971, 4.73963, 3.04673], "W7og": [-0.70589, 1.05172, 2.13501], "euyv": [0.70335, 1.05082, 2.13413], - "dL7l": [-0.95205, 11.52698, 1.43849], + "dL7l": [-0.95205, 11.52698, 0.93849], "lO3C": [-1.3071, 11.565, -1.80688], "iF7E": [0.00009, 11.77076, -1.22669], "qpa3": [1.30727, 11.565, -1.80688], - "K8mw": [1.71995, 12.49646, 1.68307], - "c3OB": [1.45132, 11.52806, 1.60898], "mebZ": [2.4061, 11.56499, -2.1391], - "dNWt": [2.4565, 12.64499, -2.13536], - "AoTh": [0.99277, 12.5609, 1.26799], + "WCsk": [1.08212, 11.64282, -2.06143], + "nOgN": [-1.27902, 12.0281, 1.49963], + "vfKR": [-1.45132, 11.52806, 1.60898], + "c3OB": [1.45132, 11.52806, 1.60898], + "z3lK": [0.95205, 11.52698, 0.93849], + "rN5K": [-1.13411, 12.72132, -2.95922], + "4uEE": [-0.99277, 12.5609, 0.76799], + "AoTh": [0.99277, 12.5609, 0.76799], "y7CQ": [1.13411, 12.72132, -2.95922], - "z3lK": [0.95205, 11.52698, 1.43849], - "WCsk": [1.08212, 11.64282, -2.06143] + "V5o8": [-2.4565, 12.64499, -2.13536], + "2YyB": [-1.71994, 12.49646, 1.68307], + "K8mw": [1.71995, 12.49646, 1.68307], + "dNWt": [2.4565, 12.64499, -2.13536] }, "faces": { "n9OF4vTz": { @@ -1766,7 +1117,7 @@ "6ehA": [5.57735, 22.0836] }, "vertices": ["6ehA", "00Kd", "EbdB", "qevP"], - "texture": 0 + "texture": 1 }, "qQ6Tj1tt": { "uv": { @@ -1776,7 +1127,7 @@ "hnZd": [0.57735, 14.0836] }, "vertices": ["hnZd", "La2n", "VNps", "4ezv"], - "texture": 0 + "texture": 1 }, "UNfAJBLi": { "uv": { @@ -1786,7 +1137,7 @@ "La2n": [0.57735, 15.9836] }, "vertices": ["La2n", "6ehA", "4ezv", "EbdB"], - "texture": 0 + "texture": 1 }, "PZTHi2NP": { "uv": { @@ -1795,7 +1146,7 @@ "6Fz4": [0, 25] }, "vertices": ["6Fz4", "iHjd", "JesZ"], - "texture": 0 + "texture": 1 }, "o6vR960m": { "uv": { @@ -1805,7 +1156,7 @@ "KUq1": [2, 28.33333] }, "vertices": ["KUq1", "Sx25", "8U5W", "qtJM"], - "texture": 0 + "texture": 1 }, "Xs4ZXoVL": { "uv": { @@ -1814,7 +1165,7 @@ "sCtj": [1, 25] }, "vertices": ["sCtj", "6Fz4", "JesZ"], - "texture": 0 + "texture": 1 }, "RsnMytIp": { "uv": { @@ -1824,7 +1175,7 @@ "YbTn": [2, 28.33333] }, "vertices": ["YbTn", "8U5W", "Dpuc", "KUq1"], - "texture": 0 + "texture": 1 }, "X1EBn6ci": { "uv": { @@ -1834,7 +1185,7 @@ "sCtj": [2, 35] }, "vertices": ["sCtj", "Mwes", "4Qxs", "6Fz4"], - "texture": 0 + "texture": 1 }, "beE5w2Ye": { "uv": { @@ -1844,7 +1195,7 @@ "Mwes": [2, 31.66667] }, "vertices": ["Mwes", "YbTn", "KUq1", "4Qxs"], - "texture": 0 + "texture": 1 }, "ciRZpVSK": { "uv": { @@ -1854,7 +1205,7 @@ "6Fz4": [2, 35] }, "vertices": ["6Fz4", "4Qxs", "8tqY", "iHjd"], - "texture": 0 + "texture": 1 }, "TI08wsJr": { "uv": { @@ -1864,7 +1215,7 @@ "4Qxs": [2, 31.66667] }, "vertices": ["4Qxs", "KUq1", "qtJM", "8tqY"], - "texture": 0 + "texture": 1 }, "OvuFuXq5": { "uv": { @@ -1874,7 +1225,7 @@ "lVHe": [0, 25] }, "vertices": ["lVHe", "Sx25", "8U5W", "c1T2"], - "texture": 0 + "texture": 1 }, "RDhhyXov": { "uv": { @@ -1884,56 +1235,56 @@ "c1T2": [0, 25] }, "vertices": ["c1T2", "8U5W", "Dpuc", "jkti"], - "texture": 0 + "texture": 1 }, "VSHmfbTe": { "uv": { - "qtJM": [26.25, 27.9836], - "Rnso": [24.75, 27.9836], - "Hvq1": [24.75, 23.9836], - "Sx25": [26.25, 23.9836] + "qtJM": [25.6, 28.1], + "Rnso": [24.8, 28.1], + "Hvq1": [24.8, 24.1], + "Sx25": [25.6, 24.1] }, "vertices": ["Sx25", "Hvq1", "Rnso", "qtJM"], - "texture": 0 + "texture": 1 }, "JvlKDALY": { "uv": { - "8tqY": [26.25, 27.9836], - "4mSB": [24.75, 27.9836], - "Rnso": [24.75, 23.9836], - "qtJM": [26.25, 23.9836] + "8tqY": [25.6, 28.1], + "4mSB": [24.8, 28.1], + "Rnso": [24.8, 24.1], + "qtJM": [25.6, 24.1] }, "vertices": ["qtJM", "Rnso", "4mSB", "8tqY"], - "texture": 0 + "texture": 1 }, "0XD78FeQ": { "uv": { - "iHjd": [26.25, 23.9836], - "7R9u": [24.75, 23.9836], - "4mSB": [24.75, 27.9836], - "8tqY": [26.25, 27.9836] + "iHjd": [25.6, 24.1], + "7R9u": [24.8, 24.1], + "4mSB": [24.8, 28.1], + "8tqY": [25.6, 28.1] }, "vertices": ["8tqY", "4mSB", "7R9u", "iHjd"], - "texture": 0 + "texture": 1 }, "rHp11s5v": { "uv": { - "JesZ": [26.25, 27.9836], - "7R9u": [24.75, 23.9836], - "iHjd": [24.75, 27.9836] + "JesZ": [26, 28], + "7R9u": [25, 24], + "iHjd": [25, 28] }, "vertices": ["iHjd", "7R9u", "JesZ"], - "texture": 0 + "texture": 1 }, "BSrc4Csr": { "uv": { - "Sx25": [26.25, 27.9836], - "Hvq1": [24.75, 27.9836], - "95Wr": [24.75, 23.9836], - "lVHe": [26.25, 23.9836] + "Sx25": [25.6, 28.1], + "Hvq1": [24.8, 28.1], + "95Wr": [24.8, 24.1], + "lVHe": [25.6, 24.1] }, "vertices": ["lVHe", "95Wr", "Hvq1", "Sx25"], - "texture": 0 + "texture": 1 }, "SFkdM7Po": { "uv": { @@ -1942,17 +1293,17 @@ "JesZ": [1, 25] }, "vertices": ["JesZ", "7R9u", "ww1k"], - "texture": 0 + "texture": 1 }, "SQsqbOoz": { "uv": { - "AYR2": [26.25, 27.9836], - "BQWs": [24.75, 23.9836], - "zojw": [24.75, 27.9836], - "XnvV": [26.25, 23.9836] + "AYR2": [25.6, 28.1], + "BQWs": [24.8, 24.1], + "zojw": [24.8, 28.1], + "XnvV": [25.6, 24.1] }, "vertices": ["XnvV", "zojw", "BQWs", "AYR2"], - "texture": 0 + "texture": 1 }, "EKfPkOay": { "uv": { @@ -1961,7 +1312,7 @@ "JesZ": [1, 26.66667] }, "vertices": ["JesZ", "W7og", "sCtj"], - "texture": 0 + "texture": 1 }, "6EztQi7p": { "uv": { @@ -1971,27 +1322,27 @@ "FVmL": [2, 26.66667] }, "vertices": ["FVmL", "rdSk", "wHNi", "8HKl"], - "texture": 0 + "texture": 1 }, "UTGzqFGo": { "uv": { - "2Cy7": [26.25, 23.9836], - "Kim6": [24.75, 27.9836], - "OaX5": [24.75, 23.9836], - "ww1k": [26.25, 27.9836] + "2Cy7": [25.6, 24.1], + "Kim6": [24.8, 28.1], + "OaX5": [24.8, 24.1], + "ww1k": [25.6, 28.1] }, "vertices": ["ww1k", "OaX5", "Kim6", "2Cy7"], - "texture": 0 + "texture": 1 }, "93TZ8dyd": { "uv": { - "XnvV": [26.25, 27.9836], - "OaX5": [24.75, 23.9836], - "BQWs": [24.75, 27.9836], - "2Cy7": [26.25, 23.9836] + "XnvV": [25.6, 28.1], + "OaX5": [24.8, 24.1], + "BQWs": [24.8, 28.1], + "2Cy7": [25.6, 24.1] }, "vertices": ["2Cy7", "BQWs", "OaX5", "XnvV"], - "texture": 0 + "texture": 1 }, "iTD3Q4X2": { "uv": { @@ -2001,7 +1352,7 @@ "Uxw5": [2, 31.66667] }, "vertices": ["Uxw5", "euyv", "LyZP", "qbIt"], - "texture": 0 + "texture": 1 }, "hApOPGS9": { "uv": { @@ -2011,7 +1362,7 @@ "8HKl": [2, 28.33333] }, "vertices": ["8HKl", "LyZP", "rdSk", "Uxw5"], - "texture": 0 + "texture": 1 }, "VNKyi5TO": { "uv": { @@ -2021,17 +1372,17 @@ "Bzop": [2, 25] }, "vertices": ["Bzop", "wHNi", "b69x", "FVmL"], - "texture": 0 + "texture": 1 }, "vK6wJUrn": { "uv": { - "mebZ": [26.25, 27.9836], - "zojw": [24.75, 23.9836], - "WCsk": [24.75, 27.9836], - "AYR2": [26.25, 23.9836] + "mebZ": [25.6, 28.1], + "zojw": [24.8, 24.1], + "WCsk": [24.8, 28.1], + "AYR2": [25.6, 24.1] }, "vertices": ["AYR2", "WCsk", "zojw", "mebZ"], - "texture": 0 + "texture": 1 }, "OGLt4pyG": { "uv": { @@ -2040,7 +1391,7 @@ "qNY4": [2, 26.66667] }, "vertices": ["qNY4", "qbIt", "JesZ"], - "texture": 0 + "texture": 1 }, "PSHAvkQA": { "uv": { @@ -2049,7 +1400,7 @@ "ww1k": [1, 26.66667] }, "vertices": ["ww1k", "qNY4", "JesZ"], - "texture": 0 + "texture": 1 }, "NU9LV3TF": { "uv": { @@ -2059,7 +1410,7 @@ "ww1k": [2, 35] }, "vertices": ["ww1k", "2Cy7", "uyLC", "qNY4"], - "texture": 0 + "texture": 1 }, "eWNLaUh1": { "uv": { @@ -2069,7 +1420,7 @@ "qNY4": [2, 35] }, "vertices": ["qNY4", "uyLC", "Uxw5", "qbIt"], - "texture": 0 + "texture": 1 }, "7OpZlenr": { "uv": { @@ -2079,7 +1430,7 @@ "D5z6": [2, 28.33333] }, "vertices": ["D5z6", "FVmL", "tsu4", "8HKl"], - "texture": 0 + "texture": 1 }, "LMEp0vkq": { "uv": { @@ -2089,7 +1440,7 @@ "XnvV": [2, 28.33333] }, "vertices": ["XnvV", "tsu4", "AYR2", "D5z6"], - "texture": 0 + "texture": 1 }, "IZhPvWFw": { "uv": { @@ -2099,7 +1450,7 @@ "2Cy7": [2, 31.66667] }, "vertices": ["2Cy7", "XnvV", "D5z6", "uyLC"], - "texture": 0 + "texture": 1 }, "SbOPjyT9": { "uv": { @@ -2109,7 +1460,7 @@ "uyLC": [2, 31.66667] }, "vertices": ["uyLC", "D5z6", "8HKl", "Uxw5"], - "texture": 0 + "texture": 1 }, "JzyyncTS": { "uv": { @@ -2119,7 +1470,7 @@ "Bzop": [0, 25] }, "vertices": ["Bzop", "FVmL", "tsu4", "Atxb"], - "texture": 0 + "texture": 1 }, "mKnmlKRy": { "uv": { @@ -2129,116 +1480,107 @@ "Atxb": [0, 25] }, "vertices": ["Atxb", "tsu4", "AYR2", "mebZ"], - "texture": 0 + "texture": 1 }, "cMtrfwQb": { "uv": { - "4ezv": [24, 27.9836], - "VNps": [24, 23.9836], - "Hvq1": [25, 23.9836], - "Rnso": [25, 27.9836] + "4ezv": [24, 28], + "VNps": [24, 24], + "Hvq1": [25, 24], + "Rnso": [25, 28] }, "vertices": ["Rnso", "Hvq1", "VNps", "4ezv"], - "texture": 0 + "texture": 1 }, "Y33rUMC7": { "uv": { - "EbdB": [24, 27.9836], - "4ezv": [24, 23.9836], - "Rnso": [25, 23.9836], - "4mSB": [25, 27.9836] + "EbdB": [24, 28], + "4ezv": [24, 24], + "Rnso": [25, 24], + "4mSB": [25, 28] }, "vertices": ["4mSB", "Rnso", "4ezv", "EbdB"], - "texture": 0 + "texture": 1 }, "ZzNAHZec": { "uv": { - "qevP": [25, 23.9836], - "EbdB": [25, 27.9836], - "4mSB": [24, 27.9836], - "7R9u": [24, 23.9836] + "qevP": [25, 24], + "EbdB": [25, 28], + "4mSB": [24, 28], + "7R9u": [24, 24] }, "vertices": ["7R9u", "4mSB", "EbdB", "qevP"], - "texture": 0 + "texture": 1 }, "09dBiOBM": { "uv": { - "VNps": [24, 27.9836], - "lO3C": [24, 23.9836], - "95Wr": [25, 23.9836], - "Hvq1": [25, 27.9836] + "VNps": [24, 28], + "lO3C": [24, 24], + "95Wr": [25, 24], + "Hvq1": [25, 28] }, "vertices": ["Hvq1", "95Wr", "lO3C", "VNps"], - "texture": 0 + "texture": 1 }, "cRoD6z5f": { "uv": { - "GwxS": [25, 23.9836], - "qevP": [25, 27.9836], - "7R9u": [24, 27.9836], - "ww1k": [24, 23.9836] + "GwxS": [25, 24], + "qevP": [25, 28], + "7R9u": [24, 28], + "ww1k": [24, 24] }, "vertices": ["ww1k", "7R9u", "qevP", "GwxS"], - "texture": 0 + "texture": 1 }, "JI8OZCGa": { "uv": { - "hnZd": [24, 27.9836], - "La2n": [24, 23.9836], - "BQWs": [25, 23.9836], - "zojw": [25, 27.9836] + "hnZd": [24, 28], + "La2n": [24, 24], + "BQWs": [25, 24], + "zojw": [25, 28] }, "vertices": ["zojw", "BQWs", "La2n", "hnZd"], - "texture": 0 + "texture": 1 }, "JwbEywX4": { "uv": { - "00Kd": [26.25, 23.9836], - "GwxS": [24.75, 23.9836], - "ww1k": [24.75, 27.9836], - "Kim6": [26.25, 27.9836] + "00Kd": [26, 24], + "GwxS": [25, 24], + "ww1k": [25, 28], + "Kim6": [26, 28] }, "vertices": ["Kim6", "ww1k", "GwxS", "00Kd"], - "texture": 0 + "texture": 1 }, "K8KxJUkc": { "uv": { - "6ehA": [25, 23.9836], - "00Kd": [25, 27.9836], - "Kim6": [24, 27.9836], - "OaX5": [24, 23.9836] + "6ehA": [25, 24], + "00Kd": [25, 28], + "Kim6": [24, 28], + "OaX5": [24, 24] }, "vertices": ["OaX5", "Kim6", "00Kd", "6ehA"], - "texture": 0 + "texture": 1 }, "hYkNu1Mz": { "uv": { - "La2n": [24, 27.9836], - "6ehA": [24, 23.9836], - "OaX5": [25, 23.9836], - "BQWs": [25, 27.9836] + "La2n": [24, 28], + "6ehA": [24, 24], + "OaX5": [25, 24], + "BQWs": [25, 28] }, "vertices": ["BQWs", "OaX5", "6ehA", "La2n"], - "texture": 0 + "texture": 1 }, "lkuqRz64": { "uv": { - "qpa3": [24, 27.9836], - "hnZd": [24, 23.9836], - "zojw": [25, 23.9836], - "WCsk": [25, 27.9836] + "qpa3": [24, 28], + "hnZd": [24, 24], + "zojw": [25, 24], + "WCsk": [25, 28] }, "vertices": ["WCsk", "zojw", "hnZd", "qpa3"], - "texture": 0 - }, - "NC4hIjdH": { - "uv": { - "vfKR": [1, 29.16667], - "dL7l": [0, 30.83333], - "2YyB": [2, 32.5] - }, - "vertices": ["2YyB", "dL7l", "vfKR"], - "texture": 0 + "texture": 1 }, "0wc8SlE7": { "uv": { @@ -2248,7 +1590,7 @@ "qpa3": [0.57735, 12.0836] }, "vertices": ["qpa3", "hnZd", "lO3C", "VNps"], - "texture": 0 + "texture": 1 }, "POoFRKmF": { "uv": { @@ -2257,7 +1599,7 @@ "2hIL": [0, 6.9836] }, "vertices": ["2hIL", "qpa3", "iF7E"], - "texture": 0 + "texture": 1 }, "AN01rZCN": { "uv": { @@ -2266,7 +1608,7 @@ "qpa3": [0, 7.9836] }, "vertices": ["qpa3", "lO3C", "iF7E"], - "texture": 0 + "texture": 1 }, "dOn85EGy": { "uv": { @@ -2276,7 +1618,7 @@ "95Wr": [0, 26.66667] }, "vertices": ["95Wr", "lO3C", "lVHe", "c1T2"], - "texture": 0 + "texture": 1 }, "XhqlzGeX": { "uv": { @@ -2286,7 +1628,7 @@ "Atxb": [2, 25] }, "vertices": ["Atxb", "b69x", "Qy1i", "Bzop"], - "texture": 0 + "texture": 1 }, "exiF1FcH": { "uv": { @@ -2296,46 +1638,7 @@ "Atxb": [0, 26.66667] }, "vertices": ["Atxb", "mebZ", "qpa3", "WCsk"], - "texture": 0 - }, - "5aIvrcvK": { - "uv": { - "rN5K": [3, 28.33333], - "V5o8": [1, 28.33333], - "2YyB": [0, 27.5], - "4uEE": [2, 27.5] - }, - "vertices": ["4uEE", "2YyB", "V5o8", "rN5K"], - "texture": 0 - }, - "iSAiDTYc": { - "uv": { - "V5o8": [2, 27.5], - "lVHe": [2, 28.33333], - "vfKR": [0, 27.5], - "2YyB": [0, 26.66667] - }, - "vertices": ["2YyB", "vfKR", "lVHe", "V5o8"], - "texture": 0 - }, - "PwPxBdKQ": { - "uv": { - "V5o8": [3, 27.5], - "lVHe": [3, 28.33333], - "95Wr": [4, 28.33333], - "rN5K": [4, 27.5] - }, - "vertices": ["rN5K", "95Wr", "lVHe", "V5o8"], - "texture": 0 - }, - "9pq1jXgB": { - "uv": { - "2YyB": [2, 32.5], - "dL7l": [0, 30.83333], - "4uEE": [0, 32.5] - }, - "vertices": ["4uEE", "dL7l", "2YyB"], - "texture": 0 + "texture": 1 }, "V66n5vfi": { "uv": { @@ -2345,7 +1648,7 @@ "jkti": [0, 26.66667] }, "vertices": ["jkti", "u0Gb", "dfiu", "c1T2"], - "texture": 0 + "texture": 1 }, "Gz3BxX0B": { "uv": { @@ -2355,7 +1658,7 @@ "u0Gb": [1, 26.66667] }, "vertices": ["u0Gb", "b69x", "Qy1i", "dfiu"], - "texture": 0 + "texture": 1 }, "SHp3UP9H": { "uv": { @@ -2365,7 +1668,7 @@ "Dpuc": [0, 26.66667] }, "vertices": ["Dpuc", "sm1U", "u0Gb", "jkti"], - "texture": 0 + "texture": 1 }, "um736Dq3": { "uv": { @@ -2375,7 +1678,7 @@ "sm1U": [1, 26.66667] }, "vertices": ["sm1U", "wHNi", "b69x", "u0Gb"], - "texture": 0 + "texture": 1 }, "rWGGdvq2": { "uv": { @@ -2385,7 +1688,7 @@ "YbTn": [0, 28.33333] }, "vertices": ["YbTn", "LF0V", "sm1U", "Dpuc"], - "texture": 0 + "texture": 1 }, "e3ukGqpq": { "uv": { @@ -2395,7 +1698,7 @@ "LF0V": [1, 28.33333] }, "vertices": ["LF0V", "rdSk", "wHNi", "sm1U"], - "texture": 0 + "texture": 1 }, "Z1lWsWgL": { "uv": { @@ -2405,7 +1708,7 @@ "Mwes": [0, 31.66667] }, "vertices": ["Mwes", "hTCm", "LF0V", "YbTn"], - "texture": 0 + "texture": 1 }, "Rz4sb4QU": { "uv": { @@ -2415,7 +1718,7 @@ "hTCm": [1, 31.66667] }, "vertices": ["hTCm", "LyZP", "rdSk", "LF0V"], - "texture": 0 + "texture": 1 }, "Y18WdEWz": { "uv": { @@ -2425,7 +1728,7 @@ "sCtj": [0, 35] }, "vertices": ["sCtj", "W7og", "hTCm", "Mwes"], - "texture": 0 + "texture": 1 }, "vilrXqoC": { "uv": { @@ -2435,7 +1738,7 @@ "W7og": [1, 35] }, "vertices": ["W7og", "euyv", "LyZP", "hTCm"], - "texture": 0 + "texture": 1 }, "fdQoRajU": { "uv": { @@ -2444,7 +1747,7 @@ "qbIt": [2, 25] }, "vertices": ["qbIt", "W7og", "JesZ"], - "texture": 0 + "texture": 1 }, "DrtiOr4Z": { "uv": { @@ -2453,7 +1756,7 @@ "qpa3": [4, 27.5] }, "vertices": ["qpa3", "Qy1i", "Atxb"], - "texture": 0 + "texture": 1 }, "tjm5pHFW": { "uv": { @@ -2462,7 +1765,7 @@ "lO3C": [2, 27.5] }, "vertices": ["lO3C", "dfiu", "c1T2"], - "texture": 0 + "texture": 1 }, "DOLSY8dr": { "uv": { @@ -2472,7 +1775,7 @@ "qpa3": [5, 27.5] }, "vertices": ["qpa3", "lO3C", "Qy1i", "dfiu"], - "texture": 0 + "texture": 1 }, "cY6ai2RJ": { "uv": { @@ -2481,7 +1784,7 @@ "lO3C": [0, 7.9836] }, "vertices": ["lO3C", "dL7l", "iF7E"], - "texture": 0 + "texture": 1 }, "eZhAcwzx": { "uv": { @@ -2490,7 +1793,7 @@ "qpa3": [2.9048, 7.9836] }, "vertices": ["qpa3", "lO3C", "iF7E"], - "texture": 0 + "texture": 1 }, "vcbjYQ56": { "uv": { @@ -2499,7 +1802,17 @@ "dL7l": [0, 8.9715] }, "vertices": ["dL7l", "2hIL", "iF7E"], - "texture": 0 + "texture": 1 + }, + "ytSWBci4": { + "uv": { + "z3lK": [4, 30.90264], + "c3OB": [4.52758, 30.90264], + "vfKR": [4.52758, 28], + "dL7l": [4, 28] + }, + "vertices": ["dL7l", "vfKR", "c3OB", "z3lK"], + "texture": 1 }, "J8zAALyf": { "uv": { @@ -2509,55 +1822,17 @@ "dL7l": [0, 29.16667] }, "vertices": ["dL7l", "4uEE", "95Wr", "rN5K"], - "texture": 0 + "texture": 1 }, - "LPxIqajL": { + "WuCTXwRx": { "uv": { - "c3OB": [1, 29.16667], - "K8mw": [2, 32.5], - "z3lK": [0, 30.83333] + "AoTh": [4, 29.9041], + "z3lK": [5.04867, 29.9041], + "dL7l": [5.04867, 28], + "4uEE": [4, 28] }, - "vertices": ["z3lK", "K8mw", "c3OB"], - "texture": 0 - }, - "sc700U88": { - "uv": { - "y7CQ": [3, 28.33333], - "dNWt": [1, 28.33333], - "AoTh": [2, 27.5], - "K8mw": [0, 27.5] - }, - "vertices": ["K8mw", "AoTh", "dNWt", "y7CQ"], - "texture": 0 - }, - "RpTXdYE9": { - "uv": { - "dNWt": [2, 27.5], - "mebZ": [2, 28.33333], - "K8mw": [0, 26.66667], - "c3OB": [0, 27.5] - }, - "vertices": ["c3OB", "K8mw", "mebZ", "dNWt"], - "texture": 0 - }, - "zNZXQO0c": { - "uv": { - "dNWt": [3, 27.5], - "mebZ": [3, 28.33333], - "y7CQ": [4, 27.5], - "WCsk": [4, 28.33333] - }, - "vertices": ["WCsk", "y7CQ", "mebZ", "dNWt"], - "texture": 0 - }, - "CEfhvRmd": { - "uv": { - "K8mw": [2, 32.5], - "AoTh": [0, 32.5], - "z3lK": [0, 30.83333] - }, - "vertices": ["z3lK", "AoTh", "K8mw"], - "texture": 0 + "vertices": ["4uEE", "dL7l", "z3lK", "AoTh"], + "texture": 1 }, "q6b9SoOv": { "uv": { @@ -2567,7 +1842,87 @@ "AoTh": [1, 29.16667] }, "vertices": ["AoTh", "z3lK", "WCsk", "y7CQ"], - "texture": 0 + "texture": 1 + }, + "5aIvrcvK": { + "uv": { + "rN5K": [3, 28.33333], + "V5o8": [1, 28.33333], + "2YyB": [0, 27.5], + "4uEE": [2, 27.5] + }, + "vertices": ["4uEE", "2YyB", "V5o8", "rN5K"], + "texture": 1 + }, + "sc700U88": { + "uv": { + "y7CQ": [3, 28.33333], + "dNWt": [1, 28.33333], + "AoTh": [2, 27.5], + "K8mw": [0, 27.5] + }, + "vertices": ["K8mw", "AoTh", "dNWt", "y7CQ"], + "texture": 1 + }, + "ALfg0mRK": { + "uv": { + "K8mw": [4, 29.98554], + "AoTh": [4.83977, 29.98554], + "4uEE": [4.83977, 28], + "2YyB": [4, 28] + }, + "vertices": ["2YyB", "4uEE", "AoTh", "K8mw"], + "texture": 1 + }, + "iSAiDTYc": { + "uv": { + "V5o8": [2, 27.5], + "lVHe": [2, 28.33333], + "vfKR": [0, 27.5], + "2YyB": [0, 26.66667] + }, + "vertices": ["2YyB", "vfKR", "lVHe", "V5o8"], + "texture": 1 + }, + "PwPxBdKQ": { + "uv": { + "V5o8": [3, 27.5], + "lVHe": [3, 28.33333], + "95Wr": [4, 28.33333], + "rN5K": [4, 27.5] + }, + "vertices": ["rN5K", "95Wr", "lVHe", "V5o8"], + "texture": 1 + }, + "RpTXdYE9": { + "uv": { + "dNWt": [2, 27.5], + "mebZ": [2, 28.33333], + "K8mw": [0, 26.66667], + "c3OB": [0, 27.5] + }, + "vertices": ["c3OB", "K8mw", "mebZ", "dNWt"], + "texture": 1 + }, + "zNZXQO0c": { + "uv": { + "dNWt": [3, 27.5], + "mebZ": [3, 28.33333], + "y7CQ": [4, 27.5], + "WCsk": [4, 28.33333] + }, + "vertices": ["WCsk", "y7CQ", "mebZ", "dNWt"], + "texture": 1 + }, + "Yr6Wxd7L": { + "uv": { + "c3OB": [4, 31.43989], + "K8mw": [5.00769, 31.43989], + "2YyB": [5.00769, 28], + "vfKR": [4, 28] + }, + "vertices": ["vfKR", "2YyB", "K8mw", "c3OB"], + "texture": 1 } }, "type": "mesh", @@ -2607,7 +1962,7 @@ "Orqk": [5.3696, 54.3836] }, "vertices": ["Orqk", "Ngnq", "fXDl"], - "texture": 0 + "texture": 1 }, "jwCmvIw0": { "uv": { @@ -2617,7 +1972,7 @@ "Ngnq": [2.24355, 58.9896] }, "vertices": ["Ngnq", "Orqk", "2WPs", "86iU"], - "texture": 0 + "texture": 1 }, "8CBehK8M": { "uv": { @@ -2626,7 +1981,7 @@ "86iU": [0, 52.7496] }, "vertices": ["86iU", "2WPs", "769S"], - "texture": 0 + "texture": 1 }, "6735bTQz": { "uv": { @@ -2635,7 +1990,7 @@ "sf20": [3.37555, 53.3836] }, "vertices": ["sf20", "Orqk", "fXDl"], - "texture": 0 + "texture": 1 }, "5RuiYjJo": { "uv": { @@ -2645,7 +2000,7 @@ "Orqk": [1.3815, 58.9844] }, "vertices": ["Orqk", "sf20", "JpAB", "2WPs"], - "texture": 0 + "texture": 1 }, "haqmnfWx": { "uv": { @@ -2654,7 +2009,7 @@ "2WPs": [1.3815, 55.7496] }, "vertices": ["2WPs", "JpAB", "769S"], - "texture": 0 + "texture": 1 }, "LzfYKXZg": { "uv": { @@ -2663,7 +2018,7 @@ "uSt3": [1.3815, 55.3836] }, "vertices": ["uSt3", "sf20", "fXDl"], - "texture": 0 + "texture": 1 }, "cdXcnv9J": { "uv": { @@ -2673,7 +2028,7 @@ "sf20": [1.3815, 58.9999] }, "vertices": ["sf20", "uSt3", "LEG0", "JpAB"], - "texture": 0 + "texture": 1 }, "2Zbo3wUk": { "uv": { @@ -2682,7 +2037,7 @@ "JpAB": [1.3815, 53.2262] }, "vertices": ["JpAB", "LEG0", "769S"], - "texture": 0 + "texture": 1 }, "7Lb8dPtY": { "uv": { @@ -2691,7 +2046,7 @@ "H1ru": [1.3815, 50.9836] }, "vertices": ["H1ru", "uSt3", "fXDl"], - "texture": 0 + "texture": 1 }, "smP5XAom": { "uv": { @@ -2701,7 +2056,7 @@ "uSt3": [0.86205, 58.9896] }, "vertices": ["uSt3", "H1ru", "GPdT", "LEG0"], - "texture": 0 + "texture": 1 }, "Jq3zWgIi": { "uv": { @@ -2710,7 +2065,7 @@ "LEG0": [0, 55.7496] }, "vertices": ["LEG0", "GPdT", "769S"], - "texture": 0 + "texture": 1 }, "Lf6TqTg3": { "uv": { @@ -2719,7 +2074,7 @@ "HLm2": [3.37541, 51.9836] }, "vertices": ["HLm2", "H1ru", "fXDl"], - "texture": 0 + "texture": 1 }, "8RzK1EH5": { "uv": { @@ -2729,7 +2084,7 @@ "H1ru": [1.3815, 58.9843] }, "vertices": ["H1ru", "HLm2", "Ba1X", "GPdT"], - "texture": 0 + "texture": 1 }, "BDGVQs73": { "uv": { @@ -2738,7 +2093,7 @@ "GPdT": [2.76299, 52.7496] }, "vertices": ["GPdT", "Ba1X", "769S"], - "texture": 0 + "texture": 1 }, "1l3NVOxJ": { "uv": { @@ -2747,7 +2102,7 @@ "Ngnq": [5.3696, 50.9836] }, "vertices": ["Ngnq", "HLm2", "fXDl"], - "texture": 0 + "texture": 1 }, "yIuKEBDF": { "uv": { @@ -2757,7 +2112,7 @@ "HLm2": [1.3815, 59] }, "vertices": ["HLm2", "Ngnq", "86iU", "Ba1X"], - "texture": 0 + "texture": 1 }, "ZCMrJe0Y": { "uv": { @@ -2766,7 +2121,7 @@ "Ba1X": [1.3815, 56.2262] }, "vertices": ["Ba1X", "86iU", "769S"], - "texture": 0 + "texture": 1 } }, "type": "mesh", @@ -2806,7 +2161,7 @@ "Ngnq": [9.3696, 55.3836] }, "vertices": ["Ngnq", "Orqk", "fXDl"], - "texture": 0 + "texture": 1 }, "jwCmvIw0": { "uv": { @@ -2816,7 +2171,7 @@ "Orqk": [6.24355, 59.9896] }, "vertices": ["Orqk", "Ngnq", "2WPs", "86iU"], - "texture": 0 + "texture": 1 }, "8CBehK8M": { "uv": { @@ -2825,7 +2180,7 @@ "2WPs": [4, 53.7496] }, "vertices": ["2WPs", "86iU", "769S"], - "texture": 0 + "texture": 1 }, "6735bTQz": { "uv": { @@ -2834,7 +2189,7 @@ "Orqk": [7.37555, 54.3836] }, "vertices": ["Orqk", "sf20", "fXDl"], - "texture": 0 + "texture": 1 }, "5RuiYjJo": { "uv": { @@ -2844,7 +2199,7 @@ "sf20": [5.3815, 59.9844] }, "vertices": ["sf20", "Orqk", "JpAB", "2WPs"], - "texture": 0 + "texture": 1 }, "haqmnfWx": { "uv": { @@ -2853,7 +2208,7 @@ "JpAB": [5.3815, 56.7496] }, "vertices": ["JpAB", "2WPs", "769S"], - "texture": 0 + "texture": 1 }, "LzfYKXZg": { "uv": { @@ -2862,7 +2217,7 @@ "sf20": [5.3815, 56.3836] }, "vertices": ["sf20", "uSt3", "fXDl"], - "texture": 0 + "texture": 1 }, "cdXcnv9J": { "uv": { @@ -2872,7 +2227,7 @@ "uSt3": [5.3815, 59.9999] }, "vertices": ["uSt3", "sf20", "LEG0", "JpAB"], - "texture": 0 + "texture": 1 }, "2Zbo3wUk": { "uv": { @@ -2881,7 +2236,7 @@ "LEG0": [5.3815, 54.2262] }, "vertices": ["LEG0", "JpAB", "769S"], - "texture": 0 + "texture": 1 }, "7Lb8dPtY": { "uv": { @@ -2890,7 +2245,7 @@ "uSt3": [5.3815, 51.9836] }, "vertices": ["uSt3", "H1ru", "fXDl"], - "texture": 0 + "texture": 1 }, "smP5XAom": { "uv": { @@ -2900,7 +2255,7 @@ "H1ru": [4.86205, 59.9896] }, "vertices": ["H1ru", "uSt3", "GPdT", "LEG0"], - "texture": 0 + "texture": 1 }, "Jq3zWgIi": { "uv": { @@ -2909,7 +2264,7 @@ "GPdT": [4, 56.7496] }, "vertices": ["GPdT", "LEG0", "769S"], - "texture": 0 + "texture": 1 }, "Lf6TqTg3": { "uv": { @@ -2918,7 +2273,7 @@ "H1ru": [7.37541, 52.9836] }, "vertices": ["H1ru", "HLm2", "fXDl"], - "texture": 0 + "texture": 1 }, "8RzK1EH5": { "uv": { @@ -2928,7 +2283,7 @@ "HLm2": [5.3815, 59.9843] }, "vertices": ["HLm2", "H1ru", "Ba1X", "GPdT"], - "texture": 0 + "texture": 1 }, "BDGVQs73": { "uv": { @@ -2937,7 +2292,7 @@ "Ba1X": [6.76299, 53.7496] }, "vertices": ["Ba1X", "GPdT", "769S"], - "texture": 0 + "texture": 1 }, "1l3NVOxJ": { "uv": { @@ -2946,7 +2301,7 @@ "HLm2": [9.3696, 51.9836] }, "vertices": ["HLm2", "Ngnq", "fXDl"], - "texture": 0 + "texture": 1 }, "yIuKEBDF": { "uv": { @@ -2956,7 +2311,7 @@ "Ngnq": [5.3815, 60] }, "vertices": ["Ngnq", "HLm2", "86iU", "Ba1X"], - "texture": 0 + "texture": 1 }, "ZCMrJe0Y": { "uv": { @@ -2965,7 +2320,7 @@ "86iU": [5.3815, 57.2262] }, "vertices": ["86iU", "Ba1X", "769S"], - "texture": 0 + "texture": 1 } }, "type": "mesh", @@ -3011,7 +2366,7 @@ "3QLG": [7.5774, 42.9836] }, "vertices": ["3QLG", "1O7X", "hKiQ"], - "texture": 0 + "texture": 1 }, "amXAQ62A": { "uv": { @@ -3021,7 +2376,7 @@ "AuqO": [0, 36.9836] }, "vertices": ["AuqO", "D3Zi", "S34R", "SQtr"], - "texture": 0 + "texture": 1 }, "pmtHFukt": { "uv": { @@ -3030,7 +2385,7 @@ "AuqO": [4.5773, 36.9836] }, "vertices": ["AuqO", "SQtr", "P9yc"], - "texture": 0 + "texture": 1 }, "dbwNvdVu": { "uv": { @@ -3039,7 +2394,7 @@ "zALn": [8.1547, 42.9836] }, "vertices": ["zALn", "3QLG", "hKiQ"], - "texture": 0 + "texture": 1 }, "KLi0aNFD": { "uv": { @@ -3049,7 +2404,7 @@ "SQtr": [0, 36.9836] }, "vertices": ["SQtr", "uVfc", "D3Zi", "XwTk"], - "texture": 0 + "texture": 1 }, "1nnlJSX0": { "uv": { @@ -3058,7 +2413,7 @@ "SQtr": [4.5773, 36.9836] }, "vertices": ["SQtr", "XwTk", "P9yc"], - "texture": 0 + "texture": 1 }, "xyppXCm4": { "uv": { @@ -3067,7 +2422,7 @@ "XrMY": [8.1548, 43.9836] }, "vertices": ["XrMY", "zALn", "hKiQ"], - "texture": 0 + "texture": 1 }, "TlijztB8": { "uv": { @@ -3077,7 +2432,7 @@ "XwTk": [0, 36.9836] }, "vertices": ["XwTk", "H3Hz", "uVfc", "SxBA"], - "texture": 0 + "texture": 1 }, "iSo9y4Ks": { "uv": { @@ -3086,7 +2441,7 @@ "XwTk": [4.5773, 36.9836] }, "vertices": ["XwTk", "SxBA", "P9yc"], - "texture": 0 + "texture": 1 }, "802o7kue": { "uv": { @@ -3095,7 +2450,7 @@ "9bCg": [7.5773, 43.9836] }, "vertices": ["9bCg", "XrMY", "hKiQ"], - "texture": 0 + "texture": 1 }, "TZySRbzl": { "uv": { @@ -3105,7 +2460,7 @@ "SxBA": [0, 36.9836] }, "vertices": ["SxBA", "JTfr", "H3Hz", "xfU2"], - "texture": 0 + "texture": 1 }, "VqxZUv3r": { "uv": { @@ -3114,7 +2469,7 @@ "SxBA": [4.5773, 36.9836] }, "vertices": ["SxBA", "xfU2", "P9yc"], - "texture": 0 + "texture": 1 }, "VZ0J1wkW": { "uv": { @@ -3123,7 +2478,7 @@ "YkcP": [7, 43.9836] }, "vertices": ["YkcP", "9bCg", "hKiQ"], - "texture": 0 + "texture": 1 }, "5JhxGbwK": { "uv": { @@ -3133,7 +2488,7 @@ "xfU2": [0, 36.9836] }, "vertices": ["xfU2", "gPMU", "JTfr", "5O4d"], - "texture": 0 + "texture": 1 }, "fjNguha9": { "uv": { @@ -3142,7 +2497,7 @@ "xfU2": [4.5773, 36.9836] }, "vertices": ["xfU2", "5O4d", "P9yc"], - "texture": 0 + "texture": 1 }, "gmvsrhwQ": { "uv": { @@ -3151,7 +2506,7 @@ "1O7X": [7, 42.9836] }, "vertices": ["1O7X", "YkcP", "hKiQ"], - "texture": 0 + "texture": 1 }, "vDOAOCtP": { "uv": { @@ -3161,7 +2516,7 @@ "5O4d": [0, 36.9836] }, "vertices": ["5O4d", "S34R", "gPMU", "AuqO"], - "texture": 0 + "texture": 1 }, "dnWXIx0A": { "uv": { @@ -3170,7 +2525,7 @@ "5O4d": [4.5773, 36.9836] }, "vertices": ["5O4d", "AuqO", "P9yc"], - "texture": 0 + "texture": 1 }, "hpoEQbnj": { "uv": { @@ -3180,7 +2535,7 @@ "XrMY": [7, 43.58358] }, "vertices": ["XrMY", "H3Hz", "uVfc", "zALn"], - "texture": 0 + "texture": 1 }, "KGaXeg2R": { "uv": { @@ -3190,7 +2545,7 @@ "zALn": [7, 43.58358] }, "vertices": ["zALn", "uVfc", "D3Zi", "3QLG"], - "texture": 0 + "texture": 1 }, "PZum2TUC": { "uv": { @@ -3200,7 +2555,7 @@ "3QLG": [7, 43.58358] }, "vertices": ["3QLG", "D3Zi", "S34R", "1O7X"], - "texture": 0 + "texture": 1 }, "Hm45mM5A": { "uv": { @@ -3210,7 +2565,7 @@ "1O7X": [7, 43.58358] }, "vertices": ["1O7X", "S34R", "gPMU", "YkcP"], - "texture": 0 + "texture": 1 }, "gGfMirYG": { "uv": { @@ -3220,7 +2575,7 @@ "YkcP": [7, 43.58358] }, "vertices": ["YkcP", "gPMU", "JTfr", "9bCg"], - "texture": 0 + "texture": 1 }, "RPPTuXb3": { "uv": { @@ -3230,7 +2585,7 @@ "9bCg": [7, 43.58358] }, "vertices": ["9bCg", "JTfr", "H3Hz", "XrMY"], - "texture": 0 + "texture": 1 } }, "type": "mesh", @@ -3276,7 +2631,7 @@ "1O7X": [7.5774, 42.9836] }, "vertices": ["1O7X", "3QLG", "hKiQ"], - "texture": 0 + "texture": 1 }, "amXAQ62A": { "uv": { @@ -3286,7 +2641,7 @@ "D3Zi": [3.1548, 38.48362] }, "vertices": ["D3Zi", "AuqO", "S34R", "SQtr"], - "texture": 0 + "texture": 1 }, "pmtHFukt": { "uv": { @@ -3295,7 +2650,7 @@ "SQtr": [4.5773, 36.9836] }, "vertices": ["SQtr", "AuqO", "P9yc"], - "texture": 0 + "texture": 1 }, "dbwNvdVu": { "uv": { @@ -3304,7 +2659,7 @@ "3QLG": [8.1547, 42.9836] }, "vertices": ["3QLG", "zALn", "hKiQ"], - "texture": 0 + "texture": 1 }, "KLi0aNFD": { "uv": { @@ -3314,7 +2669,7 @@ "uVfc": [3.1548, 38.48362] }, "vertices": ["uVfc", "SQtr", "D3Zi", "XwTk"], - "texture": 0 + "texture": 1 }, "1nnlJSX0": { "uv": { @@ -3323,7 +2678,7 @@ "XwTk": [4.5773, 36.9836] }, "vertices": ["XwTk", "SQtr", "P9yc"], - "texture": 0 + "texture": 1 }, "xyppXCm4": { "uv": { @@ -3332,7 +2687,7 @@ "zALn": [8.1548, 43.9836] }, "vertices": ["zALn", "XrMY", "hKiQ"], - "texture": 0 + "texture": 1 }, "TlijztB8": { "uv": { @@ -3342,7 +2697,7 @@ "H3Hz": [3.1548, 38.48362] }, "vertices": ["H3Hz", "XwTk", "uVfc", "SxBA"], - "texture": 0 + "texture": 1 }, "iSo9y4Ks": { "uv": { @@ -3351,7 +2706,7 @@ "SxBA": [4.5773, 36.9836] }, "vertices": ["SxBA", "XwTk", "P9yc"], - "texture": 0 + "texture": 1 }, "802o7kue": { "uv": { @@ -3360,7 +2715,7 @@ "XrMY": [7.5773, 43.9836] }, "vertices": ["XrMY", "9bCg", "hKiQ"], - "texture": 0 + "texture": 1 }, "TZySRbzl": { "uv": { @@ -3370,7 +2725,7 @@ "JTfr": [3.1548, 38.48362] }, "vertices": ["JTfr", "SxBA", "H3Hz", "xfU2"], - "texture": 0 + "texture": 1 }, "VqxZUv3r": { "uv": { @@ -3379,7 +2734,7 @@ "xfU2": [4.5773, 36.9836] }, "vertices": ["xfU2", "SxBA", "P9yc"], - "texture": 0 + "texture": 1 }, "VZ0J1wkW": { "uv": { @@ -3388,7 +2743,7 @@ "9bCg": [7, 43.9836] }, "vertices": ["9bCg", "YkcP", "hKiQ"], - "texture": 0 + "texture": 1 }, "5JhxGbwK": { "uv": { @@ -3398,7 +2753,7 @@ "gPMU": [3.1548, 38.48362] }, "vertices": ["gPMU", "xfU2", "JTfr", "5O4d"], - "texture": 0 + "texture": 1 }, "fjNguha9": { "uv": { @@ -3407,7 +2762,7 @@ "5O4d": [4.5773, 36.9836] }, "vertices": ["5O4d", "xfU2", "P9yc"], - "texture": 0 + "texture": 1 }, "gmvsrhwQ": { "uv": { @@ -3416,7 +2771,7 @@ "YkcP": [7, 42.9836] }, "vertices": ["YkcP", "1O7X", "hKiQ"], - "texture": 0 + "texture": 1 }, "vDOAOCtP": { "uv": { @@ -3426,7 +2781,7 @@ "S34R": [3.1548, 38.48362] }, "vertices": ["S34R", "5O4d", "gPMU", "AuqO"], - "texture": 0 + "texture": 1 }, "dnWXIx0A": { "uv": { @@ -3435,7 +2790,7 @@ "AuqO": [4.5773, 36.9836] }, "vertices": ["AuqO", "5O4d", "P9yc"], - "texture": 0 + "texture": 1 }, "hpoEQbnj": { "uv": { @@ -3445,7 +2800,7 @@ "H3Hz": [8, 41.9836] }, "vertices": ["H3Hz", "XrMY", "uVfc", "zALn"], - "texture": 0 + "texture": 1 }, "KGaXeg2R": { "uv": { @@ -3455,7 +2810,7 @@ "uVfc": [8, 41.9836] }, "vertices": ["uVfc", "zALn", "D3Zi", "3QLG"], - "texture": 0 + "texture": 1 }, "PZum2TUC": { "uv": { @@ -3465,7 +2820,7 @@ "D3Zi": [8, 41.9836] }, "vertices": ["D3Zi", "3QLG", "S34R", "1O7X"], - "texture": 0 + "texture": 1 }, "Hm45mM5A": { "uv": { @@ -3475,7 +2830,7 @@ "S34R": [8, 41.9836] }, "vertices": ["S34R", "1O7X", "gPMU", "YkcP"], - "texture": 0 + "texture": 1 }, "gGfMirYG": { "uv": { @@ -3485,7 +2840,7 @@ "gPMU": [8, 41.9836] }, "vertices": ["gPMU", "YkcP", "JTfr", "9bCg"], - "texture": 0 + "texture": 1 }, "RPPTuXb3": { "uv": { @@ -3495,7 +2850,7 @@ "JTfr": [8, 41.9836] }, "vertices": ["JTfr", "9bCg", "H3Hz", "XrMY"], - "texture": 0 + "texture": 1 } }, "type": "mesh", @@ -3535,7 +2890,7 @@ "ZAwo": [1.1547, 6.9836] }, "vertices": ["ZAwo", "xQ7R", "uXX4"], - "texture": 0 + "texture": 1 }, "2wrsF9PS": { "uv": { @@ -3545,7 +2900,7 @@ "xQ7R": [0, 9.9836] }, "vertices": ["xQ7R", "ZAwo", "jvUa", "KviP"], - "texture": 0 + "texture": 1 }, "NHGFWn7K": { "uv": { @@ -3554,7 +2909,7 @@ "ZlND": [0.5774, 6.9836] }, "vertices": ["ZlND", "ZAwo", "uXX4"], - "texture": 0 + "texture": 1 }, "8cc6hOOR": { "uv": { @@ -3564,7 +2919,7 @@ "ZAwo": [0, 9.9836] }, "vertices": ["ZAwo", "ZlND", "0viC", "jvUa"], - "texture": 0 + "texture": 1 }, "9UtXiLWH": { "uv": { @@ -3573,7 +2928,7 @@ "0sOe": [0, 6.9836] }, "vertices": ["0sOe", "ZlND", "uXX4"], - "texture": 0 + "texture": 1 }, "qGP3hNLj": { "uv": { @@ -3583,7 +2938,7 @@ "ZlND": [0, 9.9836] }, "vertices": ["ZlND", "0sOe", "bbcG", "0viC"], - "texture": 0 + "texture": 1 }, "6tckQVaJ": { "uv": { @@ -3592,7 +2947,7 @@ "EHEa": [0, 5.9836] }, "vertices": ["EHEa", "0sOe", "uXX4"], - "texture": 0 + "texture": 1 }, "2WWrRUBm": { "uv": { @@ -3602,7 +2957,7 @@ "0sOe": [0, 9.9836] }, "vertices": ["0sOe", "EHEa", "Hf1h", "bbcG"], - "texture": 0 + "texture": 1 }, "Gd1XafzL": { "uv": { @@ -3611,7 +2966,7 @@ "qpo9": [1.1548, 5.9836] }, "vertices": ["qpo9", "EHEa", "uXX4"], - "texture": 0 + "texture": 1 }, "4eJ8kTWL": { "uv": { @@ -3621,7 +2976,7 @@ "EHEa": [0, 9.9836] }, "vertices": ["EHEa", "qpo9", "AFOM", "Hf1h"], - "texture": 0 + "texture": 1 }, "U1EMdNou": { "uv": { @@ -3630,7 +2985,7 @@ "xQ7R": [1.1548, 5.9836] }, "vertices": ["xQ7R", "qpo9", "uXX4"], - "texture": 0 + "texture": 1 }, "JaWe1p8r": { "uv": { @@ -3640,7 +2995,7 @@ "qpo9": [0, 9.9836] }, "vertices": ["qpo9", "xQ7R", "KviP", "AFOM"], - "texture": 0 + "texture": 1 }, "MLElNaEL": { "uv": { @@ -3649,7 +3004,7 @@ "KviP": [3.5774, 4.9836] }, "vertices": ["KviP", "jvUa", "oTYm"], - "texture": 0 + "texture": 1 }, "SrTdhUln": { "uv": { @@ -3658,7 +3013,7 @@ "jvUa": [4.1547, 4.9836] }, "vertices": ["jvUa", "0viC", "oTYm"], - "texture": 0 + "texture": 1 }, "1B3EpcYx": { "uv": { @@ -3667,7 +3022,7 @@ "0viC": [4.1548, 3.9836] }, "vertices": ["0viC", "bbcG", "oTYm"], - "texture": 0 + "texture": 1 }, "gSUoLh4J": { "uv": { @@ -3676,7 +3031,7 @@ "bbcG": [4.1548, 3.9836] }, "vertices": ["bbcG", "Hf1h", "oTYm"], - "texture": 0 + "texture": 1 }, "EiJgXwpU": { "uv": { @@ -3685,7 +3040,7 @@ "Hf1h": [4.1548, 3.9836] }, "vertices": ["Hf1h", "AFOM", "oTYm"], - "texture": 0 + "texture": 1 }, "1NM4KFOU": { "uv": { @@ -3694,7 +3049,7 @@ "AFOM": [4.1548, 3.9836] }, "vertices": ["AFOM", "KviP", "oTYm"], - "texture": 0 + "texture": 1 } }, "type": "mesh", @@ -3727,103 +3082,103 @@ "faces": { "rLMf7opp": { "uv": { - "dP2U": [0, 27.9836], - "eok7": [0, 25.9836], - "p9SG": [4, 25.9836], - "BtHE": [4, 27.9836] + "dP2U": [4, 29.9836], + "eok7": [1, 29.9836], + "p9SG": [1, 26.9836], + "BtHE": [4, 26.9836] }, "vertices": ["BtHE", "p9SG", "eok7", "dP2U"], - "texture": 0 + "texture": 1 }, "lK1uZ4ZU": { "uv": { - "oqGO": [0, 27.9836], - "EUsg": [0, 25.9836], - "ocfu": [4, 25.9836], - "vUhB": [4, 27.9836] + "oqGO": [4, 29.9836], + "EUsg": [1, 29.9836], + "ocfu": [1, 26.9836], + "vUhB": [4, 26.9836] }, "vertices": ["vUhB", "ocfu", "EUsg", "oqGO"], - "texture": 0 + "texture": 1 }, "IOcJK5rY": { "uv": { - "ocfu": [0, 29.9836], - "BtHE": [0, 25.9836], - "p9SG": [3, 25.9836], - "vUhB": [3, 29.9836] + "ocfu": [1, 28.9836], + "BtHE": [1, 24.9836], + "p9SG": [4, 24.9836], + "vUhB": [4, 28.9836] }, "vertices": ["vUhB", "p9SG", "BtHE", "ocfu"], - "texture": 0 + "texture": 1 }, "TZD9oDhP": { "uv": { - "oqGO": [0, 29.9836], - "eok7": [0, 25.9836], - "dP2U": [3, 25.9836], - "EUsg": [3, 29.9836] + "oqGO": [10, 48.9836], + "eok7": [8, 48.9836], + "dP2U": [8, 56.9836], + "EUsg": [10, 56.9836] }, "vertices": ["EUsg", "dP2U", "eok7", "oqGO"], - "texture": 0 + "texture": 1 }, "h8ImDcMA": { "uv": { - "EUsg": [0, 27.9836], - "dP2U": [0, 25.9836], - "BtHE": [3, 25.9836], - "ocfu": [3, 27.9836] + "EUsg": [3.25, 29.9836], + "dP2U": [1, 29.9836], + "BtHE": [1, 26.9836], + "ocfu": [3.25, 26.9836] }, "vertices": ["ocfu", "BtHE", "dP2U", "EUsg"], - "texture": 0 + "texture": 1 }, "4tbVDhEo": { "uv": { - "X2US": [0, 27.9836], - "EDaA": [0, 25.9836], - "LuHl": [3, 25.9836], - "xXtl": [3, 27.9836] + "X2US": [3.25, 29.9836], + "EDaA": [1, 29.9836], + "LuHl": [1, 26.9836], + "xXtl": [3.25, 26.9836] }, "vertices": ["xXtl", "LuHl", "EDaA", "X2US"], - "texture": 0 + "texture": 1 }, "EtmLgTse": { "uv": { - "vUhB": [3, 25.9836], - "oqGO": [0, 25.9836], - "LuHl": [3, 27.9836], - "EDaA": [0, 27.9836] + "vUhB": [1, 26.9836], + "oqGO": [1, 29.9836], + "LuHl": [3.25, 26.9836], + "EDaA": [3.25, 29.9836] }, "vertices": ["EDaA", "LuHl", "oqGO", "vUhB"], - "texture": 0 + "texture": 1 }, "iRHEFw0e": { "uv": { - "p9SG": [3, 28.9836], - "vUhB": [3, 25.9836], - "xXtl": [0, 28.9836], - "LuHl": [0, 25.9836] + "p9SG": [4, 28.9836], + "vUhB": [4, 25.9836], + "xXtl": [1, 28.9836], + "LuHl": [1, 25.9836] }, "vertices": ["LuHl", "xXtl", "vUhB", "p9SG"], - "texture": 0 + "texture": 1 }, "5H56KX26": { "uv": { - "eok7": [0, 27.9836], - "p9SG": [3, 27.9836], - "X2US": [0, 25.9836], - "xXtl": [3, 25.9836] + "eok7": [3.25, 29.9836], + "p9SG": [3.25, 26.9836], + "X2US": [1, 29.9836], + "xXtl": [1, 26.9836] }, "vertices": ["xXtl", "X2US", "p9SG", "eok7"], - "texture": 0 + "texture": 1 }, "YPxuRqB2": { "uv": { - "oqGO": [0, 25.9836], - "eok7": [0, 28.9836], - "EDaA": [3, 25.9836], - "X2US": [3, 28.9836] + "oqGO": [10, 56.9836], + "eok7": [8, 56.9836], + "EDaA": [10, 48.9836], + "X2US": [8, 48.9836] }, "vertices": ["X2US", "EDaA", "eok7", "oqGO"], - "texture": 0 + "texture": 1 } }, "type": "mesh", @@ -3832,7 +3187,7 @@ { "name": "cube", "color": 8, - "origin": [0, 24.21, -3.78], + "origin": [0, 24.21, -3.28], "rotation": [0, 0, 0], "export": true, "visibility": true, @@ -3858,7 +3213,7 @@ "ECCY": [2, 6.9836] }, "vertices": ["ECCY", "tkxK", "iCyR", "ZgvY"], - "texture": 0 + "texture": 1 }, "XO0XBOJM": { "uv": { @@ -3868,7 +3223,7 @@ "cIz3": [2, 6.9836] }, "vertices": ["cIz3", "ZpVa", "linI", "zu4W"], - "texture": 0 + "texture": 1 }, "z9C8lfjV": { "uv": { @@ -3878,7 +3233,7 @@ "ECCY": [2, 5.9836] }, "vertices": ["ECCY", "ZpVa", "tkxK", "cIz3"], - "texture": 0 + "texture": 1 }, "Adj6L1Cx": { "uv": { @@ -3888,7 +3243,7 @@ "ZgvY": [2, 5.9836] }, "vertices": ["ZgvY", "linI", "iCyR", "zu4W"], - "texture": 0 + "texture": 1 }, "o9Tb4bFQ": { "uv": { @@ -3898,17 +3253,17 @@ "tkxK": [2, 5.9836] }, "vertices": ["tkxK", "cIz3", "ZgvY", "linI"], - "texture": 0 + "texture": 1 }, "CqQfY0iI": { "uv": { - "iCyR": [0, 4.9836], - "zu4W": [2, 4.9836], - "ECCY": [0, 6.9836], - "ZpVa": [2, 6.9836] + "iCyR": [0, 1.9836], + "zu4W": [2, 1.9836], + "ECCY": [0, 3.9836], + "ZpVa": [2, 3.9836] }, "vertices": ["ZpVa", "ECCY", "zu4W", "iCyR"], - "texture": 0 + "texture": 1 } }, "type": "mesh", @@ -3969,7 +3324,7 @@ "4Uw8": [3, 8.4836] }, "vertices": ["4Uw8", "rrJj", "E7H1", "pd2g"], - "texture": 0 + "texture": 1 }, "jZ871epm": { "uv": { @@ -3979,7 +3334,7 @@ "wqYW": [0, 7.4836] }, "vertices": ["wqYW", "SQdA", "azok", "x97M"], - "texture": 0 + "texture": 1 }, "uGJH28Iv": { "uv": { @@ -3989,7 +3344,7 @@ "azok": [0.375, 8.9836] }, "vertices": ["azok", "pd2g", "4Uw8", "SQdA"], - "texture": 0 + "texture": 1 }, "1nFJZMx2": { "uv": { @@ -3999,7 +3354,7 @@ "lmne": [1.125, 5.9836] }, "vertices": ["lmne", "qLFu", "GJFl", "1mAv"], - "texture": 0 + "texture": 1 }, "OQgR4dER": { "uv": { @@ -4009,7 +3364,7 @@ "SQdA": [1.5, 8.9836] }, "vertices": ["SQdA", "pd2g", "rrJj", "x97M"], - "texture": 0 + "texture": 1 }, "UN1JDrWQ": { "uv": { @@ -4019,7 +3374,7 @@ "cZ9p": [1.5, 8.9836] }, "vertices": ["cZ9p", "Az5f", "zqiK", "iXLD"], - "texture": 0 + "texture": 1 }, "XyxwRClU": { "uv": { @@ -4029,7 +3384,7 @@ "E7H1": [0, 6.2336] }, "vertices": ["E7H1", "1mAv", "lmne", "rrJj"], - "texture": 0 + "texture": 1 }, "Ilz3SEts": { "uv": { @@ -4039,7 +3394,7 @@ "1mAv": [1.5, 6.9836] }, "vertices": ["1mAv", "qLFu", "rrJj", "x97M"], - "texture": 0 + "texture": 1 }, "Cchw1LL2": { "uv": { @@ -4049,7 +3404,7 @@ "GJFl": [3, 6.7336] }, "vertices": ["GJFl", "x97M", "wqYW", "qLFu"], - "texture": 0 + "texture": 1 }, "n2rwk4ci": { "uv": { @@ -4059,7 +3414,7 @@ "0CGp": [1.5, 7.9836] }, "vertices": ["0CGp", "l2mI", "6OCI", "s2jG"], - "texture": 0 + "texture": 1 }, "O5Z8kx5g": { "uv": { @@ -4069,7 +3424,7 @@ "zqiK": [1, 8.9836] }, "vertices": ["zqiK", "Az5f", "6OCI", "1I6t"], - "texture": 0 + "texture": 1 }, "4RYNouH5": { "uv": { @@ -4079,7 +3434,7 @@ "Az5f": [0, 5.9836] }, "vertices": ["Az5f", "cZ9p", "1I6t", "mmL5"], - "texture": 0 + "texture": 1 }, "TW0YxAz3": { "uv": { @@ -4089,7 +3444,7 @@ "cZ9p": [1, 6.9836] }, "vertices": ["cZ9p", "iXLD", "mmL5", "s2jG"], - "texture": 0 + "texture": 1 }, "2zYxvLvJ": { "uv": { @@ -4099,7 +3454,7 @@ "iXLD": [1.5, 6.9836] }, "vertices": ["iXLD", "zqiK", "s2jG", "6OCI"], - "texture": 0 + "texture": 1 }, "BKf5NSMf": { "uv": { @@ -4109,7 +3464,7 @@ "kFKb": [3, 5.9836] }, "vertices": ["kFKb", "mmL5", "Jy9D", "s2jG"], - "texture": 0 + "texture": 1 }, "JpNiYA3G": { "uv": { @@ -4119,7 +3474,7 @@ "NjLO": [3, 7.9836] }, "vertices": ["NjLO", "kFKb", "EamT", "Jy9D"], - "texture": 0 + "texture": 1 }, "GdpzZg9a": { "uv": { @@ -4129,7 +3484,7 @@ "4Uw8": [3, 6.4836] }, "vertices": ["4Uw8", "NjLO", "E7H1", "EamT"], - "texture": 0 + "texture": 1 }, "TlsMHfmZ": { "uv": { @@ -4139,7 +3494,7 @@ "Jy9D": [0, 5.2336] }, "vertices": ["Jy9D", "s2jG", "zNmF", "l2mI"], - "texture": 0 + "texture": 1 }, "aqKhnRXQ": { "uv": { @@ -4149,7 +3504,7 @@ "EamT": [0, 6.4836] }, "vertices": ["EamT", "Jy9D", "I94e", "zNmF"], - "texture": 0 + "texture": 1 }, "63v75zR5": { "uv": { @@ -4159,7 +3514,7 @@ "E7H1": [0, 5.06693] }, "vertices": ["E7H1", "EamT", "lmne", "I94e"], - "texture": 0 + "texture": 1 }, "EMdhJPKA": { "uv": { @@ -4169,7 +3524,7 @@ "zNmF": [0.375, 4.9836] }, "vertices": ["zNmF", "l2mI", "81Au", "0CGp"], - "texture": 0 + "texture": 1 }, "mbMoevDt": { "uv": { @@ -4179,7 +3534,7 @@ "I94e": [0.75, 5.9836] }, "vertices": ["I94e", "zNmF", "bkdC", "81Au"], - "texture": 0 + "texture": 1 }, "x0VSEKNp": { "uv": { @@ -4189,7 +3544,7 @@ "lmne": [1.125, 4.9836] }, "vertices": ["lmne", "I94e", "GJFl", "bkdC"], - "texture": 0 + "texture": 1 }, "JxgfCy0i": { "uv": { @@ -4199,7 +3554,7 @@ "81Au": [3, 5.06693] }, "vertices": ["81Au", "0CGp", "iA4U", "6OCI"], - "texture": 0 + "texture": 1 }, "QyoKJJph": { "uv": { @@ -4209,7 +3564,7 @@ "bkdC": [3, 6.4836] }, "vertices": ["bkdC", "81Au", "IVs2", "iA4U"], - "texture": 0 + "texture": 1 }, "Lk3hmryg": { "uv": { @@ -4219,7 +3574,7 @@ "GJFl": [3, 5.2336] }, "vertices": ["GJFl", "bkdC", "wqYW", "IVs2"], - "texture": 0 + "texture": 1 }, "pJI3WqXz": { "uv": { @@ -4229,7 +3584,7 @@ "iA4U": [0, 6.4836] }, "vertices": ["iA4U", "6OCI", "UdID", "1I6t"], - "texture": 0 + "texture": 1 }, "h7pymN6Y": { "uv": { @@ -4239,7 +3594,7 @@ "IVs2": [0, 7.9836] }, "vertices": ["IVs2", "iA4U", "09B4", "UdID"], - "texture": 0 + "texture": 1 }, "bDYNAwsd": { "uv": { @@ -4249,7 +3604,7 @@ "wqYW": [0, 6.15027] }, "vertices": ["wqYW", "IVs2", "azok", "09B4"], - "texture": 0 + "texture": 1 }, "q4OUrDWP": { "uv": { @@ -4259,7 +3614,7 @@ "UdID": [1.125, 5.9836] }, "vertices": ["UdID", "1I6t", "kFKb", "mmL5"], - "texture": 0 + "texture": 1 }, "tdhfravm": { "uv": { @@ -4269,7 +3624,7 @@ "09B4": [0.75, 8.9836] }, "vertices": ["09B4", "UdID", "NjLO", "kFKb"], - "texture": 0 + "texture": 1 }, "aBr6k8lJ": { "uv": { @@ -4279,7 +3634,7 @@ "azok": [0.375, 5.9836] }, "vertices": ["azok", "09B4", "4Uw8", "NjLO"], - "texture": 0 + "texture": 1 } }, "type": "mesh", @@ -4288,7 +3643,7 @@ { "name": "cylinder", "color": 8, - "origin": [-3.6, 26.73, -1.71], + "origin": [-3.6, 26.73, -1.21], "rotation": [0, 0, 0], "export": true, "visibility": true, @@ -4317,7 +3672,7 @@ "USVQ": [1.50002, 8.9836] }, "vertices": ["USVQ", "UZWq", "8bfM"], - "texture": 0 + "texture": 1 }, "9ZKH0lG6": { "uv": { @@ -4327,7 +3682,7 @@ "UZWq": [2.1796, 10.9836] }, "vertices": ["UZWq", "USVQ", "axTi", "HXhU"], - "texture": 0 + "texture": 1 }, "RGmcX1UG": { "uv": { @@ -4336,7 +3691,7 @@ "axTi": [2.16591, 6.75008] }, "vertices": ["axTi", "HXhU", "Kvjd"], - "texture": 0 + "texture": 1 }, "hURkvpYa": { "uv": { @@ -4345,7 +3700,7 @@ "UZWq": [0.8729, 3.9836] }, "vertices": ["UZWq", "tgyO", "8bfM"], - "texture": 0 + "texture": 1 }, "WyrjtDC7": { "uv": { @@ -4355,7 +3710,7 @@ "tgyO": [2.1796, 10.9836] }, "vertices": ["tgyO", "UZWq", "Ib2Y", "axTi"], - "texture": 0 + "texture": 1 }, "acbFBVuv": { "uv": { @@ -4364,7 +3719,7 @@ "Ib2Y": [2.16591, 6.75008] }, "vertices": ["Ib2Y", "axTi", "Kvjd"], - "texture": 0 + "texture": 1 }, "lyFWiRhd": { "uv": { @@ -4373,7 +3728,7 @@ "tgyO": [0.8729, 3.9836] }, "vertices": ["tgyO", "FTwV", "8bfM"], - "texture": 0 + "texture": 1 }, "wjezwsCE": { "uv": { @@ -4383,7 +3738,7 @@ "FTwV": [2.1796, 10.9836] }, "vertices": ["FTwV", "tgyO", "O5S9", "Ib2Y"], - "texture": 0 + "texture": 1 }, "j57EBA6J": { "uv": { @@ -4392,7 +3747,7 @@ "O5S9": [2.16591, 6.75008] }, "vertices": ["O5S9", "Ib2Y", "Kvjd"], - "texture": 0 + "texture": 1 }, "vcbsA7yR": { "uv": { @@ -4401,7 +3756,7 @@ "FTwV": [0, 10.74693] }, "vertices": ["FTwV", "5xC8", "8bfM"], - "texture": 0 + "texture": 1 }, "lYJAyjcC": { "uv": { @@ -4411,7 +3766,7 @@ "5xC8": [2.1796, 10.9836] }, "vertices": ["5xC8", "FTwV", "tls7", "O5S9"], - "texture": 0 + "texture": 1 }, "dswA4ncI": { "uv": { @@ -4420,7 +3775,7 @@ "tls7": [2.16591, 6.75008] }, "vertices": ["tls7", "O5S9", "Kvjd"], - "texture": 0 + "texture": 1 }, "x4e93Rac": { "uv": { @@ -4429,7 +3784,7 @@ "5xC8": [0, 8.9836] }, "vertices": ["5xC8", "USVQ", "8bfM"], - "texture": 0 + "texture": 1 }, "TtnpSvW1": { "uv": { @@ -4439,7 +3794,7 @@ "USVQ": [2.1796, 10.9836] }, "vertices": ["USVQ", "5xC8", "HXhU", "tls7"], - "texture": 0 + "texture": 1 }, "royATjFd": { "uv": { @@ -4448,7 +3803,7 @@ "HXhU": [2.16591, 6.75008] }, "vertices": ["HXhU", "tls7", "Kvjd"], - "texture": 0 + "texture": 1 } }, "type": "mesh", @@ -4500,7 +3855,7 @@ "rCTa": [11.71399, 57.99286] }, "vertices": ["rCTa", "pXeQ", "klLY"], - "texture": 0 + "texture": 1 }, "V9FyZeSc": { "uv": { @@ -4510,7 +3865,7 @@ "Nvu6": [0, 47.6082] }, "vertices": ["Nvu6", "iPyJ", "0Y79", "RrBX"], - "texture": 0 + "texture": 1 }, "OQQuJfT4": { "uv": { @@ -4519,7 +3874,7 @@ "RrBX": [0, 35.9836] }, "vertices": ["RrBX", "0Y79", "ITSp"], - "texture": 0 + "texture": 1 }, "SPlMr3Na": { "uv": { @@ -4528,7 +3883,7 @@ "tN6F": [5.8571, 54.51138] }, "vertices": ["tN6F", "rCTa", "klLY"], - "texture": 0 + "texture": 1 }, "0ruZX02Z": { "uv": { @@ -4538,7 +3893,7 @@ "iPyJ": [0, 47.6082] }, "vertices": ["iPyJ", "eigQ", "Xvb6", "0Y79"], - "texture": 0 + "texture": 1 }, "ulXhCvEk": { "uv": { @@ -4547,7 +3902,7 @@ "0Y79": [0, 47.9836] }, "vertices": ["0Y79", "Xvb6", "ITSp"], - "texture": 0 + "texture": 1 }, "DU8KihLn": { "uv": { @@ -4556,7 +3911,7 @@ "eaV1": [0, 59.7336] }, "vertices": ["eaV1", "tN6F", "klLY"], - "texture": 0 + "texture": 1 }, "XWzjVFrf": { "uv": { @@ -4566,7 +3921,7 @@ "eigQ": [0, 47.6082] }, "vertices": ["eigQ", "5Dmg", "AtQi", "Xvb6"], - "texture": 0 + "texture": 1 }, "w9jFffcg": { "uv": { @@ -4575,7 +3930,7 @@ "Xvb6": [4.8094, 47.9836] }, "vertices": ["Xvb6", "AtQi", "ITSp"], - "texture": 0 + "texture": 1 }, "K2cLYEBb": { "uv": { @@ -4584,7 +3939,7 @@ "bcxb": [0, 47.9836] }, "vertices": ["bcxb", "eaV1", "klLY"], - "texture": 0 + "texture": 1 }, "kG34slMj": { "uv": { @@ -4594,7 +3949,7 @@ "5Dmg": [0, 47.6082] }, "vertices": ["5Dmg", "eaBi", "2g3l", "AtQi"], - "texture": 0 + "texture": 1 }, "8ihFMEJy": { "uv": { @@ -4603,7 +3958,7 @@ "AtQi": [9.6188, 47.9836] }, "vertices": ["AtQi", "2g3l", "ITSp"], - "texture": 0 + "texture": 1 }, "UjD7vhy7": { "uv": { @@ -4612,7 +3967,7 @@ "8ZDb": [5.85689, 51.46508] }, "vertices": ["8ZDb", "bcxb", "klLY"], - "texture": 0 + "texture": 1 }, "SDLqZtLt": { "uv": { @@ -4622,7 +3977,7 @@ "eaBi": [0, 47.6082] }, "vertices": ["eaBi", "ztoH", "sPHf", "2g3l"], - "texture": 0 + "texture": 1 }, "EdMUBDM6": { "uv": { @@ -4631,7 +3986,7 @@ "2g3l": [9.6188, 35.9836] }, "vertices": ["2g3l", "sPHf", "ITSp"], - "texture": 0 + "texture": 1 }, "cMbGsGyo": { "uv": { @@ -4640,7 +3995,7 @@ "pXeQ": [11.7142, 47.9836] }, "vertices": ["pXeQ", "8ZDb", "klLY"], - "texture": 0 + "texture": 1 }, "jFTliP3X": { "uv": { @@ -4650,7 +4005,7 @@ "ztoH": [0, 47.6082] }, "vertices": ["ztoH", "Nvu6", "RrBX", "sPHf"], - "texture": 0 + "texture": 1 }, "bxf4msRu": { "uv": { @@ -4659,7 +4014,7 @@ "sPHf": [4.8094, 35.9836] }, "vertices": ["sPHf", "RrBX", "ITSp"], - "texture": 0 + "texture": 1 }, "sxvMJH49": { "uv": { @@ -4669,7 +4024,7 @@ "gG1t": [6.6665, 41.9836] }, "vertices": ["gG1t", "FbI5", "5Dmg", "eigQ"], - "texture": 0 + "texture": 1 }, "eqZO2G0m": { "uv": { @@ -4679,7 +4034,7 @@ "cDOV": [5.13153, 41.9836] }, "vertices": ["cDOV", "gG1t", "eigQ", "iPyJ"], - "texture": 0 + "texture": 1 }, "WzKqxyO5": { "uv": { @@ -4689,7 +4044,7 @@ "LmQd": [5, 40.40079] }, "vertices": ["LmQd", "cDOV", "iPyJ", "Nvu6"], - "texture": 0 + "texture": 1 }, "dxcKcdd6": { "uv": { @@ -4699,7 +4054,7 @@ "vun5": [3.9523, 42.2336] }, "vertices": ["vun5", "LmQd", "Nvu6", "ztoH"], - "texture": 0 + "texture": 1 }, "WVrgpPxW": { "uv": { @@ -4709,7 +4064,7 @@ "yR3f": [5.15429, 42.49869] }, "vertices": ["yR3f", "vun5", "ztoH", "eaBi"], - "texture": 0 + "texture": 1 }, "QseuJ9JX": { "uv": { @@ -4719,7 +4074,7 @@ "FbI5": [5.51509, 37.85223] }, "vertices": ["FbI5", "yR3f", "eaBi", "5Dmg"], - "texture": 0 + "texture": 1 }, "aqWuqrqN": { "uv": { @@ -4729,7 +4084,7 @@ "tN6F": [0, 59.9836] }, "vertices": ["tN6F", "eaV1", "FbI5", "gG1t"], - "texture": 0 + "texture": 1 }, "yTBPAKrY": { "uv": { @@ -4739,7 +4094,7 @@ "rCTa": [2.05, 53.9836] }, "vertices": ["rCTa", "tN6F", "gG1t", "cDOV"], - "texture": 0 + "texture": 1 }, "rer2pNQY": { "uv": { @@ -4749,7 +4104,7 @@ "pXeQ": [2.05, 56.9836] }, "vertices": ["pXeQ", "rCTa", "cDOV", "LmQd"], - "texture": 0 + "texture": 1 }, "Hl4STh0d": { "uv": { @@ -4759,7 +4114,7 @@ "8ZDb": [0, 50.9836] }, "vertices": ["8ZDb", "pXeQ", "LmQd", "vun5"], - "texture": 0 + "texture": 1 }, "K2K6NWmV": { "uv": { @@ -4769,7 +4124,7 @@ "bcxb": [0, 56.9836] }, "vertices": ["bcxb", "8ZDb", "vun5", "yR3f"], - "texture": 0 + "texture": 1 }, "AaGZZNOw": { "uv": { @@ -4779,7 +4134,7 @@ "eaV1": [0, 53.9836] }, "vertices": ["eaV1", "bcxb", "yR3f", "FbI5"], - "texture": 0 + "texture": 1 } }, "type": "mesh", @@ -4788,7 +4143,7 @@ { "name": "neutral", "color": 8, - "origin": [0, 25.245, -3.78], + "origin": [0, 25.245, -3.28], "rotation": [2.5, 0, 0], "export": true, "visibility": true, @@ -4796,12 +4151,12 @@ "render_order": "default", "allow_mirror_modeling": true, "vertices": { - "zyRr": [3.42443, 2.88, -0.01809], - "ooTR": [3.42443, 0, -0.01809], - "73OG": [-3.38855, 2.88, -0.01812], - "HXoH": [-3.38855, 0, -0.01812], - "fJPg": [-0.05908, 0, -0.68839], - "ujQW": [-0.05908, 2.88, -0.68839] + "zyRr": [3.42443, 2.98, -0.01809], + "ooTR": [3.42443, -0.1, -0.01809], + "73OG": [-3.38855, 2.98, -0.01812], + "HXoH": [-3.38855, -0.1, -0.01812], + "fJPg": [-0.05908, -0.1, -0.68839], + "ujQW": [-0.05908, 2.98, -0.68839] }, "faces": { "ygbaDk3h": { @@ -4812,7 +4167,7 @@ "73OG": [12, 12] }, "vertices": ["73OG", "fJPg", "ujQW", "HXoH"], - "texture": 0 + "texture": 1 }, "QOPlDywE": { "uv": { @@ -4822,7 +4177,7 @@ "ooTR": [12, 24] }, "vertices": ["ooTR", "fJPg", "ujQW", "zyRr"], - "texture": 0 + "texture": 1 } }, "type": "mesh", @@ -4831,7 +4186,7 @@ { "name": "circle", "color": 8, - "origin": [-1.26, 26.37, -3.87], + "origin": [-1.26, 26.37, -3.37], "rotation": [-90, 0, 0], "export": true, "visibility": true, @@ -4870,7 +4225,7 @@ "ro66": [30.3094, 21.9836] }, "vertices": ["ro66", "lUGq", "QlBo"], - "texture": 0 + "texture": 1 }, "51YiqX10": { "uv": { @@ -4880,7 +4235,7 @@ "DUmR": [28, 23] }, "vertices": ["DUmR", "hOxT", "BVQ2", "lUGq"], - "texture": 0 + "texture": 1 }, "2pIUB8ES": { "uv": { @@ -4889,7 +4244,7 @@ "Usga": [30.3094, 21.9836] }, "vertices": ["Usga", "ro66", "QlBo"], - "texture": 0 + "texture": 1 }, "ZK7NKOeF": { "uv": { @@ -4898,7 +4253,7 @@ "GyQD": [30.3094, 21.9836] }, "vertices": ["GyQD", "Usga", "QlBo"], - "texture": 0 + "texture": 1 }, "wR8umpUu": { "uv": { @@ -4907,7 +4262,7 @@ "FP9N": [30.3094, 13.2836] }, "vertices": ["FP9N", "sKKe", "QlBo"], - "texture": 0 + "texture": 1 }, "H6VP4Ksv": { "uv": { @@ -4916,7 +4271,7 @@ "vTgM": [28, 21.9836] }, "vertices": ["vTgM", "IXDG", "mmJQ"], - "texture": 0 + "texture": 1 }, "wJyfxrMY": { "uv": { @@ -4926,7 +4281,7 @@ "sKKe": [30.3094, 13.2836] }, "vertices": ["sKKe", "1CcK", "QlBo", "GyQD"], - "texture": 0 + "texture": 1 }, "DIF8u6Nx": { "uv": { @@ -4936,7 +4291,7 @@ "82YR": [30.5, 13.2836] }, "vertices": ["82YR", "zLaG", "mmJQ", "p7xK"], - "texture": 0 + "texture": 1 }, "Y3MIAtYU": { "uv": { @@ -4946,7 +4301,7 @@ "ijmy": [26, 21] }, "vertices": ["ijmy", "B9AS", "qMSp", "49hN"], - "texture": 0 + "texture": 1 }, "m5Ei64ON": { "uv": { @@ -4956,7 +4311,7 @@ "BVQ2": [28, 13.2836] }, "vertices": ["BVQ2", "FP9N", "QlBo", "lUGq"], - "texture": 0 + "texture": 1 }, "JXbA3fJc": { "uv": { @@ -4965,7 +4320,7 @@ "IXDG": [28, 21.9836] }, "vertices": ["IXDG", "82YR", "mmJQ"], - "texture": 0 + "texture": 1 }, "tMb37bkc": { "uv": { @@ -4975,7 +4330,7 @@ "zLaG": [26.5608, 21.3173] }, "vertices": ["zLaG", "82YR", "GyQD", "1CcK"], - "texture": 0 + "texture": 1 }, "6XGDzFgh": { "uv": { @@ -4984,7 +4339,7 @@ "49hN": [28, 21.9836] }, "vertices": ["49hN", "vTgM", "mmJQ"], - "texture": 0 + "texture": 1 }, "ZQX1Mu9J": { "uv": { @@ -4993,7 +4348,7 @@ "p7xK": [30.5, 13.2836] }, "vertices": ["p7xK", "gp6k", "mmJQ"], - "texture": 0 + "texture": 1 }, "57qo5ODz": { "uv": { @@ -5003,7 +4358,7 @@ "gp6k": [30.5, 13.2836] }, "vertices": ["gp6k", "qMSp", "mmJQ", "49hN"], - "texture": 0 + "texture": 1 } }, "type": "mesh", @@ -5056,7 +4411,7 @@ "ryg1": [1, 29.9836] }, "vertices": ["ryg1", "jS6F", "IKHl", "hwjg"], - "texture": 0 + "texture": 1 }, "sWWfgk4K": { "uv": { @@ -5066,7 +4421,7 @@ "ryg1": [0, 27.9836] }, "vertices": ["ryg1", "hwjg", "Jq92", "ZISf"], - "texture": 0 + "texture": 1 }, "QNUAKYIT": { "uv": { @@ -5076,7 +4431,7 @@ "ZISf": [2.7075, 28.9202] }, "vertices": ["ZISf", "zVQ5", "Lrul", "Jq92"], - "texture": 0 + "texture": 1 }, "BRnWTTQ7": { "uv": { @@ -5086,7 +4441,7 @@ "rilX": [0, 28.1291] }, "vertices": ["rilX", "IKHl", "srzj", "ryg1"], - "texture": 0 + "texture": 1 }, "USWUQ28I": { "uv": { @@ -5096,7 +4451,7 @@ "rilX": [0, 33.9822] }, "vertices": ["rilX", "ryg1", "iCDk", "Jq92"], - "texture": 0 + "texture": 1 }, "telwhUl5": { "uv": { @@ -5106,7 +4461,7 @@ "Jq92": [2.7075, 31.9202] }, "vertices": ["Jq92", "12zS", "zVQ5", "iCDk"], - "texture": 0 + "texture": 1 }, "Y0oRikhE": { "uv": { @@ -5116,7 +4471,7 @@ "v1hz": [0, 31.9836] }, "vertices": ["v1hz", "srzj", "TZsM", "rilX"], - "texture": 0 + "texture": 1 }, "M1vklvUl": { "uv": { @@ -5126,7 +4481,7 @@ "v1hz": [0, 28.9836] }, "vertices": ["v1hz", "rilX", "UN0m", "iCDk"], - "texture": 0 + "texture": 1 }, "ZVE21JMg": { "uv": { @@ -5136,7 +4491,7 @@ "iCDk": [2.9929, 27.6345] }, "vertices": ["iCDk", "ovht", "12zS", "UN0m"], - "texture": 0 + "texture": 1 }, "L0SUV83I": { "uv": { @@ -5146,7 +4501,7 @@ "92Ln": [0, 26.9836] }, "vertices": ["92Ln", "TZsM", "n74E", "v1hz"], - "texture": 0 + "texture": 1 }, "R3T6mLRW": { "uv": { @@ -5156,7 +4511,7 @@ "92Ln": [0, 33.6013] }, "vertices": ["92Ln", "v1hz", "uZrh", "UN0m"], - "texture": 0 + "texture": 1 }, "ttIS0sst": { "uv": { @@ -5166,7 +4521,7 @@ "UN0m": [1.7075, 31.0152] }, "vertices": ["UN0m", "l955", "ovht", "uZrh"], - "texture": 0 + "texture": 1 }, "dQPt3CZa": { "uv": { @@ -5176,7 +4531,7 @@ "bftR": [0, 30.129] }, "vertices": ["bftR", "n74E", "AgKl", "92Ln"], - "texture": 0 + "texture": 1 }, "FiVhgNvE": { "uv": { @@ -5186,7 +4541,7 @@ "bftR": [0, 33.6001] }, "vertices": ["bftR", "92Ln", "ORyy", "uZrh"], - "texture": 0 + "texture": 1 }, "f27qtq3m": { "uv": { @@ -5196,7 +4551,7 @@ "uZrh": [1.7075, 28.0152] }, "vertices": ["uZrh", "Sltx", "l955", "ORyy"], - "texture": 0 + "texture": 1 }, "Ahdauex4": { "uv": { @@ -5206,7 +4561,7 @@ "hwjg": [0, 25.9836] }, "vertices": ["hwjg", "AgKl", "jS6F", "bftR"], - "texture": 0 + "texture": 1 }, "FwaC0inC": { "uv": { @@ -5216,7 +4571,7 @@ "hwjg": [0, 33.50459] }, "vertices": ["hwjg", "bftR", "ZISf", "ORyy"], - "texture": 0 + "texture": 1 }, "9ZkZ6NpN": { "uv": { @@ -5226,7 +4581,7 @@ "ORyy": [1.9929, 33.155] }, "vertices": ["ORyy", "Lrul", "Sltx", "ZISf"], - "texture": 0 + "texture": 1 }, "bLGLsiVU": { "uv": { @@ -5235,7 +4590,7 @@ "9zIy": [0.6127, 25.9836] }, "vertices": ["9zIy", "zVQ5", "Lrul"], - "texture": 0 + "texture": 1 }, "FdG3nVPa": { "uv": { @@ -5244,7 +4599,7 @@ "9zIy": [1.3064, 26.9836] }, "vertices": ["9zIy", "Lrul", "Sltx"], - "texture": 0 + "texture": 1 }, "ud1TCfhY": { "uv": { @@ -5253,7 +4608,7 @@ "9zIy": [2, 25.9836] }, "vertices": ["9zIy", "Sltx", "l955"], - "texture": 0 + "texture": 1 }, "41w1S6rR": { "uv": { @@ -5262,7 +4617,7 @@ "9zIy": [2, 32.7805] }, "vertices": ["9zIy", "l955", "ovht"], - "texture": 0 + "texture": 1 }, "wEgUowfB": { "uv": { @@ -5271,7 +4626,7 @@ "9zIy": [1.3064, 31.7805] }, "vertices": ["9zIy", "ovht", "12zS"], - "texture": 0 + "texture": 1 }, "G3UiYJeg": { "uv": { @@ -5280,7 +4635,7 @@ "9zIy": [0.6127, 32.7805] }, "vertices": ["9zIy", "12zS", "zVQ5"], - "texture": 0 + "texture": 1 }, "HSXF4kkA": { "uv": { @@ -5289,7 +4644,7 @@ "4WRs": [1.8169, 34.0461] }, "vertices": ["4WRs", "jS6F", "IKHl"], - "texture": 0 + "texture": 1 }, "QqJPEzgx": { "uv": { @@ -5298,7 +4653,7 @@ "4WRs": [1.8169, 25.9836] }, "vertices": ["4WRs", "IKHl", "srzj"], - "texture": 0 + "texture": 1 }, "TY9u2sDg": { "uv": { @@ -5307,7 +4662,7 @@ "4WRs": [1.4085, 26.9836] }, "vertices": ["4WRs", "srzj", "TZsM"], - "texture": 0 + "texture": 1 }, "0orapcDd": { "uv": { @@ -5316,7 +4671,7 @@ "4WRs": [2, 25.9836] }, "vertices": ["4WRs", "TZsM", "n74E"], - "texture": 0 + "texture": 1 }, "uoHhPK1e": { "uv": { @@ -5325,7 +4680,7 @@ "4WRs": [2, 34.0461] }, "vertices": ["4WRs", "n74E", "AgKl"], - "texture": 0 + "texture": 1 }, "R8i2SJV3": { "uv": { @@ -5334,7 +4689,7 @@ "4WRs": [1.4085, 32.0461] }, "vertices": ["4WRs", "AgKl", "jS6F"], - "texture": 0 + "texture": 1 } }, "type": "mesh", @@ -5387,7 +4742,7 @@ "jS6F": [3.3516, 30.1401] }, "vertices": ["jS6F", "ryg1", "IKHl", "hwjg"], - "texture": 0 + "texture": 1 }, "sWWfgk4K": { "uv": { @@ -5397,7 +4752,7 @@ "hwjg": [8.00293, 29.68519] }, "vertices": ["hwjg", "ryg1", "Jq92", "ZISf"], - "texture": 0 + "texture": 1 }, "QNUAKYIT": { "uv": { @@ -5407,7 +4762,7 @@ "zVQ5": [1, 28.9202] }, "vertices": ["zVQ5", "ZISf", "Lrul", "Jq92"], - "texture": 0 + "texture": 1 }, "BRnWTTQ7": { "uv": { @@ -5417,7 +4772,7 @@ "IKHl": [2.3517, 27.9836] }, "vertices": ["IKHl", "rilX", "srzj", "ryg1"], - "texture": 0 + "texture": 1 }, "USWUQ28I": { "uv": { @@ -5427,7 +4782,7 @@ "ryg1": [2.334, 25.9851] }, "vertices": ["ryg1", "rilX", "iCDk", "Jq92"], - "texture": 0 + "texture": 1 }, "telwhUl5": { "uv": { @@ -5437,7 +4792,7 @@ "12zS": [1, 31.9202] }, "vertices": ["12zS", "Jq92", "zVQ5", "iCDk"], - "texture": 0 + "texture": 1 }, "Y0oRikhE": { "uv": { @@ -5447,7 +4802,7 @@ "srzj": [2.0522, 31.9836] }, "vertices": ["srzj", "v1hz", "TZsM", "rilX"], - "texture": 0 + "texture": 1 }, "M1vklvUl": { "uv": { @@ -5457,7 +4812,7 @@ "rilX": [8.122, 31.00235] }, "vertices": ["rilX", "v1hz", "UN0m", "iCDk"], - "texture": 0 + "texture": 1 }, "ZVE21JMg": { "uv": { @@ -5467,7 +4822,7 @@ "ovht": [1, 27.1202] }, "vertices": ["ovht", "iCDk", "12zS", "UN0m"], - "texture": 0 + "texture": 1 }, "L0SUV83I": { "uv": { @@ -5477,7 +4832,7 @@ "TZsM": [2.3517, 27.1402] }, "vertices": ["TZsM", "92Ln", "n74E", "v1hz"], - "texture": 0 + "texture": 1 }, "R3T6mLRW": { "uv": { @@ -5487,7 +4842,7 @@ "v1hz": [2.0612, 24.9958] }, "vertices": ["v1hz", "92Ln", "uZrh", "UN0m"], - "texture": 0 + "texture": 1 }, "ttIS0sst": { "uv": { @@ -5497,7 +4852,7 @@ "l955": [0, 31.0152] }, "vertices": ["l955", "UN0m", "ovht", "uZrh"], - "texture": 0 + "texture": 1 }, "dQPt3CZa": { "uv": { @@ -5507,7 +4862,7 @@ "n74E": [2.3516, 29.9836] }, "vertices": ["n74E", "bftR", "AgKl", "92Ln"], - "texture": 0 + "texture": 1 }, "FiVhgNvE": { "uv": { @@ -5517,7 +4872,7 @@ "92Ln": [2.0002, 24.9836] }, "vertices": ["92Ln", "bftR", "ORyy", "uZrh"], - "texture": 0 + "texture": 1 }, "f27qtq3m": { "uv": { @@ -5527,7 +4882,7 @@ "Sltx": [0, 28.0152] }, "vertices": ["Sltx", "uZrh", "l955", "ORyy"], - "texture": 0 + "texture": 1 }, "Ahdauex4": { "uv": { @@ -5537,7 +4892,7 @@ "AgKl": [2.0522, 25.9837] }, "vertices": ["AgKl", "hwjg", "jS6F", "bftR"], - "texture": 0 + "texture": 1 }, "FwaC0inC": { "uv": { @@ -5547,7 +4902,7 @@ "bftR": [2.01682, 24.9836] }, "vertices": ["bftR", "hwjg", "ZISf", "ORyy"], - "texture": 0 + "texture": 1 }, "9ZkZ6NpN": { "uv": { @@ -5557,7 +4912,7 @@ "Lrul": [0, 33.5854] }, "vertices": ["Lrul", "ORyy", "Sltx", "ZISf"], - "texture": 0 + "texture": 1 }, "bLGLsiVU": { "uv": { @@ -5566,7 +4921,7 @@ "zVQ5": [0.6127, 25.9836] }, "vertices": ["zVQ5", "9zIy", "Lrul"], - "texture": 0 + "texture": 1 }, "FdG3nVPa": { "uv": { @@ -5575,7 +4930,7 @@ "Lrul": [1.3064, 26.9836] }, "vertices": ["Lrul", "9zIy", "Sltx"], - "texture": 0 + "texture": 1 }, "ud1TCfhY": { "uv": { @@ -5584,7 +4939,7 @@ "Sltx": [2, 25.9836] }, "vertices": ["Sltx", "9zIy", "l955"], - "texture": 0 + "texture": 1 }, "41w1S6rR": { "uv": { @@ -5593,7 +4948,7 @@ "l955": [2, 32.7805] }, "vertices": ["l955", "9zIy", "ovht"], - "texture": 0 + "texture": 1 }, "wEgUowfB": { "uv": { @@ -5602,7 +4957,7 @@ "ovht": [1.3064, 31.7805] }, "vertices": ["ovht", "9zIy", "12zS"], - "texture": 0 + "texture": 1 }, "G3UiYJeg": { "uv": { @@ -5611,7 +4966,7 @@ "12zS": [0.6127, 32.7805] }, "vertices": ["12zS", "9zIy", "zVQ5"], - "texture": 0 + "texture": 1 }, "HSXF4kkA": { "uv": { @@ -5620,7 +4975,7 @@ "jS6F": [1.8169, 34.0461] }, "vertices": ["jS6F", "4WRs", "IKHl"], - "texture": 0 + "texture": 1 }, "QqJPEzgx": { "uv": { @@ -5629,7 +4984,7 @@ "IKHl": [1.8169, 25.9836] }, "vertices": ["IKHl", "4WRs", "srzj"], - "texture": 0 + "texture": 1 }, "TY9u2sDg": { "uv": { @@ -5638,7 +4993,7 @@ "srzj": [1.4085, 26.9836] }, "vertices": ["srzj", "4WRs", "TZsM"], - "texture": 0 + "texture": 1 }, "0orapcDd": { "uv": { @@ -5647,7 +5002,7 @@ "TZsM": [2, 25.9836] }, "vertices": ["TZsM", "4WRs", "n74E"], - "texture": 0 + "texture": 1 }, "uoHhPK1e": { "uv": { @@ -5656,7 +5011,7 @@ "n74E": [2, 34.0461] }, "vertices": ["n74E", "4WRs", "AgKl"], - "texture": 0 + "texture": 1 }, "R8i2SJV3": { "uv": { @@ -5665,7 +5020,7 @@ "AgKl": [1.4085, 32.0461] }, "vertices": ["AgKl", "4WRs", "jS6F"], - "texture": 0 + "texture": 1 } }, "type": "mesh", @@ -5705,7 +5060,7 @@ "Orqk": [5.3696, 54.3836] }, "vertices": ["Orqk", "Ngnq", "fXDl"], - "texture": 0 + "texture": 1 }, "jwCmvIw0": { "uv": { @@ -5715,7 +5070,7 @@ "Ngnq": [2.24355, 58.9896] }, "vertices": ["Ngnq", "Orqk", "2WPs", "86iU"], - "texture": 0 + "texture": 1 }, "8CBehK8M": { "uv": { @@ -5724,7 +5079,7 @@ "86iU": [0, 52.7496] }, "vertices": ["86iU", "2WPs", "769S"], - "texture": 0 + "texture": 1 }, "6735bTQz": { "uv": { @@ -5733,7 +5088,7 @@ "sf20": [3.37555, 53.3836] }, "vertices": ["sf20", "Orqk", "fXDl"], - "texture": 0 + "texture": 1 }, "5RuiYjJo": { "uv": { @@ -5743,7 +5098,7 @@ "Orqk": [1.3815, 58.9844] }, "vertices": ["Orqk", "sf20", "JpAB", "2WPs"], - "texture": 0 + "texture": 1 }, "haqmnfWx": { "uv": { @@ -5752,7 +5107,7 @@ "2WPs": [1.3815, 55.7496] }, "vertices": ["2WPs", "JpAB", "769S"], - "texture": 0 + "texture": 1 }, "LzfYKXZg": { "uv": { @@ -5761,7 +5116,7 @@ "uSt3": [1.3815, 55.3836] }, "vertices": ["uSt3", "sf20", "fXDl"], - "texture": 0 + "texture": 1 }, "cdXcnv9J": { "uv": { @@ -5771,7 +5126,7 @@ "sf20": [1.3815, 58.9999] }, "vertices": ["sf20", "uSt3", "LEG0", "JpAB"], - "texture": 0 + "texture": 1 }, "2Zbo3wUk": { "uv": { @@ -5780,7 +5135,7 @@ "JpAB": [1.3815, 53.2262] }, "vertices": ["JpAB", "LEG0", "769S"], - "texture": 0 + "texture": 1 }, "7Lb8dPtY": { "uv": { @@ -5789,7 +5144,7 @@ "H1ru": [1.3815, 50.9836] }, "vertices": ["H1ru", "uSt3", "fXDl"], - "texture": 0 + "texture": 1 }, "smP5XAom": { "uv": { @@ -5799,7 +5154,7 @@ "uSt3": [0.86205, 58.9896] }, "vertices": ["uSt3", "H1ru", "GPdT", "LEG0"], - "texture": 0 + "texture": 1 }, "Jq3zWgIi": { "uv": { @@ -5808,7 +5163,7 @@ "LEG0": [0, 55.7496] }, "vertices": ["LEG0", "GPdT", "769S"], - "texture": 0 + "texture": 1 }, "Lf6TqTg3": { "uv": { @@ -5817,7 +5172,7 @@ "HLm2": [3.37541, 51.9836] }, "vertices": ["HLm2", "H1ru", "fXDl"], - "texture": 0 + "texture": 1 }, "8RzK1EH5": { "uv": { @@ -5827,7 +5182,7 @@ "H1ru": [1.3815, 58.9843] }, "vertices": ["H1ru", "HLm2", "Ba1X", "GPdT"], - "texture": 0 + "texture": 1 }, "BDGVQs73": { "uv": { @@ -5836,7 +5191,7 @@ "GPdT": [2.76299, 52.7496] }, "vertices": ["GPdT", "Ba1X", "769S"], - "texture": 0 + "texture": 1 }, "1l3NVOxJ": { "uv": { @@ -5845,7 +5200,7 @@ "Ngnq": [5.3696, 50.9836] }, "vertices": ["Ngnq", "HLm2", "fXDl"], - "texture": 0 + "texture": 1 }, "yIuKEBDF": { "uv": { @@ -5855,7 +5210,7 @@ "HLm2": [1.3815, 59] }, "vertices": ["HLm2", "Ngnq", "86iU", "Ba1X"], - "texture": 0 + "texture": 1 }, "ZCMrJe0Y": { "uv": { @@ -5864,7 +5219,7 @@ "Ba1X": [1.3815, 56.2262] }, "vertices": ["Ba1X", "86iU", "769S"], - "texture": 0 + "texture": 1 } }, "type": "mesh", @@ -5917,7 +5272,7 @@ "ryg1": [1.4433, 31.4211] }, "vertices": ["ryg1", "jS6F", "IKHl", "hwjg"], - "texture": 0 + "texture": 1 }, "sWWfgk4K": { "uv": { @@ -5927,7 +5282,7 @@ "ryg1": [7.99834, 27.9836] }, "vertices": ["ryg1", "hwjg", "Jq92", "ZISf"], - "texture": 0 + "texture": 1 }, "QNUAKYIT": { "uv": { @@ -5937,7 +5292,7 @@ "ZISf": [2.349, 26.9836] }, "vertices": ["ZISf", "zVQ5", "Lrul", "Jq92"], - "texture": 0 + "texture": 1 }, "BRnWTTQ7": { "uv": { @@ -5947,7 +5302,7 @@ "rilX": [0.7701, 29.4153] }, "vertices": ["rilX", "IKHl", "srzj", "ryg1"], - "texture": 0 + "texture": 1 }, "USWUQ28I": { "uv": { @@ -5957,7 +5312,7 @@ "rilX": [0.6324, 25.9836] }, "vertices": ["rilX", "ryg1", "iCDk", "Jq92"], - "texture": 0 + "texture": 1 }, "telwhUl5": { "uv": { @@ -5967,7 +5322,7 @@ "Jq92": [2.2123, 29.9836] }, "vertices": ["Jq92", "12zS", "zVQ5", "iCDk"], - "texture": 0 + "texture": 1 }, "Y0oRikhE": { "uv": { @@ -5977,7 +5332,7 @@ "v1hz": [0.6177, 33.3496] }, "vertices": ["v1hz", "srzj", "TZsM", "rilX"], - "texture": 0 + "texture": 1 }, "M1vklvUl": { "uv": { @@ -5987,7 +5342,7 @@ "v1hz": [8.61183, 28.9836] }, "vertices": ["v1hz", "rilX", "UN0m", "iCDk"], - "texture": 0 + "texture": 1 }, "ZVE21JMg": { "uv": { @@ -5997,7 +5352,7 @@ "iCDk": [1.919, 25.9836] }, "vertices": ["iCDk", "ovht", "12zS", "UN0m"], - "texture": 0 + "texture": 1 }, "L0SUV83I": { "uv": { @@ -6007,7 +5362,7 @@ "92Ln": [0.4433, 28.4212] }, "vertices": ["92Ln", "TZsM", "n74E", "v1hz"], - "texture": 0 + "texture": 1 }, "R3T6mLRW": { "uv": { @@ -6017,7 +5372,7 @@ "92Ln": [0.3596, 24.9836] }, "vertices": ["92Ln", "v1hz", "uZrh", "UN0m"], - "texture": 0 + "texture": 1 }, "ttIS0sst": { "uv": { @@ -6027,7 +5382,7 @@ "UN0m": [1.0736, 29.9836] }, "vertices": ["UN0m", "l955", "ovht", "uZrh"], - "texture": 0 + "texture": 1 }, "dQPt3CZa": { "uv": { @@ -6037,7 +5392,7 @@ "bftR": [0.7701, 31.4152] }, "vertices": ["bftR", "n74E", "AgKl", "92Ln"], - "texture": 0 + "texture": 1 }, "FiVhgNvE": { "uv": { @@ -6047,7 +5402,7 @@ "bftR": [0.2986, 24.9935] }, "vertices": ["bftR", "92Ln", "ORyy", "uZrh"], - "texture": 0 + "texture": 1 }, "f27qtq3m": { "uv": { @@ -6057,7 +5412,7 @@ "uZrh": [1.4876, 26.9836] }, "vertices": ["uZrh", "Sltx", "l955", "ORyy"], - "texture": 0 + "texture": 1 }, "Ahdauex4": { "uv": { @@ -6067,7 +5422,7 @@ "hwjg": [0.6176, 27.3497] }, "vertices": ["hwjg", "AgKl", "jS6F", "bftR"], - "texture": 0 + "texture": 1 }, "FwaC0inC": { "uv": { @@ -6077,7 +5432,7 @@ "hwjg": [0, 25.48108] }, "vertices": ["hwjg", "bftR", "ZISf", "ORyy"], - "texture": 0 + "texture": 1 }, "9ZkZ6NpN": { "uv": { @@ -6087,7 +5442,7 @@ "ORyy": [1.6866, 31.9836] }, "vertices": ["ORyy", "Lrul", "Sltx", "ZISf"], - "texture": 0 + "texture": 1 }, "bLGLsiVU": { "uv": { @@ -6096,7 +5451,7 @@ "9zIy": [0, 25.9836] }, "vertices": ["9zIy", "zVQ5", "Lrul"], - "texture": 0 + "texture": 1 }, "FdG3nVPa": { "uv": { @@ -6105,7 +5460,7 @@ "9zIy": [1, 27.7805] }, "vertices": ["9zIy", "Lrul", "Sltx"], - "texture": 0 + "texture": 1 }, "ud1TCfhY": { "uv": { @@ -6114,7 +5469,7 @@ "9zIy": [2.3063, 26.7805] }, "vertices": ["9zIy", "Sltx", "l955"], - "texture": 0 + "texture": 1 }, "41w1S6rR": { "uv": { @@ -6123,7 +5478,7 @@ "9zIy": [2.6127, 32.7805] }, "vertices": ["9zIy", "l955", "ovht"], - "texture": 0 + "texture": 1 }, "wEgUowfB": { "uv": { @@ -6132,7 +5487,7 @@ "9zIy": [1.6127, 30.9836] }, "vertices": ["9zIy", "ovht", "12zS"], - "texture": 0 + "texture": 1 }, "G3UiYJeg": { "uv": { @@ -6141,7 +5496,7 @@ "9zIy": [0.3063, 31.9836] }, "vertices": ["9zIy", "12zS", "zVQ5"], - "texture": 0 + "texture": 1 }, "HSXF4kkA": { "uv": { @@ -6150,7 +5505,7 @@ "4WRs": [1.4084, 32.9836] }, "vertices": ["4WRs", "jS6F", "IKHl"], - "texture": 0 + "texture": 1 }, "QqJPEzgx": { "uv": { @@ -6159,7 +5514,7 @@ "4WRs": [1, 25.9836] }, "vertices": ["4WRs", "IKHl", "srzj"], - "texture": 0 + "texture": 1 }, "TY9u2sDg": { "uv": { @@ -6168,7 +5523,7 @@ "4WRs": [1, 28.0461] }, "vertices": ["4WRs", "srzj", "TZsM"], - "texture": 0 + "texture": 1 }, "0orapcDd": { "uv": { @@ -6177,7 +5532,7 @@ "4WRs": [2.4084, 27.0461] }, "vertices": ["4WRs", "TZsM", "n74E"], - "texture": 0 + "texture": 1 }, "uoHhPK1e": { "uv": { @@ -6186,7 +5541,7 @@ "4WRs": [2.8169, 34.0461] }, "vertices": ["4WRs", "n74E", "AgKl"], - "texture": 0 + "texture": 1 }, "R8i2SJV3": { "uv": { @@ -6195,7 +5550,7 @@ "4WRs": [1.8169, 30.9836] }, "vertices": ["4WRs", "AgKl", "jS6F"], - "texture": 0 + "texture": 1 } }, "type": "mesh", @@ -6248,7 +5603,7 @@ "jS6F": [3.3516, 30.1401] }, "vertices": ["jS6F", "ryg1", "IKHl", "hwjg"], - "texture": 0 + "texture": 1 }, "sWWfgk4K": { "uv": { @@ -6258,7 +5613,7 @@ "hwjg": [8.00293, 29.68519] }, "vertices": ["hwjg", "ryg1", "Jq92", "ZISf"], - "texture": 0 + "texture": 1 }, "QNUAKYIT": { "uv": { @@ -6268,7 +5623,7 @@ "zVQ5": [1, 28.9202] }, "vertices": ["zVQ5", "ZISf", "Lrul", "Jq92"], - "texture": 0 + "texture": 1 }, "BRnWTTQ7": { "uv": { @@ -6278,7 +5633,7 @@ "IKHl": [2.3517, 27.9836] }, "vertices": ["IKHl", "rilX", "srzj", "ryg1"], - "texture": 0 + "texture": 1 }, "USWUQ28I": { "uv": { @@ -6288,7 +5643,7 @@ "ryg1": [2.334, 25.9851] }, "vertices": ["ryg1", "rilX", "iCDk", "Jq92"], - "texture": 0 + "texture": 1 }, "telwhUl5": { "uv": { @@ -6298,7 +5653,7 @@ "12zS": [1, 31.9202] }, "vertices": ["12zS", "Jq92", "zVQ5", "iCDk"], - "texture": 0 + "texture": 1 }, "Y0oRikhE": { "uv": { @@ -6308,7 +5663,7 @@ "srzj": [2.0522, 31.9836] }, "vertices": ["srzj", "v1hz", "TZsM", "rilX"], - "texture": 0 + "texture": 1 }, "M1vklvUl": { "uv": { @@ -6318,7 +5673,7 @@ "rilX": [8.122, 31.00235] }, "vertices": ["rilX", "v1hz", "UN0m", "iCDk"], - "texture": 0 + "texture": 1 }, "ZVE21JMg": { "uv": { @@ -6328,7 +5683,7 @@ "ovht": [1, 27.1202] }, "vertices": ["ovht", "iCDk", "12zS", "UN0m"], - "texture": 0 + "texture": 1 }, "L0SUV83I": { "uv": { @@ -6338,7 +5693,7 @@ "TZsM": [2.3517, 27.1402] }, "vertices": ["TZsM", "92Ln", "n74E", "v1hz"], - "texture": 0 + "texture": 1 }, "R3T6mLRW": { "uv": { @@ -6348,7 +5703,7 @@ "v1hz": [2.0612, 24.9958] }, "vertices": ["v1hz", "92Ln", "uZrh", "UN0m"], - "texture": 0 + "texture": 1 }, "ttIS0sst": { "uv": { @@ -6358,7 +5713,7 @@ "l955": [0, 31.0152] }, "vertices": ["l955", "UN0m", "ovht", "uZrh"], - "texture": 0 + "texture": 1 }, "dQPt3CZa": { "uv": { @@ -6368,7 +5723,7 @@ "n74E": [2.3516, 29.9836] }, "vertices": ["n74E", "bftR", "AgKl", "92Ln"], - "texture": 0 + "texture": 1 }, "FiVhgNvE": { "uv": { @@ -6378,7 +5733,7 @@ "92Ln": [2.0002, 24.9836] }, "vertices": ["92Ln", "bftR", "ORyy", "uZrh"], - "texture": 0 + "texture": 1 }, "f27qtq3m": { "uv": { @@ -6388,7 +5743,7 @@ "Sltx": [0, 28.0152] }, "vertices": ["Sltx", "uZrh", "l955", "ORyy"], - "texture": 0 + "texture": 1 }, "Ahdauex4": { "uv": { @@ -6398,7 +5753,7 @@ "AgKl": [2.0522, 25.9837] }, "vertices": ["AgKl", "hwjg", "jS6F", "bftR"], - "texture": 0 + "texture": 1 }, "FwaC0inC": { "uv": { @@ -6408,7 +5763,7 @@ "bftR": [2.01682, 24.9836] }, "vertices": ["bftR", "hwjg", "ZISf", "ORyy"], - "texture": 0 + "texture": 1 }, "9ZkZ6NpN": { "uv": { @@ -6418,7 +5773,7 @@ "Lrul": [0, 33.5854] }, "vertices": ["Lrul", "ORyy", "Sltx", "ZISf"], - "texture": 0 + "texture": 1 }, "bLGLsiVU": { "uv": { @@ -6427,7 +5782,7 @@ "zVQ5": [0.6127, 25.9836] }, "vertices": ["zVQ5", "9zIy", "Lrul"], - "texture": 0 + "texture": 1 }, "FdG3nVPa": { "uv": { @@ -6436,7 +5791,7 @@ "Lrul": [1.3064, 26.9836] }, "vertices": ["Lrul", "9zIy", "Sltx"], - "texture": 0 + "texture": 1 }, "ud1TCfhY": { "uv": { @@ -6445,7 +5800,7 @@ "Sltx": [2, 25.9836] }, "vertices": ["Sltx", "9zIy", "l955"], - "texture": 0 + "texture": 1 }, "41w1S6rR": { "uv": { @@ -6454,7 +5809,7 @@ "l955": [2, 32.7805] }, "vertices": ["l955", "9zIy", "ovht"], - "texture": 0 + "texture": 1 }, "wEgUowfB": { "uv": { @@ -6463,7 +5818,7 @@ "ovht": [1.3064, 31.7805] }, "vertices": ["ovht", "9zIy", "12zS"], - "texture": 0 + "texture": 1 }, "G3UiYJeg": { "uv": { @@ -6472,7 +5827,7 @@ "12zS": [0.6127, 32.7805] }, "vertices": ["12zS", "9zIy", "zVQ5"], - "texture": 0 + "texture": 1 }, "HSXF4kkA": { "uv": { @@ -6481,7 +5836,7 @@ "jS6F": [1.8169, 34.0461] }, "vertices": ["jS6F", "4WRs", "IKHl"], - "texture": 0 + "texture": 1 }, "QqJPEzgx": { "uv": { @@ -6490,7 +5845,7 @@ "IKHl": [1.8169, 25.9836] }, "vertices": ["IKHl", "4WRs", "srzj"], - "texture": 0 + "texture": 1 }, "TY9u2sDg": { "uv": { @@ -6499,7 +5854,7 @@ "srzj": [1.4085, 26.9836] }, "vertices": ["srzj", "4WRs", "TZsM"], - "texture": 0 + "texture": 1 }, "0orapcDd": { "uv": { @@ -6508,7 +5863,7 @@ "TZsM": [2, 25.9836] }, "vertices": ["TZsM", "4WRs", "n74E"], - "texture": 0 + "texture": 1 }, "uoHhPK1e": { "uv": { @@ -6517,7 +5872,7 @@ "n74E": [2, 34.0461] }, "vertices": ["n74E", "4WRs", "AgKl"], - "texture": 0 + "texture": 1 }, "R8i2SJV3": { "uv": { @@ -6526,7 +5881,7 @@ "AgKl": [1.4085, 32.0461] }, "vertices": ["AgKl", "4WRs", "jS6F"], - "texture": 0 + "texture": 1 } }, "type": "mesh", @@ -6566,7 +5921,7 @@ "xQ7R": [0.5774, 5.9836] }, "vertices": ["xQ7R", "ZAwo", "uXX4"], - "texture": 0 + "texture": 1 }, "2wrsF9PS": { "uv": { @@ -6576,7 +5931,7 @@ "ZAwo": [1.1548, 9.9836] }, "vertices": ["ZAwo", "xQ7R", "jvUa", "KviP"], - "texture": 0 + "texture": 1 }, "NHGFWn7K": { "uv": { @@ -6585,7 +5940,7 @@ "ZAwo": [1.1547, 5.9836] }, "vertices": ["ZAwo", "ZlND", "uXX4"], - "texture": 0 + "texture": 1 }, "8cc6hOOR": { "uv": { @@ -6595,7 +5950,7 @@ "ZlND": [1.1548, 9.9836] }, "vertices": ["ZlND", "ZAwo", "0viC", "jvUa"], - "texture": 0 + "texture": 1 }, "9UtXiLWH": { "uv": { @@ -6604,7 +5959,7 @@ "ZlND": [1.1548, 6.9836] }, "vertices": ["ZlND", "0sOe", "uXX4"], - "texture": 0 + "texture": 1 }, "qGP3hNLj": { "uv": { @@ -6614,7 +5969,7 @@ "0sOe": [1.1548, 9.9836] }, "vertices": ["0sOe", "ZlND", "bbcG", "0viC"], - "texture": 0 + "texture": 1 }, "6tckQVaJ": { "uv": { @@ -6623,7 +5978,7 @@ "0sOe": [0.5773, 6.9836] }, "vertices": ["0sOe", "EHEa", "uXX4"], - "texture": 0 + "texture": 1 }, "2WWrRUBm": { "uv": { @@ -6633,7 +5988,7 @@ "EHEa": [1.1548, 9.9836] }, "vertices": ["EHEa", "0sOe", "Hf1h", "bbcG"], - "texture": 0 + "texture": 1 }, "Gd1XafzL": { "uv": { @@ -6642,7 +5997,7 @@ "EHEa": [0, 5.9836] }, "vertices": ["EHEa", "qpo9", "uXX4"], - "texture": 0 + "texture": 1 }, "4eJ8kTWL": { "uv": { @@ -6652,7 +6007,7 @@ "qpo9": [1.1548, 9.9836] }, "vertices": ["qpo9", "EHEa", "AFOM", "Hf1h"], - "texture": 0 + "texture": 1 }, "U1EMdNou": { "uv": { @@ -6661,7 +6016,7 @@ "qpo9": [0, 5.9836] }, "vertices": ["qpo9", "xQ7R", "uXX4"], - "texture": 0 + "texture": 1 }, "JaWe1p8r": { "uv": { @@ -6671,7 +6026,7 @@ "xQ7R": [1.1548, 9.9836] }, "vertices": ["xQ7R", "qpo9", "KviP", "AFOM"], - "texture": 0 + "texture": 1 }, "MLElNaEL": { "uv": { @@ -6680,7 +6035,7 @@ "jvUa": [4.1547, 3.9836] }, "vertices": ["jvUa", "KviP", "oTYm"], - "texture": 0 + "texture": 1 }, "SrTdhUln": { "uv": { @@ -6689,7 +6044,7 @@ "0viC": [3.5774, 3.9836] }, "vertices": ["0viC", "jvUa", "oTYm"], - "texture": 0 + "texture": 1 }, "1B3EpcYx": { "uv": { @@ -6698,7 +6053,7 @@ "bbcG": [3, 3.9836] }, "vertices": ["bbcG", "0viC", "oTYm"], - "texture": 0 + "texture": 1 }, "gSUoLh4J": { "uv": { @@ -6707,7 +6062,7 @@ "Hf1h": [3, 3.9836] }, "vertices": ["Hf1h", "bbcG", "oTYm"], - "texture": 0 + "texture": 1 }, "EiJgXwpU": { "uv": { @@ -6716,7 +6071,7 @@ "AFOM": [3, 3.9836] }, "vertices": ["AFOM", "Hf1h", "oTYm"], - "texture": 0 + "texture": 1 }, "1NM4KFOU": { "uv": { @@ -6725,7 +6080,7 @@ "KviP": [3, 3.9836] }, "vertices": ["KviP", "AFOM", "oTYm"], - "texture": 0 + "texture": 1 } }, "type": "mesh", @@ -6734,7 +6089,7 @@ { "name": "cylinder", "color": 8, - "origin": [3.6, 26.73, -1.71], + "origin": [3.6, 26.73, -1.21], "rotation": [0, 0, 0], "export": true, "visibility": true, @@ -6763,7 +6118,7 @@ "UZWq": [1.50002, 11.1632] }, "vertices": ["UZWq", "USVQ", "8bfM"], - "texture": 0 + "texture": 1 }, "9ZKH0lG6": { "uv": { @@ -6773,7 +6128,7 @@ "USVQ": [0, 10.9836] }, "vertices": ["USVQ", "UZWq", "axTi", "HXhU"], - "texture": 0 + "texture": 1 }, "RGmcX1UG": { "uv": { @@ -6782,7 +6137,7 @@ "HXhU": [2.16591, 6.75008] }, "vertices": ["HXhU", "axTi", "Kvjd"], - "texture": 0 + "texture": 1 }, "hURkvpYa": { "uv": { @@ -6791,7 +6146,7 @@ "tgyO": [1.8541, 6.747] }, "vertices": ["tgyO", "UZWq", "8bfM"], - "texture": 0 + "texture": 1 }, "WyrjtDC7": { "uv": { @@ -6801,7 +6156,7 @@ "UZWq": [0, 10.9836] }, "vertices": ["UZWq", "tgyO", "Ib2Y", "axTi"], - "texture": 0 + "texture": 1 }, "acbFBVuv": { "uv": { @@ -6810,7 +6165,7 @@ "axTi": [2.16591, 6.75008] }, "vertices": ["axTi", "Ib2Y", "Kvjd"], - "texture": 0 + "texture": 1 }, "lyFWiRhd": { "uv": { @@ -6819,7 +6174,7 @@ "FTwV": [1.8541, 6.747] }, "vertices": ["FTwV", "tgyO", "8bfM"], - "texture": 0 + "texture": 1 }, "wjezwsCE": { "uv": { @@ -6829,7 +6184,7 @@ "tgyO": [0, 10.9836] }, "vertices": ["tgyO", "FTwV", "O5S9", "Ib2Y"], - "texture": 0 + "texture": 1 }, "j57EBA6J": { "uv": { @@ -6838,7 +6193,7 @@ "Ib2Y": [2.16591, 6.75008] }, "vertices": ["Ib2Y", "O5S9", "Kvjd"], - "texture": 0 + "texture": 1 }, "vcbsA7yR": { "uv": { @@ -6847,7 +6202,7 @@ "5xC8": [1.28114, 8.9836] }, "vertices": ["5xC8", "FTwV", "8bfM"], - "texture": 0 + "texture": 1 }, "lYJAyjcC": { "uv": { @@ -6857,7 +6212,7 @@ "FTwV": [0, 10.9836] }, "vertices": ["FTwV", "5xC8", "tls7", "O5S9"], - "texture": 0 + "texture": 1 }, "dswA4ncI": { "uv": { @@ -6866,7 +6221,7 @@ "O5S9": [2.16591, 6.75008] }, "vertices": ["O5S9", "tls7", "Kvjd"], - "texture": 0 + "texture": 1 }, "x4e93Rac": { "uv": { @@ -6875,7 +6230,7 @@ "USVQ": [2.1796, 8.9836] }, "vertices": ["USVQ", "5xC8", "8bfM"], - "texture": 0 + "texture": 1 }, "TtnpSvW1": { "uv": { @@ -6885,7 +6240,7 @@ "5xC8": [0, 10.9836] }, "vertices": ["5xC8", "USVQ", "HXhU", "tls7"], - "texture": 0 + "texture": 1 }, "royATjFd": { "uv": { @@ -6894,7 +6249,7 @@ "tls7": [2.16591, 6.75008] }, "vertices": ["tls7", "HXhU", "Kvjd"], - "texture": 0 + "texture": 1 } }, "type": "mesh", @@ -6932,7 +6287,7 @@ "3pM6": [0.99999, 5.43674] }, "vertices": ["3pM6", "uqWQ", "0klA"], - "texture": 0 + "texture": 1 }, "Pmm72AqV": { "uv": { @@ -6942,7 +6297,7 @@ "uqWQ": [0, 5.9836] }, "vertices": ["uqWQ", "3pM6", "k4Z0", "VUnI"], - "texture": 0 + "texture": 1 }, "zF43FN77": { "uv": { @@ -6951,7 +6306,7 @@ "VUnI": [0.3819, 5.15916] }, "vertices": ["VUnI", "k4Z0", "TYCj"], - "texture": 0 + "texture": 1 }, "3Z2mxhsi": { "uv": { @@ -6960,7 +6315,7 @@ "liE0": [0, 5.2197] }, "vertices": ["liE0", "3pM6", "0klA"], - "texture": 0 + "texture": 1 }, "Ge7vXuNy": { "uv": { @@ -6970,7 +6325,7 @@ "3pM6": [0, 5.9836] }, "vertices": ["3pM6", "liE0", "4MRC", "k4Z0"], - "texture": 0 + "texture": 1 }, "6csrFhyY": { "uv": { @@ -6979,7 +6334,7 @@ "k4Z0": [1.1756, 4.8377] }, "vertices": ["k4Z0", "4MRC", "TYCj"], - "texture": 0 + "texture": 1 }, "PzDbGLZI": { "uv": { @@ -6988,7 +6343,7 @@ "BpW6": [0, 4.3656] }, "vertices": ["BpW6", "liE0", "0klA"], - "texture": 0 + "texture": 1 }, "Jnti7pZB": { "uv": { @@ -6998,7 +6353,7 @@ "liE0": [0, 5.9836] }, "vertices": ["liE0", "BpW6", "0kUY", "4MRC"], - "texture": 0 + "texture": 1 }, "ggZw5JIi": { "uv": { @@ -7007,7 +6362,7 @@ "4MRC": [1.1756, 3.9836] }, "vertices": ["4MRC", "0kUY", "TYCj"], - "texture": 0 + "texture": 1 }, "3aqe5f3y": { "uv": { @@ -7016,7 +6371,7 @@ "rDCl": [0.8542, 3.9836] }, "vertices": ["rDCl", "BpW6", "0klA"], - "texture": 0 + "texture": 1 }, "z1Wsx2z6": { "uv": { @@ -7026,7 +6381,7 @@ "BpW6": [0, 5.9836] }, "vertices": ["BpW6", "rDCl", "uFpQ", "0kUY"], - "texture": 0 + "texture": 1 }, "WnJUw8Za": { "uv": { @@ -7035,7 +6390,7 @@ "0kUY": [1, 3.9836] }, "vertices": ["0kUY", "uFpQ", "TYCj"], - "texture": 0 + "texture": 1 }, "bGf5q9nr": { "uv": { @@ -7044,7 +6399,7 @@ "uqWQ": [1.453, 3.9836] }, "vertices": ["uqWQ", "rDCl", "0klA"], - "texture": 0 + "texture": 1 }, "cfYYgyy7": { "uv": { @@ -7054,7 +6409,7 @@ "rDCl": [0, 5.9836] }, "vertices": ["rDCl", "uqWQ", "VUnI", "uFpQ"], - "texture": 0 + "texture": 1 }, "grmykaTZ": { "uv": { @@ -7063,7 +6418,7 @@ "uFpQ": [0, 4.9836] }, "vertices": ["uFpQ", "VUnI", "TYCj"], - "texture": 0 + "texture": 1 } }, "type": "mesh", @@ -7086,27 +6441,27 @@ "faces": { "north": { "uv": [0, 0, 134, 134], - "texture": 7 + "texture": 8 }, "east": { "uv": [0, 0, 0, 134], - "texture": 7 + "texture": 8 }, "south": { "uv": [134, 0, 0, 134], - "texture": 7 + "texture": 8 }, "west": { "uv": [0, 0, 0, 134], - "texture": 7 + "texture": 8 }, "up": { "uv": [0, 0, 134, 0], - "texture": 7 + "texture": 8 }, "down": { "uv": [0, 0, 134, 0], - "texture": 7 + "texture": 8 } }, "type": "cube", @@ -7150,7 +6505,7 @@ "OWmi": [5, 14] }, "vertices": ["OWmi", "oT2h", "fLAO"], - "texture": 0 + "texture": 1 }, "ATnexadO": { "uv": { @@ -7159,7 +6514,7 @@ "oT2h": [5, 17] }, "vertices": ["oT2h", "MO6d", "fLAO"], - "texture": 0 + "texture": 1 }, "qqi3rDKy": { "uv": { @@ -7168,7 +6523,7 @@ "46vx": [8, 14] }, "vertices": ["46vx", "bQ73", "wp48"], - "texture": 0 + "texture": 1 }, "wZ0Q1VN7": { "uv": { @@ -7177,7 +6532,7 @@ "bQ73": [5, 14] }, "vertices": ["bQ73", "2YNc", "wp48"], - "texture": 0 + "texture": 1 }, "rd2QG6CY": { "uv": { @@ -7186,7 +6541,7 @@ "Z8Sy": [8, 14] }, "vertices": ["Z8Sy", "OWmi", "fLAO"], - "texture": 0 + "texture": 1 }, "fdILn2f5": { "uv": { @@ -7195,7 +6550,7 @@ "MO6d": [8, 17] }, "vertices": ["MO6d", "Z8Sy", "fLAO"], - "texture": 0 + "texture": 1 }, "mgHfvV0U": { "uv": { @@ -7204,7 +6559,7 @@ "2YNc": [5, 17] }, "vertices": ["2YNc", "NrEa", "wp48"], - "texture": 0 + "texture": 1 }, "8pt2D7xH": { "uv": { @@ -7213,7 +6568,7 @@ "NrEa": [8, 17] }, "vertices": ["NrEa", "46vx", "wp48"], - "texture": 0 + "texture": 1 }, "aeybYSkj": { "uv": { @@ -7223,7 +6578,7 @@ "mHED": [8, 14] }, "vertices": ["mHED", "a5UE", "Psl0", "8cmE"], - "texture": 0 + "texture": 1 }, "EeSdz22H": { "uv": { @@ -7233,7 +6588,7 @@ "34Pf": [8, 14] }, "vertices": ["34Pf", "Psl0", "dtZF", "8cmE"], - "texture": 0 + "texture": 1 }, "mTHqyU0p": { "uv": { @@ -7243,7 +6598,7 @@ "tFIJ": [5, 14] }, "vertices": ["tFIJ", "dtZF", "a5UE", "8cmE"], - "texture": 0 + "texture": 1 }, "ccAZfM5B": { "uv": { @@ -7253,7 +6608,7 @@ "OWmi": [7, 15] }, "vertices": ["OWmi", "Z8Sy", "tFIJ", "Rbk7"], - "texture": 0 + "texture": 1 }, "vYEWe2DW": { "uv": { @@ -7263,7 +6618,7 @@ "oT2h": [6, 16] }, "vertices": ["oT2h", "OWmi", "Rbk7", "34Pf"], - "texture": 0 + "texture": 1 }, "uAEfVAfZ": { "uv": { @@ -7273,7 +6628,7 @@ "MO6d": [7, 17] }, "vertices": ["MO6d", "oT2h", "34Pf", "dtZF"], - "texture": 0 + "texture": 1 }, "VFraoDad": { "uv": { @@ -7283,7 +6638,7 @@ "Z8Sy": [7, 15] }, "vertices": ["Z8Sy", "MO6d", "dtZF", "tFIJ"], - "texture": 0 + "texture": 1 }, "ngEIUToe": { "uv": { @@ -7293,7 +6648,7 @@ "NrEa": [7, 16] }, "vertices": ["NrEa", "2YNc", "mHED", "Rbk7"], - "texture": 0 + "texture": 1 }, "VanXuBGE": { "uv": { @@ -7303,7 +6658,7 @@ "46vx": [8, 15] }, "vertices": ["46vx", "NrEa", "Rbk7", "tFIJ"], - "texture": 0 + "texture": 1 }, "3VnqxInH": { "uv": { @@ -7313,7 +6668,7 @@ "bQ73": [7, 14] }, "vertices": ["bQ73", "46vx", "tFIJ", "a5UE"], - "texture": 0 + "texture": 1 }, "GDoLZyGx": { "uv": { @@ -7323,7 +6678,7 @@ "2YNc": [6, 15] }, "vertices": ["2YNc", "bQ73", "a5UE", "mHED"], - "texture": 0 + "texture": 1 }, "4Hxb797g": { "uv": { @@ -7333,7 +6688,7 @@ "Rbk7": [8, 14] }, "vertices": ["Rbk7", "mHED", "34Pf", "Psl0"], - "texture": 0 + "texture": 1 } }, "type": "mesh", @@ -7347,36 +6702,36 @@ "light_emission": 0, "render_order": "default", "allow_mirror_modeling": true, - "from": [1.8, 11.8, -7], - "to": [4.2, 14.2, -4], + "from": [-0.2, 11.8, -7], + "to": [2.2, 14.2, -4], "autouv": 0, "color": 3, "visibility": false, - "origin": [-5, 5, -9], + "origin": [-7, 5, -9], "faces": { "north": { "uv": [1, 20, 3, 22], - "texture": 1 + "texture": 0 }, "east": { "uv": [0, 0, 0, 0], - "texture": 1 + "texture": 0 }, "south": { "uv": [0, 0, 0, 0], - "texture": 1 + "texture": 0 }, "west": { "uv": [0, 0, 0, 0], - "texture": 1 + "texture": 0 }, "up": { "uv": [0, 0, 0, 0], - "texture": 1 + "texture": 0 }, "down": { "uv": [0, 0, 0, 0], - "texture": 1 + "texture": 0 } }, "type": "cube", @@ -7390,36 +6745,36 @@ "light_emission": 0, "render_order": "default", "allow_mirror_modeling": true, - "from": [1.8, 11, -8], - "to": [4.2, 11.8, -5], + "from": [-0.2, 11, -8], + "to": [2.2, 11.8, -5], "autouv": 0, "color": 0, "visibility": false, - "origin": [-5, 5, -9], + "origin": [-7, 5, -9], "faces": { "north": { "uv": [1, 22, 3, 22.8], - "texture": 1 + "texture": 0 }, "east": { "uv": [0, 0, 0, 0], - "texture": 1 + "texture": 0 }, "south": { "uv": [0, 0, 0, 0], - "texture": 1 + "texture": 0 }, "west": { "uv": [0, 0, 0, 0], - "texture": 1 + "texture": 0 }, "up": { "uv": [21, 19, 23, 22], - "texture": 1 + "texture": 0 }, "down": { "uv": [13, 19, 15, 22], - "texture": 1 + "texture": 0 } }, "type": "cube", @@ -7433,37 +6788,37 @@ "light_emission": 0, "render_order": "default", "allow_mirror_modeling": true, - "from": [1.8, 14.2, -8], - "to": [4.2, 15, -5], + "from": [-0.2, 14.2, -8], + "to": [2.2, 15, -5], "autouv": 0, "color": 1, "visibility": false, - "origin": [-5, 5, -9], + "origin": [-7, 5, -9], "faces": { "north": { "uv": [1, 19.2, 3, 20], - "texture": 1 + "texture": 0 }, "east": { "uv": [0, 0, 0, 0], - "texture": 1 + "texture": 0 }, "south": { "uv": [0, 0, 0, 0], - "texture": 1 + "texture": 0 }, "west": { "uv": [0, 0, 0, 0], - "texture": 1 + "texture": 0 }, "up": { "uv": [5, 19, 7, 22], - "texture": 1 + "texture": 0 }, "down": { "uv": [21, 19, 23, 22], "rotation": 180, - "texture": 1 + "texture": 0 } }, "type": "cube", @@ -7477,39 +6832,39 @@ "light_emission": 0, "render_order": "default", "allow_mirror_modeling": true, - "from": [1, 11, -8], - "to": [1.8, 15, -5], + "from": [-1, 11, -8], + "to": [-0.2, 15, -5], "autouv": 0, "color": 1, "visibility": false, - "origin": [-5, 5, -9], + "origin": [-7, 5, -9], "faces": { "north": { "uv": [3, 19, 3.8, 23], - "texture": 1 + "texture": 0 }, "east": { "uv": [20, 19, 24, 22], "rotation": 90, - "texture": 1 + "texture": 0 }, "south": { "uv": [0, 0, 0, 0], - "texture": 1 + "texture": 0 }, "west": { "uv": [16, 19, 20, 22], "rotation": 90, - "texture": 1 + "texture": 0 }, "up": { "uv": [7, 19, 7.8, 22], "rotation": 180, - "texture": 1 + "texture": 0 }, "down": { "uv": [15.1, 19, 15.9, 22], - "texture": 1 + "texture": 0 } }, "type": "cube", @@ -7523,39 +6878,39 @@ "light_emission": 0, "render_order": "default", "allow_mirror_modeling": true, - "from": [4.2, 11, -8], - "to": [5, 15, -5], + "from": [2.2, 11, -8], + "to": [3, 15, -5], "autouv": 0, "color": 5, "visibility": false, - "origin": [-5, 5, -9], + "origin": [-7, 5, -9], "faces": { "north": { "uv": [0.2, 19, 1, 23], - "texture": 1 + "texture": 0 }, "east": { "uv": [8, 19, 12, 22], "rotation": 90, - "texture": 1 + "texture": 0 }, "south": { "uv": [0, 0, 0, 0], - "texture": 1 + "texture": 0 }, "west": { "uv": [20, 19, 24, 22], "rotation": 270, - "texture": 1 + "texture": 0 }, "up": { "uv": [4.2, 19, 5, 22], "rotation": 180, - "texture": 1 + "texture": 0 }, "down": { "uv": [12.2, 19, 13, 22], - "texture": 1 + "texture": 0 } }, "type": "cube", @@ -7569,36 +6924,36 @@ "light_emission": 0, "render_order": "default", "allow_mirror_modeling": true, - "from": [0.5, 16, -4.5], - "to": [5.5, 17, 0.5], + "from": [-1.5, 16, -4.5], + "to": [3.5, 17, 0.5], "autouv": 0, "color": 3, "visibility": false, - "origin": [-5, 5, -9], + "origin": [-7, 5, -9], "faces": { "north": { "uv": [10, 9, 15, 10], - "texture": 1 + "texture": 0 }, "east": { "uv": [10, 10, 15, 11], - "texture": 1 + "texture": 0 }, "south": { "uv": [10, 11, 15, 12], - "texture": 1 + "texture": 0 }, "west": { "uv": [10, 12, 15, 13], - "texture": 1 + "texture": 0 }, "up": { "uv": [0, 9, 5, 14], - "texture": 1 + "texture": 0 }, "down": { "uv": [0, 0, 0, 0], - "texture": 1 + "texture": 0 } }, "type": "cube", @@ -7612,40 +6967,40 @@ "light_emission": 0, "render_order": "default", "allow_mirror_modeling": true, - "from": [5.6, 12, 1.6], - "to": [6.6, 14, 3.6], + "from": [3.6, 12, 1.6], + "to": [4.6, 14, 3.6], "autouv": 0, "color": 6, "visibility": false, - "origin": [-5, 5, -9], + "origin": [-7, 5, -9], "faces": { "north": { "uv": [30, 7, 32, 8], "rotation": 90, - "texture": 1 + "texture": 0 }, "east": { "uv": [30, 10, 32, 12], - "texture": 1 + "texture": 0 }, "south": { "uv": [30, 9, 32, 10], "rotation": 90, - "texture": 1 + "texture": 0 }, "west": { "uv": [0, 0, 0, 0], - "texture": 1 + "texture": 0 }, "up": { "uv": [30, 6, 32, 7], "rotation": 90, - "texture": 1 + "texture": 0 }, "down": { "uv": [30, 8, 32, 9], "rotation": 90, - "texture": 1 + "texture": 0 } }, "type": "cube", @@ -7659,40 +7014,40 @@ "light_emission": 0, "render_order": "default", "allow_mirror_modeling": true, - "from": [6, 12, -4], - "to": [7, 15, -1], + "from": [4, 12, -4], + "to": [5, 15, -1], "autouv": 0, "color": 3, "visibility": false, - "origin": [-5, 5, -9], + "origin": [-7, 5, -9], "faces": { "north": { "uv": [29, 13, 32, 14], "rotation": 90, - "texture": 1 + "texture": 0 }, "east": { "uv": [29, 16, 32, 19], - "texture": 1 + "texture": 0 }, "south": { "uv": [29, 15, 32, 16], "rotation": 90, - "texture": 1 + "texture": 0 }, "west": { "uv": [0, 0, 0, 0], - "texture": 1 + "texture": 0 }, "up": { "uv": [29, 12, 32, 13], "rotation": 90, - "texture": 1 + "texture": 0 }, "down": { "uv": [29, 14, 32, 15], "rotation": 90, - "texture": 1 + "texture": 0 } }, "type": "cube", @@ -7706,38 +7061,38 @@ "light_emission": 0, "render_order": "default", "allow_mirror_modeling": true, - "from": [0, 10, -5], - "to": [6, 16, 4], + "from": [-2, 10, -5], + "to": [4, 16, 4], "autouv": 0, "color": 2, "visibility": false, - "origin": [-5, 5, -9], + "origin": [-7, 5, -9], "faces": { "north": { "uv": [24, 0, 30, 6], - "texture": 1 + "texture": 0 }, "east": { "uv": [6, 0, 12, 9], "rotation": 90, - "texture": 1 + "texture": 0 }, "south": { "uv": [24, 6, 30, 12], - "texture": 1 + "texture": 0 }, "west": { "uv": [18, 0, 24, 9], "rotation": 90, - "texture": 1 + "texture": 0 }, "up": { "uv": [0, 0, 6, 9], - "texture": 1 + "texture": 0 }, "down": { "uv": [12, 0, 18, 9], - "texture": 1 + "texture": 0 } }, "type": "cube", @@ -7777,7 +7132,7 @@ "Ngnq": [3.37555, 51.9836] }, "vertices": ["Ngnq", "Orqk", "fXDl"], - "texture": 0 + "texture": 1 }, "jwCmvIw0": { "uv": { @@ -7787,7 +7142,7 @@ "Orqk": [6.11257, 58.9896] }, "vertices": ["Orqk", "Ngnq", "2WPs", "86iU"], - "texture": 0 + "texture": 1 }, "8CBehK8M": { "uv": { @@ -7796,7 +7151,7 @@ "2WPs": [4.47951, 52.7496] }, "vertices": ["2WPs", "86iU", "769S"], - "texture": 0 + "texture": 1 }, "6735bTQz": { "uv": { @@ -7805,7 +7160,7 @@ "Orqk": [5.3696, 50.9836] }, "vertices": ["Orqk", "sf20", "fXDl"], - "texture": 0 + "texture": 1 }, "5RuiYjJo": { "uv": { @@ -7815,7 +7170,7 @@ "sf20": [5.25052, 58.9844] }, "vertices": ["sf20", "Orqk", "JpAB", "2WPs"], - "texture": 0 + "texture": 1 }, "haqmnfWx": { "uv": { @@ -7824,7 +7179,7 @@ "JpAB": [5.86086, 55.7496] }, "vertices": ["JpAB", "2WPs", "769S"], - "texture": 0 + "texture": 1 }, "LzfYKXZg": { "uv": { @@ -7833,7 +7188,7 @@ "sf20": [5.3696, 55.3836] }, "vertices": ["sf20", "uSt3", "fXDl"], - "texture": 0 + "texture": 1 }, "cdXcnv9J": { "uv": { @@ -7843,7 +7198,7 @@ "uSt3": [5.3696, 58.9999] }, "vertices": ["uSt3", "sf20", "LEG0", "JpAB"], - "texture": 0 + "texture": 1 }, "2Zbo3wUk": { "uv": { @@ -7852,7 +7207,7 @@ "LEG0": [4.78081, 53.2262] }, "vertices": ["LEG0", "JpAB", "769S"], - "texture": 0 + "texture": 1 }, "7Lb8dPtY": { "uv": { @@ -7861,7 +7216,7 @@ "uSt3": [3.37541, 53.3836] }, "vertices": ["uSt3", "H1ru", "fXDl"], - "texture": 0 + "texture": 1 }, "smP5XAom": { "uv": { @@ -7871,7 +7226,7 @@ "H1ru": [4.73108, 58.9896] }, "vertices": ["H1ru", "uSt3", "GPdT", "LEG0"], - "texture": 0 + "texture": 1 }, "Jq3zWgIi": { "uv": { @@ -7880,7 +7235,7 @@ "GPdT": [4.47937, 55.7496] }, "vertices": ["GPdT", "LEG0", "769S"], - "texture": 0 + "texture": 1 }, "Lf6TqTg3": { "uv": { @@ -7889,7 +7244,7 @@ "H1ru": [1.3815, 54.3836] }, "vertices": ["H1ru", "HLm2", "fXDl"], - "texture": 0 + "texture": 1 }, "8RzK1EH5": { "uv": { @@ -7899,7 +7254,7 @@ "HLm2": [5.25052, 58.9843] }, "vertices": ["HLm2", "H1ru", "Ba1X", "GPdT"], - "texture": 0 + "texture": 1 }, "BDGVQs73": { "uv": { @@ -7908,7 +7263,7 @@ "Ba1X": [7.2425, 52.7496] }, "vertices": ["Ba1X", "GPdT", "769S"], - "texture": 0 + "texture": 1 }, "1l3NVOxJ": { "uv": { @@ -7917,7 +7272,7 @@ "HLm2": [1.3815, 50.9836] }, "vertices": ["HLm2", "Ngnq", "fXDl"], - "texture": 0 + "texture": 1 }, "yIuKEBDF": { "uv": { @@ -7927,7 +7282,7 @@ "Ngnq": [5.3696, 59] }, "vertices": ["Ngnq", "HLm2", "86iU", "Ba1X"], - "texture": 0 + "texture": 1 }, "ZCMrJe0Y": { "uv": { @@ -7936,7 +7291,7 @@ "86iU": [4.78081, 56.2262] }, "vertices": ["86iU", "Ba1X", "769S"], - "texture": 0 + "texture": 1 } }, "type": "mesh", @@ -8053,7 +7408,6 @@ "97I5": [-0.69935, 4.72222, -0.86667], "x8Ka": [0.97712, 4.72222, 0.13333], "whqz": [0.97712, 4.72222, -0.86667], - "S90S": [0.13889, 25.22222, 0.13333], "dUmO": [0.13889, 25.22222, -0.86667], "omTk": [-0.18161, 4.72222, 0.13333], "LVkI": [0.45939, 4.72222, 0.13333], @@ -8075,7 +7429,8 @@ "GgE6": [0.87756, -1.86645, 0.42201], "eaDD": [0.94244, -0.57778, 0.48689], "8xZn": [0.87756, -1.86645, -1.15534], - "ZYxD": [0.94244, -0.57778, -1.22022] + "ZYxD": [0.94244, -0.57778, -1.22022], + "S90S": [0.13889, 25.22222, 0.13333] }, "faces": { "UcCGWRIR": { @@ -8086,7 +7441,7 @@ "YfCL": [8, 35] }, "vertices": ["YfCL", "dSZr", "yGTs", "4PO5"], - "texture": 9 + "texture": 10 }, "cXJ4ks6b": { "uv": { @@ -8096,7 +7451,7 @@ "6Z9s": [8, 35] }, "vertices": ["6Z9s", "YfCL", "4PO5", "SPl7"], - "texture": 9 + "texture": 10 }, "gzPb5JkI": { "uv": { @@ -8106,7 +7461,7 @@ "Vjml": [8, 35] }, "vertices": ["Vjml", "6Z9s", "SPl7", "BJbH"], - "texture": 9 + "texture": 10 }, "h8s8JfoI": { "uv": { @@ -8116,7 +7471,7 @@ "VYPY": [8, 35] }, "vertices": ["VYPY", "Vjml", "BJbH", "7mNX"], - "texture": 9 + "texture": 10 }, "bDvnXrQk": { "uv": { @@ -8126,7 +7481,7 @@ "7G48": [8, 35] }, "vertices": ["7G48", "VYPY", "7mNX", "clsf"], - "texture": 9 + "texture": 10 }, "iD1dk5IL": { "uv": { @@ -8136,7 +7491,7 @@ "dcku": [8, 35] }, "vertices": ["dcku", "7G48", "clsf", "Lp6I"], - "texture": 9 + "texture": 10 }, "JajJDXMS": { "uv": { @@ -8146,7 +7501,7 @@ "M9qu": [8, 35] }, "vertices": ["M9qu", "dcku", "Lp6I", "TNRk"], - "texture": 9 + "texture": 10 }, "yfSczmGZ": { "uv": { @@ -8156,7 +7511,7 @@ "7JyW": [8, 35] }, "vertices": ["7JyW", "M9qu", "TNRk", "SnFO"], - "texture": 9 + "texture": 10 }, "7Sf4ZbSE": { "uv": { @@ -8166,7 +7521,7 @@ "dkpp": [8, 35] }, "vertices": ["dkpp", "wbSp", "vw2t", "A9ji"], - "texture": 9 + "texture": 10 }, "mwoYr1wP": { "uv": { @@ -8176,7 +7531,7 @@ "nFol": [8, 35] }, "vertices": ["nFol", "dkpp", "A9ji", "wxIE"], - "texture": 9 + "texture": 10 }, "9MbUksVi": { "uv": { @@ -8186,7 +7541,7 @@ "Ez9u": [8, 35] }, "vertices": ["Ez9u", "nFol", "wxIE", "y75e"], - "texture": 9 + "texture": 10 }, "TmqkEeee": { "uv": { @@ -8196,7 +7551,7 @@ "UsA9": [8, 35] }, "vertices": ["UsA9", "Ez9u", "y75e", "DpGl"], - "texture": 9 + "texture": 10 }, "ScegAI1G": { "uv": { @@ -8206,7 +7561,7 @@ "N64v": [8, 35] }, "vertices": ["N64v", "UsA9", "DpGl", "KYpN"], - "texture": 9 + "texture": 10 }, "dW50K3Zh": { "uv": { @@ -8216,7 +7571,7 @@ "dSZr": [8, 35] }, "vertices": ["dSZr", "N64v", "KYpN", "yGTs"], - "texture": 9 + "texture": 10 }, "GfHRz9Nh": { "uv": { @@ -8226,7 +7581,7 @@ "dSZr": [7, 38] }, "vertices": ["dSZr", "YfCL", "KdeM", "RTr5"], - "texture": 9 + "texture": 10 }, "q4W5foTj": { "uv": { @@ -8236,7 +7591,7 @@ "4PO5": [7, 38] }, "vertices": ["4PO5", "yGTs", "w6k7", "yjoM"], - "texture": 9 + "texture": 10 }, "6QESHogn": { "uv": { @@ -8246,7 +7601,7 @@ "YfCL": [7, 38] }, "vertices": ["YfCL", "6Z9s", "i0yp", "KdeM"], - "texture": 9 + "texture": 10 }, "wx0qL51a": { "uv": { @@ -8256,7 +7611,7 @@ "SPl7": [7, 38] }, "vertices": ["SPl7", "4PO5", "yjoM", "5Xoy"], - "texture": 9 + "texture": 10 }, "ryiv0V2h": { "uv": { @@ -8266,7 +7621,7 @@ "6Z9s": [7, 38] }, "vertices": ["6Z9s", "Vjml", "ElmV", "i0yp"], - "texture": 9 + "texture": 10 }, "MIYBu7WJ": { "uv": { @@ -8276,7 +7631,7 @@ "BJbH": [7, 38] }, "vertices": ["BJbH", "SPl7", "5Xoy", "w4Mt"], - "texture": 9 + "texture": 10 }, "mKICjHmc": { "uv": { @@ -8286,7 +7641,7 @@ "Vjml": [7, 38] }, "vertices": ["Vjml", "VYPY", "z7dP", "ElmV"], - "texture": 9 + "texture": 10 }, "5MLN4kNk": { "uv": { @@ -8296,7 +7651,7 @@ "7mNX": [7, 38] }, "vertices": ["7mNX", "BJbH", "w4Mt", "XMf1"], - "texture": 9 + "texture": 10 }, "y6PdrcyN": { "uv": { @@ -8306,7 +7661,7 @@ "VYPY": [7, 38] }, "vertices": ["VYPY", "7G48", "XJ4A", "z7dP"], - "texture": 9 + "texture": 10 }, "JXIiKHa6": { "uv": { @@ -8316,7 +7671,7 @@ "clsf": [7, 38] }, "vertices": ["clsf", "7mNX", "XMf1", "hDEr"], - "texture": 9 + "texture": 10 }, "82IxAoRf": { "uv": { @@ -8326,7 +7681,7 @@ "7G48": [7, 38] }, "vertices": ["7G48", "dcku", "SBy3", "XJ4A"], - "texture": 9 + "texture": 10 }, "FpAym3Ut": { "uv": { @@ -8336,7 +7691,7 @@ "Lp6I": [7, 38] }, "vertices": ["Lp6I", "clsf", "hDEr", "5Djd"], - "texture": 9 + "texture": 10 }, "Mega3DlU": { "uv": { @@ -8346,7 +7701,7 @@ "dcku": [7, 38] }, "vertices": ["dcku", "M9qu", "rDlp", "SBy3"], - "texture": 9 + "texture": 10 }, "esXSZ0YK": { "uv": { @@ -8356,7 +7711,7 @@ "TNRk": [7, 38] }, "vertices": ["TNRk", "Lp6I", "5Djd", "VS7R"], - "texture": 9 + "texture": 10 }, "EcAYNrv3": { "uv": { @@ -8366,7 +7721,7 @@ "M9qu": [7, 38] }, "vertices": ["M9qu", "7JyW", "fCLM", "rDlp"], - "texture": 9 + "texture": 10 }, "zRAd92X0": { "uv": { @@ -8376,7 +7731,7 @@ "SnFO": [7, 38] }, "vertices": ["SnFO", "TNRk", "VS7R", "mwoy"], - "texture": 9 + "texture": 10 }, "k6uXJr1t": { "uv": { @@ -8386,7 +7741,7 @@ "wbSp": [7, 38] }, "vertices": ["wbSp", "dkpp", "eNbD", "ReuT"], - "texture": 9 + "texture": 10 }, "BGQ5Zv56": { "uv": { @@ -8396,7 +7751,7 @@ "vw2t": [8, 35] }, "vertices": ["vw2t", "wbSp", "ReuT", "4EYt"], - "texture": 9 + "texture": 10 }, "FPao9USe": { "uv": { @@ -8406,7 +7761,7 @@ "A9ji": [7, 38] }, "vertices": ["A9ji", "vw2t", "4EYt", "ckie"], - "texture": 9 + "texture": 10 }, "wqfVf9MP": { "uv": { @@ -8416,7 +7771,7 @@ "dkpp": [7, 38] }, "vertices": ["dkpp", "nFol", "Sjst", "eNbD"], - "texture": 9 + "texture": 10 }, "n4xxKioQ": { "uv": { @@ -8426,7 +7781,7 @@ "wxIE": [7, 38] }, "vertices": ["wxIE", "A9ji", "ckie", "1vLf"], - "texture": 9 + "texture": 10 }, "dMiegt5h": { "uv": { @@ -8436,7 +7791,7 @@ "nFol": [7, 38] }, "vertices": ["nFol", "Ez9u", "BA3g", "Sjst"], - "texture": 9 + "texture": 10 }, "6jmR5Ais": { "uv": { @@ -8446,7 +7801,7 @@ "y75e": [7, 38] }, "vertices": ["y75e", "wxIE", "1vLf", "aEsF"], - "texture": 9 + "texture": 10 }, "qHZfGGqR": { "uv": { @@ -8456,7 +7811,7 @@ "Ez9u": [7, 38] }, "vertices": ["Ez9u", "UsA9", "f19k", "BA3g"], - "texture": 9 + "texture": 10 }, "DhKzwxh9": { "uv": { @@ -8466,7 +7821,7 @@ "DpGl": [7, 38] }, "vertices": ["DpGl", "y75e", "aEsF", "UzTv"], - "texture": 9 + "texture": 10 }, "HZSwmAz4": { "uv": { @@ -8476,7 +7831,7 @@ "UsA9": [7, 38] }, "vertices": ["UsA9", "N64v", "2Q2X", "f19k"], - "texture": 9 + "texture": 10 }, "twDV2NkQ": { "uv": { @@ -8486,7 +7841,7 @@ "KYpN": [7, 38] }, "vertices": ["KYpN", "DpGl", "UzTv", "gVk6"], - "texture": 9 + "texture": 10 }, "XMj40AXI": { "uv": { @@ -8496,7 +7851,7 @@ "N64v": [7, 38] }, "vertices": ["N64v", "dSZr", "RTr5", "2Q2X"], - "texture": 9 + "texture": 10 }, "nW4CQjKx": { "uv": { @@ -8506,7 +7861,7 @@ "yGTs": [7, 38] }, "vertices": ["yGTs", "KYpN", "gVk6", "w6k7"], - "texture": 9 + "texture": 10 }, "7jvzcCRK": { "uv": { @@ -8516,7 +7871,7 @@ "yjoM": [9, 35] }, "vertices": ["yjoM", "w6k7", "KdeM", "RTr5"], - "texture": 9 + "texture": 10 }, "BCToe3r8": { "uv": { @@ -8526,7 +7881,7 @@ "5Xoy": [9, 35] }, "vertices": ["5Xoy", "yjoM", "i0yp", "KdeM"], - "texture": 9 + "texture": 10 }, "9qC1VWcs": { "uv": { @@ -8536,7 +7891,7 @@ "w4Mt": [9, 35] }, "vertices": ["w4Mt", "5Xoy", "ElmV", "i0yp"], - "texture": 9 + "texture": 10 }, "gorbgvot": { "uv": { @@ -8546,7 +7901,7 @@ "XMf1": [9, 35] }, "vertices": ["XMf1", "w4Mt", "z7dP", "ElmV"], - "texture": 9 + "texture": 10 }, "d7dYd7bf": { "uv": { @@ -8556,7 +7911,7 @@ "hDEr": [9, 35] }, "vertices": ["hDEr", "XMf1", "XJ4A", "z7dP"], - "texture": 9 + "texture": 10 }, "NteBE9TI": { "uv": { @@ -8566,7 +7921,7 @@ "XJ4A": [9, 35] }, "vertices": ["XJ4A", "SBy3", "hDEr", "5Djd"], - "texture": 9 + "texture": 10 }, "cMbXpCB8": { "uv": { @@ -8576,7 +7931,7 @@ "SBy3": [9, 35] }, "vertices": ["SBy3", "rDlp", "5Djd", "VS7R"], - "texture": 9 + "texture": 10 }, "g5poZ9UO": { "uv": { @@ -8586,7 +7941,7 @@ "rDlp": [9, 35] }, "vertices": ["rDlp", "fCLM", "VS7R", "mwoy"], - "texture": 9 + "texture": 10 }, "M3Zn29e2": { "uv": { @@ -8596,7 +7951,7 @@ "2Q2X": [9, 35] }, "vertices": ["2Q2X", "RTr5", "gVk6", "w6k7"], - "texture": 9 + "texture": 10 }, "xJL1koME": { "uv": { @@ -8606,7 +7961,7 @@ "f19k": [9, 35] }, "vertices": ["f19k", "2Q2X", "UzTv", "gVk6"], - "texture": 9 + "texture": 10 }, "rDFzeyuz": { "uv": { @@ -8616,7 +7971,7 @@ "BA3g": [9, 35] }, "vertices": ["BA3g", "f19k", "aEsF", "UzTv"], - "texture": 9 + "texture": 10 }, "lyubORSA": { "uv": { @@ -8626,7 +7981,7 @@ "Sjst": [9, 35] }, "vertices": ["Sjst", "BA3g", "1vLf", "aEsF"], - "texture": 9 + "texture": 10 }, "bxDmZKzA": { "uv": { @@ -8636,7 +7991,7 @@ "eNbD": [9, 35] }, "vertices": ["eNbD", "Sjst", "ckie", "1vLf"], - "texture": 9 + "texture": 10 }, "33QZJbTF": { "uv": { @@ -8646,7 +8001,7 @@ "ReuT": [9, 35] }, "vertices": ["ReuT", "eNbD", "4EYt", "ckie"], - "texture": 9 + "texture": 10 }, "DY2LwgL6": { "uv": { @@ -8656,7 +8011,7 @@ "qdRn": [7, 40] }, "vertices": ["qdRn", "jizT", "mwoy", "SnFO"], - "texture": 9 + "texture": 10 }, "0tgbNELr": { "uv": { @@ -8666,7 +8021,7 @@ "jizT": [8, 34] }, "vertices": ["jizT", "AhYD", "SnFO", "7JyW"], - "texture": 9 + "texture": 10 }, "Cyt8KQh6": { "uv": { @@ -8676,7 +8031,7 @@ "AhYD": [6, 38] }, "vertices": ["AhYD", "JchO", "7JyW", "fCLM"], - "texture": 9 + "texture": 10 }, "l45GOput": { "uv": { @@ -8686,7 +8041,7 @@ "JchO": [9, 35] }, "vertices": ["JchO", "qdRn", "fCLM", "mwoy"], - "texture": 9 + "texture": 10 }, "MPvqDGXn": { "uv": { @@ -8696,7 +8051,7 @@ "J35x": [5, 40] }, "vertices": ["J35x", "uZl1", "r8cd", "vH8B"], - "texture": 9 + "texture": 10 }, "ZAXqaDfd": { "uv": { @@ -8706,7 +8061,7 @@ "vH8B": [10, 38] }, "vertices": ["vH8B", "r8cd", "KK9l", "h470"], - "texture": 9 + "texture": 10 }, "3XT2Qe0F": { "uv": { @@ -8716,7 +8071,7 @@ "h470": [10, 38] }, "vertices": ["h470", "KK9l", "zQUZ", "AS4N"], - "texture": 9 + "texture": 10 }, "OSTTZ1WB": { "uv": { @@ -8726,7 +8081,7 @@ "AS4N": [9, 36] }, "vertices": ["AS4N", "zQUZ", "uZl1", "J35x"], - "texture": 9 + "texture": 10 }, "6x4Fm423": { "uv": { @@ -8736,7 +8091,7 @@ "v4FA": [9.81481, 37] }, "vertices": ["v4FA", "SaP1", "KK9l", "r8cd"], - "texture": 9 + "texture": 10 }, "QYuUKHe6": { "uv": { @@ -8746,7 +8101,7 @@ "zSNG": [9.81481, 37] }, "vertices": ["zSNG", "hwtv", "l43A", "8RZE"], - "texture": 9 + "texture": 10 }, "1VC3adIZ": { "uv": { @@ -8756,7 +8111,7 @@ "RBuO": [9, 36] }, "vertices": ["RBuO", "ysV9", "OEiu", "4r1K"], - "texture": 9 + "texture": 10 }, "8eL2HyBf": { "uv": { @@ -8766,7 +8121,7 @@ "l43A": [9, 38] }, "vertices": ["l43A", "OEiu", "Twz4", "RBuO"], - "texture": 9 + "texture": 10 }, "XkyAZS74": { "uv": { @@ -8776,7 +8131,7 @@ "hwtv": [8.44444, 37] }, "vertices": ["hwtv", "Twz4", "DQAm", "l43A"], - "texture": 9 + "texture": 10 }, "PwpnjFND": { "uv": { @@ -8786,7 +8141,7 @@ "4r1K": [6, 40] }, "vertices": ["4r1K", "7Lkb", "ysV9", "8RZE"], - "texture": 9 + "texture": 10 }, "9oMLbnfc": { "uv": { @@ -8796,7 +8151,7 @@ "8RZE": [6, 38] }, "vertices": ["8RZE", "hzda", "7Lkb", "zSNG"], - "texture": 9 + "texture": 10 }, "Dpxx7CpN": { "uv": { @@ -8806,7 +8161,7 @@ "zQUZ": [9, 36] }, "vertices": ["zQUZ", "4xjY", "xLlC", "uZl1"], - "texture": 9 + "texture": 10 }, "SVHHhcO2": { "uv": { @@ -8816,7 +8171,7 @@ "uZl1": [6, 40] }, "vertices": ["uZl1", "xLlC", "HEb7", "r8cd"], - "texture": 9 + "texture": 10 }, "vdwOaCZ4": { "uv": { @@ -8826,7 +8181,7 @@ "xLlC": [7, 40] }, "vertices": ["xLlC", "OEiu", "Twz4", "HEb7"], - "texture": 9 + "texture": 10 }, "FlfaAgiy": { "uv": { @@ -8836,7 +8191,7 @@ "r8cd": [6, 38] }, "vertices": ["r8cd", "HEb7", "NTOm", "v4FA"], - "texture": 9 + "texture": 10 }, "NckUeqJ1": { "uv": { @@ -8846,7 +8201,7 @@ "KK9l": [9, 38] }, "vertices": ["KK9l", "qFyh", "4xjY", "zQUZ"], - "texture": 9 + "texture": 10 }, "ctGuI6pF": { "uv": { @@ -8856,7 +8211,7 @@ "qFyh": [8, 38] }, "vertices": ["qFyh", "7Lkb", "ysV9", "4xjY"], - "texture": 9 + "texture": 10 }, "vSPl6O7i": { "uv": { @@ -8866,7 +8221,7 @@ "SaP1": [8.44444, 37] }, "vertices": ["SaP1", "6Rn5", "qFyh", "KK9l"], - "texture": 9 + "texture": 10 }, "zT8H7d85": { "uv": { @@ -8876,7 +8231,7 @@ "6Rn5": [7.81481, 37] }, "vertices": ["6Rn5", "hzda", "7Lkb", "qFyh"], - "texture": 9 + "texture": 10 }, "chDXs2hw": { "uv": { @@ -8885,7 +8240,7 @@ "v4FA": [7, 20] }, "vertices": ["v4FA", "NTOm", "DQAm"], - "texture": 9 + "texture": 10 }, "UgShs0ZG": { "uv": { @@ -8895,7 +8250,7 @@ "HEb7": [7, 38] }, "vertices": ["HEb7", "Twz4", "DQAm", "NTOm"], - "texture": 9 + "texture": 10 }, "OfOkta8P": { "uv": { @@ -8904,7 +8259,7 @@ "NTOm": [7.425, 20] }, "vertices": ["NTOm", "DQAm", "hwtv"], - "texture": 9 + "texture": 10 }, "E1pKqcMx": { "uv": { @@ -8913,7 +8268,7 @@ "J35x": [6, 40] }, "vertices": ["J35x", "vH8B", "baM3"], - "texture": 9 + "texture": 10 }, "pZyasg7y": { "uv": { @@ -8922,7 +8277,7 @@ "vH8B": [6, 38] }, "vertices": ["vH8B", "h470", "baM3"], - "texture": 9 + "texture": 10 }, "FgHaoPIT": { "uv": { @@ -8931,7 +8286,7 @@ "h470": [7, 38] }, "vertices": ["h470", "AS4N", "baM3"], - "texture": 9 + "texture": 10 }, "pJDXjDXs": { "uv": { @@ -8940,7 +8295,7 @@ "AS4N": [8, 35] }, "vertices": ["AS4N", "J35x", "baM3"], - "texture": 9 + "texture": 10 }, "ncUiQvb7": { "uv": { @@ -8950,7 +8305,7 @@ "AhYD": [7, 35] }, "vertices": ["AhYD", "JchO", "jizT", "qdRn"], - "texture": 9 + "texture": 10 }, "hgyNhvtP": { "uv": { @@ -8960,7 +8315,7 @@ "AhYD": [8, 35] }, "vertices": ["AhYD", "jizT", "8RZE", "l43A"], - "texture": 9 + "texture": 10 }, "XfraWsWn": { "uv": { @@ -8970,7 +8325,7 @@ "JchO": [8, 37] }, "vertices": ["JchO", "AhYD", "l43A", "RBuO"], - "texture": 9 + "texture": 10 }, "FRB6ZcyW": { "uv": { @@ -8980,7 +8335,7 @@ "qdRn": [9, 36] }, "vertices": ["qdRn", "JchO", "RBuO", "4r1K"], - "texture": 9 + "texture": 10 }, "3rYUB9Ii": { "uv": { @@ -8990,7 +8345,7 @@ "jizT": [7, 35] }, "vertices": ["jizT", "qdRn", "4r1K", "8RZE"], - "texture": 9 + "texture": 10 }, "ewN9rZIU": { "uv": { @@ -9000,7 +8355,7 @@ "z2De": [8, 40] }, "vertices": ["z2De", "YfWn", "4xjY", "ysV9"], - "texture": 9 + "texture": 10 }, "ZnGvA9ol": { "uv": { @@ -9010,7 +8365,7 @@ "nhav": [8, 35] }, "vertices": ["nhav", "z2De", "ysV9", "OEiu"], - "texture": 9 + "texture": 10 }, "LJPkLCrV": { "uv": { @@ -9020,7 +8375,7 @@ "E4yt": [7, 44] }, "vertices": ["E4yt", "nhav", "OEiu", "xLlC"], - "texture": 9 + "texture": 10 }, "VPtBmmMF": { "uv": { @@ -9030,7 +8385,7 @@ "YfWn": [8, 35] }, "vertices": ["YfWn", "E4yt", "xLlC", "4xjY"], - "texture": 9 + "texture": 10 }, "EfJOoi4v": { "uv": { @@ -9040,7 +8395,7 @@ "whqz": [7, 36] }, "vertices": ["whqz", "MrKc", "KdFN", "x8Ka"], - "texture": 9 + "texture": 10 }, "ufng06Uj": { "uv": { @@ -9050,7 +8405,7 @@ "yOxX": [7.25, 36] }, "vertices": ["yOxX", "KdFN", "jgz2", "whqz"], - "texture": 9 + "texture": 10 }, "xNq0BQtv": { "uv": { @@ -9060,7 +8415,7 @@ "Omja": [9, 36] }, "vertices": ["Omja", "Kmzj", "sO8h", "97I5"], - "texture": 9 + "texture": 10 }, "UxelpdUq": { "uv": { @@ -9070,7 +8425,7 @@ "x8Ka": [8, 36] }, "vertices": ["x8Ka", "k8pS", "MrKc", "LVkI"], - "texture": 9 + "texture": 10 }, "F0DoSv1x": { "uv": { @@ -9080,7 +8435,7 @@ "omTk": [7.25, 36] }, "vertices": ["omTk", "sO8h", "CTNP", "Omja"], - "texture": 9 + "texture": 10 }, "w16vR4Oa": { "uv": { @@ -9090,7 +8445,7 @@ "LVkI": [7.5, 11] }, "vertices": ["LVkI", "CTNP", "k8pS", "omTk"], - "texture": 9 + "texture": 10 }, "rnmBVqMn": { "uv": { @@ -9100,7 +8455,7 @@ "97I5": [8, 36] }, "vertices": ["97I5", "YHNn", "Kmzj", "LrXm"], - "texture": 9 + "texture": 10 }, "i9QWf78f": { "uv": { @@ -9110,7 +8465,7 @@ "LrXm": [7.5, 11] }, "vertices": ["LrXm", "jgz2", "YHNn", "yOxX"], - "texture": 9 + "texture": 10 }, "L8EdjpKY": { "uv": { @@ -9120,7 +8475,7 @@ "S90S": [6, 4] }, "vertices": ["S90S", "MrKc", "KdFN", "dUmO"], - "texture": 9 + "texture": 10 }, "axsJrmtt": { "uv": { @@ -9129,7 +8484,7 @@ "dUmO": [7, 4] }, "vertices": ["dUmO", "KdFN", "jgz2"], - "texture": 9 + "texture": 10 }, "iHnAYB92": { "uv": { @@ -9138,7 +8493,7 @@ "jgz2": [6.75, 7.5] }, "vertices": ["jgz2", "YHNn", "dUmO"], - "texture": 9 + "texture": 10 }, "rguPvCKq": { "uv": { @@ -9147,7 +8502,7 @@ "YHNn": [7.75, 20] }, "vertices": ["YHNn", "Kmzj", "dUmO"], - "texture": 9 + "texture": 10 }, "c8cR9ogq": { "uv": { @@ -9157,7 +8512,7 @@ "dUmO": [8, 4] }, "vertices": ["dUmO", "Kmzj", "sO8h", "S90S"], - "texture": 9 + "texture": 10 }, "v8wOIisd": { "uv": { @@ -9166,7 +8521,7 @@ "S90S": [7, 4] }, "vertices": ["S90S", "sO8h", "CTNP"], - "texture": 9 + "texture": 10 }, "mE46TIZW": { "uv": { @@ -9175,7 +8530,7 @@ "S90S": [6.95, 4] }, "vertices": ["S90S", "CTNP", "k8pS"], - "texture": 9 + "texture": 10 }, "zVeOiUM6": { "uv": { @@ -9184,7 +8539,7 @@ "k8pS": [7.75, 20] }, "vertices": ["k8pS", "MrKc", "S90S"], - "texture": 9 + "texture": 10 }, "qzLQw2y4": { "uv": { @@ -9194,7 +8549,7 @@ "8xZn": [8, 35] }, "vertices": ["8xZn", "GgE6", "idto", "3PVE"], - "texture": 9 + "texture": 10 }, "9mcHE0ag": { "uv": { @@ -9204,7 +8559,7 @@ "GgE6": [8, 35] }, "vertices": ["GgE6", "8xZn", "ZYxD", "eaDD"], - "texture": 9 + "texture": 10 }, "101JWkm4": { "uv": { @@ -9214,7 +8569,7 @@ "idto": [9, 44] }, "vertices": ["idto", "GgE6", "eaDD", "8DN7"], - "texture": 9 + "texture": 10 }, "2WrwqWHk": { "uv": { @@ -9224,7 +8579,7 @@ "3PVE": [8, 35] }, "vertices": ["3PVE", "idto", "8DN7", "S5Ch"], - "texture": 9 + "texture": 10 }, "uRMTSPsN": { "uv": { @@ -9234,7 +8589,7 @@ "8xZn": [8, 45] }, "vertices": ["8xZn", "3PVE", "S5Ch", "ZYxD"], - "texture": 9 + "texture": 10 }, "sUkbC0IS": { "uv": { @@ -9244,7 +8599,7 @@ "S5Ch": [8, 35] }, "vertices": ["S5Ch", "8DN7", "E4yt", "YfWn"], - "texture": 9 + "texture": 10 }, "5Vs8g6lP": { "uv": { @@ -9254,7 +8609,7 @@ "8DN7": [8, 46.3536] }, "vertices": ["8DN7", "eaDD", "nhav", "E4yt"], - "texture": 9 + "texture": 10 }, "RYyPY93A": { "uv": { @@ -9264,7 +8619,7 @@ "eaDD": [8, 35] }, "vertices": ["eaDD", "ZYxD", "z2De", "nhav"], - "texture": 9 + "texture": 10 }, "xxRzDgcK": { "uv": { @@ -9274,7 +8629,7 @@ "ZYxD": [8.6071, 46] }, "vertices": ["ZYxD", "S5Ch", "YfWn", "z2De"], - "texture": 9 + "texture": 10 } }, "type": "mesh", @@ -9318,7 +8673,7 @@ "WTHu": [0, 11.68177] }, "vertices": ["WTHu", "vMl8", "Syg9"], - "texture": 10 + "texture": 11 }, "auaFtT31": { "uv": { @@ -9328,7 +8683,7 @@ "vMl8": [5, 16] }, "vertices": ["vMl8", "WTHu", "U0jU", "KBQr"], - "texture": 10 + "texture": 11 }, "KWDAWh3z": { "uv": { @@ -9337,7 +8692,7 @@ "KBQr": [1.74709, 9.89311] }, "vertices": ["KBQr", "U0jU", "5L4x"], - "texture": 10 + "texture": 11 }, "fWglIXih": { "uv": { @@ -9346,7 +8701,7 @@ "9y8l": [0, 14.21133] }, "vertices": ["9y8l", "WTHu", "Syg9"], - "texture": 10 + "texture": 11 }, "WDWTbsYY": { "uv": { @@ -9356,7 +8711,7 @@ "WTHu": [7.2, 16] }, "vertices": ["WTHu", "9y8l", "JuHm", "U0jU"], - "texture": 10 + "texture": 11 }, "yDGzCejv": { "uv": { @@ -9365,7 +8720,7 @@ "U0jU": [0, 11.68177] }, "vertices": ["U0jU", "JuHm", "5L4x"], - "texture": 10 + "texture": 11 }, "NftA25Ll": { "uv": { @@ -9374,7 +8729,7 @@ "wlNY": [1.74709, 16] }, "vertices": ["wlNY", "9y8l", "Syg9"], - "texture": 10 + "texture": 11 }, "GNBu50Wy": { "uv": { @@ -9384,7 +8739,7 @@ "9y8l": [9.4, 16] }, "vertices": ["9y8l", "wlNY", "5qhL", "JuHm"], - "texture": 10 + "texture": 11 }, "7q7LBC8k": { "uv": { @@ -9393,7 +8748,7 @@ "JuHm": [0, 14.21133] }, "vertices": ["JuHm", "5qhL", "5L4x"], - "texture": 10 + "texture": 11 }, "nLWLmp41": { "uv": { @@ -9402,7 +8757,7 @@ "nHPO": [4.21786, 16] }, "vertices": ["nHPO", "wlNY", "Syg9"], - "texture": 10 + "texture": 11 }, "ekMCB1ct": { "uv": { @@ -9412,7 +8767,7 @@ "wlNY": [5, 16] }, "vertices": ["wlNY", "nHPO", "OTJT", "5qhL"], - "texture": 10 + "texture": 11 }, "Ixk3K9Do": { "uv": { @@ -9421,7 +8776,7 @@ "5qhL": [1.74709, 16] }, "vertices": ["5qhL", "OTJT", "5L4x"], - "texture": 10 + "texture": 11 }, "SzwuCwIQ": { "uv": { @@ -9430,7 +8785,7 @@ "vTqs": [5.96495, 14.21133] }, "vertices": ["vTqs", "nHPO", "Syg9"], - "texture": 10 + "texture": 11 }, "gyPkfYqn": { "uv": { @@ -9440,7 +8795,7 @@ "nHPO": [7.2, 16] }, "vertices": ["nHPO", "vTqs", "V1A8", "OTJT"], - "texture": 10 + "texture": 11 }, "a3iLNbWD": { "uv": { @@ -9449,7 +8804,7 @@ "OTJT": [4.21786, 16] }, "vertices": ["OTJT", "V1A8", "5L4x"], - "texture": 10 + "texture": 11 }, "PPe96f5C": { "uv": { @@ -9458,7 +8813,7 @@ "AK5h": [5.96495, 11.68177] }, "vertices": ["AK5h", "vTqs", "Syg9"], - "texture": 10 + "texture": 11 }, "8OvwtJu5": { "uv": { @@ -9468,7 +8823,7 @@ "vTqs": [13.8, 16] }, "vertices": ["vTqs", "AK5h", "znUA", "V1A8"], - "texture": 10 + "texture": 11 }, "aFQRLPC7": { "uv": { @@ -9477,7 +8832,7 @@ "V1A8": [5.96495, 14.21133] }, "vertices": ["V1A8", "znUA", "5L4x"], - "texture": 10 + "texture": 11 }, "buMxxshu": { "uv": { @@ -9486,7 +8841,7 @@ "7PHz": [4.21786, 9.89311] }, "vertices": ["7PHz", "AK5h", "Syg9"], - "texture": 10 + "texture": 11 }, "imkdwPZw": { "uv": { @@ -9496,7 +8851,7 @@ "AK5h": [11.6, 16] }, "vertices": ["AK5h", "7PHz", "f14k", "znUA"], - "texture": 10 + "texture": 11 }, "k8nu5H6F": { "uv": { @@ -9505,7 +8860,7 @@ "znUA": [5.96495, 11.68177] }, "vertices": ["znUA", "f14k", "5L4x"], - "texture": 10 + "texture": 11 }, "DZPuyzEl": { "uv": { @@ -9514,7 +8869,7 @@ "vMl8": [1.74709, 9.89311] }, "vertices": ["vMl8", "7PHz", "Syg9"], - "texture": 10 + "texture": 11 }, "XLpjEnxi": { "uv": { @@ -9524,7 +8879,7 @@ "7PHz": [13.8, 16] }, "vertices": ["7PHz", "vMl8", "KBQr", "f14k"], - "texture": 10 + "texture": 11 }, "gyMGsv9U": { "uv": { @@ -9533,7 +8888,7 @@ "f14k": [4.21786, 9.89311] }, "vertices": ["f14k", "KBQr", "5L4x"], - "texture": 10 + "texture": 11 } }, "type": "mesh", @@ -9551,33 +8906,32 @@ "to": [4.4, 19.7, 1.7], "autouv": 0, "color": 1, - "visibility": false, "inflate": 1, "origin": [-4.5, 19.8, 0.9], "faces": { "north": { "uv": [24, 2, 34, 22], - "texture": 11 + "texture": 12 }, "east": { "uv": [22, 2, 24, 22], - "texture": 11 + "texture": 12 }, "south": { "uv": [36, 2, 46, 22], - "texture": 11 + "texture": 12 }, "west": { "uv": [34, 2, 36, 22], - "texture": 11 + "texture": 12 }, "up": { "uv": [34, 2, 24, 0], - "texture": 11 + "texture": 12 }, "down": { "uv": [44, 0, 34, 2], - "texture": 11 + "texture": 12 } }, "type": "cube", @@ -9595,430 +8949,44 @@ "to": [4.4, 19.7, 1.7], "autouv": 0, "color": 4, - "visibility": false, "inflate": 1, "origin": [4.5, 19.8, 0], "faces": { "north": { "uv": [34, 2, 24, 22], - "texture": 11 + "texture": 12 }, "east": { "uv": [24, 2, 22, 22], - "texture": 11 + "texture": 12 }, "south": { "uv": [46, 2, 36, 22], - "texture": 11 + "texture": 12 }, "west": { "uv": [36, 2, 34, 22], - "texture": 11 + "texture": 12 }, "up": { "uv": [24, 2, 34, 0], - "texture": 11 + "texture": 12 }, "down": { "uv": [34, 0, 44, 2], - "texture": 11 + "texture": 12 } }, "type": "cube", "uuid": "96a3cb8c-5a5d-c76f-8090-446b052c4253" }, - { - "name": "cube_selection", - "color": 0, - "origin": [6.525, 11.7, 0.36], - "rotation": [0, 0, 0], - "export": true, - "visibility": true, - "locked": false, - "render_order": "default", - "allow_mirror_modeling": true, - "vertices": { - "SG2C": [0.225, -0.24539, 1.35], - "aXfG": [0.225, -0.24547, -0.77023], - "gYNL": [-0.7695, -0.24539, 1.35], - "qm42": [-0.6525, -0.24547, -0.86023], - "yyqQ": [-0.7695, -0.24547, -0.20407], - "rsTD": [-0.7695, -0.24547, 0.31396], - "EgMs": [-0.7695, -0.24547, 0.83198], - "Cp8M": [0.225, -0.24547, -0.20407], - "6QYx": [0.225, -0.24547, 0.31396], - "Tmp9": [0.225, -0.24547, 0.83198], - "2XG6": [-0.828, -1.96367, 1.28093], - "0NfC": [-0.40289, -1.96368, 0.90104], - "ktsA": [-0.828, -1.96368, 0.90104], - "gl6I": [-0.40289, -1.96367, 1.28093], - "wmh0": [-0.40289, -2.13553, 0.38302], - "bBD0": [-0.40289, -2.13551, 0.7629], - "bLzn": [-0.828, -2.13551, 0.7629], - "5Oea": [-0.828, -2.13553, 0.38302], - "B3xb": [-0.40289, -2.2501, -0.135], - "7f4f": [-0.40289, -2.25008, 0.24488], - "VxRo": [-0.828, -2.25008, 0.24488], - "QZyX": [-0.828, -2.2501, -0.135], - "zUtn": [-0.40289, -2.0783, -0.65302], - "nAyf": [-0.40289, -2.07829, -0.27314], - "c9bo": [-0.828, -2.07829, -0.27314], - "ZvZ2": [-0.711, -2.0783, -0.65302], - "jyuv": [-0.0675, 0.9, 1.35], - "BcrG": [-0.0675, 0.9, -0.7221], - "SmHE": [-0.945, 0.9, 1.35], - "16LN": [-0.945, 0.9, -0.7221], - "rkTD": [-0.945, 0.9, -1.41279], - "5bB4": [-0.0675, 0.9, -1.41279], - "gsUF": [-0.7695, -0.24547, -1.55093], - "3ZE3": [-0.0675, -0.24547, -1.55093], - "DLfR": [-0.828, -1.10457, -1.62], - "aOPa": [-0.243, -1.10457, -1.62], - "ZHsx": [-0.243, -1.10457, -1.06744], - "U3G7": [-0.828, -1.10457, -1.06744] - }, - "faces": { - "m0tfQVEw": { - "uv": { - "gl6I": [2.5, 9], - "ktsA": [1, 9.75], - "0NfC": [2.5, 9.75], - "2XG6": [1, 9] - }, - "vertices": ["2XG6", "0NfC", "ktsA", "gl6I"], - "texture": 0 - }, - "IiwdQUx2": { - "uv": { - "ZvZ2": [1, 12], - "c9bo": [1, 11.25], - "nAyf": [2.5, 11.25], - "zUtn": [2.5, 12] - }, - "vertices": ["zUtn", "nAyf", "c9bo", "ZvZ2"], - "texture": 0 - }, - "Ul4tOyFB": { - "uv": { - "QZyX": [1, 11.25], - "VxRo": [1, 10.5], - "7f4f": [2.5, 10.5], - "B3xb": [2.5, 11.25] - }, - "vertices": ["B3xb", "7f4f", "VxRo", "QZyX"], - "texture": 0 - }, - "xHcIDvFc": { - "uv": { - "5Oea": [1, 10.5], - "bLzn": [1, 9.75], - "bBD0": [2.5, 9.75], - "wmh0": [2.5, 10.5] - }, - "vertices": ["wmh0", "bBD0", "bLzn", "5Oea"], - "texture": 0 - }, - "FvcWTee2": { - "uv": { - "EgMs": [0, 6], - "gYNL": [0.75, 6], - "2XG6": [0.75, 7], - "ktsA": [0, 7] - }, - "vertices": ["ktsA", "2XG6", "gYNL", "EgMs"], - "texture": 0 - }, - "YD42q4Vm": { - "uv": { - "Tmp9": [1.5, 1.4], - "EgMs": [0, 1.4], - "ktsA": [0, 3.4], - "0NfC": [1.5, 3.4] - }, - "vertices": ["0NfC", "ktsA", "EgMs", "Tmp9"], - "texture": 0 - }, - "DcHaX5tj": { - "uv": { - "SG2C": [6, 11.00031], - "Tmp9": [7, 11], - "0NfC": [7, 12.74996], - "gl6I": [6, 12.75003] - }, - "vertices": ["gl6I", "0NfC", "Tmp9", "SG2C"], - "texture": 0 - }, - "KFuNt2na": { - "uv": { - "gYNL": [1, 5], - "SG2C": [2.5, 5], - "gl6I": [2.5, 6], - "2XG6": [1, 6] - }, - "vertices": ["2XG6", "gl6I", "SG2C", "gYNL"], - "texture": 0 - }, - "UEt7qrj2": { - "uv": { - "Tmp9": [6, 11.00031], - "6QYx": [7, 11], - "wmh0": [7, 12.74996], - "bBD0": [6, 12.75003] - }, - "vertices": ["bBD0", "wmh0", "6QYx", "Tmp9"], - "texture": 0 - }, - "KB0DkmzM": { - "uv": { - "EgMs": [1.5, 1.4], - "Tmp9": [0, 1.4], - "bBD0": [0, 3.4], - "bLzn": [1.5, 3.4] - }, - "vertices": ["bLzn", "bBD0", "Tmp9", "EgMs"], - "texture": 0 - }, - "Ccf24YWf": { - "uv": { - "rsTD": [0.00003, 7], - "EgMs": [0.75003, 7], - "bLzn": [0.7499, 8], - "5Oea": [0, 8] - }, - "vertices": ["5Oea", "bLzn", "EgMs", "rsTD"], - "texture": 0 - }, - "KU7QLZrc": { - "uv": { - "6QYx": [1.5, 1.4], - "rsTD": [0, 1.4], - "5Oea": [0, 3.4], - "wmh0": [1.5, 3.4] - }, - "vertices": ["wmh0", "5Oea", "rsTD", "6QYx"], - "texture": 0 - }, - "GiNazZC5": { - "uv": { - "6QYx": [6, 11.00031], - "Cp8M": [7, 11], - "B3xb": [7, 12.74996], - "7f4f": [6, 12.75003] - }, - "vertices": ["7f4f", "B3xb", "Cp8M", "6QYx"], - "texture": 0 - }, - "Z8JMQhKI": { - "uv": { - "rsTD": [1.5, 1.4], - "6QYx": [0, 1.4], - "7f4f": [0, 3.4], - "VxRo": [1.5, 3.4] - }, - "vertices": ["VxRo", "7f4f", "6QYx", "rsTD"], - "texture": 0 - }, - "S5lPFrVF": { - "uv": { - "yyqQ": [0, 7], - "rsTD": [0.75, 7], - "VxRo": [0.7501, 8], - "QZyX": [0.0001, 8] - }, - "vertices": ["QZyX", "VxRo", "rsTD", "yyqQ"], - "texture": 0 - }, - "xUtPJcWj": { - "uv": { - "Cp8M": [1.5, 1.4], - "yyqQ": [0, 1.4], - "QZyX": [0, 3.4], - "B3xb": [1.5, 3.4] - }, - "vertices": ["B3xb", "QZyX", "yyqQ", "Cp8M"], - "texture": 0 - }, - "3N0qXU4V": { - "uv": { - "Cp8M": [6, 11.00031], - "aXfG": [7, 11], - "zUtn": [7, 12.74996], - "nAyf": [6, 12.75003] - }, - "vertices": ["nAyf", "zUtn", "aXfG", "Cp8M"], - "texture": 0 - }, - "SR3ZmE4w": { - "uv": { - "yyqQ": [1.5, 1.4], - "Cp8M": [0, 1.4], - "nAyf": [0, 3.4], - "c9bo": [1.5, 3.4] - }, - "vertices": ["c9bo", "nAyf", "Cp8M", "yyqQ"], - "texture": 0 - }, - "pJR6Btzm": { - "uv": { - "qm42": [0, 7], - "yyqQ": [0.75, 7], - "c9bo": [0.7501, 8], - "ZvZ2": [0.0001, 8] - }, - "vertices": ["ZvZ2", "c9bo", "yyqQ", "qm42"], - "texture": 0 - }, - "aR8MHDcQ": { - "uv": { - "aXfG": [1.5, 1.4], - "qm42": [0, 1.4], - "ZvZ2": [0, 3.4], - "zUtn": [1.5, 3.4] - }, - "vertices": ["zUtn", "ZvZ2", "qm42", "aXfG"], - "texture": 0 - }, - "vvIAs6ec": { - "uv": { - "SG2C": [0, 7], - "aXfG": [3, 7], - "jyuv": [0, 5], - "BcrG": [3, 5] - }, - "vertices": ["BcrG", "jyuv", "aXfG", "SG2C"], - "texture": 0 - }, - "CkMjBEUr": { - "uv": { - "SmHE": [1, 12], - "jyuv": [2.5, 12], - "16LN": [1, 9], - "BcrG": [2.5, 9] - }, - "vertices": ["BcrG", "16LN", "jyuv", "SmHE"], - "texture": 0 - }, - "uo43jn6G": { - "uv": { - "gYNL": [1, 11], - "SG2C": [2.5, 11], - "SmHE": [1, 9], - "jyuv": [2.5, 9] - }, - "vertices": ["jyuv", "SmHE", "SG2C", "gYNL"], - "texture": 0 - }, - "5U9xU0dD": { - "uv": { - "3ZE3": [1, 11], - "gsUF": [2.5, 11], - "5bB4": [1, 9], - "rkTD": [2.5, 9] - }, - "vertices": ["rkTD", "5bB4", "gsUF", "3ZE3"], - "texture": 0 - }, - "PMT6iALM": { - "uv": { - "16LN": [2, 6], - "qm42": [2, 8], - "gsUF": [1, 8], - "rkTD": [1, 6] - }, - "vertices": ["rkTD", "gsUF", "qm42", "16LN"], - "texture": 0 - }, - "laujVFTj": { - "uv": { - "BcrG": [2.5, 8], - "16LN": [1, 8], - "rkTD": [1, 7], - "5bB4": [2.5, 7] - }, - "vertices": ["5bB4", "rkTD", "16LN", "BcrG"], - "texture": 0 - }, - "8H3cL8dN": { - "uv": { - "aXfG": [0, 9], - "BcrG": [0, 7], - "5bB4": [1, 7], - "3ZE3": [1, 9] - }, - "vertices": ["3ZE3", "5bB4", "BcrG", "aXfG"], - "texture": 0 - }, - "qTTfHe64": { - "uv": { - "U3G7": [2.5, 8.00004], - "ZHsx": [1.00001, 7.99996], - "aOPa": [1, 7], - "DLfR": [2.50005, 7] - }, - "vertices": ["DLfR", "aOPa", "ZHsx", "U3G7"], - "texture": 0 - }, - "G08WUC3f": { - "uv": { - "3ZE3": [1, 5], - "gsUF": [2.5, 5], - "DLfR": [2.5, 6], - "aOPa": [1, 6] - }, - "vertices": ["aOPa", "DLfR", "gsUF", "3ZE3"], - "texture": 0 - }, - "pHmNi5fh": { - "uv": { - "aXfG": [6, 11.00031], - "3ZE3": [7, 11], - "aOPa": [7, 12.74996], - "ZHsx": [6, 12.75003] - }, - "vertices": ["ZHsx", "aOPa", "3ZE3", "aXfG"], - "texture": 0 - }, - "cuft3msr": { - "uv": { - "qm42": [1, 5], - "aXfG": [2.5, 5], - "ZHsx": [2.5, 6], - "U3G7": [1, 6] - }, - "vertices": ["U3G7", "ZHsx", "aXfG", "qm42"], - "texture": 0 - }, - "azGhehvz": { - "uv": { - "gsUF": [1, 5], - "qm42": [2, 5], - "U3G7": [2, 6], - "DLfR": [1, 6] - }, - "vertices": ["DLfR", "U3G7", "qm42", "gsUF"], - "texture": 0 - }, - "udheygIe": { - "uv": { - "qm42": [0, 7], - "gYNL": [3, 7], - "16LN": [0, 5], - "SmHE": [3, 5] - }, - "vertices": ["SmHE", "16LN", "gYNL", "qm42"], - "texture": 0 - } - }, - "type": "mesh", - "uuid": "87c7237b-f5b2-6534-e9bd-e1cb4eceaeda" - }, { "name": "cube_selection", "color": 0, "origin": [-6.525, 11.7, 0.36], "rotation": [0, 0, 0], "export": true, - "visibility": true, + "visibility": false, "locked": false, "render_order": "default", "allow_mirror_modeling": true, @@ -10071,7 +9039,7 @@ "0NfC": [2.5, 9.75] }, "vertices": ["0NfC", "2XG6", "ktsA", "gl6I"], - "texture": 0 + "texture": 1 }, "IiwdQUx2": { "uv": { @@ -10081,7 +9049,7 @@ "nAyf": [2.5, 11.25] }, "vertices": ["nAyf", "zUtn", "c9bo", "ZvZ2"], - "texture": 0 + "texture": 1 }, "Ul4tOyFB": { "uv": { @@ -10091,7 +9059,7 @@ "7f4f": [2.5, 10.5] }, "vertices": ["7f4f", "B3xb", "VxRo", "QZyX"], - "texture": 0 + "texture": 1 }, "xHcIDvFc": { "uv": { @@ -10101,7 +9069,7 @@ "bBD0": [2.5, 9.75] }, "vertices": ["bBD0", "wmh0", "bLzn", "5Oea"], - "texture": 0 + "texture": 1 }, "FvcWTee2": { "uv": { @@ -10111,7 +9079,7 @@ "2XG6": [0.75, 7] }, "vertices": ["2XG6", "ktsA", "gYNL", "EgMs"], - "texture": 0 + "texture": 1 }, "YD42q4Vm": { "uv": { @@ -10121,7 +9089,7 @@ "ktsA": [0, 3.4] }, "vertices": ["ktsA", "0NfC", "EgMs", "Tmp9"], - "texture": 0 + "texture": 1 }, "DcHaX5tj": { "uv": { @@ -10131,7 +9099,7 @@ "0NfC": [7, 12.74996] }, "vertices": ["0NfC", "gl6I", "Tmp9", "SG2C"], - "texture": 0 + "texture": 1 }, "KFuNt2na": { "uv": { @@ -10141,7 +9109,7 @@ "gl6I": [2.5, 6] }, "vertices": ["gl6I", "2XG6", "SG2C", "gYNL"], - "texture": 0 + "texture": 1 }, "UEt7qrj2": { "uv": { @@ -10151,7 +9119,7 @@ "wmh0": [7, 12.74996] }, "vertices": ["wmh0", "bBD0", "6QYx", "Tmp9"], - "texture": 0 + "texture": 1 }, "KB0DkmzM": { "uv": { @@ -10161,7 +9129,7 @@ "bBD0": [0, 3.4] }, "vertices": ["bBD0", "bLzn", "Tmp9", "EgMs"], - "texture": 0 + "texture": 1 }, "Ccf24YWf": { "uv": { @@ -10171,7 +9139,7 @@ "bLzn": [0.7499, 8] }, "vertices": ["bLzn", "5Oea", "EgMs", "rsTD"], - "texture": 0 + "texture": 1 }, "KU7QLZrc": { "uv": { @@ -10181,7 +9149,7 @@ "5Oea": [0, 3.4] }, "vertices": ["5Oea", "wmh0", "rsTD", "6QYx"], - "texture": 0 + "texture": 1 }, "GiNazZC5": { "uv": { @@ -10191,7 +9159,7 @@ "B3xb": [7, 12.74996] }, "vertices": ["B3xb", "7f4f", "Cp8M", "6QYx"], - "texture": 0 + "texture": 1 }, "Z8JMQhKI": { "uv": { @@ -10201,7 +9169,7 @@ "7f4f": [0, 3.4] }, "vertices": ["7f4f", "VxRo", "6QYx", "rsTD"], - "texture": 0 + "texture": 1 }, "S5lPFrVF": { "uv": { @@ -10211,7 +9179,7 @@ "VxRo": [0.7501, 8] }, "vertices": ["VxRo", "QZyX", "rsTD", "yyqQ"], - "texture": 0 + "texture": 1 }, "xUtPJcWj": { "uv": { @@ -10221,7 +9189,7 @@ "QZyX": [0, 3.4] }, "vertices": ["QZyX", "B3xb", "yyqQ", "Cp8M"], - "texture": 0 + "texture": 1 }, "3N0qXU4V": { "uv": { @@ -10231,7 +9199,7 @@ "zUtn": [7, 12.74996] }, "vertices": ["zUtn", "nAyf", "aXfG", "Cp8M"], - "texture": 0 + "texture": 1 }, "SR3ZmE4w": { "uv": { @@ -10241,7 +9209,7 @@ "nAyf": [0, 3.4] }, "vertices": ["nAyf", "c9bo", "Cp8M", "yyqQ"], - "texture": 0 + "texture": 1 }, "pJR6Btzm": { "uv": { @@ -10251,7 +9219,7 @@ "c9bo": [0.7501, 8] }, "vertices": ["c9bo", "ZvZ2", "yyqQ", "qm42"], - "texture": 0 + "texture": 1 }, "aR8MHDcQ": { "uv": { @@ -10261,7 +9229,7 @@ "ZvZ2": [0, 3.4] }, "vertices": ["ZvZ2", "zUtn", "qm42", "aXfG"], - "texture": 0 + "texture": 1 }, "vvIAs6ec": { "uv": { @@ -10271,7 +9239,7 @@ "jyuv": [0, 5] }, "vertices": ["jyuv", "BcrG", "aXfG", "SG2C"], - "texture": 0 + "texture": 1 }, "CkMjBEUr": { "uv": { @@ -10281,7 +9249,7 @@ "16LN": [1, 9] }, "vertices": ["16LN", "BcrG", "jyuv", "SmHE"], - "texture": 0 + "texture": 1 }, "uo43jn6G": { "uv": { @@ -10291,7 +9259,7 @@ "SmHE": [1, 9] }, "vertices": ["SmHE", "jyuv", "SG2C", "gYNL"], - "texture": 0 + "texture": 1 }, "5U9xU0dD": { "uv": { @@ -10301,7 +9269,7 @@ "5bB4": [1, 9] }, "vertices": ["5bB4", "rkTD", "gsUF", "3ZE3"], - "texture": 0 + "texture": 1 }, "PMT6iALM": { "uv": { @@ -10311,7 +9279,7 @@ "gsUF": [1, 8] }, "vertices": ["gsUF", "rkTD", "qm42", "16LN"], - "texture": 0 + "texture": 1 }, "laujVFTj": { "uv": { @@ -10321,7 +9289,7 @@ "rkTD": [1, 7] }, "vertices": ["rkTD", "5bB4", "16LN", "BcrG"], - "texture": 0 + "texture": 1 }, "8H3cL8dN": { "uv": { @@ -10331,7 +9299,7 @@ "5bB4": [1, 7] }, "vertices": ["5bB4", "3ZE3", "BcrG", "aXfG"], - "texture": 0 + "texture": 1 }, "qTTfHe64": { "uv": { @@ -10341,7 +9309,7 @@ "aOPa": [1, 7] }, "vertices": ["aOPa", "DLfR", "ZHsx", "U3G7"], - "texture": 0 + "texture": 1 }, "G08WUC3f": { "uv": { @@ -10351,7 +9319,7 @@ "DLfR": [2.5, 6] }, "vertices": ["DLfR", "aOPa", "gsUF", "3ZE3"], - "texture": 0 + "texture": 1 }, "pHmNi5fh": { "uv": { @@ -10361,7 +9329,7 @@ "aOPa": [7, 12.74996] }, "vertices": ["aOPa", "ZHsx", "3ZE3", "aXfG"], - "texture": 0 + "texture": 1 }, "cuft3msr": { "uv": { @@ -10371,7 +9339,7 @@ "ZHsx": [2.5, 6] }, "vertices": ["ZHsx", "U3G7", "aXfG", "qm42"], - "texture": 0 + "texture": 1 }, "azGhehvz": { "uv": { @@ -10381,7 +9349,7 @@ "U3G7": [2, 6] }, "vertices": ["U3G7", "DLfR", "qm42", "gsUF"], - "texture": 0 + "texture": 1 }, "udheygIe": { "uv": { @@ -10391,11 +9359,7747 @@ "16LN": [0, 5] }, "vertices": ["16LN", "SmHE", "gYNL", "qm42"], - "texture": 0 + "texture": 1 } }, "type": "mesh", "uuid": "3ff463ae-9682-6417-285e-b19d1b2220eb" + }, + { + "name": "cube", + "color": 0, + "origin": [-7, 13, 6], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "r1QE": [3, 4, 2], + "aicD": [3, 0, 2], + "4wo4": [-1, 4, 2], + "VeL6": [-1, 0, 2] + }, + "faces": { + "IWQK3JC8": { + "uv": { + "VeL6": [0, 8], + "aicD": [4.5, 8], + "4wo4": [0, 3.5], + "r1QE": [4.5, 3.5] + }, + "vertices": ["r1QE", "4wo4", "aicD", "VeL6"], + "texture": 14 + } + }, + "type": "mesh", + "uuid": "b92e3959-84e9-137a-08fd-f02494193524" + }, + { + "name": "cube", + "color": 0, + "origin": [-3, 13, 6], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "r1QE": [3, 4, 2], + "aicD": [3, 0, 2], + "4wo4": [-1, 4, 2], + "VeL6": [-1, 0, 2] + }, + "faces": { + "IWQK3JC8": { + "uv": { + "VeL6": [0, 8], + "aicD": [4.5, 8], + "4wo4": [0, 3.5], + "r1QE": [4.5, 3.5] + }, + "vertices": ["r1QE", "4wo4", "aicD", "VeL6"], + "texture": 14 + } + }, + "type": "mesh", + "uuid": "27fc6f62-950d-dcda-085c-84309264ffe8" + }, + { + "name": "cube", + "color": 0, + "origin": [1, 13, 6], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "r1QE": [3, 4, 2], + "aicD": [3, 0, 2], + "4wo4": [-1, 4, 2], + "VeL6": [-1, 0, 2] + }, + "faces": { + "IWQK3JC8": { + "uv": { + "VeL6": [0, 8], + "aicD": [4.5, 8], + "4wo4": [0, 3.5], + "r1QE": [4.5, 3.5] + }, + "vertices": ["r1QE", "4wo4", "aicD", "VeL6"], + "texture": 14 + } + }, + "type": "mesh", + "uuid": "8bf93158-6028-7e7d-537e-e421536deee4" + }, + { + "name": "cube", + "color": 0, + "origin": [5, 13, 6], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "r1QE": [3, 4, 2], + "aicD": [3, 0, 2], + "4wo4": [-1, 4, 2], + "VeL6": [-1, 0, 2] + }, + "faces": { + "IWQK3JC8": { + "uv": { + "VeL6": [0, 8], + "aicD": [4.5, 8], + "4wo4": [0, 3.5], + "r1QE": [4.5, 3.5] + }, + "vertices": ["r1QE", "4wo4", "aicD", "VeL6"], + "texture": 14 + } + }, + "type": "mesh", + "uuid": "1579092f-ba31-f220-1b8d-ba5d4a99f28f" + }, + { + "name": "cube", + "color": 0, + "origin": [5, 9, 6], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "r1QE": [3, 4, 2], + "aicD": [3, 0, 2], + "4wo4": [-1, 4, 2], + "VeL6": [-1, 0, 2] + }, + "faces": { + "IWQK3JC8": { + "uv": { + "VeL6": [0, 8], + "aicD": [4.5, 8], + "4wo4": [0, 3.5], + "r1QE": [4.5, 3.5] + }, + "vertices": ["r1QE", "4wo4", "aicD", "VeL6"], + "texture": 13 + } + }, + "type": "mesh", + "uuid": "941a4272-5b70-00ad-45a4-aacc85f521f0" + }, + { + "name": "cube", + "color": 0, + "origin": [1, 9, 6], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "r1QE": [3, 4, 2], + "aicD": [3, 0, 2], + "4wo4": [-1, 4, 2], + "VeL6": [-1, 0, 2] + }, + "faces": { + "IWQK3JC8": { + "uv": { + "VeL6": [0, 8], + "aicD": [4.5, 8], + "4wo4": [0, 3.5], + "r1QE": [4.5, 3.5] + }, + "vertices": ["r1QE", "4wo4", "aicD", "VeL6"], + "texture": 13 + } + }, + "type": "mesh", + "uuid": "be7264de-a991-9452-4993-b0bb19ad56d3" + }, + { + "name": "cube", + "color": 0, + "origin": [-3, 9, 6], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "r1QE": [3, 4, 2], + "aicD": [3, 0, 2], + "4wo4": [-1, 4, 2], + "VeL6": [-1, 0, 2] + }, + "faces": { + "IWQK3JC8": { + "uv": { + "VeL6": [0, 8], + "aicD": [4.5, 8], + "4wo4": [0, 3.5], + "r1QE": [4.5, 3.5] + }, + "vertices": ["r1QE", "4wo4", "aicD", "VeL6"], + "texture": 13 + } + }, + "type": "mesh", + "uuid": "dacb6415-2bc6-9d5f-844e-37615bc10066" + }, + { + "name": "cube", + "color": 0, + "origin": [-7, 9, 6], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "r1QE": [3, 4, 2], + "aicD": [3, 0, 2], + "4wo4": [-1, 4, 2], + "VeL6": [-1, 0, 2] + }, + "faces": { + "IWQK3JC8": { + "uv": { + "VeL6": [0, 8], + "aicD": [4.5, 8], + "4wo4": [0, 3.5], + "r1QE": [4.5, 3.5] + }, + "vertices": ["r1QE", "4wo4", "aicD", "VeL6"], + "texture": 13 + } + }, + "type": "mesh", + "uuid": "363579ea-e5bc-b6a8-7cb3-1ff461c918c0" + }, + { + "name": "cube_selection", + "color": 0, + "origin": [6.125, 11.2, -0.04], + "rotation": [0, 0, 12.5], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "SG2C": [0.35, 0.32, 1.7], + "aXfG": [0.14722, 0.014, -0.93945], + "gYNL": [-1.06944, 0.32, 1.7], + "qm42": [-1.06944, 0.014, -0.93945], + "jyuv": [0.14722, 1.54401, 1.51147], + "rkTD": [-1.06944, 1.23801, -1.41078], + "5bB4": [0.14722, 1.23801, -1.41078], + "gsUF": [-1.06944, 0.014, -1.725], + "3ZE3": [0.14722, 0.014, -1.725], + "DLfR": [-1.27222, -1.21, -1.725], + "aOPa": [-0.46111, -1.21, -1.725], + "ZHsx": [-0.46111, -1.21, -1.25367], + "U3G7": [-1.27222, -1.21, -1.25367], + "yjq6": [-1.06944, 0.32, 1.1344], + "rpzh": [0.35, 0.32, 1.1344], + "1IhL": [-1.06944, 0.32, 1.07156], + "ditf": [0.35, 0.32, 1.07156], + "cqaI": [-1.06944, 0.32, 0.44312], + "TtLA": [0.35, 0.32, 0.44312], + "X40D": [-1.06944, 0.32, -0.12248], + "kPro": [0.35, 0.32, -0.12248], + "Jqet": [-1.06944, 0.32, -0.18532], + "FbXp": [0.35, 0.32, -0.18532], + "XDyQ": [-1.06944, 0.32, -0.75092], + "4PNW": [0.14722, 1.85001, 0.47454], + "jAkr": [0.14722, 1.85001, -0.1539], + "eeZW": [-1.475, 1.54401, 1.10298], + "v2Oq": [-1.475, 1.54401, -0.1539], + "xovw": [-1.06944, -0.598, -0.18532], + "ApEB": [-1.06944, -0.598, -0.75092], + "iOyM": [0.14722, -0.598, -0.75092], + "DFFs": [0.14722, -0.598, -0.18532], + "s57i": [-1.06944, -0.598, 0.44312], + "DJ8Y": [-1.06944, -0.598, -0.12248], + "Htu6": [0.14722, -0.598, -0.12248], + "VQgu": [0.14722, -0.598, 0.44312], + "J74A": [-1.06944, -0.598, 1.07156], + "deLA": [0.14722, -0.598, 0.50596], + "gFQQ": [-1.06944, -0.598, 1.7], + "37AA": [-1.06944, -0.598, 1.1344], + "hEhj": [0.14722, -0.598, 1.1344], + "rik1": [0.14722, -0.598, 1.7], + "m70k": [-1.06944, 0.32, 0.50596], + "5jQS": [0.35, 0.32, 0.50596], + "QgB1": [0.35, 0.32, -0.75092], + "BvKq": [-1.06944, -0.598, 0.50596], + "Fugt": [0.14722, -0.598, 1.07156], + "BcrG": [0.14722, 1.85001, -0.82947], + "LJNo": [-1.475, 1.54401, -0.82947], + "pcXW": [-1.475, 1.54401, 0.47454], + "SmHE": [-1.475, 1.23801, 1.51147], + "am1B": [0.14722, 1.85001, 1.10298], + "b0wN": [-1.475, -1.975, -0.24817], + "QS4i": [-1.475, -1.975, -0.68807], + "RpTK": [-0.25833, -1.975, -0.68807], + "cV7E": [-0.25833, -1.975, -0.24817], + "2qMd": [-1.475, -1.975, 0.38028], + "P8PL": [-1.475, -1.975, -0.05963], + "0TBa": [-0.25833, -1.975, -0.05963], + "D9wR": [-0.25833, -1.975, 0.38028], + "QcTt": [-1.475, -1.975, 1.00872], + "oDy3": [-1.475, -1.975, 0.56881], + "19ji": [-0.25833, -1.975, 0.56881], + "R5vE": [-0.25833, -1.975, 1.00872], + "NR0N": [-1.475, -1.975, 1.63716], + "XL8u": [-1.475, -1.975, 1.19725], + "zpU5": [-0.25833, -1.975, 1.19725], + "GTiL": [-0.25833, -1.975, 1.63716] + }, + "faces": { + "vvIAs6ec": { + "uv": { + "aXfG": [3, 7], + "QgB1": [2.62503, 7], + "BcrG": [2.81252, 5] + }, + "vertices": ["BcrG", "QgB1", "aXfG"], + "texture": 1 + }, + "uo43jn6G": { + "uv": { + "gYNL": [1, 11], + "SG2C": [2.5, 11], + "SmHE": [1, 9], + "jyuv": [2.5, 9] + }, + "vertices": ["jyuv", "SmHE", "SG2C", "gYNL"], + "texture": 1 + }, + "5U9xU0dD": { + "uv": { + "3ZE3": [1, 11], + "gsUF": [2.5, 11], + "5bB4": [1, 9], + "rkTD": [2.5, 9] + }, + "vertices": ["rkTD", "5bB4", "gsUF", "3ZE3"], + "texture": 1 + }, + "PMT6iALM": { + "uv": { + "LJNo": [2, 6], + "qm42": [2, 8], + "gsUF": [1, 8], + "rkTD": [1, 6] + }, + "vertices": ["rkTD", "gsUF", "qm42", "LJNo"], + "texture": 1 + }, + "laujVFTj": { + "uv": { + "BcrG": [2.5, 8], + "LJNo": [1, 8], + "rkTD": [1, 7], + "5bB4": [2.5, 7] + }, + "vertices": ["5bB4", "rkTD", "LJNo", "BcrG"], + "texture": 1 + }, + "qTTfHe64": { + "uv": { + "U3G7": [2.5, 8.00004], + "ZHsx": [1.00001, 7.99996], + "aOPa": [1, 7], + "DLfR": [2.50005, 7] + }, + "vertices": ["DLfR", "aOPa", "ZHsx", "U3G7"], + "texture": 1 + }, + "G08WUC3f": { + "uv": { + "3ZE3": [1, 5], + "gsUF": [2.5, 5], + "DLfR": [2.5, 6], + "aOPa": [1, 6] + }, + "vertices": ["aOPa", "DLfR", "gsUF", "3ZE3"], + "texture": 1 + }, + "pHmNi5fh": { + "uv": { + "aXfG": [6, 11.00031], + "3ZE3": [7, 11], + "aOPa": [7, 12.74996], + "ZHsx": [6, 12.75003] + }, + "vertices": ["ZHsx", "aOPa", "3ZE3", "aXfG"], + "texture": 1 + }, + "cuft3msr": { + "uv": { + "qm42": [1, 5], + "aXfG": [2.5, 5], + "ZHsx": [2.5, 6], + "U3G7": [1, 6] + }, + "vertices": ["U3G7", "ZHsx", "aXfG", "qm42"], + "texture": 1 + }, + "azGhehvz": { + "uv": { + "gsUF": [1, 5], + "qm42": [2, 5], + "U3G7": [2, 6], + "DLfR": [1, 6] + }, + "vertices": ["DLfR", "U3G7", "qm42", "gsUF"], + "texture": 1 + }, + "udheygIe": { + "uv": { + "XDyQ": [0.37497, 10], + "LJNo": [0.18748, 5], + "qm42": [0, 10] + }, + "vertices": ["qm42", "LJNo", "XDyQ"], + "texture": 1 + }, + "8H3cL8dN": { + "uv": { + "aXfG": [0, 9], + "BcrG": [0, 7], + "5bB4": [1, 7], + "3ZE3": [1, 9] + }, + "vertices": ["3ZE3", "5bB4", "BcrG", "aXfG"], + "texture": 1 + }, + "n0zqwS3a": { + "uv": { + "qm42": [0, 7.117], + "QgB1": [0.35504, 7.99449], + "XDyQ": [0.27626, 7.10238], + "aXfG": [0.09003, 7.99449] + }, + "vertices": ["aXfG", "XDyQ", "QgB1", "qm42"], + "texture": 1 + }, + "qVUOFDNK": { + "uv": { + "GTiL": [2.2103, 7.99449], + "zpU5": [1.94526, 7.99449], + "XL8u": [1.934, 7.01463], + "NR0N": [2.2103, 7] + }, + "vertices": ["NR0N", "XL8u", "zpU5", "GTiL"], + "texture": 1 + }, + "sJ7BIjtK": { + "uv": { + "rpzh": [1.94526, 7.99449], + "ditf": [1.68022, 7.99449], + "1IhL": [1.65771, 7.02925], + "yjq6": [1.934, 7.01463] + }, + "vertices": ["yjq6", "1IhL", "ditf", "rpzh"], + "texture": 1 + }, + "Tt5do9eD": { + "uv": { + "5jQS": [1.41518, 7.99449], + "TtLA": [1.15014, 7.99449], + "cqaI": [1.10512, 7.0585], + "m70k": [1.38141, 7.04388] + }, + "vertices": ["m70k", "cqaI", "TtLA", "5jQS"], + "texture": 1 + }, + "8r7ed029": { + "uv": { + "D9wR": [1.15014, 7.99449], + "0TBa": [0.8851, 7.99449], + "P8PL": [0.82883, 7.07313], + "2qMd": [1.10512, 7.0585] + }, + "vertices": ["2qMd", "P8PL", "0TBa", "D9wR"], + "texture": 1 + }, + "hTI7CCl8": { + "uv": { + "kPro": [0.8851, 7.99449], + "FbXp": [0.62007, 7.99449], + "Jqet": [0.55255, 7.08775], + "X40D": [0.82883, 7.07313] + }, + "vertices": ["X40D", "Jqet", "FbXp", "kPro"], + "texture": 1 + }, + "9EMzfsaM": { + "uv": { + "cV7E": [0.62007, 7.99449], + "RpTK": [0.35504, 7.99449], + "QS4i": [0.27626, 7.10238], + "b0wN": [0.55255, 7.08775] + }, + "vertices": ["b0wN", "QS4i", "RpTK", "cV7E"], + "texture": 1 + }, + "1A3RrdZF": { + "uv": { + "jyuv": [0, 5], + "am1B": [0.37501, 5], + "rpzh": [0.37501, 7], + "SG2C": [0, 7] + }, + "vertices": ["SG2C", "rpzh", "am1B", "jyuv"], + "texture": 1 + }, + "Z0MHKSM1": { + "uv": { + "am1B": [0.56252, 5], + "ditf": [0.75002, 7], + "rpzh": [0.37501, 7] + }, + "vertices": ["rpzh", "ditf", "am1B"], + "texture": 1 + }, + "8RfDVw73": { + "uv": { + "4PNW": [1.31254, 5], + "TtLA": [1.50004, 7], + "5jQS": [1.12503, 7] + }, + "vertices": ["5jQS", "TtLA", "4PNW"], + "texture": 1 + }, + "b1H2Twi7": { + "uv": { + "4PNW": [1.50004, 5], + "jAkr": [1.87504, 5], + "kPro": [1.87504, 7], + "TtLA": [1.50004, 7] + }, + "vertices": ["TtLA", "kPro", "jAkr", "4PNW"], + "texture": 1 + }, + "8CzZUE6T": { + "uv": { + "jAkr": [2.06254, 5], + "FbXp": [2.25004, 7], + "kPro": [1.87504, 7] + }, + "vertices": ["kPro", "FbXp", "jAkr"], + "texture": 1 + }, + "7XOUjrqa": { + "uv": { + "jAkr": [2.25004, 5], + "BcrG": [2.62503, 5], + "QgB1": [2.62503, 7], + "FbXp": [2.25004, 7] + }, + "vertices": ["FbXp", "QgB1", "BcrG", "jAkr"], + "texture": 1 + }, + "H3nYlw5n": { + "uv": { + "pcXW": [1, 10.49996], + "v2Oq": [1, 10.12496], + "jAkr": [2.5, 10.12496], + "4PNW": [2.5, 10.49996] + }, + "vertices": ["4PNW", "jAkr", "v2Oq", "pcXW"], + "texture": 1 + }, + "3Pp5rd8r": { + "uv": { + "gYNL": [3, 10], + "yjq6": [2.62499, 10], + "eeZW": [2.62499, 5], + "SmHE": [3, 5] + }, + "vertices": ["SmHE", "eeZW", "yjq6", "gYNL"], + "texture": 1 + }, + "Ozh5CuVR": { + "uv": { + "yjq6": [2.62499, 7], + "1IhL": [2.24998, 7], + "eeZW": [2.43748, 5] + }, + "vertices": ["eeZW", "1IhL", "yjq6"], + "texture": 1 + }, + "qTnHXohn": { + "uv": { + "m70k": [1.87497, 7], + "cqaI": [1.49996, 7], + "pcXW": [1.68746, 5] + }, + "vertices": ["pcXW", "cqaI", "m70k"], + "texture": 1 + }, + "NQGq8EFs": { + "uv": { + "cqaI": [1.49996, 10], + "X40D": [1.12496, 10], + "v2Oq": [1.12496, 5], + "pcXW": [1.49996, 5] + }, + "vertices": ["pcXW", "v2Oq", "X40D", "cqaI"], + "texture": 1 + }, + "t75oHfwX": { + "uv": { + "X40D": [1.12496, 7], + "Jqet": [0.74996, 7], + "v2Oq": [0.93746, 5] + }, + "vertices": ["v2Oq", "Jqet", "X40D"], + "texture": 1 + }, + "rn9ZHqv3": { + "uv": { + "Jqet": [0.74996, 10], + "XDyQ": [0.37497, 10], + "LJNo": [0.37497, 5], + "v2Oq": [0.74996, 5] + }, + "vertices": ["v2Oq", "LJNo", "XDyQ", "Jqet"], + "texture": 1 + }, + "cWeBGtG5": { + "uv": { + "XDyQ": [0, 6], + "Jqet": [0.2767, 6], + "xovw": [0.2767, 7], + "ApEB": [0, 7] + }, + "vertices": ["ApEB", "xovw", "Jqet", "XDyQ"], + "texture": 1 + }, + "BDq08QaJ": { + "uv": { + "QgB1": [0, 4], + "XDyQ": [0, 2], + "ApEB": [2, 2], + "iOyM": [2, 4] + }, + "vertices": ["iOyM", "ApEB", "XDyQ", "QgB1"], + "texture": 1 + }, + "54OA4Vs6": { + "uv": { + "FbXp": [0, 6], + "QgB1": [0.265, 6.0001], + "iOyM": [0.265, 7.0001], + "DFFs": [0, 7] + }, + "vertices": ["DFFs", "iOyM", "QgB1", "FbXp"], + "texture": 1 + }, + "IJCofTZe": { + "uv": { + "Jqet": [2, 2], + "FbXp": [2, 4], + "DFFs": [0, 4], + "xovw": [0, 2] + }, + "vertices": ["xovw", "DFFs", "FbXp", "Jqet"], + "texture": 1 + }, + "mIvrKkMT": { + "uv": { + "X40D": [0, 6], + "cqaI": [0.2767, 6], + "s57i": [0.2767, 7], + "DJ8Y": [0.0001, 7] + }, + "vertices": ["DJ8Y", "s57i", "cqaI", "X40D"], + "texture": 1 + }, + "O7BP5dy7": { + "uv": { + "kPro": [0, 4], + "X40D": [0, 2], + "DJ8Y": [2, 2], + "Htu6": [2, 4] + }, + "vertices": ["Htu6", "DJ8Y", "X40D", "kPro"], + "texture": 1 + }, + "HxuDHg0G": { + "uv": { + "TtLA": [1, 6], + "kPro": [1.2651, 6], + "Htu6": [1.265, 7], + "VQgu": [1, 7] + }, + "vertices": ["VQgu", "Htu6", "kPro", "TtLA"], + "texture": 1 + }, + "05QRSzeb": { + "uv": { + "cqaI": [2, 2], + "TtLA": [2, 4], + "VQgu": [0, 4], + "s57i": [0, 2] + }, + "vertices": ["s57i", "VQgu", "TtLA", "cqaI"], + "texture": 1 + }, + "iCzdhyKG": { + "uv": { + "5jQS": [0, 4], + "m70k": [0, 2], + "BvKq": [2, 2], + "deLA": [2, 4] + }, + "vertices": ["deLA", "BvKq", "m70k", "5jQS"], + "texture": 1 + }, + "TUyCMWe4": { + "uv": { + "1IhL": [0.9655, 2], + "ditf": [0.9655, 4], + "Fugt": [0, 4], + "J74A": [0, 2] + }, + "vertices": ["J74A", "Fugt", "ditf", "1IhL"], + "texture": 1 + }, + "N1eMWfWU": { + "uv": { + "yjq6": [1, 6], + "gYNL": [1.2767, 6], + "gFQQ": [1.2767, 7], + "37AA": [1.0001, 7] + }, + "vertices": ["37AA", "gFQQ", "gYNL", "yjq6"], + "texture": 1 + }, + "ZgkHiEvD": { + "uv": { + "rpzh": [2, 4], + "yjq6": [2, 2], + "37AA": [5, 2], + "hEhj": [5, 4] + }, + "vertices": ["hEhj", "37AA", "yjq6", "rpzh"], + "texture": 1 + }, + "Rqvnh5JT": { + "uv": { + "SG2C": [1, 6], + "rpzh": [1.265, 6], + "hEhj": [1.265, 7], + "rik1": [1, 7] + }, + "vertices": ["rik1", "hEhj", "rpzh", "SG2C"], + "texture": 1 + }, + "NUcZO3RF": { + "uv": { + "gYNL": [2, 6], + "SG2C": [2, 8], + "rik1": [0, 8], + "gFQQ": [0, 6] + }, + "vertices": ["gFQQ", "rik1", "SG2C", "gYNL"], + "texture": 1 + }, + "duNNNzsm": { + "uv": { + "R5vE": [1.68022, 7.99449], + "19ji": [1.41518, 7.99449], + "oDy3": [1.38141, 7.04388], + "QcTt": [1.65771, 7.02925] + }, + "vertices": ["QcTt", "oDy3", "19ji", "R5vE"], + "texture": 1 + }, + "1GvS40WP": { + "uv": { + "am1B": [0.75002, 5], + "4PNW": [1.12503, 5], + "5jQS": [1.12503, 7], + "ditf": [0.75002, 7] + }, + "vertices": ["ditf", "5jQS", "4PNW", "am1B"], + "texture": 1 + }, + "ZAq6364x": { + "uv": { + "eeZW": [1, 11.24998], + "pcXW": [1, 10.87497], + "4PNW": [2.5, 10.87497], + "am1B": [2.5, 11.24998] + }, + "vertices": ["am1B", "4PNW", "pcXW", "eeZW"], + "texture": 1 + }, + "xM3u5Rgj": { + "uv": { + "v2Oq": [1, 9.74996], + "LJNo": [1, 9.37497], + "BcrG": [2.5, 9.37497], + "jAkr": [2.5, 9.74996] + }, + "vertices": ["jAkr", "BcrG", "LJNo", "v2Oq"], + "texture": 1 + }, + "sbc82oNA": { + "uv": { + "1IhL": [2.24998, 10], + "m70k": [1.87497, 10], + "pcXW": [1.87497, 5], + "eeZW": [2.24998, 5] + }, + "vertices": ["eeZW", "pcXW", "m70k", "1IhL"], + "texture": 1 + }, + "AJJPyz9R": { + "uv": { + "m70k": [1, 6], + "1IhL": [1.2766, 6], + "J74A": [1.2767, 7], + "BvKq": [1, 7] + }, + "vertices": ["BvKq", "J74A", "1IhL", "m70k"], + "texture": 1 + }, + "ZppkV46C": { + "uv": { + "ditf": [0.0001, 6], + "5jQS": [0.2651, 6], + "deLA": [0.2651, 7], + "Fugt": [0, 7] + }, + "vertices": ["Fugt", "deLA", "5jQS", "ditf"], + "texture": 1 + }, + "kCcOlvWB": { + "uv": { + "SmHE": [1, 12], + "eeZW": [1, 11.62499], + "am1B": [2.5, 11.62499], + "jyuv": [2.5, 12] + }, + "vertices": ["jyuv", "am1B", "eeZW", "SmHE"], + "texture": 1 + }, + "j8g2VQFn": { + "uv": { + "ApEB": [0, 6], + "xovw": [1.6, 6], + "b0wN": [1.6, 7], + "QS4i": [0, 7] + }, + "vertices": ["QS4i", "b0wN", "xovw", "ApEB"], + "texture": 1 + }, + "ZdfOYoQE": { + "uv": { + "iOyM": [0, 4], + "ApEB": [0, 2], + "QS4i": [7, 2], + "RpTK": [7, 4] + }, + "vertices": ["RpTK", "QS4i", "ApEB", "iOyM"], + "texture": 1 + }, + "PSd8nYdT": { + "uv": { + "DFFs": [6, 11.00031], + "iOyM": [7, 11], + "RpTK": [7, 12.74996], + "cV7E": [6, 12.75003] + }, + "vertices": ["cV7E", "RpTK", "iOyM", "DFFs"], + "texture": 1 + }, + "HIdDzpOZ": { + "uv": { + "xovw": [7, 2], + "DFFs": [7, 4], + "cV7E": [0, 4], + "b0wN": [0, 2] + }, + "vertices": ["b0wN", "cV7E", "DFFs", "xovw"], + "texture": 1 + }, + "AaDkkopW": { + "uv": { + "DJ8Y": [0, 6], + "s57i": [1.6, 6], + "2qMd": [1.6, 7], + "P8PL": [0, 7] + }, + "vertices": ["P8PL", "2qMd", "s57i", "DJ8Y"], + "texture": 1 + }, + "uDXKxApa": { + "uv": { + "Htu6": [0, 4], + "DJ8Y": [0, 2], + "P8PL": [7, 2], + "0TBa": [7, 4] + }, + "vertices": ["0TBa", "P8PL", "DJ8Y", "Htu6"], + "texture": 1 + }, + "FD3Uef8Z": { + "uv": { + "VQgu": [6, 11.00031], + "Htu6": [7, 11], + "0TBa": [7, 12.74996], + "D9wR": [6, 12.75003] + }, + "vertices": ["D9wR", "0TBa", "Htu6", "VQgu"], + "texture": 1 + }, + "znTdIdv8": { + "uv": { + "s57i": [7, 2], + "VQgu": [7, 4], + "D9wR": [0, 4], + "2qMd": [0, 2] + }, + "vertices": ["2qMd", "D9wR", "VQgu", "s57i"], + "texture": 1 + }, + "HBqfAJ9G": { + "uv": { + "BvKq": [0, 6], + "J74A": [1.6, 6], + "QcTt": [1.6, 7], + "oDy3": [0, 7] + }, + "vertices": ["oDy3", "QcTt", "J74A", "BvKq"], + "texture": 1 + }, + "xTS24TAq": { + "uv": { + "deLA": [0, 4], + "BvKq": [0, 2], + "oDy3": [7, 2], + "19ji": [7, 4] + }, + "vertices": ["19ji", "oDy3", "BvKq", "deLA"], + "texture": 1 + }, + "Ee6LZNK0": { + "uv": { + "Fugt": [6, 11.00031], + "deLA": [7, 11], + "19ji": [7, 12.74996], + "R5vE": [6, 12.75003] + }, + "vertices": ["R5vE", "19ji", "deLA", "Fugt"], + "texture": 1 + }, + "DGmdf0cv": { + "uv": { + "J74A": [3, 2], + "Fugt": [3, 4], + "R5vE": [0, 4], + "QcTt": [0, 2] + }, + "vertices": ["QcTt", "R5vE", "Fugt", "J74A"], + "texture": 1 + }, + "S8qFQBfU": { + "uv": { + "37AA": [1, 6], + "gFQQ": [2.6, 6], + "NR0N": [2.6, 7], + "XL8u": [1, 7] + }, + "vertices": ["XL8u", "NR0N", "gFQQ", "37AA"], + "texture": 1 + }, + "ZntA3gmm": { + "uv": { + "hEhj": [0, 4], + "37AA": [0, 2], + "XL8u": [7, 2], + "zpU5": [7, 4] + }, + "vertices": ["zpU5", "XL8u", "37AA", "hEhj"], + "texture": 1 + }, + "3IofQwIZ": { + "uv": { + "rik1": [6, 11.00031], + "hEhj": [7, 11], + "zpU5": [7, 12.74996], + "GTiL": [6, 12.75003] + }, + "vertices": ["GTiL", "zpU5", "hEhj", "rik1"], + "texture": 1 + }, + "QWX2zBDX": { + "uv": { + "gFQQ": [7, 6], + "rik1": [7, 8], + "GTiL": [0, 8], + "NR0N": [0, 6] + }, + "vertices": ["NR0N", "GTiL", "rik1", "gFQQ"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "5c0c8088-4fec-62c4-daa4-9a61e11c8b1a" + }, + { + "name": "cube_selection", + "color": 0, + "origin": [6.225, 11.2, 0.06], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "SG2C": [0.10991, -0.94398, 1.7], + "gYNL": [-0.82826, -0.11843, 1.7], + "jyuv": [0.10991, 1.51644, 1.50967], + "yjq6": [-0.82826, -0.11843, 1.129], + "rpzh": [0.10991, -0.94398, 1.129], + "1IhL": [-0.82826, -0.11843, 1.06555], + "ditf": [0.10991, -0.94398, 1.06555], + "cqaI": [-0.82826, -0.11843, 0.4311], + "TtLA": [0.10991, -0.94398, 0.4311], + "X40D": [-0.82826, -0.11843, -0.1399], + "kPro": [0.10991, -0.94398, -0.1399], + "Jqet": [-0.82826, -0.11843, -0.20334], + "FbXp": [0.10991, -0.94398, -0.20334], + "XDyQ": [-0.82826, -0.11843, -0.77435], + "4PNW": [0.10991, 1.85001, 0.46283], + "jAkr": [0.10991, 1.85001, -0.17162], + "eeZW": [-1.13648, 1.51644, 1.09727], + "v2Oq": [-1.13648, 1.51644, -0.17162], + "xovw": [-1.34629, -0.23699, -0.20334], + "ApEB": [-1.34629, -0.23699, -0.77435], + "iOyM": [-2.3037, -0.52648, -0.77435], + "DFFs": [-2.3037, -0.52648, -0.20334], + "s57i": [-1.34629, -0.23699, 0.4311], + "DJ8Y": [-1.34629, -0.23699, -0.1399], + "Htu6": [-2.3037, -0.52648, -0.1399], + "VQgu": [-2.3037, -0.52648, 0.4311], + "J74A": [-1.34629, -0.23699, 1.06555], + "deLA": [-2.3037, -0.52648, 0.49455], + "gFQQ": [-1.34629, -0.23699, 1.7], + "37AA": [-1.34629, -0.23699, 1.129], + "hEhj": [-2.3037, -0.52648, 1.129], + "rik1": [-2.3037, -0.52648, 1.7], + "m70k": [-0.82826, -0.11843, 0.49455], + "5jQS": [0.10991, -0.94398, 0.49455], + "QgB1": [0.10991, -0.94398, -0.77435], + "BvKq": [-1.34629, -0.23699, 0.49455], + "Fugt": [-2.3037, -0.52648, 1.06555], + "LJNo": [-1.13648, 1.51644, -0.9171], + "pcXW": [-1.13648, 1.51644, 0.46283], + "SmHE": [-1.13648, 1.18286, 1.50967], + "am1B": [0.10991, 1.85001, 1.09727], + "b0wN": [-0.93383, -0.00252, -0.26679], + "QS4i": [-0.93383, -0.00252, -0.7109], + "RpTK": [-1.06639, 0.69724, -0.7109], + "cV7E": [-1.06639, 0.69724, -0.26679], + "2qMd": [-0.93383, -0.00252, 0.36766], + "P8PL": [-0.93383, -0.00252, -0.07645], + "0TBa": [-1.06639, 0.69724, -0.07645], + "D9wR": [-1.06639, 0.69724, 0.36766], + "QcTt": [-0.93383, -0.00252, 1.00211], + "oDy3": [-0.93383, -0.00252, 0.55799], + "19ji": [-1.06639, 0.69724, 0.55799], + "R5vE": [-1.06639, 0.69724, 1.00211], + "NR0N": [-0.93383, -0.00252, 1.63656], + "XL8u": [-0.93383, -0.00252, 1.19244], + "zpU5": [-1.06639, 0.69724, 1.19244], + "GTiL": [-1.06639, 0.69724, 1.63656], + "uFwO": [-0.80973, 0.30603, -0.97451], + "zDo4": [-0.8635, 1.62503, -0.94836], + "P0uD": [0.10991, 1.84175, -0.94209], + "FdPC": [-0.8912, 0.27794, -1.56595], + "jFow": [0.08005, 0.47939, -1.27015], + "IH02": [-0.95019, 1.42954, -1.60324], + "PHtJ": [0.10991, 1.64627, -1.34946], + "hwWi": [-1.92901, 0.47534, 0.01751], + "I3aC": [-1.96368, 1.10255, 0.01854], + "LiuJ": [-1.42967, 1.18116, 0.19065], + "imCn": [-1.39501, 0.55395, 0.18962], + "sKD5": [-1.23826, 1.3576, -0.81471], + "wBr0": [-1.18626, 0.4168, -0.81543], + "uO9x": [-1.98727, 0.2989, -0.93684], + "x3rw": [-2.03927, 1.23971, -0.93612], + "imkY": [0.08005, 0.47939, -0.90075], + "BcrG": [0.10991, 1.85001, -0.9171] + }, + "faces": { + "uo43jn6G": { + "uv": { + "gYNL": [1, 11], + "SG2C": [2.5, 11], + "SmHE": [1, 9], + "jyuv": [2.5, 9] + }, + "vertices": ["jyuv", "SmHE", "SG2C", "gYNL"], + "texture": 1 + }, + "qVUOFDNK": { + "uv": { + "GTiL": [2.2103, 7.99449], + "zpU5": [1.94526, 7.99449], + "XL8u": [1.934, 7.01463], + "NR0N": [2.2103, 7] + }, + "vertices": ["NR0N", "XL8u", "zpU5", "GTiL"], + "texture": 1 + }, + "sJ7BIjtK": { + "uv": { + "rpzh": [1.94526, 7.99449], + "ditf": [1.68022, 7.99449], + "1IhL": [1.65771, 7.02925], + "yjq6": [1.934, 7.01463] + }, + "vertices": ["yjq6", "1IhL", "ditf", "rpzh"], + "texture": 1 + }, + "Tt5do9eD": { + "uv": { + "5jQS": [1.41518, 7.99449], + "TtLA": [1.15014, 7.99449], + "cqaI": [1.10512, 7.0585], + "m70k": [1.38141, 7.04388] + }, + "vertices": ["m70k", "cqaI", "TtLA", "5jQS"], + "texture": 1 + }, + "8r7ed029": { + "uv": { + "D9wR": [1.15014, 7.99449], + "0TBa": [0.8851, 7.99449], + "P8PL": [0.82883, 7.07313], + "2qMd": [1.10512, 7.0585] + }, + "vertices": ["2qMd", "P8PL", "0TBa", "D9wR"], + "texture": 1 + }, + "hTI7CCl8": { + "uv": { + "kPro": [0.8851, 7.99449], + "FbXp": [0.62007, 7.99449], + "Jqet": [0.55255, 7.08775], + "X40D": [0.82883, 7.07313] + }, + "vertices": ["X40D", "Jqet", "FbXp", "kPro"], + "texture": 1 + }, + "9EMzfsaM": { + "uv": { + "cV7E": [0.62007, 7.99449], + "RpTK": [0.35504, 7.99449], + "QS4i": [0.27626, 7.10238], + "b0wN": [0.55255, 7.08775] + }, + "vertices": ["b0wN", "QS4i", "RpTK", "cV7E"], + "texture": 1 + }, + "1A3RrdZF": { + "uv": { + "jyuv": [0, 5], + "am1B": [0.37501, 5], + "rpzh": [0.37501, 7], + "SG2C": [0, 7] + }, + "vertices": ["SG2C", "rpzh", "am1B", "jyuv"], + "texture": 1 + }, + "Z0MHKSM1": { + "uv": { + "am1B": [0.56252, 5], + "ditf": [0.75002, 7], + "rpzh": [0.37501, 7] + }, + "vertices": ["rpzh", "ditf", "am1B"], + "texture": 1 + }, + "8RfDVw73": { + "uv": { + "4PNW": [1.31254, 5], + "TtLA": [1.50004, 7], + "5jQS": [1.12503, 7] + }, + "vertices": ["5jQS", "TtLA", "4PNW"], + "texture": 1 + }, + "b1H2Twi7": { + "uv": { + "4PNW": [1.50004, 5], + "jAkr": [1.87504, 5], + "kPro": [1.87504, 7], + "TtLA": [1.50004, 7] + }, + "vertices": ["TtLA", "kPro", "jAkr", "4PNW"], + "texture": 1 + }, + "8CzZUE6T": { + "uv": { + "jAkr": [2.06254, 5], + "FbXp": [2.25004, 7], + "kPro": [1.87504, 7] + }, + "vertices": ["kPro", "FbXp", "jAkr"], + "texture": 1 + }, + "7XOUjrqa": { + "uv": { + "jAkr": [2.25004, 5], + "BcrG": [2.62503, 5], + "QgB1": [2.62503, 7], + "FbXp": [2.25004, 7] + }, + "vertices": ["FbXp", "QgB1", "BcrG", "jAkr"], + "texture": 1 + }, + "H3nYlw5n": { + "uv": { + "pcXW": [1, 10.49996], + "v2Oq": [1, 10.12496], + "jAkr": [2.5, 10.12496], + "4PNW": [2.5, 10.49996] + }, + "vertices": ["4PNW", "jAkr", "v2Oq", "pcXW"], + "texture": 1 + }, + "3Pp5rd8r": { + "uv": { + "gYNL": [3, 10], + "yjq6": [2.62499, 10], + "eeZW": [2.62499, 5], + "SmHE": [3, 5] + }, + "vertices": ["SmHE", "eeZW", "yjq6", "gYNL"], + "texture": 1 + }, + "Ozh5CuVR": { + "uv": { + "yjq6": [2.62499, 7], + "1IhL": [2.24998, 7], + "eeZW": [2.43748, 5] + }, + "vertices": ["eeZW", "1IhL", "yjq6"], + "texture": 1 + }, + "qTnHXohn": { + "uv": { + "m70k": [1.87497, 7], + "cqaI": [1.49996, 7], + "pcXW": [1.68746, 5] + }, + "vertices": ["pcXW", "cqaI", "m70k"], + "texture": 1 + }, + "NQGq8EFs": { + "uv": { + "cqaI": [1.49996, 10], + "X40D": [1.12496, 10], + "v2Oq": [1.12496, 5], + "pcXW": [1.49996, 5] + }, + "vertices": ["pcXW", "v2Oq", "X40D", "cqaI"], + "texture": 1 + }, + "t75oHfwX": { + "uv": { + "X40D": [1.12496, 7], + "Jqet": [0.74996, 7], + "v2Oq": [0.93746, 5] + }, + "vertices": ["v2Oq", "Jqet", "X40D"], + "texture": 1 + }, + "rn9ZHqv3": { + "uv": { + "Jqet": [0.74996, 10], + "XDyQ": [0.37497, 10], + "LJNo": [0.37497, 5], + "v2Oq": [0.74996, 5] + }, + "vertices": ["v2Oq", "LJNo", "XDyQ", "Jqet"], + "texture": 1 + }, + "cWeBGtG5": { + "uv": { + "XDyQ": [0, 6], + "Jqet": [0.2767, 6], + "xovw": [0.2767, 7], + "ApEB": [0, 7] + }, + "vertices": ["ApEB", "xovw", "Jqet", "XDyQ"], + "texture": 1 + }, + "BDq08QaJ": { + "uv": { + "QgB1": [0, 4], + "XDyQ": [0, 2], + "ApEB": [2, 2], + "iOyM": [2, 4] + }, + "vertices": ["iOyM", "ApEB", "XDyQ", "QgB1"], + "texture": 1 + }, + "54OA4Vs6": { + "uv": { + "FbXp": [0, 6], + "QgB1": [0.265, 6.0001], + "iOyM": [0.265, 7.0001], + "DFFs": [0, 7] + }, + "vertices": ["DFFs", "iOyM", "QgB1", "FbXp"], + "texture": 1 + }, + "IJCofTZe": { + "uv": { + "Jqet": [2, 2], + "FbXp": [2, 4], + "DFFs": [0, 4], + "xovw": [0, 2] + }, + "vertices": ["xovw", "DFFs", "FbXp", "Jqet"], + "texture": 1 + }, + "mIvrKkMT": { + "uv": { + "X40D": [0, 6], + "cqaI": [0.2767, 6], + "s57i": [0.2767, 7], + "DJ8Y": [0.0001, 7] + }, + "vertices": ["DJ8Y", "s57i", "cqaI", "X40D"], + "texture": 1 + }, + "O7BP5dy7": { + "uv": { + "kPro": [0, 4], + "X40D": [0, 2], + "DJ8Y": [2, 2], + "Htu6": [2, 4] + }, + "vertices": ["Htu6", "DJ8Y", "X40D", "kPro"], + "texture": 1 + }, + "HxuDHg0G": { + "uv": { + "TtLA": [1, 6], + "kPro": [1.2651, 6], + "Htu6": [1.265, 7], + "VQgu": [1, 7] + }, + "vertices": ["VQgu", "Htu6", "kPro", "TtLA"], + "texture": 1 + }, + "05QRSzeb": { + "uv": { + "cqaI": [2, 2], + "TtLA": [2, 4], + "VQgu": [0, 4], + "s57i": [0, 2] + }, + "vertices": ["s57i", "VQgu", "TtLA", "cqaI"], + "texture": 1 + }, + "iCzdhyKG": { + "uv": { + "5jQS": [0, 4], + "m70k": [0, 2], + "BvKq": [2, 2], + "deLA": [2, 4] + }, + "vertices": ["deLA", "BvKq", "m70k", "5jQS"], + "texture": 1 + }, + "TUyCMWe4": { + "uv": { + "1IhL": [0.9655, 2], + "ditf": [0.9655, 4], + "Fugt": [0, 4], + "J74A": [0, 2] + }, + "vertices": ["J74A", "Fugt", "ditf", "1IhL"], + "texture": 1 + }, + "N1eMWfWU": { + "uv": { + "yjq6": [1, 6], + "gYNL": [1.2767, 6], + "gFQQ": [1.2767, 7], + "37AA": [1.0001, 7] + }, + "vertices": ["37AA", "gFQQ", "gYNL", "yjq6"], + "texture": 1 + }, + "ZgkHiEvD": { + "uv": { + "rpzh": [2, 4], + "yjq6": [2, 2], + "37AA": [5, 2], + "hEhj": [5, 4] + }, + "vertices": ["hEhj", "37AA", "yjq6", "rpzh"], + "texture": 1 + }, + "Rqvnh5JT": { + "uv": { + "SG2C": [1, 6], + "rpzh": [1.265, 6], + "hEhj": [1.265, 7], + "rik1": [1, 7] + }, + "vertices": ["rik1", "hEhj", "rpzh", "SG2C"], + "texture": 1 + }, + "NUcZO3RF": { + "uv": { + "gYNL": [2, 6], + "SG2C": [2, 8], + "rik1": [0, 8], + "gFQQ": [0, 6] + }, + "vertices": ["gFQQ", "rik1", "SG2C", "gYNL"], + "texture": 1 + }, + "duNNNzsm": { + "uv": { + "R5vE": [1.68022, 7.99449], + "19ji": [1.41518, 7.99449], + "oDy3": [1.38141, 7.04388], + "QcTt": [1.65771, 7.02925] + }, + "vertices": ["QcTt", "oDy3", "19ji", "R5vE"], + "texture": 1 + }, + "1GvS40WP": { + "uv": { + "am1B": [0.75002, 5], + "4PNW": [1.12503, 5], + "5jQS": [1.12503, 7], + "ditf": [0.75002, 7] + }, + "vertices": ["ditf", "5jQS", "4PNW", "am1B"], + "texture": 1 + }, + "ZAq6364x": { + "uv": { + "eeZW": [1, 11.24998], + "pcXW": [1, 10.87497], + "4PNW": [2.5, 10.87497], + "am1B": [2.5, 11.24998] + }, + "vertices": ["am1B", "4PNW", "pcXW", "eeZW"], + "texture": 1 + }, + "xM3u5Rgj": { + "uv": { + "v2Oq": [1, 9.74996], + "LJNo": [1, 9.37497], + "BcrG": [2.5, 9.37497], + "jAkr": [2.5, 9.74996] + }, + "vertices": ["jAkr", "BcrG", "LJNo", "v2Oq"], + "texture": 1 + }, + "sbc82oNA": { + "uv": { + "1IhL": [2.24998, 10], + "m70k": [1.87497, 10], + "pcXW": [1.87497, 5], + "eeZW": [2.24998, 5] + }, + "vertices": ["eeZW", "pcXW", "m70k", "1IhL"], + "texture": 1 + }, + "AJJPyz9R": { + "uv": { + "m70k": [1, 6], + "1IhL": [1.2766, 6], + "J74A": [1.2767, 7], + "BvKq": [1, 7] + }, + "vertices": ["BvKq", "J74A", "1IhL", "m70k"], + "texture": 1 + }, + "ZppkV46C": { + "uv": { + "ditf": [0.0001, 6], + "5jQS": [0.2651, 6], + "deLA": [0.2651, 7], + "Fugt": [0, 7] + }, + "vertices": ["Fugt", "deLA", "5jQS", "ditf"], + "texture": 1 + }, + "kCcOlvWB": { + "uv": { + "SmHE": [1, 12], + "eeZW": [1, 11.62499], + "am1B": [2.5, 11.62499], + "jyuv": [2.5, 12] + }, + "vertices": ["jyuv", "am1B", "eeZW", "SmHE"], + "texture": 1 + }, + "j8g2VQFn": { + "uv": { + "ApEB": [0, 6], + "xovw": [1.6, 6], + "b0wN": [1.6, 7], + "QS4i": [0, 7] + }, + "vertices": ["QS4i", "b0wN", "xovw", "ApEB"], + "texture": 1 + }, + "ZdfOYoQE": { + "uv": { + "iOyM": [0, 4], + "ApEB": [0, 2], + "QS4i": [7, 2], + "RpTK": [7, 4] + }, + "vertices": ["RpTK", "QS4i", "ApEB", "iOyM"], + "texture": 1 + }, + "PSd8nYdT": { + "uv": { + "DFFs": [6, 11.00031], + "iOyM": [7, 11], + "RpTK": [7, 12.74996], + "cV7E": [6, 12.75003] + }, + "vertices": ["cV7E", "RpTK", "iOyM", "DFFs"], + "texture": 1 + }, + "HIdDzpOZ": { + "uv": { + "xovw": [7, 2], + "DFFs": [7, 4], + "cV7E": [0, 4], + "b0wN": [0, 2] + }, + "vertices": ["b0wN", "cV7E", "DFFs", "xovw"], + "texture": 1 + }, + "AaDkkopW": { + "uv": { + "DJ8Y": [0, 6], + "s57i": [1.6, 6], + "2qMd": [1.6, 7], + "P8PL": [0, 7] + }, + "vertices": ["P8PL", "2qMd", "s57i", "DJ8Y"], + "texture": 1 + }, + "uDXKxApa": { + "uv": { + "Htu6": [0, 4], + "DJ8Y": [0, 2], + "P8PL": [7, 2], + "0TBa": [7, 4] + }, + "vertices": ["0TBa", "P8PL", "DJ8Y", "Htu6"], + "texture": 1 + }, + "FD3Uef8Z": { + "uv": { + "VQgu": [6, 11.00031], + "Htu6": [7, 11], + "0TBa": [7, 12.74996], + "D9wR": [6, 12.75003] + }, + "vertices": ["D9wR", "0TBa", "Htu6", "VQgu"], + "texture": 1 + }, + "znTdIdv8": { + "uv": { + "s57i": [7, 2], + "VQgu": [7, 4], + "D9wR": [0, 4], + "2qMd": [0, 2] + }, + "vertices": ["2qMd", "D9wR", "VQgu", "s57i"], + "texture": 1 + }, + "HBqfAJ9G": { + "uv": { + "BvKq": [0, 6], + "J74A": [1.6, 6], + "QcTt": [1.6, 7], + "oDy3": [0, 7] + }, + "vertices": ["oDy3", "QcTt", "J74A", "BvKq"], + "texture": 1 + }, + "xTS24TAq": { + "uv": { + "deLA": [0, 4], + "BvKq": [0, 2], + "oDy3": [7, 2], + "19ji": [7, 4] + }, + "vertices": ["19ji", "oDy3", "BvKq", "deLA"], + "texture": 1 + }, + "Ee6LZNK0": { + "uv": { + "Fugt": [6, 11.00031], + "deLA": [7, 11], + "19ji": [7, 12.74996], + "R5vE": [6, 12.75003] + }, + "vertices": ["R5vE", "19ji", "deLA", "Fugt"], + "texture": 1 + }, + "DGmdf0cv": { + "uv": { + "J74A": [3, 2], + "Fugt": [3, 4], + "R5vE": [0, 4], + "QcTt": [0, 2] + }, + "vertices": ["QcTt", "R5vE", "Fugt", "J74A"], + "texture": 1 + }, + "S8qFQBfU": { + "uv": { + "37AA": [1, 6], + "gFQQ": [2.6, 6], + "NR0N": [2.6, 7], + "XL8u": [1, 7] + }, + "vertices": ["XL8u", "NR0N", "gFQQ", "37AA"], + "texture": 1 + }, + "ZntA3gmm": { + "uv": { + "hEhj": [0, 4], + "37AA": [0, 2], + "XL8u": [7, 2], + "zpU5": [7, 4] + }, + "vertices": ["zpU5", "XL8u", "37AA", "hEhj"], + "texture": 1 + }, + "3IofQwIZ": { + "uv": { + "rik1": [6, 11.00031], + "hEhj": [7, 11], + "zpU5": [7, 12.74996], + "GTiL": [6, 12.75003] + }, + "vertices": ["GTiL", "zpU5", "hEhj", "rik1"], + "texture": 1 + }, + "QWX2zBDX": { + "uv": { + "gFQQ": [7, 6], + "rik1": [7, 8], + "GTiL": [0, 8], + "NR0N": [0, 6] + }, + "vertices": ["NR0N", "GTiL", "rik1", "gFQQ"], + "texture": 1 + }, + "LPkiykfM": { + "uv": { + "PHtJ": [0, 8], + "IH02": [0.97555, 8.32384], + "FdPC": [0.66457, 9.53063], + "jFow": [0, 10.09977] + }, + "vertices": ["jFow", "FdPC", "IH02", "PHtJ"], + "texture": 1 + }, + "lCBsAgW1": { + "uv": { + "XDyQ": [0.00004, 3], + "LJNo": [1.2462, 3.0001], + "uFwO": [0, 4.00007], + "zDo4": [1.24616, 4.00007] + }, + "vertices": ["zDo4", "uFwO", "LJNo", "XDyQ"], + "texture": 1 + }, + "nCpQvssq": { + "uv": { + "QgB1": [0.00001, 2.00001], + "XDyQ": [0.87503, 2], + "imkY": [0, 2.99992], + "uFwO": [0.87503, 3] + }, + "vertices": ["uFwO", "imkY", "XDyQ", "QgB1"], + "texture": 1 + }, + "ggILVg96": { + "uv": { + "BcrG": [0.99925, 2], + "QgB1": [0.99935, 4.10127], + "P0uD": [0, 2.03686], + "imkY": [0, 4.13803] + }, + "vertices": ["imkY", "P0uD", "QgB1", "BcrG"], + "texture": 1 + }, + "E1MPoFB6": { + "uv": { + "LJNo": [0.00003, 3.07737], + "BcrG": [1.02791, 3], + "zDo4": [0, 4.07729], + "P0uD": [1.02791, 4.00001] + }, + "vertices": ["P0uD", "zDo4", "BcrG", "LJNo"], + "texture": 1 + }, + "3jltagHl": { + "uv": { + "imCn": [0.00001, 8.02389], + "LiuJ": [0.47057, 8], + "hwWi": [0, 8.52387], + "I3aC": [0.47057, 8.50008] + }, + "vertices": ["I3aC", "hwWi", "LiuJ", "imCn"], + "texture": 1 + }, + "jddiASSr": { + "uv": { + "imkY": [0.00006, 8], + "uFwO": [0.69811, 8], + "jFow": [0, 8.49998], + "FdPC": [0.69805, 8.49998] + }, + "vertices": ["FdPC", "jFow", "uFwO", "imkY"], + "texture": 1 + }, + "lGMv7vdj": { + "uv": { + "P0uD": [0.99751, 7.5], + "imkY": [0.9976, 8.05389], + "PHtJ": [0, 7.53479], + "jFow": [0, 8.08862] + }, + "vertices": ["jFow", "PHtJ", "imkY", "P0uD"], + "texture": 1 + }, + "hBH2eAfT": { + "uv": { + "zDo4": [0.00007, 7.53847], + "P0uD": [1.00559, 7.5], + "IH02": [0, 8.03847], + "PHtJ": [1.00559, 8.00003] + }, + "vertices": ["PHtJ", "IH02", "P0uD", "zDo4"], + "texture": 1 + }, + "yZseB82b": { + "uv": { + "FdPC": [0, 7.24962], + "x3rw": [0.83087, 7.12481], + "IH02": [0.94235, 7.24962], + "uO9x": [0.12411, 7.12481] + }, + "vertices": ["uO9x", "IH02", "x3rw", "FdPC"], + "texture": 1 + }, + "GtbKnaxO": { + "uv": { + "IH02": [0.23527, 8.99997], + "sKD5": [0.1177, 8.13092], + "zDo4": [0.2354, 8], + "x3rw": [0.11764, 8.88095] + }, + "vertices": ["x3rw", "zDo4", "sKD5", "IH02"], + "texture": 1 + }, + "cnFcb0TN": { + "uv": { + "zDo4": [0.94245, 8.00019], + "wBr0": [0.11145, 8.12488], + "uFwO": [0, 8], + "sKD5": [0.81826, 8.12498] + }, + "vertices": ["sKD5", "uFwO", "wBr0", "zDo4"], + "texture": 1 + }, + "JkJlzjX5": { + "uv": { + "uFwO": [0, 8], + "uO9x": [0.11765, 8.86904], + "FdPC": [0, 8.99996], + "wBr0": [0.11765, 8.11907] + }, + "vertices": ["wBr0", "FdPC", "uO9x", "uFwO"], + "texture": 1 + }, + "3xEFF5Dl": { + "uv": { + "imCn": [0.22291, 8.24977], + "wBr0": [0.11145, 8.12488], + "LiuJ": [0.69408, 8.24977], + "sKD5": [0.81826, 8.12498] + }, + "vertices": ["sKD5", "LiuJ", "wBr0", "imCn"], + "texture": 1 + }, + "AEczQLbv": { + "uv": { + "hwWi": [0.23529, 8.73812], + "uO9x": [0.11765, 8.86904], + "imCn": [0.23529, 8.23814], + "wBr0": [0.11765, 8.11907] + }, + "vertices": ["wBr0", "imCn", "uO9x", "hwWi"], + "texture": 1 + }, + "j1CKaqHy": { + "uv": { + "I3aC": [7, 12.74996], + "x3rw": [7, 11], + "hwWi": [6, 12.75003], + "uO9x": [6, 11.00031] + }, + "vertices": ["uO9x", "hwWi", "x3rw", "I3aC"], + "texture": 1 + }, + "3V03UFgu": { + "uv": { + "LiuJ": [0, 8.26185], + "sKD5": [0.1177, 8.13092], + "I3aC": [0, 8.76193], + "x3rw": [0.11764, 8.88095] + }, + "vertices": ["x3rw", "I3aC", "sKD5", "LiuJ"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "a7ff4b5e-7042-a38c-c883-f2e72ff2dd7c" + }, + { + "name": "cube_selection", + "color": 0, + "origin": [-6.125, 11.2, -0.04], + "rotation": [0, 0, -12.5], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "SG2C": [-0.35, 0.32, 1.7], + "aXfG": [-0.14722, 0.014, -0.93945], + "gYNL": [1.06944, 0.32, 1.7], + "qm42": [1.06944, 0.014, -0.93945], + "jyuv": [-0.14722, 1.54401, 1.51147], + "rkTD": [1.06944, 1.23801, -1.41078], + "5bB4": [-0.14722, 1.23801, -1.41078], + "gsUF": [1.06944, 0.014, -1.725], + "3ZE3": [-0.14722, 0.014, -1.725], + "DLfR": [1.27222, -1.21, -1.725], + "aOPa": [0.46111, -1.21, -1.725], + "ZHsx": [0.46111, -1.21, -1.25367], + "U3G7": [1.27222, -1.21, -1.25367], + "yjq6": [1.06944, 0.32, 1.1344], + "rpzh": [-0.35, 0.32, 1.1344], + "1IhL": [1.06944, 0.32, 1.07156], + "ditf": [-0.35, 0.32, 1.07156], + "cqaI": [1.06944, 0.32, 0.44312], + "TtLA": [-0.35, 0.32, 0.44312], + "X40D": [1.06944, 0.32, -0.12248], + "kPro": [-0.35, 0.32, -0.12248], + "Jqet": [1.06944, 0.32, -0.18532], + "FbXp": [-0.35, 0.32, -0.18532], + "XDyQ": [1.06944, 0.32, -0.75092], + "4PNW": [-0.14722, 1.85001, 0.47454], + "jAkr": [-0.14722, 1.85001, -0.1539], + "eeZW": [1.475, 1.54401, 1.10298], + "v2Oq": [1.475, 1.54401, -0.1539], + "xovw": [1.06944, -0.598, -0.18532], + "ApEB": [1.06944, -0.598, -0.75092], + "iOyM": [-0.14722, -0.598, -0.75092], + "DFFs": [-0.14722, -0.598, -0.18532], + "s57i": [1.06944, -0.598, 0.44312], + "DJ8Y": [1.06944, -0.598, -0.12248], + "Htu6": [-0.14722, -0.598, -0.12248], + "VQgu": [-0.14722, -0.598, 0.44312], + "J74A": [1.06944, -0.598, 1.07156], + "deLA": [-0.14722, -0.598, 0.50596], + "gFQQ": [1.06944, -0.598, 1.7], + "37AA": [1.06944, -0.598, 1.1344], + "hEhj": [-0.14722, -0.598, 1.1344], + "rik1": [-0.14722, -0.598, 1.7], + "m70k": [1.06944, 0.32, 0.50596], + "5jQS": [-0.35, 0.32, 0.50596], + "QgB1": [-0.35, 0.32, -0.75092], + "BvKq": [1.06944, -0.598, 0.50596], + "Fugt": [-0.14722, -0.598, 1.07156], + "BcrG": [-0.14722, 1.85001, -0.82947], + "LJNo": [1.475, 1.54401, -0.82947], + "pcXW": [1.475, 1.54401, 0.47454], + "SmHE": [1.475, 1.23801, 1.51147], + "am1B": [-0.14722, 1.85001, 1.10298], + "b0wN": [1.475, -1.975, -0.24817], + "QS4i": [1.475, -1.975, -0.68807], + "RpTK": [0.25833, -1.975, -0.68807], + "cV7E": [0.25833, -1.975, -0.24817], + "2qMd": [1.475, -1.975, 0.38028], + "P8PL": [1.475, -1.975, -0.05963], + "0TBa": [0.25833, -1.975, -0.05963], + "D9wR": [0.25833, -1.975, 0.38028], + "QcTt": [1.475, -1.975, 1.00872], + "oDy3": [1.475, -1.975, 0.56881], + "19ji": [0.25833, -1.975, 0.56881], + "R5vE": [0.25833, -1.975, 1.00872], + "NR0N": [1.475, -1.975, 1.63716], + "XL8u": [1.475, -1.975, 1.19725], + "zpU5": [0.25833, -1.975, 1.19725], + "GTiL": [0.25833, -1.975, 1.63716] + }, + "faces": { + "vvIAs6ec": { + "uv": { + "aXfG": [3, 7], + "BcrG": [2.81252, 5], + "QgB1": [2.62503, 7] + }, + "vertices": ["QgB1", "BcrG", "aXfG"], + "texture": 1 + }, + "uo43jn6G": { + "uv": { + "gYNL": [1, 11], + "SG2C": [2.5, 11], + "jyuv": [2.5, 9], + "SmHE": [1, 9] + }, + "vertices": ["SmHE", "jyuv", "SG2C", "gYNL"], + "texture": 1 + }, + "5U9xU0dD": { + "uv": { + "3ZE3": [1, 11], + "gsUF": [2.5, 11], + "rkTD": [2.5, 9], + "5bB4": [1, 9] + }, + "vertices": ["5bB4", "rkTD", "gsUF", "3ZE3"], + "texture": 1 + }, + "PMT6iALM": { + "uv": { + "LJNo": [2, 6], + "qm42": [2, 8], + "rkTD": [1, 6], + "gsUF": [1, 8] + }, + "vertices": ["gsUF", "rkTD", "qm42", "LJNo"], + "texture": 1 + }, + "laujVFTj": { + "uv": { + "BcrG": [2.5, 8], + "LJNo": [1, 8], + "5bB4": [2.5, 7], + "rkTD": [1, 7] + }, + "vertices": ["rkTD", "5bB4", "LJNo", "BcrG"], + "texture": 1 + }, + "qTTfHe64": { + "uv": { + "U3G7": [2.5, 8.00004], + "ZHsx": [1.00001, 7.99996], + "DLfR": [2.50005, 7], + "aOPa": [1, 7] + }, + "vertices": ["aOPa", "DLfR", "ZHsx", "U3G7"], + "texture": 1 + }, + "G08WUC3f": { + "uv": { + "3ZE3": [1, 5], + "gsUF": [2.5, 5], + "aOPa": [1, 6], + "DLfR": [2.5, 6] + }, + "vertices": ["DLfR", "aOPa", "gsUF", "3ZE3"], + "texture": 1 + }, + "pHmNi5fh": { + "uv": { + "aXfG": [6, 11.00031], + "3ZE3": [7, 11], + "ZHsx": [6, 12.75003], + "aOPa": [7, 12.74996] + }, + "vertices": ["aOPa", "ZHsx", "3ZE3", "aXfG"], + "texture": 1 + }, + "cuft3msr": { + "uv": { + "qm42": [1, 5], + "aXfG": [2.5, 5], + "U3G7": [1, 6], + "ZHsx": [2.5, 6] + }, + "vertices": ["ZHsx", "U3G7", "aXfG", "qm42"], + "texture": 1 + }, + "azGhehvz": { + "uv": { + "gsUF": [1, 5], + "qm42": [2, 5], + "DLfR": [1, 6], + "U3G7": [2, 6] + }, + "vertices": ["U3G7", "DLfR", "qm42", "gsUF"], + "texture": 1 + }, + "udheygIe": { + "uv": { + "XDyQ": [0.37497, 10], + "qm42": [0, 10], + "LJNo": [0.18748, 5] + }, + "vertices": ["LJNo", "qm42", "XDyQ"], + "texture": 1 + }, + "8H3cL8dN": { + "uv": { + "aXfG": [0, 9], + "BcrG": [0, 7], + "3ZE3": [1, 9], + "5bB4": [1, 7] + }, + "vertices": ["5bB4", "3ZE3", "BcrG", "aXfG"], + "texture": 1 + }, + "n0zqwS3a": { + "uv": { + "qm42": [0, 7.117], + "QgB1": [0.35504, 7.99449], + "aXfG": [0.09003, 7.99449], + "XDyQ": [0.27626, 7.10238] + }, + "vertices": ["XDyQ", "aXfG", "QgB1", "qm42"], + "texture": 1 + }, + "qVUOFDNK": { + "uv": { + "GTiL": [2.2103, 7.99449], + "zpU5": [1.94526, 7.99449], + "NR0N": [2.2103, 7], + "XL8u": [1.934, 7.01463] + }, + "vertices": ["XL8u", "NR0N", "zpU5", "GTiL"], + "texture": 1 + }, + "sJ7BIjtK": { + "uv": { + "rpzh": [1.94526, 7.99449], + "ditf": [1.68022, 7.99449], + "yjq6": [1.934, 7.01463], + "1IhL": [1.65771, 7.02925] + }, + "vertices": ["1IhL", "yjq6", "ditf", "rpzh"], + "texture": 1 + }, + "Tt5do9eD": { + "uv": { + "5jQS": [1.41518, 7.99449], + "TtLA": [1.15014, 7.99449], + "m70k": [1.38141, 7.04388], + "cqaI": [1.10512, 7.0585] + }, + "vertices": ["cqaI", "m70k", "TtLA", "5jQS"], + "texture": 1 + }, + "8r7ed029": { + "uv": { + "D9wR": [1.15014, 7.99449], + "0TBa": [0.8851, 7.99449], + "2qMd": [1.10512, 7.0585], + "P8PL": [0.82883, 7.07313] + }, + "vertices": ["P8PL", "2qMd", "0TBa", "D9wR"], + "texture": 1 + }, + "hTI7CCl8": { + "uv": { + "kPro": [0.8851, 7.99449], + "FbXp": [0.62007, 7.99449], + "X40D": [0.82883, 7.07313], + "Jqet": [0.55255, 7.08775] + }, + "vertices": ["Jqet", "X40D", "FbXp", "kPro"], + "texture": 1 + }, + "9EMzfsaM": { + "uv": { + "cV7E": [0.62007, 7.99449], + "RpTK": [0.35504, 7.99449], + "b0wN": [0.55255, 7.08775], + "QS4i": [0.27626, 7.10238] + }, + "vertices": ["QS4i", "b0wN", "RpTK", "cV7E"], + "texture": 1 + }, + "1A3RrdZF": { + "uv": { + "jyuv": [0, 5], + "am1B": [0.37501, 5], + "SG2C": [0, 7], + "rpzh": [0.37501, 7] + }, + "vertices": ["rpzh", "SG2C", "am1B", "jyuv"], + "texture": 1 + }, + "Z0MHKSM1": { + "uv": { + "am1B": [0.56252, 5], + "rpzh": [0.37501, 7], + "ditf": [0.75002, 7] + }, + "vertices": ["ditf", "rpzh", "am1B"], + "texture": 1 + }, + "8RfDVw73": { + "uv": { + "4PNW": [1.31254, 5], + "5jQS": [1.12503, 7], + "TtLA": [1.50004, 7] + }, + "vertices": ["TtLA", "5jQS", "4PNW"], + "texture": 1 + }, + "b1H2Twi7": { + "uv": { + "4PNW": [1.50004, 5], + "jAkr": [1.87504, 5], + "TtLA": [1.50004, 7], + "kPro": [1.87504, 7] + }, + "vertices": ["kPro", "TtLA", "jAkr", "4PNW"], + "texture": 1 + }, + "8CzZUE6T": { + "uv": { + "jAkr": [2.06254, 5], + "kPro": [1.87504, 7], + "FbXp": [2.25004, 7] + }, + "vertices": ["FbXp", "kPro", "jAkr"], + "texture": 1 + }, + "7XOUjrqa": { + "uv": { + "jAkr": [2.25004, 5], + "BcrG": [2.62503, 5], + "FbXp": [2.25004, 7], + "QgB1": [2.62503, 7] + }, + "vertices": ["QgB1", "FbXp", "BcrG", "jAkr"], + "texture": 1 + }, + "H3nYlw5n": { + "uv": { + "pcXW": [1, 10.49996], + "v2Oq": [1, 10.12496], + "4PNW": [2.5, 10.49996], + "jAkr": [2.5, 10.12496] + }, + "vertices": ["jAkr", "4PNW", "v2Oq", "pcXW"], + "texture": 1 + }, + "3Pp5rd8r": { + "uv": { + "gYNL": [3, 10], + "yjq6": [2.62499, 10], + "SmHE": [3, 5], + "eeZW": [2.62499, 5] + }, + "vertices": ["eeZW", "SmHE", "yjq6", "gYNL"], + "texture": 1 + }, + "Ozh5CuVR": { + "uv": { + "yjq6": [2.62499, 7], + "eeZW": [2.43748, 5], + "1IhL": [2.24998, 7] + }, + "vertices": ["1IhL", "eeZW", "yjq6"], + "texture": 1 + }, + "qTnHXohn": { + "uv": { + "m70k": [1.87497, 7], + "pcXW": [1.68746, 5], + "cqaI": [1.49996, 7] + }, + "vertices": ["cqaI", "pcXW", "m70k"], + "texture": 1 + }, + "NQGq8EFs": { + "uv": { + "cqaI": [1.49996, 10], + "X40D": [1.12496, 10], + "pcXW": [1.49996, 5], + "v2Oq": [1.12496, 5] + }, + "vertices": ["v2Oq", "pcXW", "X40D", "cqaI"], + "texture": 1 + }, + "t75oHfwX": { + "uv": { + "X40D": [1.12496, 7], + "v2Oq": [0.93746, 5], + "Jqet": [0.74996, 7] + }, + "vertices": ["Jqet", "v2Oq", "X40D"], + "texture": 1 + }, + "rn9ZHqv3": { + "uv": { + "Jqet": [0.74996, 10], + "XDyQ": [0.37497, 10], + "v2Oq": [0.74996, 5], + "LJNo": [0.37497, 5] + }, + "vertices": ["LJNo", "v2Oq", "XDyQ", "Jqet"], + "texture": 1 + }, + "cWeBGtG5": { + "uv": { + "XDyQ": [0, 6], + "Jqet": [0.2767, 6], + "ApEB": [0, 7], + "xovw": [0.2767, 7] + }, + "vertices": ["xovw", "ApEB", "Jqet", "XDyQ"], + "texture": 1 + }, + "BDq08QaJ": { + "uv": { + "QgB1": [0, 4], + "XDyQ": [0, 2], + "iOyM": [2, 4], + "ApEB": [2, 2] + }, + "vertices": ["ApEB", "iOyM", "XDyQ", "QgB1"], + "texture": 1 + }, + "54OA4Vs6": { + "uv": { + "FbXp": [0, 6], + "QgB1": [0.265, 6.0001], + "DFFs": [0, 7], + "iOyM": [0.265, 7.0001] + }, + "vertices": ["iOyM", "DFFs", "QgB1", "FbXp"], + "texture": 1 + }, + "IJCofTZe": { + "uv": { + "Jqet": [2, 2], + "FbXp": [2, 4], + "xovw": [0, 2], + "DFFs": [0, 4] + }, + "vertices": ["DFFs", "xovw", "FbXp", "Jqet"], + "texture": 1 + }, + "mIvrKkMT": { + "uv": { + "X40D": [0, 6], + "cqaI": [0.2767, 6], + "DJ8Y": [0.0001, 7], + "s57i": [0.2767, 7] + }, + "vertices": ["s57i", "DJ8Y", "cqaI", "X40D"], + "texture": 1 + }, + "O7BP5dy7": { + "uv": { + "kPro": [0, 4], + "X40D": [0, 2], + "Htu6": [2, 4], + "DJ8Y": [2, 2] + }, + "vertices": ["DJ8Y", "Htu6", "X40D", "kPro"], + "texture": 1 + }, + "HxuDHg0G": { + "uv": { + "TtLA": [1, 6], + "kPro": [1.2651, 6], + "VQgu": [1, 7], + "Htu6": [1.265, 7] + }, + "vertices": ["Htu6", "VQgu", "kPro", "TtLA"], + "texture": 1 + }, + "05QRSzeb": { + "uv": { + "cqaI": [2, 2], + "TtLA": [2, 4], + "s57i": [0, 2], + "VQgu": [0, 4] + }, + "vertices": ["VQgu", "s57i", "TtLA", "cqaI"], + "texture": 1 + }, + "iCzdhyKG": { + "uv": { + "5jQS": [0, 4], + "m70k": [0, 2], + "deLA": [2, 4], + "BvKq": [2, 2] + }, + "vertices": ["BvKq", "deLA", "m70k", "5jQS"], + "texture": 1 + }, + "TUyCMWe4": { + "uv": { + "1IhL": [0.9655, 2], + "ditf": [0.9655, 4], + "J74A": [0, 2], + "Fugt": [0, 4] + }, + "vertices": ["Fugt", "J74A", "ditf", "1IhL"], + "texture": 1 + }, + "N1eMWfWU": { + "uv": { + "yjq6": [1, 6], + "gYNL": [1.2767, 6], + "37AA": [1.0001, 7], + "gFQQ": [1.2767, 7] + }, + "vertices": ["gFQQ", "37AA", "gYNL", "yjq6"], + "texture": 1 + }, + "ZgkHiEvD": { + "uv": { + "rpzh": [2, 4], + "yjq6": [2, 2], + "hEhj": [5, 4], + "37AA": [5, 2] + }, + "vertices": ["37AA", "hEhj", "yjq6", "rpzh"], + "texture": 1 + }, + "Rqvnh5JT": { + "uv": { + "SG2C": [1, 6], + "rpzh": [1.265, 6], + "rik1": [1, 7], + "hEhj": [1.265, 7] + }, + "vertices": ["hEhj", "rik1", "rpzh", "SG2C"], + "texture": 1 + }, + "NUcZO3RF": { + "uv": { + "gYNL": [2, 6], + "SG2C": [2, 8], + "gFQQ": [0, 6], + "rik1": [0, 8] + }, + "vertices": ["rik1", "gFQQ", "SG2C", "gYNL"], + "texture": 1 + }, + "duNNNzsm": { + "uv": { + "R5vE": [1.68022, 7.99449], + "19ji": [1.41518, 7.99449], + "QcTt": [1.65771, 7.02925], + "oDy3": [1.38141, 7.04388] + }, + "vertices": ["oDy3", "QcTt", "19ji", "R5vE"], + "texture": 1 + }, + "1GvS40WP": { + "uv": { + "am1B": [0.75002, 5], + "4PNW": [1.12503, 5], + "ditf": [0.75002, 7], + "5jQS": [1.12503, 7] + }, + "vertices": ["5jQS", "ditf", "4PNW", "am1B"], + "texture": 1 + }, + "ZAq6364x": { + "uv": { + "eeZW": [1, 11.24998], + "pcXW": [1, 10.87497], + "am1B": [2.5, 11.24998], + "4PNW": [2.5, 10.87497] + }, + "vertices": ["4PNW", "am1B", "pcXW", "eeZW"], + "texture": 1 + }, + "xM3u5Rgj": { + "uv": { + "v2Oq": [1, 9.74996], + "LJNo": [1, 9.37497], + "jAkr": [2.5, 9.74996], + "BcrG": [2.5, 9.37497] + }, + "vertices": ["BcrG", "jAkr", "LJNo", "v2Oq"], + "texture": 1 + }, + "sbc82oNA": { + "uv": { + "1IhL": [2.24998, 10], + "m70k": [1.87497, 10], + "eeZW": [2.24998, 5], + "pcXW": [1.87497, 5] + }, + "vertices": ["pcXW", "eeZW", "m70k", "1IhL"], + "texture": 1 + }, + "AJJPyz9R": { + "uv": { + "m70k": [1, 6], + "1IhL": [1.2766, 6], + "BvKq": [1, 7], + "J74A": [1.2767, 7] + }, + "vertices": ["J74A", "BvKq", "1IhL", "m70k"], + "texture": 1 + }, + "ZppkV46C": { + "uv": { + "ditf": [0.0001, 6], + "5jQS": [0.2651, 6], + "Fugt": [0, 7], + "deLA": [0.2651, 7] + }, + "vertices": ["deLA", "Fugt", "5jQS", "ditf"], + "texture": 1 + }, + "kCcOlvWB": { + "uv": { + "SmHE": [1, 12], + "eeZW": [1, 11.62499], + "jyuv": [2.5, 12], + "am1B": [2.5, 11.62499] + }, + "vertices": ["am1B", "jyuv", "eeZW", "SmHE"], + "texture": 1 + }, + "j8g2VQFn": { + "uv": { + "ApEB": [0, 6], + "xovw": [1.6, 6], + "QS4i": [0, 7], + "b0wN": [1.6, 7] + }, + "vertices": ["b0wN", "QS4i", "xovw", "ApEB"], + "texture": 1 + }, + "ZdfOYoQE": { + "uv": { + "iOyM": [0, 4], + "ApEB": [0, 2], + "RpTK": [7, 4], + "QS4i": [7, 2] + }, + "vertices": ["QS4i", "RpTK", "ApEB", "iOyM"], + "texture": 1 + }, + "PSd8nYdT": { + "uv": { + "DFFs": [6, 11.00031], + "iOyM": [7, 11], + "cV7E": [6, 12.75003], + "RpTK": [7, 12.74996] + }, + "vertices": ["RpTK", "cV7E", "iOyM", "DFFs"], + "texture": 1 + }, + "HIdDzpOZ": { + "uv": { + "xovw": [7, 2], + "DFFs": [7, 4], + "b0wN": [0, 2], + "cV7E": [0, 4] + }, + "vertices": ["cV7E", "b0wN", "DFFs", "xovw"], + "texture": 1 + }, + "AaDkkopW": { + "uv": { + "DJ8Y": [0, 6], + "s57i": [1.6, 6], + "P8PL": [0, 7], + "2qMd": [1.6, 7] + }, + "vertices": ["2qMd", "P8PL", "s57i", "DJ8Y"], + "texture": 1 + }, + "uDXKxApa": { + "uv": { + "Htu6": [0, 4], + "DJ8Y": [0, 2], + "0TBa": [7, 4], + "P8PL": [7, 2] + }, + "vertices": ["P8PL", "0TBa", "DJ8Y", "Htu6"], + "texture": 1 + }, + "FD3Uef8Z": { + "uv": { + "VQgu": [6, 11.00031], + "Htu6": [7, 11], + "D9wR": [6, 12.75003], + "0TBa": [7, 12.74996] + }, + "vertices": ["0TBa", "D9wR", "Htu6", "VQgu"], + "texture": 1 + }, + "znTdIdv8": { + "uv": { + "s57i": [7, 2], + "VQgu": [7, 4], + "2qMd": [0, 2], + "D9wR": [0, 4] + }, + "vertices": ["D9wR", "2qMd", "VQgu", "s57i"], + "texture": 1 + }, + "HBqfAJ9G": { + "uv": { + "BvKq": [0, 6], + "J74A": [1.6, 6], + "oDy3": [0, 7], + "QcTt": [1.6, 7] + }, + "vertices": ["QcTt", "oDy3", "J74A", "BvKq"], + "texture": 1 + }, + "xTS24TAq": { + "uv": { + "deLA": [0, 4], + "BvKq": [0, 2], + "19ji": [7, 4], + "oDy3": [7, 2] + }, + "vertices": ["oDy3", "19ji", "BvKq", "deLA"], + "texture": 1 + }, + "Ee6LZNK0": { + "uv": { + "Fugt": [6, 11.00031], + "deLA": [7, 11], + "R5vE": [6, 12.75003], + "19ji": [7, 12.74996] + }, + "vertices": ["19ji", "R5vE", "deLA", "Fugt"], + "texture": 1 + }, + "DGmdf0cv": { + "uv": { + "J74A": [3, 2], + "Fugt": [3, 4], + "QcTt": [0, 2], + "R5vE": [0, 4] + }, + "vertices": ["R5vE", "QcTt", "Fugt", "J74A"], + "texture": 1 + }, + "S8qFQBfU": { + "uv": { + "37AA": [1, 6], + "gFQQ": [2.6, 6], + "XL8u": [1, 7], + "NR0N": [2.6, 7] + }, + "vertices": ["NR0N", "XL8u", "gFQQ", "37AA"], + "texture": 1 + }, + "ZntA3gmm": { + "uv": { + "hEhj": [0, 4], + "37AA": [0, 2], + "zpU5": [7, 4], + "XL8u": [7, 2] + }, + "vertices": ["XL8u", "zpU5", "37AA", "hEhj"], + "texture": 1 + }, + "3IofQwIZ": { + "uv": { + "rik1": [6, 11.00031], + "hEhj": [7, 11], + "GTiL": [6, 12.75003], + "zpU5": [7, 12.74996] + }, + "vertices": ["zpU5", "GTiL", "hEhj", "rik1"], + "texture": 1 + }, + "QWX2zBDX": { + "uv": { + "gFQQ": [7, 6], + "rik1": [7, 8], + "NR0N": [0, 6], + "GTiL": [0, 8] + }, + "vertices": ["GTiL", "NR0N", "rik1", "gFQQ"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "e59b8213-b69b-c95c-e4c8-7ade84e43e61" + }, + { + "name": "cube_selection", + "color": 0, + "origin": [-6.225, 11.2, 0.06], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "SG2C": [-0.10991, -0.94398, 1.7], + "gYNL": [0.82826, -0.11843, 1.7], + "jyuv": [-0.10991, 1.51644, 1.50967], + "yjq6": [0.82826, -0.11843, 1.129], + "rpzh": [-0.10991, -0.94398, 1.129], + "1IhL": [0.82826, -0.11843, 1.06555], + "ditf": [-0.10991, -0.94398, 1.06555], + "cqaI": [0.82826, -0.11843, 0.4311], + "TtLA": [-0.10991, -0.94398, 0.4311], + "X40D": [0.82826, -0.11843, -0.1399], + "kPro": [-0.10991, -0.94398, -0.1399], + "Jqet": [0.82826, -0.11843, -0.20334], + "FbXp": [-0.10991, -0.94398, -0.20334], + "XDyQ": [0.82826, -0.11843, -0.77435], + "4PNW": [-0.10991, 1.85001, 0.46283], + "jAkr": [-0.10991, 1.85001, -0.17162], + "eeZW": [1.13648, 1.51644, 1.09727], + "v2Oq": [1.13648, 1.51644, -0.17162], + "xovw": [1.34629, -0.23699, -0.20334], + "ApEB": [1.34629, -0.23699, -0.77435], + "iOyM": [2.3037, -0.52648, -0.77435], + "DFFs": [2.3037, -0.52648, -0.20334], + "s57i": [1.34629, -0.23699, 0.4311], + "DJ8Y": [1.34629, -0.23699, -0.1399], + "Htu6": [2.3037, -0.52648, -0.1399], + "VQgu": [2.3037, -0.52648, 0.4311], + "J74A": [1.34629, -0.23699, 1.06555], + "deLA": [2.3037, -0.52648, 0.49455], + "gFQQ": [1.34629, -0.23699, 1.7], + "37AA": [1.34629, -0.23699, 1.129], + "hEhj": [2.3037, -0.52648, 1.129], + "rik1": [2.3037, -0.52648, 1.7], + "m70k": [0.82826, -0.11843, 0.49455], + "5jQS": [-0.10991, -0.94398, 0.49455], + "QgB1": [-0.10991, -0.94398, -0.77435], + "BvKq": [1.34629, -0.23699, 0.49455], + "Fugt": [2.3037, -0.52648, 1.06555], + "LJNo": [1.13648, 1.51644, -0.9171], + "pcXW": [1.13648, 1.51644, 0.46283], + "SmHE": [1.13648, 1.18286, 1.50967], + "am1B": [-0.10991, 1.85001, 1.09727], + "b0wN": [0.93383, -0.00252, -0.26679], + "QS4i": [0.93383, -0.00252, -0.7109], + "RpTK": [1.06639, 0.69724, -0.7109], + "cV7E": [1.06639, 0.69724, -0.26679], + "2qMd": [0.93383, -0.00252, 0.36766], + "P8PL": [0.93383, -0.00252, -0.07645], + "0TBa": [1.06639, 0.69724, -0.07645], + "D9wR": [1.06639, 0.69724, 0.36766], + "QcTt": [0.93383, -0.00252, 1.00211], + "oDy3": [0.93383, -0.00252, 0.55799], + "19ji": [1.06639, 0.69724, 0.55799], + "R5vE": [1.06639, 0.69724, 1.00211], + "NR0N": [0.93383, -0.00252, 1.63656], + "XL8u": [0.93383, -0.00252, 1.19244], + "zpU5": [1.06639, 0.69724, 1.19244], + "GTiL": [1.06639, 0.69724, 1.63656], + "uFwO": [0.80973, 0.30603, -0.97451], + "zDo4": [0.8635, 1.62503, -0.94836], + "P0uD": [-0.10991, 1.84175, -0.94209], + "FdPC": [0.8912, 0.27794, -1.56595], + "jFow": [-0.08005, 0.47939, -1.27015], + "IH02": [0.95019, 1.42954, -1.60324], + "PHtJ": [-0.10991, 1.64627, -1.34946], + "hwWi": [1.92901, 0.47534, 0.01751], + "I3aC": [1.96368, 1.10255, 0.01854], + "LiuJ": [1.42967, 1.18116, 0.19065], + "imCn": [1.39501, 0.55395, 0.18962], + "sKD5": [1.23826, 1.3576, -0.81471], + "wBr0": [1.18626, 0.4168, -0.81543], + "uO9x": [1.98727, 0.2989, -0.93684], + "x3rw": [2.03927, 1.23971, -0.93612], + "imkY": [-0.08005, 0.47939, -0.90075], + "BcrG": [-0.10991, 1.85001, -0.9171] + }, + "faces": { + "uo43jn6G": { + "uv": { + "gYNL": [1, 11], + "SG2C": [2.5, 11], + "jyuv": [2.5, 9], + "SmHE": [1, 9] + }, + "vertices": ["SmHE", "jyuv", "SG2C", "gYNL"], + "texture": 1 + }, + "qVUOFDNK": { + "uv": { + "GTiL": [2.2103, 7.99449], + "zpU5": [1.94526, 7.99449], + "NR0N": [2.2103, 7], + "XL8u": [1.934, 7.01463] + }, + "vertices": ["XL8u", "NR0N", "zpU5", "GTiL"], + "texture": 1 + }, + "sJ7BIjtK": { + "uv": { + "rpzh": [1.94526, 7.99449], + "ditf": [1.68022, 7.99449], + "yjq6": [1.934, 7.01463], + "1IhL": [1.65771, 7.02925] + }, + "vertices": ["1IhL", "yjq6", "ditf", "rpzh"], + "texture": 1 + }, + "Tt5do9eD": { + "uv": { + "5jQS": [1.41518, 7.99449], + "TtLA": [1.15014, 7.99449], + "m70k": [1.38141, 7.04388], + "cqaI": [1.10512, 7.0585] + }, + "vertices": ["cqaI", "m70k", "TtLA", "5jQS"], + "texture": 1 + }, + "8r7ed029": { + "uv": { + "D9wR": [1.15014, 7.99449], + "0TBa": [0.8851, 7.99449], + "2qMd": [1.10512, 7.0585], + "P8PL": [0.82883, 7.07313] + }, + "vertices": ["P8PL", "2qMd", "0TBa", "D9wR"], + "texture": 1 + }, + "hTI7CCl8": { + "uv": { + "kPro": [0.8851, 7.99449], + "FbXp": [0.62007, 7.99449], + "X40D": [0.82883, 7.07313], + "Jqet": [0.55255, 7.08775] + }, + "vertices": ["Jqet", "X40D", "FbXp", "kPro"], + "texture": 1 + }, + "9EMzfsaM": { + "uv": { + "cV7E": [0.62007, 7.99449], + "RpTK": [0.35504, 7.99449], + "b0wN": [0.55255, 7.08775], + "QS4i": [0.27626, 7.10238] + }, + "vertices": ["QS4i", "b0wN", "RpTK", "cV7E"], + "texture": 1 + }, + "1A3RrdZF": { + "uv": { + "jyuv": [0, 5], + "am1B": [0.37501, 5], + "SG2C": [0, 7], + "rpzh": [0.37501, 7] + }, + "vertices": ["rpzh", "SG2C", "am1B", "jyuv"], + "texture": 1 + }, + "Z0MHKSM1": { + "uv": { + "am1B": [0.56252, 5], + "rpzh": [0.37501, 7], + "ditf": [0.75002, 7] + }, + "vertices": ["ditf", "rpzh", "am1B"], + "texture": 1 + }, + "8RfDVw73": { + "uv": { + "4PNW": [1.31254, 5], + "5jQS": [1.12503, 7], + "TtLA": [1.50004, 7] + }, + "vertices": ["TtLA", "5jQS", "4PNW"], + "texture": 1 + }, + "b1H2Twi7": { + "uv": { + "4PNW": [1.50004, 5], + "jAkr": [1.87504, 5], + "TtLA": [1.50004, 7], + "kPro": [1.87504, 7] + }, + "vertices": ["kPro", "TtLA", "jAkr", "4PNW"], + "texture": 1 + }, + "8CzZUE6T": { + "uv": { + "jAkr": [2.06254, 5], + "kPro": [1.87504, 7], + "FbXp": [2.25004, 7] + }, + "vertices": ["FbXp", "kPro", "jAkr"], + "texture": 1 + }, + "7XOUjrqa": { + "uv": { + "jAkr": [2.25004, 5], + "BcrG": [2.62503, 5], + "FbXp": [2.25004, 7], + "QgB1": [2.62503, 7] + }, + "vertices": ["QgB1", "FbXp", "BcrG", "jAkr"], + "texture": 1 + }, + "H3nYlw5n": { + "uv": { + "pcXW": [1, 10.49996], + "v2Oq": [1, 10.12496], + "4PNW": [2.5, 10.49996], + "jAkr": [2.5, 10.12496] + }, + "vertices": ["jAkr", "4PNW", "v2Oq", "pcXW"], + "texture": 1 + }, + "3Pp5rd8r": { + "uv": { + "gYNL": [3, 10], + "yjq6": [2.62499, 10], + "SmHE": [3, 5], + "eeZW": [2.62499, 5] + }, + "vertices": ["eeZW", "SmHE", "yjq6", "gYNL"], + "texture": 1 + }, + "Ozh5CuVR": { + "uv": { + "yjq6": [2.62499, 7], + "eeZW": [2.43748, 5], + "1IhL": [2.24998, 7] + }, + "vertices": ["1IhL", "eeZW", "yjq6"], + "texture": 1 + }, + "qTnHXohn": { + "uv": { + "m70k": [1.87497, 7], + "pcXW": [1.68746, 5], + "cqaI": [1.49996, 7] + }, + "vertices": ["cqaI", "pcXW", "m70k"], + "texture": 1 + }, + "NQGq8EFs": { + "uv": { + "cqaI": [1.49996, 10], + "X40D": [1.12496, 10], + "pcXW": [1.49996, 5], + "v2Oq": [1.12496, 5] + }, + "vertices": ["v2Oq", "pcXW", "X40D", "cqaI"], + "texture": 1 + }, + "t75oHfwX": { + "uv": { + "X40D": [1.12496, 7], + "v2Oq": [0.93746, 5], + "Jqet": [0.74996, 7] + }, + "vertices": ["Jqet", "v2Oq", "X40D"], + "texture": 1 + }, + "rn9ZHqv3": { + "uv": { + "Jqet": [0.74996, 10], + "XDyQ": [0.37497, 10], + "v2Oq": [0.74996, 5], + "LJNo": [0.37497, 5] + }, + "vertices": ["LJNo", "v2Oq", "XDyQ", "Jqet"], + "texture": 1 + }, + "cWeBGtG5": { + "uv": { + "XDyQ": [0, 6], + "Jqet": [0.2767, 6], + "ApEB": [0, 7], + "xovw": [0.2767, 7] + }, + "vertices": ["xovw", "ApEB", "Jqet", "XDyQ"], + "texture": 1 + }, + "BDq08QaJ": { + "uv": { + "QgB1": [0, 4], + "XDyQ": [0, 2], + "iOyM": [2, 4], + "ApEB": [2, 2] + }, + "vertices": ["ApEB", "iOyM", "XDyQ", "QgB1"], + "texture": 1 + }, + "54OA4Vs6": { + "uv": { + "FbXp": [0, 6], + "QgB1": [0.265, 6.0001], + "DFFs": [0, 7], + "iOyM": [0.265, 7.0001] + }, + "vertices": ["iOyM", "DFFs", "QgB1", "FbXp"], + "texture": 1 + }, + "IJCofTZe": { + "uv": { + "Jqet": [2, 2], + "FbXp": [2, 4], + "xovw": [0, 2], + "DFFs": [0, 4] + }, + "vertices": ["DFFs", "xovw", "FbXp", "Jqet"], + "texture": 1 + }, + "mIvrKkMT": { + "uv": { + "X40D": [0, 6], + "cqaI": [0.2767, 6], + "DJ8Y": [0.0001, 7], + "s57i": [0.2767, 7] + }, + "vertices": ["s57i", "DJ8Y", "cqaI", "X40D"], + "texture": 1 + }, + "O7BP5dy7": { + "uv": { + "kPro": [0, 4], + "X40D": [0, 2], + "Htu6": [2, 4], + "DJ8Y": [2, 2] + }, + "vertices": ["DJ8Y", "Htu6", "X40D", "kPro"], + "texture": 1 + }, + "HxuDHg0G": { + "uv": { + "TtLA": [1, 6], + "kPro": [1.2651, 6], + "VQgu": [1, 7], + "Htu6": [1.265, 7] + }, + "vertices": ["Htu6", "VQgu", "kPro", "TtLA"], + "texture": 1 + }, + "05QRSzeb": { + "uv": { + "cqaI": [2, 2], + "TtLA": [2, 4], + "s57i": [0, 2], + "VQgu": [0, 4] + }, + "vertices": ["VQgu", "s57i", "TtLA", "cqaI"], + "texture": 1 + }, + "iCzdhyKG": { + "uv": { + "5jQS": [0, 4], + "m70k": [0, 2], + "deLA": [2, 4], + "BvKq": [2, 2] + }, + "vertices": ["BvKq", "deLA", "m70k", "5jQS"], + "texture": 1 + }, + "TUyCMWe4": { + "uv": { + "1IhL": [0.9655, 2], + "ditf": [0.9655, 4], + "J74A": [0, 2], + "Fugt": [0, 4] + }, + "vertices": ["Fugt", "J74A", "ditf", "1IhL"], + "texture": 1 + }, + "N1eMWfWU": { + "uv": { + "yjq6": [1, 6], + "gYNL": [1.2767, 6], + "37AA": [1.0001, 7], + "gFQQ": [1.2767, 7] + }, + "vertices": ["gFQQ", "37AA", "gYNL", "yjq6"], + "texture": 1 + }, + "ZgkHiEvD": { + "uv": { + "rpzh": [2, 4], + "yjq6": [2, 2], + "hEhj": [5, 4], + "37AA": [5, 2] + }, + "vertices": ["37AA", "hEhj", "yjq6", "rpzh"], + "texture": 1 + }, + "Rqvnh5JT": { + "uv": { + "SG2C": [1, 6], + "rpzh": [1.265, 6], + "rik1": [1, 7], + "hEhj": [1.265, 7] + }, + "vertices": ["hEhj", "rik1", "rpzh", "SG2C"], + "texture": 1 + }, + "NUcZO3RF": { + "uv": { + "gYNL": [2, 6], + "SG2C": [2, 8], + "gFQQ": [0, 6], + "rik1": [0, 8] + }, + "vertices": ["rik1", "gFQQ", "SG2C", "gYNL"], + "texture": 1 + }, + "duNNNzsm": { + "uv": { + "R5vE": [1.68022, 7.99449], + "19ji": [1.41518, 7.99449], + "QcTt": [1.65771, 7.02925], + "oDy3": [1.38141, 7.04388] + }, + "vertices": ["oDy3", "QcTt", "19ji", "R5vE"], + "texture": 1 + }, + "1GvS40WP": { + "uv": { + "am1B": [0.75002, 5], + "4PNW": [1.12503, 5], + "ditf": [0.75002, 7], + "5jQS": [1.12503, 7] + }, + "vertices": ["5jQS", "ditf", "4PNW", "am1B"], + "texture": 1 + }, + "ZAq6364x": { + "uv": { + "eeZW": [1, 11.24998], + "pcXW": [1, 10.87497], + "am1B": [2.5, 11.24998], + "4PNW": [2.5, 10.87497] + }, + "vertices": ["4PNW", "am1B", "pcXW", "eeZW"], + "texture": 1 + }, + "xM3u5Rgj": { + "uv": { + "v2Oq": [1, 9.74996], + "LJNo": [1, 9.37497], + "jAkr": [2.5, 9.74996], + "BcrG": [2.5, 9.37497] + }, + "vertices": ["BcrG", "jAkr", "LJNo", "v2Oq"], + "texture": 1 + }, + "sbc82oNA": { + "uv": { + "1IhL": [2.24998, 10], + "m70k": [1.87497, 10], + "eeZW": [2.24998, 5], + "pcXW": [1.87497, 5] + }, + "vertices": ["pcXW", "eeZW", "m70k", "1IhL"], + "texture": 1 + }, + "AJJPyz9R": { + "uv": { + "m70k": [1, 6], + "1IhL": [1.2766, 6], + "BvKq": [1, 7], + "J74A": [1.2767, 7] + }, + "vertices": ["J74A", "BvKq", "1IhL", "m70k"], + "texture": 1 + }, + "ZppkV46C": { + "uv": { + "ditf": [0.0001, 6], + "5jQS": [0.2651, 6], + "Fugt": [0, 7], + "deLA": [0.2651, 7] + }, + "vertices": ["deLA", "Fugt", "5jQS", "ditf"], + "texture": 1 + }, + "kCcOlvWB": { + "uv": { + "SmHE": [1, 12], + "eeZW": [1, 11.62499], + "jyuv": [2.5, 12], + "am1B": [2.5, 11.62499] + }, + "vertices": ["am1B", "jyuv", "eeZW", "SmHE"], + "texture": 1 + }, + "j8g2VQFn": { + "uv": { + "ApEB": [0, 6], + "xovw": [1.6, 6], + "QS4i": [0, 7], + "b0wN": [1.6, 7] + }, + "vertices": ["b0wN", "QS4i", "xovw", "ApEB"], + "texture": 1 + }, + "ZdfOYoQE": { + "uv": { + "iOyM": [0, 4], + "ApEB": [0, 2], + "RpTK": [7, 4], + "QS4i": [7, 2] + }, + "vertices": ["QS4i", "RpTK", "ApEB", "iOyM"], + "texture": 1 + }, + "PSd8nYdT": { + "uv": { + "DFFs": [6, 11.00031], + "iOyM": [7, 11], + "cV7E": [6, 12.75003], + "RpTK": [7, 12.74996] + }, + "vertices": ["RpTK", "cV7E", "iOyM", "DFFs"], + "texture": 1 + }, + "HIdDzpOZ": { + "uv": { + "xovw": [7, 2], + "DFFs": [7, 4], + "b0wN": [0, 2], + "cV7E": [0, 4] + }, + "vertices": ["cV7E", "b0wN", "DFFs", "xovw"], + "texture": 1 + }, + "AaDkkopW": { + "uv": { + "DJ8Y": [0, 6], + "s57i": [1.6, 6], + "P8PL": [0, 7], + "2qMd": [1.6, 7] + }, + "vertices": ["2qMd", "P8PL", "s57i", "DJ8Y"], + "texture": 1 + }, + "uDXKxApa": { + "uv": { + "Htu6": [0, 4], + "DJ8Y": [0, 2], + "0TBa": [7, 4], + "P8PL": [7, 2] + }, + "vertices": ["P8PL", "0TBa", "DJ8Y", "Htu6"], + "texture": 1 + }, + "FD3Uef8Z": { + "uv": { + "VQgu": [6, 11.00031], + "Htu6": [7, 11], + "D9wR": [6, 12.75003], + "0TBa": [7, 12.74996] + }, + "vertices": ["0TBa", "D9wR", "Htu6", "VQgu"], + "texture": 1 + }, + "znTdIdv8": { + "uv": { + "s57i": [7, 2], + "VQgu": [7, 4], + "2qMd": [0, 2], + "D9wR": [0, 4] + }, + "vertices": ["D9wR", "2qMd", "VQgu", "s57i"], + "texture": 1 + }, + "HBqfAJ9G": { + "uv": { + "BvKq": [0, 6], + "J74A": [1.6, 6], + "oDy3": [0, 7], + "QcTt": [1.6, 7] + }, + "vertices": ["QcTt", "oDy3", "J74A", "BvKq"], + "texture": 1 + }, + "xTS24TAq": { + "uv": { + "deLA": [0, 4], + "BvKq": [0, 2], + "19ji": [7, 4], + "oDy3": [7, 2] + }, + "vertices": ["oDy3", "19ji", "BvKq", "deLA"], + "texture": 1 + }, + "Ee6LZNK0": { + "uv": { + "Fugt": [6, 11.00031], + "deLA": [7, 11], + "R5vE": [6, 12.75003], + "19ji": [7, 12.74996] + }, + "vertices": ["19ji", "R5vE", "deLA", "Fugt"], + "texture": 1 + }, + "DGmdf0cv": { + "uv": { + "J74A": [3, 2], + "Fugt": [3, 4], + "QcTt": [0, 2], + "R5vE": [0, 4] + }, + "vertices": ["R5vE", "QcTt", "Fugt", "J74A"], + "texture": 1 + }, + "S8qFQBfU": { + "uv": { + "37AA": [1, 6], + "gFQQ": [2.6, 6], + "XL8u": [1, 7], + "NR0N": [2.6, 7] + }, + "vertices": ["NR0N", "XL8u", "gFQQ", "37AA"], + "texture": 1 + }, + "ZntA3gmm": { + "uv": { + "hEhj": [0, 4], + "37AA": [0, 2], + "zpU5": [7, 4], + "XL8u": [7, 2] + }, + "vertices": ["XL8u", "zpU5", "37AA", "hEhj"], + "texture": 1 + }, + "3IofQwIZ": { + "uv": { + "rik1": [6, 11.00031], + "hEhj": [7, 11], + "GTiL": [6, 12.75003], + "zpU5": [7, 12.74996] + }, + "vertices": ["zpU5", "GTiL", "hEhj", "rik1"], + "texture": 1 + }, + "QWX2zBDX": { + "uv": { + "gFQQ": [7, 6], + "rik1": [7, 8], + "NR0N": [0, 6], + "GTiL": [0, 8] + }, + "vertices": ["GTiL", "NR0N", "rik1", "gFQQ"], + "texture": 1 + }, + "LPkiykfM": { + "uv": { + "PHtJ": [0, 8], + "IH02": [0.97555, 8.32384], + "jFow": [0, 10.09977], + "FdPC": [0.66457, 9.53063] + }, + "vertices": ["FdPC", "jFow", "IH02", "PHtJ"], + "texture": 1 + }, + "lCBsAgW1": { + "uv": { + "XDyQ": [0.00004, 3], + "LJNo": [1.2462, 3.0001], + "zDo4": [1.24616, 4.00007], + "uFwO": [0, 4.00007] + }, + "vertices": ["uFwO", "zDo4", "LJNo", "XDyQ"], + "texture": 1 + }, + "nCpQvssq": { + "uv": { + "QgB1": [0.00001, 2.00001], + "XDyQ": [0.87503, 2], + "uFwO": [0.87503, 3], + "imkY": [0, 2.99992] + }, + "vertices": ["imkY", "uFwO", "XDyQ", "QgB1"], + "texture": 1 + }, + "ggILVg96": { + "uv": { + "BcrG": [0.99925, 2], + "QgB1": [0.99935, 4.10127], + "imkY": [0, 4.13803], + "P0uD": [0, 2.03686] + }, + "vertices": ["P0uD", "imkY", "QgB1", "BcrG"], + "texture": 1 + }, + "E1MPoFB6": { + "uv": { + "LJNo": [0.00003, 3.07737], + "BcrG": [1.02791, 3], + "P0uD": [1.02791, 4.00001], + "zDo4": [0, 4.07729] + }, + "vertices": ["zDo4", "P0uD", "BcrG", "LJNo"], + "texture": 1 + }, + "3jltagHl": { + "uv": { + "imCn": [0.00001, 8.02389], + "LiuJ": [0.47057, 8], + "I3aC": [0.47057, 8.50008], + "hwWi": [0, 8.52387] + }, + "vertices": ["hwWi", "I3aC", "LiuJ", "imCn"], + "texture": 1 + }, + "jddiASSr": { + "uv": { + "imkY": [0.00006, 8], + "uFwO": [0.69811, 8], + "FdPC": [0.69805, 8.49998], + "jFow": [0, 8.49998] + }, + "vertices": ["jFow", "FdPC", "uFwO", "imkY"], + "texture": 1 + }, + "lGMv7vdj": { + "uv": { + "P0uD": [0.99751, 7.5], + "imkY": [0.9976, 8.05389], + "jFow": [0, 8.08862], + "PHtJ": [0, 7.53479] + }, + "vertices": ["PHtJ", "jFow", "imkY", "P0uD"], + "texture": 1 + }, + "hBH2eAfT": { + "uv": { + "zDo4": [0.00007, 7.53847], + "P0uD": [1.00559, 7.5], + "PHtJ": [1.00559, 8.00003], + "IH02": [0, 8.03847] + }, + "vertices": ["IH02", "PHtJ", "P0uD", "zDo4"], + "texture": 1 + }, + "yZseB82b": { + "uv": { + "FdPC": [0, 7.24962], + "x3rw": [0.83087, 7.12481], + "uO9x": [0.12411, 7.12481], + "IH02": [0.94235, 7.24962] + }, + "vertices": ["IH02", "uO9x", "x3rw", "FdPC"], + "texture": 1 + }, + "GtbKnaxO": { + "uv": { + "IH02": [0.23527, 8.99997], + "sKD5": [0.1177, 8.13092], + "x3rw": [0.11764, 8.88095], + "zDo4": [0.2354, 8] + }, + "vertices": ["zDo4", "x3rw", "sKD5", "IH02"], + "texture": 1 + }, + "cnFcb0TN": { + "uv": { + "zDo4": [0.94245, 8.00019], + "wBr0": [0.11145, 8.12488], + "sKD5": [0.81826, 8.12498], + "uFwO": [0, 8] + }, + "vertices": ["uFwO", "sKD5", "wBr0", "zDo4"], + "texture": 1 + }, + "JkJlzjX5": { + "uv": { + "uFwO": [0, 8], + "uO9x": [0.11765, 8.86904], + "wBr0": [0.11765, 8.11907], + "FdPC": [0, 8.99996] + }, + "vertices": ["FdPC", "wBr0", "uO9x", "uFwO"], + "texture": 1 + }, + "3xEFF5Dl": { + "uv": { + "imCn": [0.22291, 8.24977], + "wBr0": [0.11145, 8.12488], + "sKD5": [0.81826, 8.12498], + "LiuJ": [0.69408, 8.24977] + }, + "vertices": ["LiuJ", "sKD5", "wBr0", "imCn"], + "texture": 1 + }, + "AEczQLbv": { + "uv": { + "hwWi": [0.23529, 8.73812], + "uO9x": [0.11765, 8.86904], + "wBr0": [0.11765, 8.11907], + "imCn": [0.23529, 8.23814] + }, + "vertices": ["imCn", "wBr0", "uO9x", "hwWi"], + "texture": 1 + }, + "j1CKaqHy": { + "uv": { + "I3aC": [7, 12.74996], + "x3rw": [7, 11], + "uO9x": [6, 11.00031], + "hwWi": [6, 12.75003] + }, + "vertices": ["hwWi", "uO9x", "x3rw", "I3aC"], + "texture": 1 + }, + "3V03UFgu": { + "uv": { + "LiuJ": [0, 8.26185], + "sKD5": [0.1177, 8.13092], + "x3rw": [0.11764, 8.88095], + "I3aC": [0, 8.76193] + }, + "vertices": ["I3aC", "x3rw", "sKD5", "LiuJ"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "92f7a675-d5dd-e014-4501-2f70b0840d8f" + }, + { + "name": "beveled_cuboid", + "color": 0, + "origin": [0, 22.5, 0.5], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "nRtA": [5.5, 2.4, 2], + "HKzj": [6.5, 2.4, -1], + "atb6": [5, 7, -1.5], + "IIAg": [5, 6, 2], + "qiS7": [6, 6, -1], + "lfg1": [4.58333, 3.3, 2], + "1irU": [5.41667, 3.3, -1], + "M0ec": [-2, 9, 1.23333], + "IAo2": [2, 9, 1.23333], + "JRyA": [2, 9, -3.5], + "ObOL": [-3.25, -0.3, 2], + "K2EH": [-3.25, -0.3, -3], + "NqGD": [3.25, -0.3, 2], + "AuK9": [3.25, -0.3, -3], + "G1kE": [-5.5, 2.4, 2], + "PL7v": [-4, 7, 1.23333], + "60Ss": [-6.5, 2.4, -1], + "V1Br": [-5, 7, -1.5], + "ouxt": [-3.25, 2.4, -3], + "RAZR": [3.25, 2.4, -3], + "unoP": [3, 6.5, -4.5], + "MJz9": [-3.25, 1.5, 3.53333], + "MX70": [-2, 7, 3.53333], + "bXUe": [3.25, 1.5, 3.53333], + "zSzG": [2, 7, 3.53333], + "fAPL": [0, 8.5, 1.23333], + "e56T": [0, 6.5, 2.76667], + "sKcO": [0, 2.4, 3.53333], + "hNvR": [0, -0.3, 3.53333], + "u8tX": [0, -1, 0], + "a6aS": [0, 2, 0], + "2RLb": [-5, 6, 2], + "6Jek": [-6, 6, -1], + "gdiW": [-4.58333, 3.3, 2], + "u6zJ": [-5.41667, 3.3, -1], + "c7uX": [-2.16667, 3.3, -2], + "cjQU": [0, 5.5, -3], + "mzcb": [0, 3, -2], + "PLKL": [3, 5.5, -3], + "3TVS": [2.16667, 3.3, -2], + "CdSL": [2, 6, 4.3], + "0jxk": [2.16667, 3.3, 3.53333], + "q366": [0, 5, 3.53333], + "AtRM": [-2, 6, 4.3], + "HHgF": [-2.16667, 3.3, 3.53333], + "Myox": [-3, 5.5, -3], + "V36R": [4, 7, 1.23333], + "CGra": [-3, 6.5, -4.5], + "cR3b": [0, 7, -4], + "bQnE": [-2, 9, -3.5], + "X9Qh": [0, 8.5, -1.5], + "8BgX": [5.41667, -0.3, -0.3], + "g22f": [-5.41667, -0.3, -0.3], + "fW13": [5.5, 2.4, 0.46667], + "W1cp": [-5.5, 2.4, 0.46667], + "F0eM": [0, 3.3, 3.53333] + }, + "faces": { + "XlRI64zX": { + "uv": { + "HKzj": [12, 36], + "3TVS": [20.4852, 32], + "1irU": [12, 32], + "RAZR": [20.4852, 36] + }, + "vertices": ["RAZR", "1irU", "3TVS", "HKzj"], + "texture": 1 + }, + "Bvx3KSQ8": { + "uv": { + "bXUe": [12, 36], + "lfg1": [20.4852, 32], + "0jxk": [12, 32], + "nRtA": [20.4852, 36] + }, + "vertices": ["nRtA", "0jxk", "lfg1", "bXUe"], + "texture": 1 + }, + "Wfsdspjc": { + "uv": { + "RAZR": [12, 24], + "a6aS": [18, 24], + "u8tX": [18, 32.4852], + "AuK9": [12, 32.4852] + }, + "vertices": ["AuK9", "u8tX", "a6aS", "RAZR"], + "texture": 1 + }, + "Hsb9lP1r": { + "uv": { + "mzcb": [18, 32], + "3TVS": [12, 32], + "a6aS": [18, 36] + }, + "vertices": ["a6aS", "3TVS", "mzcb"], + "texture": 1 + }, + "uIY56rQz": { + "uv": { + "unoP": [20.4852, 24], + "PLKL": [20.4852, 28], + "qiS7": [12, 28], + "atb6": [12, 24] + }, + "vertices": ["atb6", "qiS7", "PLKL", "unoP"], + "texture": 1 + }, + "5FKRYI3V": { + "uv": { + "cjQU": [18, 28], + "mzcb": [18, 32], + "3TVS": [12, 32], + "PLKL": [12, 28] + }, + "vertices": ["PLKL", "3TVS", "mzcb", "cjQU"], + "texture": 1 + }, + "eXcZuUvz": { + "uv": { + "CGra": [24, 24], + "Myox": [24, 28], + "cjQU": [18, 28], + "cR3b": [18, 24] + }, + "vertices": ["cR3b", "cjQU", "Myox", "CGra"], + "texture": 1 + }, + "uGtAbqWt": { + "uv": { + "V36R": [20.4852, 24], + "IIAg": [20.4852, 28], + "CdSL": [12, 28], + "zSzG": [12, 24] + }, + "vertices": ["zSzG", "CdSL", "IIAg", "V36R"], + "texture": 1 + }, + "dvg7wrc8": { + "uv": { + "IIAg": [20.4852, 28], + "lfg1": [20.4852, 32], + "0jxk": [12, 32], + "CdSL": [12, 28] + }, + "vertices": ["CdSL", "0jxk", "lfg1", "IIAg"], + "texture": 1 + }, + "jpE4waHR": { + "uv": { + "bXUe": [12, 36], + "F0eM": [18, 32], + "sKcO": [18, 36], + "0jxk": [12, 32] + }, + "vertices": ["0jxk", "sKcO", "F0eM", "bXUe"], + "texture": 1 + }, + "rNgnycNY": { + "uv": { + "60Ss": [12, 36], + "c7uX": [20.4852, 32], + "ouxt": [20.4852, 36], + "u6zJ": [12, 32] + }, + "vertices": ["u6zJ", "ouxt", "c7uX", "60Ss"], + "texture": 1 + }, + "oXTBQ0go": { + "uv": { + "MJz9": [12, 36], + "gdiW": [20.4852, 32], + "G1kE": [20.4852, 36], + "HHgF": [12, 32] + }, + "vertices": ["HHgF", "G1kE", "gdiW", "MJz9"], + "texture": 1 + }, + "NkpoULpW": { + "uv": { + "MJz9": [12, 24], + "ObOL": [16.2426, 31.3485], + "G1kE": [20.4852, 24] + }, + "vertices": ["G1kE", "ObOL", "MJz9"], + "texture": 1 + }, + "ptkcYubx": { + "uv": { + "60Ss": [12, 24], + "K2EH": [16.2426, 31.3485], + "ouxt": [20.4852, 24] + }, + "vertices": ["ouxt", "K2EH", "60Ss"], + "texture": 1 + }, + "tAkUN8OB": { + "uv": { + "CGra": [20.4852, 31.3485], + "bQnE": [16.2426, 24], + "V1Br": [12, 31.3485] + }, + "vertices": ["V1Br", "bQnE", "CGra"], + "texture": 1 + }, + "ascq3pS6": { + "uv": { + "ObOL": [24, 32.4852], + "hNvR": [18, 32.4852], + "MJz9": [24, 24], + "sKcO": [18, 24] + }, + "vertices": ["sKcO", "MJz9", "hNvR", "ObOL"], + "texture": 1 + }, + "91f47cmd": { + "uv": { + "ouxt": [12, 24], + "a6aS": [18, 24], + "K2EH": [12, 32.4852], + "u8tX": [18, 32.4852] + }, + "vertices": ["u8tX", "K2EH", "a6aS", "ouxt"], + "texture": 1 + }, + "LI6QKWgA": { + "uv": { + "mzcb": [18, 32], + "a6aS": [18, 36], + "c7uX": [12, 32] + }, + "vertices": ["c7uX", "a6aS", "mzcb"], + "texture": 1 + }, + "EP7fxHI2": { + "uv": { + "CGra": [20.4852, 24], + "Myox": [20.4852, 28], + "V1Br": [12, 24], + "6Jek": [12, 28] + }, + "vertices": ["6Jek", "V1Br", "Myox", "CGra"], + "texture": 1 + }, + "MEaPz4wx": { + "uv": { + "Myox": [20.4852, 28], + "c7uX": [20.4852, 32], + "6Jek": [12, 28], + "u6zJ": [12, 32] + }, + "vertices": ["u6zJ", "6Jek", "c7uX", "Myox"], + "texture": 1 + }, + "MLFtZYEY": { + "uv": { + "PL7v": [20.4852, 24], + "2RLb": [20.4852, 28], + "MX70": [12, 24], + "AtRM": [12, 28] + }, + "vertices": ["AtRM", "MX70", "2RLb", "PL7v"], + "texture": 1 + }, + "D1bHu5Yq": { + "uv": { + "2RLb": [20.4852, 28], + "gdiW": [20.4852, 32], + "AtRM": [12, 28], + "HHgF": [12, 32] + }, + "vertices": ["HHgF", "AtRM", "gdiW", "2RLb"], + "texture": 1 + }, + "2Gh176IV": { + "uv": { + "M0ec": [24, 36], + "fAPL": [18, 36], + "bQnE": [24, 24], + "X9Qh": [18, 24] + }, + "vertices": ["X9Qh", "bQnE", "fAPL", "M0ec"], + "texture": 1 + }, + "E2M2TQPx": { + "uv": { + "M0ec": [12, 24], + "e56T": [18, 32.4852], + "fAPL": [18, 24], + "MX70": [12, 32.4852] + }, + "vertices": ["MX70", "fAPL", "e56T", "M0ec"], + "texture": 1 + }, + "3P2ilM5v": { + "uv": { + "PL7v": [20.4852, 31.3485], + "M0ec": [16.2426, 24], + "MX70": [12, 31.3485] + }, + "vertices": ["MX70", "M0ec", "PL7v"], + "texture": 1 + }, + "awcD0ekw": { + "uv": { + "e56T": [18, 24], + "q366": [18, 28], + "zSzG": [12, 24], + "CdSL": [12, 28] + }, + "vertices": ["CdSL", "zSzG", "q366", "e56T"], + "texture": 1 + }, + "tKsPKYcs": { + "uv": { + "AtRM": [20.4852, 28], + "HHgF": [20.4852, 32], + "q366": [12, 28], + "F0eM": [12, 32] + }, + "vertices": ["F0eM", "q366", "HHgF", "AtRM"], + "texture": 1 + }, + "40c9jrX1": { + "uv": { + "bXUe": [12, 24], + "nRtA": [20.4852, 24], + "NqGD": [16.2426, 31.3485] + }, + "vertices": ["NqGD", "nRtA", "bXUe"], + "texture": 1 + }, + "BrYRq1kF": { + "uv": { + "HKzj": [12, 24], + "RAZR": [20.4852, 24], + "AuK9": [16.2426, 31.3485] + }, + "vertices": ["AuK9", "RAZR", "HKzj"], + "texture": 1 + }, + "ebjxlHBT": { + "uv": { + "zSzG": [20.4852, 31.3485], + "IAo2": [16.2426, 24], + "V36R": [12, 31.3485] + }, + "vertices": ["V36R", "IAo2", "zSzG"], + "texture": 1 + }, + "XVfNLuo2": { + "uv": { + "IAo2": [24, 36], + "fAPL": [18, 36], + "X9Qh": [18, 24], + "JRyA": [24, 24] + }, + "vertices": ["JRyA", "X9Qh", "fAPL", "IAo2"], + "texture": 1 + }, + "3eV34Bju": { + "uv": { + "qiS7": [24, 28], + "1irU": [24, 32], + "lfg1": [12, 32], + "IIAg": [12, 28] + }, + "vertices": ["IIAg", "lfg1", "1irU", "qiS7"], + "texture": 1 + }, + "CmakFnra": { + "uv": { + "V1Br": [24, 24], + "6Jek": [24, 28], + "PL7v": [12, 24], + "2RLb": [12, 28] + }, + "vertices": ["2RLb", "PL7v", "6Jek", "V1Br"], + "texture": 1 + }, + "Y0WIFXdT": { + "uv": { + "6Jek": [24, 28], + "u6zJ": [24, 32], + "2RLb": [12, 28], + "gdiW": [12, 32] + }, + "vertices": ["gdiW", "2RLb", "u6zJ", "6Jek"], + "texture": 1 + }, + "VXIdoRA6": { + "uv": { + "V1Br": [24, 32.4852], + "PL7v": [12, 32.4852], + "bQnE": [24, 24], + "M0ec": [12, 24] + }, + "vertices": ["M0ec", "bQnE", "PL7v", "V1Br"], + "texture": 1 + }, + "46l4h7UY": { + "uv": { + "RAZR": [12, 36], + "a6aS": [18, 36], + "3TVS": [12, 32] + }, + "vertices": ["3TVS", "a6aS", "RAZR"], + "texture": 1 + }, + "8yQWsYCM": { + "uv": { + "ouxt": [12, 36], + "c7uX": [12, 32], + "a6aS": [18, 36] + }, + "vertices": ["a6aS", "c7uX", "ouxt"], + "texture": 1 + }, + "NAzZlmdm": { + "uv": { + "F0eM": [12, 32], + "0jxk": [20.4852, 32], + "q366": [12, 28], + "CdSL": [20.4852, 28] + }, + "vertices": ["CdSL", "q366", "0jxk", "F0eM"], + "texture": 1 + }, + "JVFRlG55": { + "uv": { + "PLKL": [20.4852, 28], + "3TVS": [20.4852, 32], + "1irU": [12, 32], + "qiS7": [12, 28] + }, + "vertices": ["qiS7", "1irU", "3TVS", "PLKL"], + "texture": 1 + }, + "2EuwwWsQ": { + "uv": { + "cjQU": [18, 28], + "mzcb": [18, 32], + "Myox": [12, 28], + "c7uX": [12, 32] + }, + "vertices": ["c7uX", "Myox", "mzcb", "cjQU"], + "texture": 1 + }, + "8Dols5yS": { + "uv": { + "unoP": [24, 24], + "PLKL": [24, 28], + "cR3b": [18, 24], + "cjQU": [18, 28] + }, + "vertices": ["cjQU", "cR3b", "PLKL", "unoP"], + "texture": 1 + }, + "bhHdqtbH": { + "uv": { + "atb6": [24, 32.4852], + "V36R": [12, 32.4852], + "IAo2": [12, 24], + "JRyA": [24, 24] + }, + "vertices": ["JRyA", "IAo2", "V36R", "atb6"], + "texture": 1 + }, + "AD7nlcfQ": { + "uv": { + "unoP": [20.4852, 31.3485], + "atb6": [12, 31.3485], + "JRyA": [16.2426, 24] + }, + "vertices": ["JRyA", "atb6", "unoP"], + "texture": 1 + }, + "IvwkQUMb": { + "uv": { + "atb6": [24, 24], + "qiS7": [24, 28], + "IIAg": [12, 28], + "V36R": [12, 24] + }, + "vertices": ["V36R", "IIAg", "qiS7", "atb6"], + "texture": 1 + }, + "enmHNRK7": { + "uv": { + "IAo2": [12, 24], + "e56T": [18, 32.4852], + "zSzG": [12, 32.4852], + "fAPL": [18, 24] + }, + "vertices": ["fAPL", "zSzG", "e56T", "IAo2"], + "texture": 1 + }, + "YeeAaglJ": { + "uv": { + "q366": [18, 28], + "e56T": [18, 24], + "AtRM": [12, 28], + "MX70": [12, 24] + }, + "vertices": ["MX70", "AtRM", "e56T", "q366"], + "texture": 1 + }, + "uJSCc31g": { + "uv": { + "MJz9": [12, 36], + "F0eM": [18, 32], + "HHgF": [12, 32], + "sKcO": [18, 36] + }, + "vertices": ["sKcO", "HHgF", "F0eM", "MJz9"], + "texture": 1 + }, + "6fDezgB5": { + "uv": { + "bXUe": [12, 24], + "hNvR": [18, 32.4852], + "NqGD": [12, 32.4852], + "sKcO": [18, 24] + }, + "vertices": ["sKcO", "NqGD", "hNvR", "bXUe"], + "texture": 1 + }, + "4ZxKoyN9": { + "uv": { + "X9Qh": [18, 24], + "JRyA": [12, 24], + "cR3b": [18, 32.4852], + "unoP": [12, 32.4852] + }, + "vertices": ["unoP", "cR3b", "JRyA", "X9Qh"], + "texture": 1 + }, + "YV2q3dvR": { + "uv": { + "X9Qh": [18, 24], + "bQnE": [12, 24], + "CGra": [12, 32.4852], + "cR3b": [18, 32.4852] + }, + "vertices": ["cR3b", "CGra", "bQnE", "X9Qh"], + "texture": 1 + }, + "jupNCUlv": { + "uv": { + "lfg1": [12, 32], + "fW13": [18, 36], + "1irU": [24, 32], + "HKzj": [24, 36] + }, + "vertices": ["HKzj", "1irU", "fW13", "lfg1"], + "texture": 1 + }, + "jHmEZsEr": { + "uv": { + "8BgX": [12, 28.8], + "NqGD": [12, 24], + "u8tX": [18, 36], + "hNvR": [18, 24] + }, + "vertices": ["hNvR", "u8tX", "NqGD", "8BgX"], + "texture": 1 + }, + "PPv9hxAq": { + "uv": { + "8BgX": [12, 28.8], + "AuK9": [12, 36], + "u8tX": [18, 36] + }, + "vertices": ["u8tX", "AuK9", "8BgX"], + "texture": 1 + }, + "UJxgdDr0": { + "uv": { + "8BgX": [18, 32.4852], + "fW13": [16, 24], + "NqGD": [12, 32.4852], + "nRtA": [12, 24] + }, + "vertices": ["nRtA", "NqGD", "fW13", "8BgX"], + "texture": 1 + }, + "YuwygFwy": { + "uv": { + "fW13": [16, 24], + "HKzj": [24, 24], + "AuK9": [24, 32.4852], + "8BgX": [18, 32.4852] + }, + "vertices": ["8BgX", "AuK9", "HKzj", "fW13"], + "texture": 1 + }, + "5sJwjUlC": { + "uv": { + "60Ss": [24, 36], + "W1cp": [18, 36], + "u6zJ": [24, 32], + "gdiW": [12, 32] + }, + "vertices": ["gdiW", "u6zJ", "W1cp", "60Ss"], + "texture": 1 + }, + "ARmjJE9z": { + "uv": { + "W1cp": [16, 24], + "60Ss": [24, 24], + "g22f": [18, 32.4852], + "K2EH": [24, 32.4852] + }, + "vertices": ["K2EH", "g22f", "60Ss", "W1cp"], + "texture": 1 + }, + "TeRiujXD": { + "uv": { + "G1kE": [12, 24], + "W1cp": [16, 24], + "ObOL": [12, 32.4852], + "g22f": [18, 32.4852] + }, + "vertices": ["g22f", "ObOL", "W1cp", "G1kE"], + "texture": 1 + }, + "4awkYW1q": { + "uv": { + "g22f": [24, 31.2], + "ObOL": [24, 24], + "hNvR": [18, 24], + "u8tX": [18, 36] + }, + "vertices": ["u8tX", "hNvR", "ObOL", "g22f"], + "texture": 1 + }, + "VVTmef0H": { + "uv": { + "u8tX": [18, 36], + "K2EH": [24, 36], + "g22f": [24, 31.2] + }, + "vertices": ["g22f", "K2EH", "u8tX"], + "texture": 1 + }, + "Gs9c1B2L": { + "uv": { + "fW13": [18, 36], + "nRtA": [12, 36], + "lfg1": [12, 32] + }, + "vertices": ["lfg1", "nRtA", "fW13"], + "texture": 1 + }, + "Ts9u9Db3": { + "uv": { + "gdiW": [12, 32], + "G1kE": [12, 36], + "W1cp": [18, 36] + }, + "vertices": ["W1cp", "G1kE", "gdiW"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "37bab61f-3c16-71cc-fa8a-bae5c0bee841" + }, + { + "name": "cracks", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-9, 0, -19], + "to": [9, 0, -7], + "autouv": 0, + "color": 2, + "visibility": false, + "origin": [0, 0, -9], + "faces": { + "north": { + "uv": [0, 0, 18, 0] + }, + "east": { + "uv": [0, 0, 12, 0] + }, + "south": { + "uv": [0, 0, 18, 0] + }, + "west": { + "uv": [0, 0, 12, 0] + }, + "up": { + "uv": [18, 12, 0, 0] + }, + "down": { + "uv": [18, 12, 0, 24] + } + }, + "type": "cube", + "uuid": "0d41ca09-736e-56df-7902-f4493f19863e" + }, + { + "name": "inner", + "color": 8, + "origin": [0, 0, -13], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "8QjC": [0, -8, 0], + "u9P6": [0, 8, 0], + "3ZDT": [1.0718, 6.9282, 4], + "zNGN": [1.85641, 4, 6.9282], + "73Hf": [2.14359, 0, 8], + "4ExO": [1.85641, -4, 6.9282], + "f7le": [1.0718, -6.9282, 4], + "d0Pu": [2.9282, 6.9282, 2.9282], + "C5s3": [5.0718, 4, 5.0718], + "IS5N": [5.85641, 0, 5.85641], + "KeJY": [5.0718, -4, 5.0718], + "QpFb": [2.9282, -6.9282, 2.9282], + "8WEL": [4, 6.9282, 1.0718], + "KBoA": [6.9282, 4, 1.85641], + "UZLZ": [8, 0, 2.14359], + "S7bZ": [6.9282, -4, 1.85641], + "yocC": [4, -6.9282, 1.0718], + "8QT3": [4, 6.9282, -1.0718], + "W8jt": [6.9282, 4, -1.85641], + "TP88": [8, 0, -2.14359], + "OJX9": [6.9282, -4, -1.85641], + "PZ0f": [4, -6.9282, -1.0718], + "rlja": [2.9282, 6.9282, -2.9282], + "ddkb": [5.0718, 4, -5.0718], + "Phwt": [5.85641, 0, -5.85641], + "qhSG": [5.0718, -4, -5.0718], + "2KFR": [2.9282, -6.9282, -2.9282], + "UuWY": [1.0718, 6.9282, -4], + "rIID": [1.85641, 4, -6.9282], + "2eBc": [2.14359, 0, -8], + "baM3": [1.85641, -4, -6.9282], + "35RP": [1.0718, -6.9282, -4], + "b4mn": [-1.0718, 6.9282, -4], + "aLVc": [-1.85641, 4, -6.9282], + "KcNg": [-2.14359, 0, -8], + "ar6O": [-1.85641, -4, -6.9282], + "fZGN": [-1.0718, -6.9282, -4], + "nv85": [-2.9282, 6.9282, -2.9282], + "P9rX": [-5.0718, 4, -5.0718], + "LfAz": [-5.85641, 0, -5.85641], + "Aldt": [-5.0718, -4, -5.0718], + "arCH": [-2.9282, -6.9282, -2.9282], + "azgg": [-4, 6.9282, -1.0718], + "5mdt": [-6.9282, 4, -1.85641], + "f4nL": [-8, 0, -2.14359], + "IW10": [-6.9282, -4, -1.85641], + "Vgik": [-4, -6.9282, -1.0718], + "VqHR": [-4, 6.9282, 1.0718], + "lr5A": [-6.9282, 4, 1.85641], + "F9rK": [-8, 0, 2.14359], + "pQvi": [-6.9282, -4, 1.85641], + "54OX": [-4, -6.9282, 1.0718], + "bC6k": [-2.9282, 6.9282, 2.9282], + "64eD": [-5.0718, 4, 5.0718], + "8Z7A": [-5.85641, 0, 5.85641], + "nnBx": [-5.0718, -4, 5.0718], + "sdgs": [-2.9282, -6.9282, 2.9282], + "B9HA": [-1.0718, 6.9282, 4], + "YR9K": [-1.85641, 4, 6.9282], + "rBqN": [-2.14359, 0, 8], + "G7iR": [-1.85641, -4, 6.9282], + "G7Yn": [-1.0718, -6.9282, 4] + }, + "faces": { + "ZngK3IpC": { + "uv": { + "u9P6": [0.25, 0.75], + "d0Pu": [0.25, 0.25], + "3ZDT": [0.75, 0.25] + }, + "vertices": ["3ZDT", "d0Pu", "u9P6"], + "texture": 15 + }, + "L46i6DN5": { + "uv": { + "d0Pu": [1.75, 0.75], + "3ZDT": [1.75, 0.25], + "C5s3": [1.25, 0.75], + "zNGN": [1.25, 0.25] + }, + "vertices": ["zNGN", "C5s3", "3ZDT", "d0Pu"], + "texture": 15 + }, + "eNbWbFkk": { + "uv": { + "C5s3": [2.75, 0.75], + "zNGN": [2.75, 0.25], + "IS5N": [2.25, 0.75], + "73Hf": [2.25, 0.25] + }, + "vertices": ["73Hf", "IS5N", "zNGN", "C5s3"], + "texture": 15 + }, + "roTqvBDD": { + "uv": { + "IS5N": [3.75, 0.75], + "73Hf": [3.75, 0.25], + "KeJY": [3.25, 0.75], + "4ExO": [3.25, 0.25] + }, + "vertices": ["4ExO", "KeJY", "73Hf", "IS5N"], + "texture": 15 + }, + "H5SeHMdG": { + "uv": { + "KeJY": [4.75, 0.75], + "4ExO": [4.75, 0.25], + "QpFb": [4.25, 0.75], + "f7le": [4.25, 0.25] + }, + "vertices": ["f7le", "QpFb", "4ExO", "KeJY"], + "texture": 15 + }, + "9fOaMI7A": { + "uv": { + "8QjC": [5.25, 0.75], + "f7le": [5.25, 0.25], + "QpFb": [5.75, 0.25] + }, + "vertices": ["QpFb", "f7le", "8QjC"], + "texture": 15 + }, + "eHg0Xk2X": { + "uv": { + "u9P6": [6.25, 0.75], + "8WEL": [6.25, 0.25], + "d0Pu": [6.75, 0.25] + }, + "vertices": ["d0Pu", "8WEL", "u9P6"], + "texture": 15 + }, + "sRhLlJHL": { + "uv": { + "8WEL": [7.75, 0.75], + "d0Pu": [7.75, 0.25], + "KBoA": [7.25, 0.75], + "C5s3": [7.25, 0.25] + }, + "vertices": ["C5s3", "KBoA", "d0Pu", "8WEL"], + "texture": 15 + }, + "1hmcvGBk": { + "uv": { + "KBoA": [8.75, 0.75], + "C5s3": [8.75, 0.25], + "UZLZ": [8.25, 0.75], + "IS5N": [8.25, 0.25] + }, + "vertices": ["IS5N", "UZLZ", "C5s3", "KBoA"], + "texture": 15 + }, + "O4BJvLoN": { + "uv": { + "UZLZ": [9.75, 0.75], + "IS5N": [9.75, 0.25], + "S7bZ": [9.25, 0.75], + "KeJY": [9.25, 0.25] + }, + "vertices": ["KeJY", "S7bZ", "IS5N", "UZLZ"], + "texture": 15 + }, + "kx9KAAPA": { + "uv": { + "S7bZ": [10.75, 0.75], + "KeJY": [10.75, 0.25], + "yocC": [10.25, 0.75], + "QpFb": [10.25, 0.25] + }, + "vertices": ["QpFb", "yocC", "KeJY", "S7bZ"], + "texture": 15 + }, + "7xBzzsZo": { + "uv": { + "8QjC": [11.25, 0.75], + "QpFb": [11.25, 0.25], + "yocC": [11.75, 0.25] + }, + "vertices": ["yocC", "QpFb", "8QjC"], + "texture": 15 + }, + "uVFCvy3R": { + "uv": { + "u9P6": [12.25, 0.75], + "8QT3": [12.25, 0.25], + "8WEL": [12.75, 0.25] + }, + "vertices": ["8WEL", "8QT3", "u9P6"], + "texture": 15 + }, + "WaNtzBKB": { + "uv": { + "8QT3": [13.75, 0.75], + "8WEL": [13.75, 0.25], + "W8jt": [13.25, 0.75], + "KBoA": [13.25, 0.25] + }, + "vertices": ["KBoA", "W8jt", "8WEL", "8QT3"], + "texture": 15 + }, + "vTSW5OcT": { + "uv": { + "W8jt": [14.75, 0.75], + "KBoA": [14.75, 0.25], + "TP88": [14.25, 0.75], + "UZLZ": [14.25, 0.25] + }, + "vertices": ["UZLZ", "TP88", "KBoA", "W8jt"], + "texture": 15 + }, + "TUIIt1x5": { + "uv": { + "TP88": [15.75, 0.75], + "UZLZ": [15.75, 0.25], + "OJX9": [15.25, 0.75], + "S7bZ": [15.25, 0.25] + }, + "vertices": ["S7bZ", "OJX9", "UZLZ", "TP88"], + "texture": 15 + }, + "VvVgk78W": { + "uv": { + "OJX9": [0.75, 1.75], + "S7bZ": [0.75, 1.25], + "PZ0f": [0.25, 1.75], + "yocC": [0.25, 1.25] + }, + "vertices": ["yocC", "PZ0f", "S7bZ", "OJX9"], + "texture": 15 + }, + "MYvVN80s": { + "uv": { + "8QjC": [1.25, 1.75], + "yocC": [1.25, 1.25], + "PZ0f": [1.75, 1.25] + }, + "vertices": ["PZ0f", "yocC", "8QjC"], + "texture": 15 + }, + "Xxx3Dir0": { + "uv": { + "u9P6": [2.25, 1.75], + "rlja": [2.25, 1.25], + "8QT3": [2.75, 1.25] + }, + "vertices": ["8QT3", "rlja", "u9P6"], + "texture": 15 + }, + "wcliUruQ": { + "uv": { + "rlja": [3.75, 1.75], + "8QT3": [3.75, 1.25], + "ddkb": [3.25, 1.75], + "W8jt": [3.25, 1.25] + }, + "vertices": ["W8jt", "ddkb", "8QT3", "rlja"], + "texture": 15 + }, + "AC8pSweT": { + "uv": { + "ddkb": [4.75, 1.75], + "W8jt": [4.75, 1.25], + "Phwt": [4.25, 1.75], + "TP88": [4.25, 1.25] + }, + "vertices": ["TP88", "Phwt", "W8jt", "ddkb"], + "texture": 15 + }, + "iy6mUocz": { + "uv": { + "Phwt": [5.75, 1.75], + "TP88": [5.75, 1.25], + "qhSG": [5.25, 1.75], + "OJX9": [5.25, 1.25] + }, + "vertices": ["OJX9", "qhSG", "TP88", "Phwt"], + "texture": 15 + }, + "XcdOlphk": { + "uv": { + "qhSG": [6.75, 1.75], + "OJX9": [6.75, 1.25], + "2KFR": [6.25, 1.75], + "PZ0f": [6.25, 1.25] + }, + "vertices": ["PZ0f", "2KFR", "OJX9", "qhSG"], + "texture": 15 + }, + "SmiDIWsL": { + "uv": { + "8QjC": [7.25, 1.75], + "PZ0f": [7.25, 1.25], + "2KFR": [7.75, 1.25] + }, + "vertices": ["2KFR", "PZ0f", "8QjC"], + "texture": 15 + }, + "sHO7ks0Z": { + "uv": { + "u9P6": [8.25, 1.75], + "UuWY": [8.25, 1.25], + "rlja": [8.75, 1.25] + }, + "vertices": ["rlja", "UuWY", "u9P6"], + "texture": 15 + }, + "X1LTFYRX": { + "uv": { + "UuWY": [9.75, 1.75], + "rlja": [9.75, 1.25], + "rIID": [9.25, 1.75], + "ddkb": [9.25, 1.25] + }, + "vertices": ["ddkb", "rIID", "rlja", "UuWY"], + "texture": 15 + }, + "2yagsWv6": { + "uv": { + "rIID": [10.75, 1.75], + "ddkb": [10.75, 1.25], + "2eBc": [10.25, 1.75], + "Phwt": [10.25, 1.25] + }, + "vertices": ["Phwt", "2eBc", "ddkb", "rIID"], + "texture": 15 + }, + "XA5lNjst": { + "uv": { + "2eBc": [11.75, 1.75], + "Phwt": [11.75, 1.25], + "baM3": [11.25, 1.75], + "qhSG": [11.25, 1.25] + }, + "vertices": ["qhSG", "baM3", "Phwt", "2eBc"], + "texture": 15 + }, + "Ygcj4wdC": { + "uv": { + "baM3": [12.75, 1.75], + "qhSG": [12.75, 1.25], + "35RP": [12.25, 1.75], + "2KFR": [12.25, 1.25] + }, + "vertices": ["2KFR", "35RP", "qhSG", "baM3"], + "texture": 15 + }, + "m7Ce9uDx": { + "uv": { + "8QjC": [13.25, 1.75], + "2KFR": [13.25, 1.25], + "35RP": [13.75, 1.25] + }, + "vertices": ["35RP", "2KFR", "8QjC"], + "texture": 15 + }, + "MLo3SzB8": { + "uv": { + "u9P6": [14.25, 1.75], + "b4mn": [14.25, 1.25], + "UuWY": [14.75, 1.25] + }, + "vertices": ["UuWY", "b4mn", "u9P6"], + "texture": 15 + }, + "1rfpAtcz": { + "uv": { + "b4mn": [15.75, 1.75], + "UuWY": [15.75, 1.25], + "aLVc": [15.25, 1.75], + "rIID": [15.25, 1.25] + }, + "vertices": ["rIID", "aLVc", "UuWY", "b4mn"], + "texture": 15 + }, + "a42rImDx": { + "uv": { + "aLVc": [0.75, 2.75], + "rIID": [0.75, 2.25], + "KcNg": [0.25, 2.75], + "2eBc": [0.25, 2.25] + }, + "vertices": ["2eBc", "KcNg", "rIID", "aLVc"], + "texture": 15 + }, + "3vOJocS7": { + "uv": { + "KcNg": [1.75, 2.75], + "2eBc": [1.75, 2.25], + "ar6O": [1.25, 2.75], + "baM3": [1.25, 2.25] + }, + "vertices": ["baM3", "ar6O", "2eBc", "KcNg"], + "texture": 15 + }, + "D2Af9725": { + "uv": { + "ar6O": [2.75, 2.75], + "baM3": [2.75, 2.25], + "fZGN": [2.25, 2.75], + "35RP": [2.25, 2.25] + }, + "vertices": ["35RP", "fZGN", "baM3", "ar6O"], + "texture": 15 + }, + "VxgGZCf2": { + "uv": { + "8QjC": [3.25, 2.75], + "35RP": [3.25, 2.25], + "fZGN": [3.75, 2.25] + }, + "vertices": ["fZGN", "35RP", "8QjC"], + "texture": 15 + }, + "E1Intunq": { + "uv": { + "u9P6": [4.25, 2.75], + "nv85": [4.25, 2.25], + "b4mn": [4.75, 2.25] + }, + "vertices": ["b4mn", "nv85", "u9P6"], + "texture": 15 + }, + "ANsPkIUD": { + "uv": { + "nv85": [5.75, 2.75], + "b4mn": [5.75, 2.25], + "P9rX": [5.25, 2.75], + "aLVc": [5.25, 2.25] + }, + "vertices": ["aLVc", "P9rX", "b4mn", "nv85"], + "texture": 15 + }, + "hky4vXZs": { + "uv": { + "P9rX": [6.75, 2.75], + "aLVc": [6.75, 2.25], + "LfAz": [6.25, 2.75], + "KcNg": [6.25, 2.25] + }, + "vertices": ["KcNg", "LfAz", "aLVc", "P9rX"], + "texture": 15 + }, + "MdnWKrBw": { + "uv": { + "LfAz": [7.75, 2.75], + "KcNg": [7.75, 2.25], + "Aldt": [7.25, 2.75], + "ar6O": [7.25, 2.25] + }, + "vertices": ["ar6O", "Aldt", "KcNg", "LfAz"], + "texture": 15 + }, + "x5VkzqFN": { + "uv": { + "Aldt": [8.75, 2.75], + "ar6O": [8.75, 2.25], + "arCH": [8.25, 2.75], + "fZGN": [8.25, 2.25] + }, + "vertices": ["fZGN", "arCH", "ar6O", "Aldt"], + "texture": 15 + }, + "yR8j2fnY": { + "uv": { + "8QjC": [9.25, 2.75], + "fZGN": [9.25, 2.25], + "arCH": [9.75, 2.25] + }, + "vertices": ["arCH", "fZGN", "8QjC"], + "texture": 15 + }, + "hyLdc1Q6": { + "uv": { + "u9P6": [10.25, 2.75], + "azgg": [10.25, 2.25], + "nv85": [10.75, 2.25] + }, + "vertices": ["nv85", "azgg", "u9P6"], + "texture": 15 + }, + "A0sjcu7e": { + "uv": { + "azgg": [11.75, 2.75], + "nv85": [11.75, 2.25], + "5mdt": [11.25, 2.75], + "P9rX": [11.25, 2.25] + }, + "vertices": ["P9rX", "5mdt", "nv85", "azgg"], + "texture": 15 + }, + "nGDnWgSP": { + "uv": { + "5mdt": [12.75, 2.75], + "P9rX": [12.75, 2.25], + "f4nL": [12.25, 2.75], + "LfAz": [12.25, 2.25] + }, + "vertices": ["LfAz", "f4nL", "P9rX", "5mdt"], + "texture": 15 + }, + "vUpqRqbF": { + "uv": { + "f4nL": [13.75, 2.75], + "LfAz": [13.75, 2.25], + "IW10": [13.25, 2.75], + "Aldt": [13.25, 2.25] + }, + "vertices": ["Aldt", "IW10", "LfAz", "f4nL"], + "texture": 15 + }, + "s05slp5K": { + "uv": { + "IW10": [14.75, 2.75], + "Aldt": [14.75, 2.25], + "Vgik": [14.25, 2.75], + "arCH": [14.25, 2.25] + }, + "vertices": ["arCH", "Vgik", "Aldt", "IW10"], + "texture": 15 + }, + "Sxc6OKkK": { + "uv": { + "8QjC": [15.25, 2.75], + "arCH": [15.25, 2.25], + "Vgik": [15.75, 2.25] + }, + "vertices": ["Vgik", "arCH", "8QjC"], + "texture": 15 + }, + "X3nCaFBv": { + "uv": { + "u9P6": [0.25, 3.75], + "VqHR": [0.25, 3.25], + "azgg": [0.75, 3.25] + }, + "vertices": ["azgg", "VqHR", "u9P6"], + "texture": 15 + }, + "XamBI9pA": { + "uv": { + "VqHR": [1.75, 3.75], + "azgg": [1.75, 3.25], + "lr5A": [1.25, 3.75], + "5mdt": [1.25, 3.25] + }, + "vertices": ["5mdt", "lr5A", "azgg", "VqHR"], + "texture": 15 + }, + "zgN1GtnK": { + "uv": { + "lr5A": [2.75, 3.75], + "5mdt": [2.75, 3.25], + "F9rK": [2.25, 3.75], + "f4nL": [2.25, 3.25] + }, + "vertices": ["f4nL", "F9rK", "5mdt", "lr5A"], + "texture": 15 + }, + "FprSWSc8": { + "uv": { + "F9rK": [3.75, 3.75], + "f4nL": [3.75, 3.25], + "pQvi": [3.25, 3.75], + "IW10": [3.25, 3.25] + }, + "vertices": ["IW10", "pQvi", "f4nL", "F9rK"], + "texture": 15 + }, + "e9rnkzEJ": { + "uv": { + "pQvi": [4.75, 3.75], + "IW10": [4.75, 3.25], + "54OX": [4.25, 3.75], + "Vgik": [4.25, 3.25] + }, + "vertices": ["Vgik", "54OX", "IW10", "pQvi"], + "texture": 15 + }, + "OedC1Ope": { + "uv": { + "8QjC": [5.25, 3.75], + "Vgik": [5.25, 3.25], + "54OX": [5.75, 3.25] + }, + "vertices": ["54OX", "Vgik", "8QjC"], + "texture": 15 + }, + "lIt5gO7w": { + "uv": { + "u9P6": [6.25, 3.75], + "bC6k": [6.25, 3.25], + "VqHR": [6.75, 3.25] + }, + "vertices": ["VqHR", "bC6k", "u9P6"], + "texture": 15 + }, + "fiLiv4eu": { + "uv": { + "bC6k": [7.75, 3.75], + "VqHR": [7.75, 3.25], + "64eD": [7.25, 3.75], + "lr5A": [7.25, 3.25] + }, + "vertices": ["lr5A", "64eD", "VqHR", "bC6k"], + "texture": 15 + }, + "iTZHiYyz": { + "uv": { + "64eD": [8.75, 3.75], + "lr5A": [8.75, 3.25], + "8Z7A": [8.25, 3.75], + "F9rK": [8.25, 3.25] + }, + "vertices": ["F9rK", "8Z7A", "lr5A", "64eD"], + "texture": 15 + }, + "4qdXLnbR": { + "uv": { + "8Z7A": [9.75, 3.75], + "F9rK": [9.75, 3.25], + "nnBx": [9.25, 3.75], + "pQvi": [9.25, 3.25] + }, + "vertices": ["pQvi", "nnBx", "F9rK", "8Z7A"], + "texture": 15 + }, + "a4mGhICC": { + "uv": { + "nnBx": [10.75, 3.75], + "pQvi": [10.75, 3.25], + "sdgs": [10.25, 3.75], + "54OX": [10.25, 3.25] + }, + "vertices": ["54OX", "sdgs", "pQvi", "nnBx"], + "texture": 15 + }, + "SUg8IVYl": { + "uv": { + "8QjC": [11.25, 3.75], + "54OX": [11.25, 3.25], + "sdgs": [11.75, 3.25] + }, + "vertices": ["sdgs", "54OX", "8QjC"], + "texture": 15 + }, + "xtL7Hkve": { + "uv": { + "u9P6": [12.25, 3.75], + "B9HA": [12.25, 3.25], + "bC6k": [12.75, 3.25] + }, + "vertices": ["bC6k", "B9HA", "u9P6"], + "texture": 15 + }, + "JRIElpEj": { + "uv": { + "B9HA": [13.75, 3.75], + "bC6k": [13.75, 3.25], + "YR9K": [13.25, 3.75], + "64eD": [13.25, 3.25] + }, + "vertices": ["64eD", "YR9K", "bC6k", "B9HA"], + "texture": 15 + }, + "N6zi1Z8V": { + "uv": { + "YR9K": [14.75, 3.75], + "64eD": [14.75, 3.25], + "rBqN": [14.25, 3.75], + "8Z7A": [14.25, 3.25] + }, + "vertices": ["8Z7A", "rBqN", "64eD", "YR9K"], + "texture": 15 + }, + "EeFNXyFu": { + "uv": { + "rBqN": [15.75, 3.75], + "8Z7A": [15.75, 3.25], + "G7iR": [15.25, 3.75], + "nnBx": [15.25, 3.25] + }, + "vertices": ["nnBx", "G7iR", "8Z7A", "rBqN"], + "texture": 15 + }, + "HVtNylvy": { + "uv": { + "G7iR": [0.75, 4.75], + "nnBx": [0.75, 4.25], + "G7Yn": [0.25, 4.75], + "sdgs": [0.25, 4.25] + }, + "vertices": ["sdgs", "G7Yn", "nnBx", "G7iR"], + "texture": 15 + }, + "GuhboYu6": { + "uv": { + "8QjC": [1.25, 4.75], + "sdgs": [1.25, 4.25], + "G7Yn": [1.75, 4.25] + }, + "vertices": ["G7Yn", "sdgs", "8QjC"], + "texture": 15 + }, + "FatZEx29": { + "uv": { + "u9P6": [2.25, 4.75], + "3ZDT": [2.25, 4.25], + "B9HA": [2.75, 4.25] + }, + "vertices": ["B9HA", "3ZDT", "u9P6"], + "texture": 15 + }, + "WQlxRTJ0": { + "uv": { + "3ZDT": [3.75, 4.75], + "B9HA": [3.75, 4.25], + "zNGN": [3.25, 4.75], + "YR9K": [3.25, 4.25] + }, + "vertices": ["YR9K", "zNGN", "B9HA", "3ZDT"], + "texture": 15 + }, + "KLpy0qBF": { + "uv": { + "zNGN": [4.75, 4.75], + "YR9K": [4.75, 4.25], + "73Hf": [4.25, 4.75], + "rBqN": [4.25, 4.25] + }, + "vertices": ["rBqN", "73Hf", "YR9K", "zNGN"], + "texture": 15 + }, + "xp2sa1WG": { + "uv": { + "73Hf": [5.75, 4.75], + "rBqN": [5.75, 4.25], + "4ExO": [5.25, 4.75], + "G7iR": [5.25, 4.25] + }, + "vertices": ["G7iR", "4ExO", "rBqN", "73Hf"], + "texture": 15 + }, + "LXV1I4uf": { + "uv": { + "4ExO": [6.75, 4.75], + "G7iR": [6.75, 4.25], + "f7le": [6.25, 4.75], + "G7Yn": [6.25, 4.25] + }, + "vertices": ["G7Yn", "f7le", "G7iR", "4ExO"], + "texture": 15 + }, + "33MWdMUL": { + "uv": { + "8QjC": [7.25, 4.75], + "G7Yn": [7.25, 4.25], + "f7le": [7.75, 4.25] + }, + "vertices": ["f7le", "G7Yn", "8QjC"], + "texture": 15 + } + }, + "type": "mesh", + "uuid": "bc6494c5-f257-6646-6d66-c5c408173de4" + }, + { + "name": "outer", + "color": 8, + "origin": [0, 0, -13], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "8QjC": [0, -9, 0], + "u9P6": [0, 9, 0], + "3ZDT": [1.20577, 7.79423, 4.5], + "zNGN": [2.08846, 4.5, 7.79423], + "73Hf": [2.41154, 0, 9], + "4ExO": [2.08846, -4.5, 7.79423], + "f7le": [1.20577, -7.79423, 4.5], + "d0Pu": [3.29423, 7.79423, 3.29423], + "C5s3": [5.70577, 4.5, 5.70577], + "IS5N": [6.58846, 0, 6.58846], + "KeJY": [5.70577, -4.5, 5.70577], + "QpFb": [3.29423, -7.79423, 3.29423], + "8WEL": [4.5, 7.79423, 1.20577], + "KBoA": [7.79423, 4.5, 2.08846], + "UZLZ": [9, 0, 2.41154], + "S7bZ": [7.79423, -4.5, 2.08846], + "yocC": [4.5, -7.79423, 1.20577], + "8QT3": [4.5, 7.79423, -1.20577], + "W8jt": [7.79423, 4.5, -2.08846], + "TP88": [9, 0, -2.41154], + "OJX9": [7.79423, -4.5, -2.08846], + "PZ0f": [4.5, -7.79423, -1.20577], + "rlja": [3.29423, 7.79423, -3.29423], + "ddkb": [5.70577, 4.5, -5.70577], + "Phwt": [6.58846, 0, -6.58846], + "qhSG": [5.70577, -4.5, -5.70577], + "2KFR": [3.29423, -7.79423, -3.29423], + "UuWY": [1.20577, 7.79423, -4.5], + "rIID": [2.08846, 4.5, -7.79423], + "2eBc": [2.41154, 0, -9], + "baM3": [2.08846, -4.5, -7.79423], + "35RP": [1.20577, -7.79423, -4.5], + "b4mn": [-1.20577, 7.79423, -4.5], + "aLVc": [-2.08846, 4.5, -7.79423], + "KcNg": [-2.41154, 0, -9], + "ar6O": [-2.08846, -4.5, -7.79423], + "fZGN": [-1.20577, -7.79423, -4.5], + "nv85": [-3.29423, 7.79423, -3.29423], + "P9rX": [-5.70577, 4.5, -5.70577], + "LfAz": [-6.58846, 0, -6.58846], + "Aldt": [-5.70577, -4.5, -5.70577], + "arCH": [-3.29423, -7.79423, -3.29423], + "azgg": [-4.5, 7.79423, -1.20577], + "5mdt": [-7.79423, 4.5, -2.08846], + "f4nL": [-9, 0, -2.41154], + "IW10": [-7.79423, -4.5, -2.08846], + "Vgik": [-4.5, -7.79423, -1.20577], + "VqHR": [-4.5, 7.79423, 1.20577], + "lr5A": [-7.79423, 4.5, 2.08846], + "F9rK": [-9, 0, 2.41154], + "pQvi": [-7.79423, -4.5, 2.08846], + "54OX": [-4.5, -7.79423, 1.20577], + "bC6k": [-3.29423, 7.79423, 3.29423], + "64eD": [-5.70577, 4.5, 5.70577], + "8Z7A": [-6.58846, 0, 6.58846], + "nnBx": [-5.70577, -4.5, 5.70577], + "sdgs": [-3.29423, -7.79423, 3.29423], + "B9HA": [-1.20577, 7.79423, 4.5], + "YR9K": [-2.08846, 4.5, 7.79423], + "rBqN": [-2.41154, 0, 9], + "G7iR": [-2.08846, -4.5, 7.79423], + "G7Yn": [-1.20577, -7.79423, 4.5] + }, + "faces": { + "ZngK3IpC": { + "uv": { + "u9P6": [0.25, 0.75], + "3ZDT": [0.75, 0.25], + "d0Pu": [0.25, 0.25] + }, + "vertices": ["d0Pu", "3ZDT", "u9P6"], + "texture": 16 + }, + "L46i6DN5": { + "uv": { + "d0Pu": [1.75, 0.75], + "3ZDT": [1.75, 0.25], + "zNGN": [1.25, 0.25], + "C5s3": [1.25, 0.75] + }, + "vertices": ["C5s3", "zNGN", "3ZDT", "d0Pu"], + "texture": 16 + }, + "eNbWbFkk": { + "uv": { + "C5s3": [2.75, 0.75], + "zNGN": [2.75, 0.25], + "73Hf": [2.25, 0.25], + "IS5N": [2.25, 0.75] + }, + "vertices": ["IS5N", "73Hf", "zNGN", "C5s3"], + "texture": 16 + }, + "roTqvBDD": { + "uv": { + "IS5N": [3.75, 0.75], + "73Hf": [3.75, 0.25], + "4ExO": [3.25, 0.25], + "KeJY": [3.25, 0.75] + }, + "vertices": ["KeJY", "4ExO", "73Hf", "IS5N"], + "texture": 16 + }, + "H5SeHMdG": { + "uv": { + "KeJY": [4.75, 0.75], + "4ExO": [4.75, 0.25], + "f7le": [4.25, 0.25], + "QpFb": [4.25, 0.75] + }, + "vertices": ["QpFb", "f7le", "4ExO", "KeJY"], + "texture": 16 + }, + "9fOaMI7A": { + "uv": { + "8QjC": [5.25, 0.75], + "QpFb": [5.75, 0.25], + "f7le": [5.25, 0.25] + }, + "vertices": ["f7le", "QpFb", "8QjC"], + "texture": 16 + }, + "eHg0Xk2X": { + "uv": { + "u9P6": [6.25, 0.75], + "d0Pu": [6.75, 0.25], + "8WEL": [6.25, 0.25] + }, + "vertices": ["8WEL", "d0Pu", "u9P6"], + "texture": 16 + }, + "sRhLlJHL": { + "uv": { + "8WEL": [7.75, 0.75], + "d0Pu": [7.75, 0.25], + "C5s3": [7.25, 0.25], + "KBoA": [7.25, 0.75] + }, + "vertices": ["KBoA", "C5s3", "d0Pu", "8WEL"], + "texture": 16 + }, + "1hmcvGBk": { + "uv": { + "KBoA": [8.75, 0.75], + "C5s3": [8.75, 0.25], + "IS5N": [8.25, 0.25], + "UZLZ": [8.25, 0.75] + }, + "vertices": ["UZLZ", "IS5N", "C5s3", "KBoA"], + "texture": 16 + }, + "O4BJvLoN": { + "uv": { + "UZLZ": [9.75, 0.75], + "IS5N": [9.75, 0.25], + "KeJY": [9.25, 0.25], + "S7bZ": [9.25, 0.75] + }, + "vertices": ["S7bZ", "KeJY", "IS5N", "UZLZ"], + "texture": 16 + }, + "kx9KAAPA": { + "uv": { + "S7bZ": [10.75, 0.75], + "KeJY": [10.75, 0.25], + "QpFb": [10.25, 0.25], + "yocC": [10.25, 0.75] + }, + "vertices": ["yocC", "QpFb", "KeJY", "S7bZ"], + "texture": 16 + }, + "7xBzzsZo": { + "uv": { + "8QjC": [11.25, 0.75], + "yocC": [11.75, 0.25], + "QpFb": [11.25, 0.25] + }, + "vertices": ["QpFb", "yocC", "8QjC"], + "texture": 16 + }, + "uVFCvy3R": { + "uv": { + "u9P6": [12.25, 0.75], + "8WEL": [12.75, 0.25], + "8QT3": [12.25, 0.25] + }, + "vertices": ["8QT3", "8WEL", "u9P6"], + "texture": 16 + }, + "WaNtzBKB": { + "uv": { + "8QT3": [13.75, 0.75], + "8WEL": [13.75, 0.25], + "KBoA": [13.25, 0.25], + "W8jt": [13.25, 0.75] + }, + "vertices": ["W8jt", "KBoA", "8WEL", "8QT3"], + "texture": 16 + }, + "vTSW5OcT": { + "uv": { + "W8jt": [14.75, 0.75], + "KBoA": [14.75, 0.25], + "UZLZ": [14.25, 0.25], + "TP88": [14.25, 0.75] + }, + "vertices": ["TP88", "UZLZ", "KBoA", "W8jt"], + "texture": 16 + }, + "TUIIt1x5": { + "uv": { + "TP88": [15.75, 0.75], + "UZLZ": [15.75, 0.25], + "S7bZ": [15.25, 0.25], + "OJX9": [15.25, 0.75] + }, + "vertices": ["OJX9", "S7bZ", "UZLZ", "TP88"], + "texture": 16 + }, + "VvVgk78W": { + "uv": { + "OJX9": [0.75, 1.75], + "S7bZ": [0.75, 1.25], + "yocC": [0.25, 1.25], + "PZ0f": [0.25, 1.75] + }, + "vertices": ["PZ0f", "yocC", "S7bZ", "OJX9"], + "texture": 16 + }, + "MYvVN80s": { + "uv": { + "8QjC": [1.25, 1.75], + "PZ0f": [1.75, 1.25], + "yocC": [1.25, 1.25] + }, + "vertices": ["yocC", "PZ0f", "8QjC"], + "texture": 16 + }, + "Xxx3Dir0": { + "uv": { + "u9P6": [2.25, 1.75], + "8QT3": [2.75, 1.25], + "rlja": [2.25, 1.25] + }, + "vertices": ["rlja", "8QT3", "u9P6"], + "texture": 16 + }, + "wcliUruQ": { + "uv": { + "rlja": [3.75, 1.75], + "8QT3": [3.75, 1.25], + "W8jt": [3.25, 1.25], + "ddkb": [3.25, 1.75] + }, + "vertices": ["ddkb", "W8jt", "8QT3", "rlja"], + "texture": 16 + }, + "AC8pSweT": { + "uv": { + "ddkb": [4.75, 1.75], + "W8jt": [4.75, 1.25], + "TP88": [4.25, 1.25], + "Phwt": [4.25, 1.75] + }, + "vertices": ["Phwt", "TP88", "W8jt", "ddkb"], + "texture": 16 + }, + "iy6mUocz": { + "uv": { + "Phwt": [5.75, 1.75], + "TP88": [5.75, 1.25], + "OJX9": [5.25, 1.25], + "qhSG": [5.25, 1.75] + }, + "vertices": ["qhSG", "OJX9", "TP88", "Phwt"], + "texture": 16 + }, + "XcdOlphk": { + "uv": { + "qhSG": [6.75, 1.75], + "OJX9": [6.75, 1.25], + "PZ0f": [6.25, 1.25], + "2KFR": [6.25, 1.75] + }, + "vertices": ["2KFR", "PZ0f", "OJX9", "qhSG"], + "texture": 16 + }, + "SmiDIWsL": { + "uv": { + "8QjC": [7.25, 1.75], + "2KFR": [7.75, 1.25], + "PZ0f": [7.25, 1.25] + }, + "vertices": ["PZ0f", "2KFR", "8QjC"], + "texture": 16 + }, + "sHO7ks0Z": { + "uv": { + "u9P6": [8.25, 1.75], + "rlja": [8.75, 1.25], + "UuWY": [8.25, 1.25] + }, + "vertices": ["UuWY", "rlja", "u9P6"], + "texture": 16 + }, + "X1LTFYRX": { + "uv": { + "UuWY": [9.75, 1.75], + "rlja": [9.75, 1.25], + "ddkb": [9.25, 1.25], + "rIID": [9.25, 1.75] + }, + "vertices": ["rIID", "ddkb", "rlja", "UuWY"], + "texture": 16 + }, + "2yagsWv6": { + "uv": { + "rIID": [10.75, 1.75], + "ddkb": [10.75, 1.25], + "Phwt": [10.25, 1.25], + "2eBc": [10.25, 1.75] + }, + "vertices": ["2eBc", "Phwt", "ddkb", "rIID"], + "texture": 16 + }, + "XA5lNjst": { + "uv": { + "2eBc": [11.75, 1.75], + "Phwt": [11.75, 1.25], + "qhSG": [11.25, 1.25], + "baM3": [11.25, 1.75] + }, + "vertices": ["baM3", "qhSG", "Phwt", "2eBc"], + "texture": 16 + }, + "Ygcj4wdC": { + "uv": { + "baM3": [12.75, 1.75], + "qhSG": [12.75, 1.25], + "2KFR": [12.25, 1.25], + "35RP": [12.25, 1.75] + }, + "vertices": ["35RP", "2KFR", "qhSG", "baM3"], + "texture": 16 + }, + "m7Ce9uDx": { + "uv": { + "8QjC": [13.25, 1.75], + "35RP": [13.75, 1.25], + "2KFR": [13.25, 1.25] + }, + "vertices": ["2KFR", "35RP", "8QjC"], + "texture": 16 + }, + "MLo3SzB8": { + "uv": { + "u9P6": [14.25, 1.75], + "UuWY": [14.75, 1.25], + "b4mn": [14.25, 1.25] + }, + "vertices": ["b4mn", "UuWY", "u9P6"], + "texture": 16 + }, + "1rfpAtcz": { + "uv": { + "b4mn": [15.75, 1.75], + "UuWY": [15.75, 1.25], + "rIID": [15.25, 1.25], + "aLVc": [15.25, 1.75] + }, + "vertices": ["aLVc", "rIID", "UuWY", "b4mn"], + "texture": 16 + }, + "a42rImDx": { + "uv": { + "aLVc": [0.75, 2.75], + "rIID": [0.75, 2.25], + "2eBc": [0.25, 2.25], + "KcNg": [0.25, 2.75] + }, + "vertices": ["KcNg", "2eBc", "rIID", "aLVc"], + "texture": 16 + }, + "3vOJocS7": { + "uv": { + "KcNg": [1.75, 2.75], + "2eBc": [1.75, 2.25], + "baM3": [1.25, 2.25], + "ar6O": [1.25, 2.75] + }, + "vertices": ["ar6O", "baM3", "2eBc", "KcNg"], + "texture": 16 + }, + "D2Af9725": { + "uv": { + "ar6O": [2.75, 2.75], + "baM3": [2.75, 2.25], + "35RP": [2.25, 2.25], + "fZGN": [2.25, 2.75] + }, + "vertices": ["fZGN", "35RP", "baM3", "ar6O"], + "texture": 16 + }, + "VxgGZCf2": { + "uv": { + "8QjC": [3.25, 2.75], + "fZGN": [3.75, 2.25], + "35RP": [3.25, 2.25] + }, + "vertices": ["35RP", "fZGN", "8QjC"], + "texture": 16 + }, + "E1Intunq": { + "uv": { + "u9P6": [4.25, 2.75], + "b4mn": [4.75, 2.25], + "nv85": [4.25, 2.25] + }, + "vertices": ["nv85", "b4mn", "u9P6"], + "texture": 16 + }, + "ANsPkIUD": { + "uv": { + "nv85": [5.75, 2.75], + "b4mn": [5.75, 2.25], + "aLVc": [5.25, 2.25], + "P9rX": [5.25, 2.75] + }, + "vertices": ["P9rX", "aLVc", "b4mn", "nv85"], + "texture": 16 + }, + "hky4vXZs": { + "uv": { + "P9rX": [6.75, 2.75], + "aLVc": [6.75, 2.25], + "KcNg": [6.25, 2.25], + "LfAz": [6.25, 2.75] + }, + "vertices": ["LfAz", "KcNg", "aLVc", "P9rX"], + "texture": 16 + }, + "MdnWKrBw": { + "uv": { + "LfAz": [7.75, 2.75], + "KcNg": [7.75, 2.25], + "ar6O": [7.25, 2.25], + "Aldt": [7.25, 2.75] + }, + "vertices": ["Aldt", "ar6O", "KcNg", "LfAz"], + "texture": 16 + }, + "x5VkzqFN": { + "uv": { + "Aldt": [8.75, 2.75], + "ar6O": [8.75, 2.25], + "fZGN": [8.25, 2.25], + "arCH": [8.25, 2.75] + }, + "vertices": ["arCH", "fZGN", "ar6O", "Aldt"], + "texture": 16 + }, + "yR8j2fnY": { + "uv": { + "8QjC": [9.25, 2.75], + "arCH": [9.75, 2.25], + "fZGN": [9.25, 2.25] + }, + "vertices": ["fZGN", "arCH", "8QjC"], + "texture": 16 + }, + "hyLdc1Q6": { + "uv": { + "u9P6": [10.25, 2.75], + "nv85": [10.75, 2.25], + "azgg": [10.25, 2.25] + }, + "vertices": ["azgg", "nv85", "u9P6"], + "texture": 16 + }, + "A0sjcu7e": { + "uv": { + "azgg": [11.75, 2.75], + "nv85": [11.75, 2.25], + "P9rX": [11.25, 2.25], + "5mdt": [11.25, 2.75] + }, + "vertices": ["5mdt", "P9rX", "nv85", "azgg"], + "texture": 16 + }, + "nGDnWgSP": { + "uv": { + "5mdt": [12.75, 2.75], + "P9rX": [12.75, 2.25], + "LfAz": [12.25, 2.25], + "f4nL": [12.25, 2.75] + }, + "vertices": ["f4nL", "LfAz", "P9rX", "5mdt"], + "texture": 16 + }, + "vUpqRqbF": { + "uv": { + "f4nL": [13.75, 2.75], + "LfAz": [13.75, 2.25], + "Aldt": [13.25, 2.25], + "IW10": [13.25, 2.75] + }, + "vertices": ["IW10", "Aldt", "LfAz", "f4nL"], + "texture": 16 + }, + "s05slp5K": { + "uv": { + "IW10": [14.75, 2.75], + "Aldt": [14.75, 2.25], + "arCH": [14.25, 2.25], + "Vgik": [14.25, 2.75] + }, + "vertices": ["Vgik", "arCH", "Aldt", "IW10"], + "texture": 16 + }, + "Sxc6OKkK": { + "uv": { + "8QjC": [15.25, 2.75], + "Vgik": [15.75, 2.25], + "arCH": [15.25, 2.25] + }, + "vertices": ["arCH", "Vgik", "8QjC"], + "texture": 16 + }, + "X3nCaFBv": { + "uv": { + "u9P6": [0.25, 3.75], + "azgg": [0.75, 3.25], + "VqHR": [0.25, 3.25] + }, + "vertices": ["VqHR", "azgg", "u9P6"], + "texture": 16 + }, + "XamBI9pA": { + "uv": { + "VqHR": [1.75, 3.75], + "azgg": [1.75, 3.25], + "5mdt": [1.25, 3.25], + "lr5A": [1.25, 3.75] + }, + "vertices": ["lr5A", "5mdt", "azgg", "VqHR"], + "texture": 16 + }, + "zgN1GtnK": { + "uv": { + "lr5A": [2.75, 3.75], + "5mdt": [2.75, 3.25], + "f4nL": [2.25, 3.25], + "F9rK": [2.25, 3.75] + }, + "vertices": ["F9rK", "f4nL", "5mdt", "lr5A"], + "texture": 16 + }, + "FprSWSc8": { + "uv": { + "F9rK": [3.75, 3.75], + "f4nL": [3.75, 3.25], + "IW10": [3.25, 3.25], + "pQvi": [3.25, 3.75] + }, + "vertices": ["pQvi", "IW10", "f4nL", "F9rK"], + "texture": 16 + }, + "e9rnkzEJ": { + "uv": { + "pQvi": [4.75, 3.75], + "IW10": [4.75, 3.25], + "Vgik": [4.25, 3.25], + "54OX": [4.25, 3.75] + }, + "vertices": ["54OX", "Vgik", "IW10", "pQvi"], + "texture": 16 + }, + "OedC1Ope": { + "uv": { + "8QjC": [5.25, 3.75], + "54OX": [5.75, 3.25], + "Vgik": [5.25, 3.25] + }, + "vertices": ["Vgik", "54OX", "8QjC"], + "texture": 16 + }, + "lIt5gO7w": { + "uv": { + "u9P6": [6.25, 3.75], + "VqHR": [6.75, 3.25], + "bC6k": [6.25, 3.25] + }, + "vertices": ["bC6k", "VqHR", "u9P6"], + "texture": 16 + }, + "fiLiv4eu": { + "uv": { + "bC6k": [7.75, 3.75], + "VqHR": [7.75, 3.25], + "lr5A": [7.25, 3.25], + "64eD": [7.25, 3.75] + }, + "vertices": ["64eD", "lr5A", "VqHR", "bC6k"], + "texture": 16 + }, + "iTZHiYyz": { + "uv": { + "64eD": [8.75, 3.75], + "lr5A": [8.75, 3.25], + "F9rK": [8.25, 3.25], + "8Z7A": [8.25, 3.75] + }, + "vertices": ["8Z7A", "F9rK", "lr5A", "64eD"], + "texture": 16 + }, + "4qdXLnbR": { + "uv": { + "8Z7A": [9.75, 3.75], + "F9rK": [9.75, 3.25], + "pQvi": [9.25, 3.25], + "nnBx": [9.25, 3.75] + }, + "vertices": ["nnBx", "pQvi", "F9rK", "8Z7A"], + "texture": 16 + }, + "a4mGhICC": { + "uv": { + "nnBx": [10.75, 3.75], + "pQvi": [10.75, 3.25], + "54OX": [10.25, 3.25], + "sdgs": [10.25, 3.75] + }, + "vertices": ["sdgs", "54OX", "pQvi", "nnBx"], + "texture": 16 + }, + "SUg8IVYl": { + "uv": { + "8QjC": [11.25, 3.75], + "sdgs": [11.75, 3.25], + "54OX": [11.25, 3.25] + }, + "vertices": ["54OX", "sdgs", "8QjC"], + "texture": 16 + }, + "xtL7Hkve": { + "uv": { + "u9P6": [12.25, 3.75], + "bC6k": [12.75, 3.25], + "B9HA": [12.25, 3.25] + }, + "vertices": ["B9HA", "bC6k", "u9P6"], + "texture": 16 + }, + "JRIElpEj": { + "uv": { + "B9HA": [13.75, 3.75], + "bC6k": [13.75, 3.25], + "64eD": [13.25, 3.25], + "YR9K": [13.25, 3.75] + }, + "vertices": ["YR9K", "64eD", "bC6k", "B9HA"], + "texture": 16 + }, + "N6zi1Z8V": { + "uv": { + "YR9K": [14.75, 3.75], + "64eD": [14.75, 3.25], + "8Z7A": [14.25, 3.25], + "rBqN": [14.25, 3.75] + }, + "vertices": ["rBqN", "8Z7A", "64eD", "YR9K"], + "texture": 16 + }, + "EeFNXyFu": { + "uv": { + "rBqN": [15.75, 3.75], + "8Z7A": [15.75, 3.25], + "nnBx": [15.25, 3.25], + "G7iR": [15.25, 3.75] + }, + "vertices": ["G7iR", "nnBx", "8Z7A", "rBqN"], + "texture": 16 + }, + "HVtNylvy": { + "uv": { + "G7iR": [0.75, 4.75], + "nnBx": [0.75, 4.25], + "sdgs": [0.25, 4.25], + "G7Yn": [0.25, 4.75] + }, + "vertices": ["G7Yn", "sdgs", "nnBx", "G7iR"], + "texture": 16 + }, + "GuhboYu6": { + "uv": { + "8QjC": [1.25, 4.75], + "G7Yn": [1.75, 4.25], + "sdgs": [1.25, 4.25] + }, + "vertices": ["sdgs", "G7Yn", "8QjC"], + "texture": 16 + }, + "FatZEx29": { + "uv": { + "u9P6": [2.25, 4.75], + "B9HA": [2.75, 4.25], + "3ZDT": [2.25, 4.25] + }, + "vertices": ["3ZDT", "B9HA", "u9P6"], + "texture": 16 + }, + "WQlxRTJ0": { + "uv": { + "3ZDT": [3.75, 4.75], + "B9HA": [3.75, 4.25], + "YR9K": [3.25, 4.25], + "zNGN": [3.25, 4.75] + }, + "vertices": ["zNGN", "YR9K", "B9HA", "3ZDT"], + "texture": 16 + }, + "KLpy0qBF": { + "uv": { + "zNGN": [4.75, 4.75], + "YR9K": [4.75, 4.25], + "rBqN": [4.25, 4.25], + "73Hf": [4.25, 4.75] + }, + "vertices": ["73Hf", "rBqN", "YR9K", "zNGN"], + "texture": 16 + }, + "xp2sa1WG": { + "uv": { + "73Hf": [5.75, 4.75], + "rBqN": [5.75, 4.25], + "G7iR": [5.25, 4.25], + "4ExO": [5.25, 4.75] + }, + "vertices": ["4ExO", "G7iR", "rBqN", "73Hf"], + "texture": 16 + }, + "LXV1I4uf": { + "uv": { + "4ExO": [6.75, 4.75], + "G7iR": [6.75, 4.25], + "G7Yn": [6.25, 4.25], + "f7le": [6.25, 4.75] + }, + "vertices": ["f7le", "G7Yn", "G7iR", "4ExO"], + "texture": 16 + }, + "33MWdMUL": { + "uv": { + "8QjC": [7.25, 4.75], + "f7le": [7.75, 4.25], + "G7Yn": [7.25, 4.25] + }, + "vertices": ["G7Yn", "f7le", "8QjC"], + "texture": 16 + } + }, + "type": "mesh", + "uuid": "5305cce9-ebff-656a-3edd-cc991cbcfe47" + }, + { + "name": "inner", + "color": 8, + "origin": [0, 0, -13], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "8QjC": [0, -8, 0], + "zNGN": [2.17795, 178, 8.1282], + "73Hf": [2.14359, 0, 8], + "4ExO": [1.85641, -4, 6.9282], + "f7le": [1.0718, -6.9282, 4], + "C5s3": [5.95026, 175, 5.95026], + "IS5N": [5.85641, 0, 5.85641], + "KeJY": [5.0718, -4, 5.0718], + "QpFb": [2.9282, -6.9282, 2.9282], + "KBoA": [8.1282, 175, 2.17795], + "UZLZ": [8, 0, 2.14359], + "S7bZ": [6.9282, -4, 1.85641], + "yocC": [4, -6.9282, 1.0718], + "W8jt": [8.1282, 175, -2.17795], + "TP88": [8, 0, -2.14359], + "OJX9": [6.9282, -4, -1.85641], + "PZ0f": [4, -6.9282, -1.0718], + "ddkb": [5.95026, 178, -5.95026], + "Phwt": [5.85641, 0, -5.85641], + "qhSG": [5.0718, -4, -5.0718], + "2KFR": [2.9282, -6.9282, -2.9282], + "rIID": [2.17795, 178, -8.1282], + "2eBc": [2.14359, 0, -8], + "baM3": [1.85641, -4, -6.9282], + "35RP": [1.0718, -6.9282, -4], + "aLVc": [-2.17795, 178, -8.1282], + "KcNg": [-2.14359, 0, -8], + "ar6O": [-1.85641, -4, -6.9282], + "fZGN": [-1.0718, -6.9282, -4], + "P9rX": [-5.95026, 178, -5.95026], + "LfAz": [-5.85641, 0, -5.85641], + "Aldt": [-5.0718, -4, -5.0718], + "arCH": [-2.9282, -6.9282, -2.9282], + "5mdt": [-8.1282, 178, -2.17795], + "f4nL": [-8, 0, -2.14359], + "IW10": [-6.9282, -4, -1.85641], + "Vgik": [-4, -6.9282, -1.0718], + "lr5A": [-8.1282, 178, 2.17795], + "F9rK": [-8, 0, 2.14359], + "pQvi": [-6.9282, -4, 1.85641], + "54OX": [-4, -6.9282, 1.0718], + "64eD": [-5.95026, 178, 5.95026], + "8Z7A": [-5.85641, 0, 5.85641], + "nnBx": [-5.0718, -4, 5.0718], + "sdgs": [-2.9282, -6.9282, 2.9282], + "YR9K": [-2.17795, 178, 8.1282], + "rBqN": [-2.14359, 0, 8], + "G7iR": [-1.85641, -4, 6.9282], + "G7Yn": [-1.0718, -6.9282, 4], + "orU0": [1.17879, 182.83876, 4.39931], + "YyBo": [3.22052, 182.83876, 3.22052], + "vhJJ": [0, 183, 0], + "90Fb": [2.05628, 182.82495, 7.67415], + "HfsY": [5.61787, 182.82495, 5.61787], + "OwBJ": [4.39931, 182.83876, 1.17879], + "9RbY": [7.67415, 182.82495, 2.05628], + "tWGi": [4.39931, 182.83876, -1.17879], + "rwOP": [7.67415, 182.82495, -2.05628], + "AYq6": [3.22052, 182.83876, -3.22052], + "Clz7": [5.61787, 182.82495, -5.61787], + "13x6": [1.17879, 182.83876, -4.39931], + "7asH": [2.05628, 182.82495, -7.67415], + "53PY": [-1.17879, 182.83876, -4.39931], + "NsXb": [-2.05628, 182.82495, -7.67415], + "cf6G": [-3.22052, 182.83876, -3.22052], + "6L0d": [-5.61787, 182.82495, -5.61787], + "8i9k": [-4.39931, 182.83876, -1.17879], + "odwY": [-7.67415, 182.82495, -2.05628], + "bedr": [-4.39931, 182.83876, 1.17879], + "mRE8": [-7.67415, 182.82495, 2.05628], + "VCA7": [-3.22052, 182.83876, 3.22052], + "g8AY": [-5.61787, 182.82495, 5.61787], + "IcjH": [-1.17879, 182.83876, 4.39931], + "Cmxu": [-2.05628, 182.82495, 7.67415] + }, + "faces": { + "ZngK3IpC": { + "uv": { + "vhJJ": [0.25, 0.75], + "orU0": [0.75, 0.25], + "YyBo": [0.25, 0.25] + }, + "vertices": ["YyBo", "orU0", "vhJJ"], + "texture": 15 + }, + "L46i6DN5": { + "uv": { + "YyBo": [1.75, 0.75], + "orU0": [1.75, 0.25], + "90Fb": [1.25, 0.25], + "HfsY": [1.25, 0.75] + }, + "vertices": ["HfsY", "90Fb", "orU0", "YyBo"], + "texture": 15 + }, + "eNbWbFkk": { + "uv": { + "C5s3": [2.75, 0.75], + "zNGN": [2.75, 0.25], + "73Hf": [2.25, 0.25], + "IS5N": [2.25, 0.75] + }, + "vertices": ["IS5N", "73Hf", "zNGN", "C5s3"], + "texture": 15 + }, + "roTqvBDD": { + "uv": { + "IS5N": [3.75, 0.75], + "73Hf": [3.75, 0.25], + "4ExO": [3.25, 0.25], + "KeJY": [3.25, 0.75] + }, + "vertices": ["KeJY", "4ExO", "73Hf", "IS5N"], + "texture": 15 + }, + "H5SeHMdG": { + "uv": { + "KeJY": [4.75, 0.75], + "4ExO": [4.75, 0.25], + "f7le": [4.25, 0.25], + "QpFb": [4.25, 0.75] + }, + "vertices": ["QpFb", "f7le", "4ExO", "KeJY"], + "texture": 15 + }, + "9fOaMI7A": { + "uv": { + "8QjC": [5.25, 0.75], + "QpFb": [5.75, 0.25], + "f7le": [5.25, 0.25] + }, + "vertices": ["f7le", "QpFb", "8QjC"], + "texture": 15 + }, + "eHg0Xk2X": { + "uv": { + "vhJJ": [6.25, 0.75], + "YyBo": [6.75, 0.25], + "OwBJ": [6.25, 0.25] + }, + "vertices": ["OwBJ", "YyBo", "vhJJ"], + "texture": 15 + }, + "sRhLlJHL": { + "uv": { + "OwBJ": [7.75, 0.75], + "YyBo": [7.75, 0.25], + "HfsY": [7.25, 0.25], + "9RbY": [7.25, 0.75] + }, + "vertices": ["9RbY", "HfsY", "YyBo", "OwBJ"], + "texture": 15 + }, + "1hmcvGBk": { + "uv": { + "KBoA": [8.75, 0.75], + "C5s3": [8.75, 0.25], + "IS5N": [8.25, 0.25], + "UZLZ": [8.25, 0.75] + }, + "vertices": ["UZLZ", "IS5N", "C5s3", "KBoA"], + "texture": 15 + }, + "O4BJvLoN": { + "uv": { + "UZLZ": [9.75, 0.75], + "IS5N": [9.75, 0.25], + "KeJY": [9.25, 0.25], + "S7bZ": [9.25, 0.75] + }, + "vertices": ["S7bZ", "KeJY", "IS5N", "UZLZ"], + "texture": 15 + }, + "kx9KAAPA": { + "uv": { + "S7bZ": [10.75, 0.75], + "KeJY": [10.75, 0.25], + "QpFb": [10.25, 0.25], + "yocC": [10.25, 0.75] + }, + "vertices": ["yocC", "QpFb", "KeJY", "S7bZ"], + "texture": 15 + }, + "7xBzzsZo": { + "uv": { + "8QjC": [11.25, 0.75], + "yocC": [11.75, 0.25], + "QpFb": [11.25, 0.25] + }, + "vertices": ["QpFb", "yocC", "8QjC"], + "texture": 15 + }, + "uVFCvy3R": { + "uv": { + "vhJJ": [12.25, 0.75], + "OwBJ": [12.75, 0.25], + "tWGi": [12.25, 0.25] + }, + "vertices": ["tWGi", "OwBJ", "vhJJ"], + "texture": 15 + }, + "WaNtzBKB": { + "uv": { + "tWGi": [13.75, 0.75], + "OwBJ": [13.75, 0.25], + "9RbY": [13.25, 0.25], + "rwOP": [13.25, 0.75] + }, + "vertices": ["rwOP", "9RbY", "OwBJ", "tWGi"], + "texture": 15 + }, + "vTSW5OcT": { + "uv": { + "W8jt": [14.75, 0.75], + "KBoA": [14.75, 0.25], + "UZLZ": [14.25, 0.25], + "TP88": [14.25, 0.75] + }, + "vertices": ["TP88", "UZLZ", "KBoA", "W8jt"], + "texture": 15 + }, + "TUIIt1x5": { + "uv": { + "TP88": [15.75, 0.75], + "UZLZ": [15.75, 0.25], + "S7bZ": [15.25, 0.25], + "OJX9": [15.25, 0.75] + }, + "vertices": ["OJX9", "S7bZ", "UZLZ", "TP88"], + "texture": 15 + }, + "VvVgk78W": { + "uv": { + "OJX9": [0.75, 1.75], + "S7bZ": [0.75, 1.25], + "yocC": [0.25, 1.25], + "PZ0f": [0.25, 1.75] + }, + "vertices": ["PZ0f", "yocC", "S7bZ", "OJX9"], + "texture": 15 + }, + "MYvVN80s": { + "uv": { + "8QjC": [1.25, 1.75], + "PZ0f": [1.75, 1.25], + "yocC": [1.25, 1.25] + }, + "vertices": ["yocC", "PZ0f", "8QjC"], + "texture": 15 + }, + "Xxx3Dir0": { + "uv": { + "vhJJ": [2.25, 1.75], + "tWGi": [2.75, 1.25], + "AYq6": [2.25, 1.25] + }, + "vertices": ["AYq6", "tWGi", "vhJJ"], + "texture": 15 + }, + "wcliUruQ": { + "uv": { + "AYq6": [3.75, 1.75], + "tWGi": [3.75, 1.25], + "rwOP": [3.25, 1.25], + "Clz7": [3.25, 1.75] + }, + "vertices": ["Clz7", "rwOP", "tWGi", "AYq6"], + "texture": 15 + }, + "AC8pSweT": { + "uv": { + "ddkb": [4.75, 1.75], + "W8jt": [4.75, 1.25], + "TP88": [4.25, 1.25], + "Phwt": [4.25, 1.75] + }, + "vertices": ["Phwt", "TP88", "W8jt", "ddkb"], + "texture": 15 + }, + "iy6mUocz": { + "uv": { + "Phwt": [5.75, 1.75], + "TP88": [5.75, 1.25], + "OJX9": [5.25, 1.25], + "qhSG": [5.25, 1.75] + }, + "vertices": ["qhSG", "OJX9", "TP88", "Phwt"], + "texture": 15 + }, + "XcdOlphk": { + "uv": { + "qhSG": [6.75, 1.75], + "OJX9": [6.75, 1.25], + "PZ0f": [6.25, 1.25], + "2KFR": [6.25, 1.75] + }, + "vertices": ["2KFR", "PZ0f", "OJX9", "qhSG"], + "texture": 15 + }, + "SmiDIWsL": { + "uv": { + "8QjC": [7.25, 1.75], + "2KFR": [7.75, 1.25], + "PZ0f": [7.25, 1.25] + }, + "vertices": ["PZ0f", "2KFR", "8QjC"], + "texture": 15 + }, + "sHO7ks0Z": { + "uv": { + "vhJJ": [8.25, 1.75], + "AYq6": [8.75, 1.25], + "13x6": [8.25, 1.25] + }, + "vertices": ["13x6", "AYq6", "vhJJ"], + "texture": 15 + }, + "X1LTFYRX": { + "uv": { + "13x6": [9.75, 1.75], + "AYq6": [9.75, 1.25], + "Clz7": [9.25, 1.25], + "7asH": [9.25, 1.75] + }, + "vertices": ["7asH", "Clz7", "AYq6", "13x6"], + "texture": 15 + }, + "2yagsWv6": { + "uv": { + "rIID": [10.75, 1.75], + "ddkb": [10.75, 1.25], + "Phwt": [10.25, 1.25], + "2eBc": [10.25, 1.75] + }, + "vertices": ["2eBc", "Phwt", "ddkb", "rIID"], + "texture": 15 + }, + "XA5lNjst": { + "uv": { + "2eBc": [11.75, 1.75], + "Phwt": [11.75, 1.25], + "qhSG": [11.25, 1.25], + "baM3": [11.25, 1.75] + }, + "vertices": ["baM3", "qhSG", "Phwt", "2eBc"], + "texture": 15 + }, + "Ygcj4wdC": { + "uv": { + "baM3": [12.75, 1.75], + "qhSG": [12.75, 1.25], + "2KFR": [12.25, 1.25], + "35RP": [12.25, 1.75] + }, + "vertices": ["35RP", "2KFR", "qhSG", "baM3"], + "texture": 15 + }, + "m7Ce9uDx": { + "uv": { + "8QjC": [13.25, 1.75], + "35RP": [13.75, 1.25], + "2KFR": [13.25, 1.25] + }, + "vertices": ["2KFR", "35RP", "8QjC"], + "texture": 15 + }, + "MLo3SzB8": { + "uv": { + "vhJJ": [14.25, 1.75], + "13x6": [14.75, 1.25], + "53PY": [14.25, 1.25] + }, + "vertices": ["53PY", "13x6", "vhJJ"], + "texture": 15 + }, + "1rfpAtcz": { + "uv": { + "53PY": [15.75, 1.75], + "13x6": [15.75, 1.25], + "7asH": [15.25, 1.25], + "NsXb": [15.25, 1.75] + }, + "vertices": ["NsXb", "7asH", "13x6", "53PY"], + "texture": 15 + }, + "a42rImDx": { + "uv": { + "aLVc": [0.75, 2.75], + "rIID": [0.75, 2.25], + "2eBc": [0.25, 2.25], + "KcNg": [0.25, 2.75] + }, + "vertices": ["KcNg", "2eBc", "rIID", "aLVc"], + "texture": 15 + }, + "3vOJocS7": { + "uv": { + "KcNg": [1.75, 2.75], + "2eBc": [1.75, 2.25], + "baM3": [1.25, 2.25], + "ar6O": [1.25, 2.75] + }, + "vertices": ["ar6O", "baM3", "2eBc", "KcNg"], + "texture": 15 + }, + "D2Af9725": { + "uv": { + "ar6O": [2.75, 2.75], + "baM3": [2.75, 2.25], + "35RP": [2.25, 2.25], + "fZGN": [2.25, 2.75] + }, + "vertices": ["fZGN", "35RP", "baM3", "ar6O"], + "texture": 15 + }, + "VxgGZCf2": { + "uv": { + "8QjC": [3.25, 2.75], + "fZGN": [3.75, 2.25], + "35RP": [3.25, 2.25] + }, + "vertices": ["35RP", "fZGN", "8QjC"], + "texture": 15 + }, + "E1Intunq": { + "uv": { + "vhJJ": [4.25, 2.75], + "53PY": [4.75, 2.25], + "cf6G": [4.25, 2.25] + }, + "vertices": ["cf6G", "53PY", "vhJJ"], + "texture": 15 + }, + "ANsPkIUD": { + "uv": { + "cf6G": [5.75, 2.75], + "53PY": [5.75, 2.25], + "NsXb": [5.25, 2.25], + "6L0d": [5.25, 2.75] + }, + "vertices": ["6L0d", "NsXb", "53PY", "cf6G"], + "texture": 15 + }, + "hky4vXZs": { + "uv": { + "P9rX": [6.75, 2.75], + "aLVc": [6.75, 2.25], + "KcNg": [6.25, 2.25], + "LfAz": [6.25, 2.75] + }, + "vertices": ["LfAz", "KcNg", "aLVc", "P9rX"], + "texture": 15 + }, + "MdnWKrBw": { + "uv": { + "LfAz": [7.75, 2.75], + "KcNg": [7.75, 2.25], + "ar6O": [7.25, 2.25], + "Aldt": [7.25, 2.75] + }, + "vertices": ["Aldt", "ar6O", "KcNg", "LfAz"], + "texture": 15 + }, + "x5VkzqFN": { + "uv": { + "Aldt": [8.75, 2.75], + "ar6O": [8.75, 2.25], + "fZGN": [8.25, 2.25], + "arCH": [8.25, 2.75] + }, + "vertices": ["arCH", "fZGN", "ar6O", "Aldt"], + "texture": 15 + }, + "yR8j2fnY": { + "uv": { + "8QjC": [9.25, 2.75], + "arCH": [9.75, 2.25], + "fZGN": [9.25, 2.25] + }, + "vertices": ["fZGN", "arCH", "8QjC"], + "texture": 15 + }, + "hyLdc1Q6": { + "uv": { + "vhJJ": [10.25, 2.75], + "cf6G": [10.75, 2.25], + "8i9k": [10.25, 2.25] + }, + "vertices": ["8i9k", "cf6G", "vhJJ"], + "texture": 15 + }, + "A0sjcu7e": { + "uv": { + "8i9k": [11.75, 2.75], + "cf6G": [11.75, 2.25], + "6L0d": [11.25, 2.25], + "odwY": [11.25, 2.75] + }, + "vertices": ["odwY", "6L0d", "cf6G", "8i9k"], + "texture": 15 + }, + "nGDnWgSP": { + "uv": { + "5mdt": [12.75, 2.75], + "P9rX": [12.75, 2.25], + "LfAz": [12.25, 2.25], + "f4nL": [12.25, 2.75] + }, + "vertices": ["f4nL", "LfAz", "P9rX", "5mdt"], + "texture": 15 + }, + "vUpqRqbF": { + "uv": { + "f4nL": [13.75, 2.75], + "LfAz": [13.75, 2.25], + "Aldt": [13.25, 2.25], + "IW10": [13.25, 2.75] + }, + "vertices": ["IW10", "Aldt", "LfAz", "f4nL"], + "texture": 15 + }, + "s05slp5K": { + "uv": { + "IW10": [14.75, 2.75], + "Aldt": [14.75, 2.25], + "arCH": [14.25, 2.25], + "Vgik": [14.25, 2.75] + }, + "vertices": ["Vgik", "arCH", "Aldt", "IW10"], + "texture": 15 + }, + "Sxc6OKkK": { + "uv": { + "8QjC": [15.25, 2.75], + "Vgik": [15.75, 2.25], + "arCH": [15.25, 2.25] + }, + "vertices": ["arCH", "Vgik", "8QjC"], + "texture": 15 + }, + "X3nCaFBv": { + "uv": { + "vhJJ": [0.25, 3.75], + "8i9k": [0.75, 3.25], + "bedr": [0.25, 3.25] + }, + "vertices": ["bedr", "8i9k", "vhJJ"], + "texture": 15 + }, + "XamBI9pA": { + "uv": { + "bedr": [1.75, 3.75], + "8i9k": [1.75, 3.25], + "odwY": [1.25, 3.25], + "mRE8": [1.25, 3.75] + }, + "vertices": ["mRE8", "odwY", "8i9k", "bedr"], + "texture": 15 + }, + "zgN1GtnK": { + "uv": { + "lr5A": [2.75, 3.75], + "5mdt": [2.75, 3.25], + "f4nL": [2.25, 3.25], + "F9rK": [2.25, 3.75] + }, + "vertices": ["F9rK", "f4nL", "5mdt", "lr5A"], + "texture": 15 + }, + "FprSWSc8": { + "uv": { + "F9rK": [3.75, 3.75], + "f4nL": [3.75, 3.25], + "IW10": [3.25, 3.25], + "pQvi": [3.25, 3.75] + }, + "vertices": ["pQvi", "IW10", "f4nL", "F9rK"], + "texture": 15 + }, + "e9rnkzEJ": { + "uv": { + "pQvi": [4.75, 3.75], + "IW10": [4.75, 3.25], + "Vgik": [4.25, 3.25], + "54OX": [4.25, 3.75] + }, + "vertices": ["54OX", "Vgik", "IW10", "pQvi"], + "texture": 15 + }, + "OedC1Ope": { + "uv": { + "8QjC": [5.25, 3.75], + "54OX": [5.75, 3.25], + "Vgik": [5.25, 3.25] + }, + "vertices": ["Vgik", "54OX", "8QjC"], + "texture": 15 + }, + "lIt5gO7w": { + "uv": { + "vhJJ": [6.25, 3.75], + "bedr": [6.75, 3.25], + "VCA7": [6.25, 3.25] + }, + "vertices": ["VCA7", "bedr", "vhJJ"], + "texture": 15 + }, + "fiLiv4eu": { + "uv": { + "VCA7": [7.75, 3.75], + "bedr": [7.75, 3.25], + "mRE8": [7.25, 3.25], + "g8AY": [7.25, 3.75] + }, + "vertices": ["g8AY", "mRE8", "bedr", "VCA7"], + "texture": 15 + }, + "iTZHiYyz": { + "uv": { + "64eD": [8.75, 3.75], + "lr5A": [8.75, 3.25], + "F9rK": [8.25, 3.25], + "8Z7A": [8.25, 3.75] + }, + "vertices": ["8Z7A", "F9rK", "lr5A", "64eD"], + "texture": 15 + }, + "4qdXLnbR": { + "uv": { + "8Z7A": [9.75, 3.75], + "F9rK": [9.75, 3.25], + "pQvi": [9.25, 3.25], + "nnBx": [9.25, 3.75] + }, + "vertices": ["nnBx", "pQvi", "F9rK", "8Z7A"], + "texture": 15 + }, + "a4mGhICC": { + "uv": { + "nnBx": [10.75, 3.75], + "pQvi": [10.75, 3.25], + "54OX": [10.25, 3.25], + "sdgs": [10.25, 3.75] + }, + "vertices": ["sdgs", "54OX", "pQvi", "nnBx"], + "texture": 15 + }, + "SUg8IVYl": { + "uv": { + "8QjC": [11.25, 3.75], + "sdgs": [11.75, 3.25], + "54OX": [11.25, 3.25] + }, + "vertices": ["54OX", "sdgs", "8QjC"], + "texture": 15 + }, + "xtL7Hkve": { + "uv": { + "vhJJ": [12.25, 3.75], + "VCA7": [12.75, 3.25], + "IcjH": [12.25, 3.25] + }, + "vertices": ["IcjH", "VCA7", "vhJJ"], + "texture": 15 + }, + "JRIElpEj": { + "uv": { + "IcjH": [13.75, 3.75], + "VCA7": [13.75, 3.25], + "g8AY": [13.25, 3.25], + "Cmxu": [13.25, 3.75] + }, + "vertices": ["Cmxu", "g8AY", "VCA7", "IcjH"], + "texture": 15 + }, + "N6zi1Z8V": { + "uv": { + "YR9K": [14.75, 3.75], + "64eD": [14.75, 3.25], + "8Z7A": [14.25, 3.25], + "rBqN": [14.25, 3.75] + }, + "vertices": ["rBqN", "8Z7A", "64eD", "YR9K"], + "texture": 15 + }, + "EeFNXyFu": { + "uv": { + "rBqN": [15.75, 3.75], + "8Z7A": [15.75, 3.25], + "nnBx": [15.25, 3.25], + "G7iR": [15.25, 3.75] + }, + "vertices": ["G7iR", "nnBx", "8Z7A", "rBqN"], + "texture": 15 + }, + "HVtNylvy": { + "uv": { + "G7iR": [0.75, 4.75], + "nnBx": [0.75, 4.25], + "sdgs": [0.25, 4.25], + "G7Yn": [0.25, 4.75] + }, + "vertices": ["G7Yn", "sdgs", "nnBx", "G7iR"], + "texture": 15 + }, + "GuhboYu6": { + "uv": { + "8QjC": [1.25, 4.75], + "G7Yn": [1.75, 4.25], + "sdgs": [1.25, 4.25] + }, + "vertices": ["sdgs", "G7Yn", "8QjC"], + "texture": 15 + }, + "FatZEx29": { + "uv": { + "vhJJ": [2.25, 4.75], + "IcjH": [2.75, 4.25], + "orU0": [2.25, 4.25] + }, + "vertices": ["orU0", "IcjH", "vhJJ"], + "texture": 15 + }, + "WQlxRTJ0": { + "uv": { + "orU0": [3.75, 4.75], + "IcjH": [3.75, 4.25], + "Cmxu": [3.25, 4.25], + "90Fb": [3.25, 4.75] + }, + "vertices": ["90Fb", "Cmxu", "IcjH", "orU0"], + "texture": 15 + }, + "KLpy0qBF": { + "uv": { + "zNGN": [4.75, 4.75], + "YR9K": [4.75, 4.25], + "rBqN": [4.25, 4.25], + "73Hf": [4.25, 4.75] + }, + "vertices": ["73Hf", "rBqN", "YR9K", "zNGN"], + "texture": 15 + }, + "xp2sa1WG": { + "uv": { + "73Hf": [5.75, 4.75], + "rBqN": [5.75, 4.25], + "G7iR": [5.25, 4.25], + "4ExO": [5.25, 4.75] + }, + "vertices": ["4ExO", "G7iR", "rBqN", "73Hf"], + "texture": 15 + }, + "LXV1I4uf": { + "uv": { + "4ExO": [6.75, 4.75], + "G7iR": [6.75, 4.25], + "G7Yn": [6.25, 4.25], + "f7le": [6.25, 4.75] + }, + "vertices": ["f7le", "G7Yn", "G7iR", "4ExO"], + "texture": 15 + }, + "33MWdMUL": { + "uv": { + "8QjC": [7.25, 4.75], + "f7le": [7.75, 4.25], + "G7Yn": [7.25, 4.25] + }, + "vertices": ["G7Yn", "f7le", "8QjC"], + "texture": 15 + }, + "nvCDOv6y": { + "uv": { + "C5s3": [4.5021, 0.9892], + "zNGN": [0.1463, 0.9892], + "HfsY": [4.6484, 0], + "90Fb": [0, 0] + }, + "vertices": ["90Fb", "HfsY", "zNGN", "C5s3"], + "texture": 15 + }, + "yfWtEI7A": { + "uv": { + "KBoA": [6.5021, 0.9892], + "C5s3": [2.1463, 0.9892], + "9RbY": [6.6484, 0], + "HfsY": [2, 0] + }, + "vertices": ["HfsY", "9RbY", "C5s3", "KBoA"], + "texture": 15 + }, + "ocFuf3xz": { + "uv": { + "W8jt": [9.5021, 0.9892], + "KBoA": [5.1463, 0.9892], + "rwOP": [9.6484, 0], + "9RbY": [5, 0] + }, + "vertices": ["9RbY", "rwOP", "KBoA", "W8jt"], + "texture": 15 + }, + "eulgYJCm": { + "uv": { + "ddkb": [4.5021, 0.9892], + "W8jt": [0.1463, 0.9892], + "Clz7": [4.6484, 0], + "rwOP": [0, 0] + }, + "vertices": ["rwOP", "Clz7", "W8jt", "ddkb"], + "texture": 15 + }, + "qSrVFTTR": { + "uv": { + "rIID": [7.5021, 0.9892], + "ddkb": [3.1463, 0.9892], + "7asH": [7.6484, 0], + "Clz7": [3, 0] + }, + "vertices": ["Clz7", "7asH", "ddkb", "rIID"], + "texture": 15 + }, + "5HJj304c": { + "uv": { + "aLVc": [10.5021, 0.9892], + "rIID": [6.1463, 0.9892], + "NsXb": [10.6484, 0], + "7asH": [6, 0] + }, + "vertices": ["7asH", "NsXb", "rIID", "aLVc"], + "texture": 15 + }, + "UY5zSthE": { + "uv": { + "P9rX": [5.5021, 0.9892], + "aLVc": [1.1463, 0.9892], + "6L0d": [5.6484, 0], + "NsXb": [1, 0] + }, + "vertices": ["NsXb", "6L0d", "aLVc", "P9rX"], + "texture": 15 + }, + "dKCOWHfj": { + "uv": { + "5mdt": [8.5021, 0.9892], + "P9rX": [4.1463, 0.9892], + "odwY": [8.6484, 0], + "6L0d": [4, 0] + }, + "vertices": ["6L0d", "odwY", "P9rX", "5mdt"], + "texture": 15 + }, + "aGdI6sMr": { + "uv": { + "lr5A": [4.5021, 1.9892], + "5mdt": [0.1463, 1.9892], + "mRE8": [4.6484, 1], + "odwY": [0, 1] + }, + "vertices": ["odwY", "mRE8", "5mdt", "lr5A"], + "texture": 15 + }, + "NgqcgSvB": { + "uv": { + "64eD": [6.5021, 1.9892], + "lr5A": [2.1463, 1.9892], + "g8AY": [6.6484, 1], + "mRE8": [2, 1] + }, + "vertices": ["mRE8", "g8AY", "lr5A", "64eD"], + "texture": 15 + }, + "cSZhnQck": { + "uv": { + "YR9K": [9.5021, 1.9892], + "64eD": [5.1463, 1.9892], + "Cmxu": [9.6484, 1], + "g8AY": [5, 1] + }, + "vertices": ["g8AY", "Cmxu", "64eD", "YR9K"], + "texture": 15 + }, + "dqNbUXu2": { + "uv": { + "zNGN": [4.5021, 1.9892], + "YR9K": [0.1463, 1.9892], + "90Fb": [4.6484, 1], + "Cmxu": [0, 1] + }, + "vertices": ["Cmxu", "90Fb", "YR9K", "zNGN"], + "texture": 15 + } + }, + "type": "mesh", + "uuid": "75c4b7a5-33bb-d981-6233-1ef3fe04f975" + }, + { + "name": "outer", + "color": 8, + "origin": [0, -0.25, -13], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "8QjC": [0, -8.25, 0], + "zNGN": [2.31192, 178.1859, 8.6282], + "73Hf": [2.27546, -0.14744, 8.49211], + "4ExO": [1.9706, -4.19872, 7.35439], + "f7le": [1.13773, -7.16446, 4.24606], + "C5s3": [6.31628, 175.14744, 6.31628], + "IS5N": [6.21666, -0.1859, 6.21666], + "KeJY": [5.38378, -4.19872, 5.38378], + "QpFb": [3.10833, -7.16446, 3.10833], + "KBoA": [8.6282, 175.14744, 2.31192], + "UZLZ": [8.49211, -0.1859, 2.27546], + "S7bZ": [7.35439, -4.19872, 1.9706], + "yocC": [4.24606, -7.16446, 1.13773], + "W8jt": [8.6282, 175.14744, -2.31192], + "TP88": [8.49211, -0.1859, -2.27546], + "OJX9": [7.35439, -4.19872, -1.9706], + "PZ0f": [4.24606, -7.16446, -1.13773], + "ddkb": [6.31628, 178.1859, -6.31628], + "Phwt": [6.21666, -0.14744, -6.21666], + "qhSG": [5.38378, -4.19872, -5.38378], + "2KFR": [3.10833, -7.16446, -3.10833], + "rIID": [2.31192, 178.1859, -8.6282], + "2eBc": [2.27546, -0.14744, -8.49211], + "baM3": [1.9706, -4.19872, -7.35439], + "35RP": [1.13773, -7.16446, -4.24606], + "aLVc": [-2.31192, 178.1859, -8.6282], + "KcNg": [-2.27546, -0.14744, -8.49211], + "ar6O": [-1.9706, -4.19872, -7.35439], + "fZGN": [-1.13773, -7.16446, -4.24606], + "P9rX": [-6.31628, 178.1859, -6.31628], + "LfAz": [-6.21666, -0.14744, -6.21666], + "Aldt": [-5.38378, -4.19872, -5.38378], + "arCH": [-3.10833, -7.16446, -3.10833], + "5mdt": [-8.6282, 178.1859, -2.31192], + "f4nL": [-8.49211, -0.14744, -2.27546], + "IW10": [-7.35439, -4.19872, -1.9706], + "Vgik": [-4.24606, -7.16446, -1.13773], + "lr5A": [-8.6282, 178.1859, 2.31192], + "F9rK": [-8.49211, -0.14744, 2.27546], + "pQvi": [-7.35439, -4.19872, 1.9706], + "54OX": [-4.24606, -7.16446, 1.13773], + "64eD": [-6.31628, 178.1859, 6.31628], + "8Z7A": [-6.21666, -0.14744, 6.21666], + "nnBx": [-5.38378, -4.19872, 5.38378], + "sdgs": [-3.10833, -7.16446, 3.10833], + "YR9K": [-2.31192, 178.1859, 8.6282], + "rBqN": [-2.27546, -0.14744, 8.49211], + "G7iR": [-1.9706, -4.19872, 7.35439], + "G7Yn": [-1.13773, -7.16446, 4.24606], + "orU0": [1.2513, 183.08669, 4.66993], + "YyBo": [3.41862, 183.08669, 3.41862], + "vhJJ": [0, 183.25, 0], + "90Fb": [2.18277, 183.0727, 8.14622], + "HfsY": [5.96345, 183.0727, 5.96345], + "OwBJ": [4.66993, 183.08669, 1.2513], + "9RbY": [8.14622, 183.0727, 2.18277], + "tWGi": [4.66993, 183.08669, -1.2513], + "rwOP": [8.14622, 183.0727, -2.18277], + "AYq6": [3.41862, 183.08669, -3.41862], + "Clz7": [5.96345, 183.0727, -5.96345], + "13x6": [1.2513, 183.08669, -4.66993], + "7asH": [2.18277, 183.0727, -8.14622], + "53PY": [-1.2513, 183.08669, -4.66993], + "NsXb": [-2.18277, 183.0727, -8.14622], + "cf6G": [-3.41862, 183.08669, -3.41862], + "6L0d": [-5.96345, 183.0727, -5.96345], + "8i9k": [-4.66993, 183.08669, -1.2513], + "odwY": [-8.14622, 183.0727, -2.18277], + "bedr": [-4.66993, 183.08669, 1.2513], + "mRE8": [-8.14622, 183.0727, 2.18277], + "VCA7": [-3.41862, 183.08669, 3.41862], + "g8AY": [-5.96345, 183.0727, 5.96345], + "IcjH": [-1.2513, 183.08669, 4.66993], + "Cmxu": [-2.18277, 183.0727, 8.14622] + }, + "faces": { + "ZngK3IpC": { + "uv": { + "vhJJ": [0.25, 0.75], + "orU0": [0.75, 0.25], + "YyBo": [0.25, 0.25] + }, + "vertices": ["YyBo", "orU0", "vhJJ"], + "texture": 16 + }, + "L46i6DN5": { + "uv": { + "YyBo": [1.75, 0.75], + "orU0": [1.75, 0.25], + "90Fb": [1.25, 0.25], + "HfsY": [1.25, 0.75] + }, + "vertices": ["HfsY", "90Fb", "orU0", "YyBo"], + "texture": 16 + }, + "eNbWbFkk": { + "uv": { + "C5s3": [2.75, 0.75], + "zNGN": [2.75, 0.25], + "73Hf": [2.25, 0.25], + "IS5N": [2.25, 0.75] + }, + "vertices": ["IS5N", "73Hf", "zNGN", "C5s3"], + "texture": 16 + }, + "roTqvBDD": { + "uv": { + "IS5N": [3.75, 0.75], + "73Hf": [3.75, 0.25], + "4ExO": [3.25, 0.25], + "KeJY": [3.25, 0.75] + }, + "vertices": ["KeJY", "4ExO", "73Hf", "IS5N"], + "texture": 16 + }, + "H5SeHMdG": { + "uv": { + "KeJY": [4.75, 0.75], + "4ExO": [4.75, 0.25], + "f7le": [4.25, 0.25], + "QpFb": [4.25, 0.75] + }, + "vertices": ["QpFb", "f7le", "4ExO", "KeJY"], + "texture": 16 + }, + "9fOaMI7A": { + "uv": { + "8QjC": [5.25, 0.75], + "QpFb": [5.75, 0.25], + "f7le": [5.25, 0.25] + }, + "vertices": ["f7le", "QpFb", "8QjC"], + "texture": 16 + }, + "eHg0Xk2X": { + "uv": { + "vhJJ": [6.25, 0.75], + "YyBo": [6.75, 0.25], + "OwBJ": [6.25, 0.25] + }, + "vertices": ["OwBJ", "YyBo", "vhJJ"], + "texture": 16 + }, + "sRhLlJHL": { + "uv": { + "OwBJ": [7.75, 0.75], + "YyBo": [7.75, 0.25], + "HfsY": [7.25, 0.25], + "9RbY": [7.25, 0.75] + }, + "vertices": ["9RbY", "HfsY", "YyBo", "OwBJ"], + "texture": 16 + }, + "1hmcvGBk": { + "uv": { + "KBoA": [8.75, 0.75], + "C5s3": [8.75, 0.25], + "IS5N": [8.25, 0.25], + "UZLZ": [8.25, 0.75] + }, + "vertices": ["UZLZ", "IS5N", "C5s3", "KBoA"], + "texture": 16 + }, + "O4BJvLoN": { + "uv": { + "UZLZ": [9.75, 0.75], + "IS5N": [9.75, 0.25], + "KeJY": [9.25, 0.25], + "S7bZ": [9.25, 0.75] + }, + "vertices": ["S7bZ", "KeJY", "IS5N", "UZLZ"], + "texture": 16 + }, + "kx9KAAPA": { + "uv": { + "S7bZ": [10.75, 0.75], + "KeJY": [10.75, 0.25], + "QpFb": [10.25, 0.25], + "yocC": [10.25, 0.75] + }, + "vertices": ["yocC", "QpFb", "KeJY", "S7bZ"], + "texture": 16 + }, + "7xBzzsZo": { + "uv": { + "8QjC": [11.25, 0.75], + "yocC": [11.75, 0.25], + "QpFb": [11.25, 0.25] + }, + "vertices": ["QpFb", "yocC", "8QjC"], + "texture": 16 + }, + "uVFCvy3R": { + "uv": { + "vhJJ": [12.25, 0.75], + "OwBJ": [12.75, 0.25], + "tWGi": [12.25, 0.25] + }, + "vertices": ["tWGi", "OwBJ", "vhJJ"], + "texture": 16 + }, + "WaNtzBKB": { + "uv": { + "tWGi": [13.75, 0.75], + "OwBJ": [13.75, 0.25], + "9RbY": [13.25, 0.25], + "rwOP": [13.25, 0.75] + }, + "vertices": ["rwOP", "9RbY", "OwBJ", "tWGi"], + "texture": 16 + }, + "vTSW5OcT": { + "uv": { + "W8jt": [14.75, 0.75], + "KBoA": [14.75, 0.25], + "UZLZ": [14.25, 0.25], + "TP88": [14.25, 0.75] + }, + "vertices": ["TP88", "UZLZ", "KBoA", "W8jt"], + "texture": 16 + }, + "TUIIt1x5": { + "uv": { + "TP88": [15.75, 0.75], + "UZLZ": [15.75, 0.25], + "S7bZ": [15.25, 0.25], + "OJX9": [15.25, 0.75] + }, + "vertices": ["OJX9", "S7bZ", "UZLZ", "TP88"], + "texture": 16 + }, + "VvVgk78W": { + "uv": { + "OJX9": [0.75, 1.75], + "S7bZ": [0.75, 1.25], + "yocC": [0.25, 1.25], + "PZ0f": [0.25, 1.75] + }, + "vertices": ["PZ0f", "yocC", "S7bZ", "OJX9"], + "texture": 16 + }, + "MYvVN80s": { + "uv": { + "8QjC": [1.25, 1.75], + "PZ0f": [1.75, 1.25], + "yocC": [1.25, 1.25] + }, + "vertices": ["yocC", "PZ0f", "8QjC"], + "texture": 16 + }, + "Xxx3Dir0": { + "uv": { + "vhJJ": [2.25, 1.75], + "tWGi": [2.75, 1.25], + "AYq6": [2.25, 1.25] + }, + "vertices": ["AYq6", "tWGi", "vhJJ"], + "texture": 16 + }, + "wcliUruQ": { + "uv": { + "AYq6": [3.75, 1.75], + "tWGi": [3.75, 1.25], + "rwOP": [3.25, 1.25], + "Clz7": [3.25, 1.75] + }, + "vertices": ["Clz7", "rwOP", "tWGi", "AYq6"], + "texture": 16 + }, + "AC8pSweT": { + "uv": { + "ddkb": [4.75, 1.75], + "W8jt": [4.75, 1.25], + "TP88": [4.25, 1.25], + "Phwt": [4.25, 1.75] + }, + "vertices": ["Phwt", "TP88", "W8jt", "ddkb"], + "texture": 16 + }, + "iy6mUocz": { + "uv": { + "Phwt": [5.75, 1.75], + "TP88": [5.75, 1.25], + "OJX9": [5.25, 1.25], + "qhSG": [5.25, 1.75] + }, + "vertices": ["qhSG", "OJX9", "TP88", "Phwt"], + "texture": 16 + }, + "XcdOlphk": { + "uv": { + "qhSG": [6.75, 1.75], + "OJX9": [6.75, 1.25], + "PZ0f": [6.25, 1.25], + "2KFR": [6.25, 1.75] + }, + "vertices": ["2KFR", "PZ0f", "OJX9", "qhSG"], + "texture": 16 + }, + "SmiDIWsL": { + "uv": { + "8QjC": [7.25, 1.75], + "2KFR": [7.75, 1.25], + "PZ0f": [7.25, 1.25] + }, + "vertices": ["PZ0f", "2KFR", "8QjC"], + "texture": 16 + }, + "sHO7ks0Z": { + "uv": { + "vhJJ": [8.25, 1.75], + "AYq6": [8.75, 1.25], + "13x6": [8.25, 1.25] + }, + "vertices": ["13x6", "AYq6", "vhJJ"], + "texture": 16 + }, + "X1LTFYRX": { + "uv": { + "13x6": [9.75, 1.75], + "AYq6": [9.75, 1.25], + "Clz7": [9.25, 1.25], + "7asH": [9.25, 1.75] + }, + "vertices": ["7asH", "Clz7", "AYq6", "13x6"], + "texture": 16 + }, + "2yagsWv6": { + "uv": { + "rIID": [10.75, 1.75], + "ddkb": [10.75, 1.25], + "Phwt": [10.25, 1.25], + "2eBc": [10.25, 1.75] + }, + "vertices": ["2eBc", "Phwt", "ddkb", "rIID"], + "texture": 16 + }, + "XA5lNjst": { + "uv": { + "2eBc": [11.75, 1.75], + "Phwt": [11.75, 1.25], + "qhSG": [11.25, 1.25], + "baM3": [11.25, 1.75] + }, + "vertices": ["baM3", "qhSG", "Phwt", "2eBc"], + "texture": 16 + }, + "Ygcj4wdC": { + "uv": { + "baM3": [12.75, 1.75], + "qhSG": [12.75, 1.25], + "2KFR": [12.25, 1.25], + "35RP": [12.25, 1.75] + }, + "vertices": ["35RP", "2KFR", "qhSG", "baM3"], + "texture": 16 + }, + "m7Ce9uDx": { + "uv": { + "8QjC": [13.25, 1.75], + "35RP": [13.75, 1.25], + "2KFR": [13.25, 1.25] + }, + "vertices": ["2KFR", "35RP", "8QjC"], + "texture": 16 + }, + "MLo3SzB8": { + "uv": { + "vhJJ": [14.25, 1.75], + "13x6": [14.75, 1.25], + "53PY": [14.25, 1.25] + }, + "vertices": ["53PY", "13x6", "vhJJ"], + "texture": 16 + }, + "1rfpAtcz": { + "uv": { + "53PY": [15.75, 1.75], + "13x6": [15.75, 1.25], + "7asH": [15.25, 1.25], + "NsXb": [15.25, 1.75] + }, + "vertices": ["NsXb", "7asH", "13x6", "53PY"], + "texture": 16 + }, + "a42rImDx": { + "uv": { + "aLVc": [0.75, 2.75], + "rIID": [0.75, 2.25], + "2eBc": [0.25, 2.25], + "KcNg": [0.25, 2.75] + }, + "vertices": ["KcNg", "2eBc", "rIID", "aLVc"], + "texture": 16 + }, + "3vOJocS7": { + "uv": { + "KcNg": [1.75, 2.75], + "2eBc": [1.75, 2.25], + "baM3": [1.25, 2.25], + "ar6O": [1.25, 2.75] + }, + "vertices": ["ar6O", "baM3", "2eBc", "KcNg"], + "texture": 16 + }, + "D2Af9725": { + "uv": { + "ar6O": [2.75, 2.75], + "baM3": [2.75, 2.25], + "35RP": [2.25, 2.25], + "fZGN": [2.25, 2.75] + }, + "vertices": ["fZGN", "35RP", "baM3", "ar6O"], + "texture": 16 + }, + "VxgGZCf2": { + "uv": { + "8QjC": [3.25, 2.75], + "fZGN": [3.75, 2.25], + "35RP": [3.25, 2.25] + }, + "vertices": ["35RP", "fZGN", "8QjC"], + "texture": 16 + }, + "E1Intunq": { + "uv": { + "vhJJ": [4.25, 2.75], + "53PY": [4.75, 2.25], + "cf6G": [4.25, 2.25] + }, + "vertices": ["cf6G", "53PY", "vhJJ"], + "texture": 16 + }, + "ANsPkIUD": { + "uv": { + "cf6G": [5.75, 2.75], + "53PY": [5.75, 2.25], + "NsXb": [5.25, 2.25], + "6L0d": [5.25, 2.75] + }, + "vertices": ["6L0d", "NsXb", "53PY", "cf6G"], + "texture": 16 + }, + "hky4vXZs": { + "uv": { + "P9rX": [6.75, 2.75], + "aLVc": [6.75, 2.25], + "KcNg": [6.25, 2.25], + "LfAz": [6.25, 2.75] + }, + "vertices": ["LfAz", "KcNg", "aLVc", "P9rX"], + "texture": 16 + }, + "MdnWKrBw": { + "uv": { + "LfAz": [7.75, 2.75], + "KcNg": [7.75, 2.25], + "ar6O": [7.25, 2.25], + "Aldt": [7.25, 2.75] + }, + "vertices": ["Aldt", "ar6O", "KcNg", "LfAz"], + "texture": 16 + }, + "x5VkzqFN": { + "uv": { + "Aldt": [8.75, 2.75], + "ar6O": [8.75, 2.25], + "fZGN": [8.25, 2.25], + "arCH": [8.25, 2.75] + }, + "vertices": ["arCH", "fZGN", "ar6O", "Aldt"], + "texture": 16 + }, + "yR8j2fnY": { + "uv": { + "8QjC": [9.25, 2.75], + "arCH": [9.75, 2.25], + "fZGN": [9.25, 2.25] + }, + "vertices": ["fZGN", "arCH", "8QjC"], + "texture": 16 + }, + "hyLdc1Q6": { + "uv": { + "vhJJ": [10.25, 2.75], + "cf6G": [10.75, 2.25], + "8i9k": [10.25, 2.25] + }, + "vertices": ["8i9k", "cf6G", "vhJJ"], + "texture": 16 + }, + "A0sjcu7e": { + "uv": { + "8i9k": [11.75, 2.75], + "cf6G": [11.75, 2.25], + "6L0d": [11.25, 2.25], + "odwY": [11.25, 2.75] + }, + "vertices": ["odwY", "6L0d", "cf6G", "8i9k"], + "texture": 16 + }, + "nGDnWgSP": { + "uv": { + "5mdt": [12.75, 2.75], + "P9rX": [12.75, 2.25], + "LfAz": [12.25, 2.25], + "f4nL": [12.25, 2.75] + }, + "vertices": ["f4nL", "LfAz", "P9rX", "5mdt"], + "texture": 16 + }, + "vUpqRqbF": { + "uv": { + "f4nL": [13.75, 2.75], + "LfAz": [13.75, 2.25], + "Aldt": [13.25, 2.25], + "IW10": [13.25, 2.75] + }, + "vertices": ["IW10", "Aldt", "LfAz", "f4nL"], + "texture": 16 + }, + "s05slp5K": { + "uv": { + "IW10": [14.75, 2.75], + "Aldt": [14.75, 2.25], + "arCH": [14.25, 2.25], + "Vgik": [14.25, 2.75] + }, + "vertices": ["Vgik", "arCH", "Aldt", "IW10"], + "texture": 16 + }, + "Sxc6OKkK": { + "uv": { + "8QjC": [15.25, 2.75], + "Vgik": [15.75, 2.25], + "arCH": [15.25, 2.25] + }, + "vertices": ["arCH", "Vgik", "8QjC"], + "texture": 16 + }, + "X3nCaFBv": { + "uv": { + "vhJJ": [0.25, 3.75], + "8i9k": [0.75, 3.25], + "bedr": [0.25, 3.25] + }, + "vertices": ["bedr", "8i9k", "vhJJ"], + "texture": 16 + }, + "XamBI9pA": { + "uv": { + "bedr": [1.75, 3.75], + "8i9k": [1.75, 3.25], + "odwY": [1.25, 3.25], + "mRE8": [1.25, 3.75] + }, + "vertices": ["mRE8", "odwY", "8i9k", "bedr"], + "texture": 16 + }, + "zgN1GtnK": { + "uv": { + "lr5A": [2.75, 3.75], + "5mdt": [2.75, 3.25], + "f4nL": [2.25, 3.25], + "F9rK": [2.25, 3.75] + }, + "vertices": ["F9rK", "f4nL", "5mdt", "lr5A"], + "texture": 16 + }, + "FprSWSc8": { + "uv": { + "F9rK": [3.75, 3.75], + "f4nL": [3.75, 3.25], + "IW10": [3.25, 3.25], + "pQvi": [3.25, 3.75] + }, + "vertices": ["pQvi", "IW10", "f4nL", "F9rK"], + "texture": 16 + }, + "e9rnkzEJ": { + "uv": { + "pQvi": [4.75, 3.75], + "IW10": [4.75, 3.25], + "Vgik": [4.25, 3.25], + "54OX": [4.25, 3.75] + }, + "vertices": ["54OX", "Vgik", "IW10", "pQvi"], + "texture": 16 + }, + "OedC1Ope": { + "uv": { + "8QjC": [5.25, 3.75], + "54OX": [5.75, 3.25], + "Vgik": [5.25, 3.25] + }, + "vertices": ["Vgik", "54OX", "8QjC"], + "texture": 16 + }, + "lIt5gO7w": { + "uv": { + "vhJJ": [6.25, 3.75], + "bedr": [6.75, 3.25], + "VCA7": [6.25, 3.25] + }, + "vertices": ["VCA7", "bedr", "vhJJ"], + "texture": 16 + }, + "fiLiv4eu": { + "uv": { + "VCA7": [7.75, 3.75], + "bedr": [7.75, 3.25], + "mRE8": [7.25, 3.25], + "g8AY": [7.25, 3.75] + }, + "vertices": ["g8AY", "mRE8", "bedr", "VCA7"], + "texture": 16 + }, + "iTZHiYyz": { + "uv": { + "64eD": [8.75, 3.75], + "lr5A": [8.75, 3.25], + "F9rK": [8.25, 3.25], + "8Z7A": [8.25, 3.75] + }, + "vertices": ["8Z7A", "F9rK", "lr5A", "64eD"], + "texture": 16 + }, + "4qdXLnbR": { + "uv": { + "8Z7A": [9.75, 3.75], + "F9rK": [9.75, 3.25], + "pQvi": [9.25, 3.25], + "nnBx": [9.25, 3.75] + }, + "vertices": ["nnBx", "pQvi", "F9rK", "8Z7A"], + "texture": 16 + }, + "a4mGhICC": { + "uv": { + "nnBx": [10.75, 3.75], + "pQvi": [10.75, 3.25], + "54OX": [10.25, 3.25], + "sdgs": [10.25, 3.75] + }, + "vertices": ["sdgs", "54OX", "pQvi", "nnBx"], + "texture": 16 + }, + "SUg8IVYl": { + "uv": { + "8QjC": [11.25, 3.75], + "sdgs": [11.75, 3.25], + "54OX": [11.25, 3.25] + }, + "vertices": ["54OX", "sdgs", "8QjC"], + "texture": 16 + }, + "xtL7Hkve": { + "uv": { + "vhJJ": [12.25, 3.75], + "VCA7": [12.75, 3.25], + "IcjH": [12.25, 3.25] + }, + "vertices": ["IcjH", "VCA7", "vhJJ"], + "texture": 16 + }, + "JRIElpEj": { + "uv": { + "IcjH": [13.75, 3.75], + "VCA7": [13.75, 3.25], + "g8AY": [13.25, 3.25], + "Cmxu": [13.25, 3.75] + }, + "vertices": ["Cmxu", "g8AY", "VCA7", "IcjH"], + "texture": 16 + }, + "N6zi1Z8V": { + "uv": { + "YR9K": [14.75, 3.75], + "64eD": [14.75, 3.25], + "8Z7A": [14.25, 3.25], + "rBqN": [14.25, 3.75] + }, + "vertices": ["rBqN", "8Z7A", "64eD", "YR9K"], + "texture": 16 + }, + "EeFNXyFu": { + "uv": { + "rBqN": [15.75, 3.75], + "8Z7A": [15.75, 3.25], + "nnBx": [15.25, 3.25], + "G7iR": [15.25, 3.75] + }, + "vertices": ["G7iR", "nnBx", "8Z7A", "rBqN"], + "texture": 16 + }, + "HVtNylvy": { + "uv": { + "G7iR": [0.75, 4.75], + "nnBx": [0.75, 4.25], + "sdgs": [0.25, 4.25], + "G7Yn": [0.25, 4.75] + }, + "vertices": ["G7Yn", "sdgs", "nnBx", "G7iR"], + "texture": 16 + }, + "GuhboYu6": { + "uv": { + "8QjC": [1.25, 4.75], + "G7Yn": [1.75, 4.25], + "sdgs": [1.25, 4.25] + }, + "vertices": ["sdgs", "G7Yn", "8QjC"], + "texture": 16 + }, + "FatZEx29": { + "uv": { + "vhJJ": [2.25, 4.75], + "IcjH": [2.75, 4.25], + "orU0": [2.25, 4.25] + }, + "vertices": ["orU0", "IcjH", "vhJJ"], + "texture": 16 + }, + "WQlxRTJ0": { + "uv": { + "orU0": [3.75, 4.75], + "IcjH": [3.75, 4.25], + "Cmxu": [3.25, 4.25], + "90Fb": [3.25, 4.75] + }, + "vertices": ["90Fb", "Cmxu", "IcjH", "orU0"], + "texture": 16 + }, + "KLpy0qBF": { + "uv": { + "zNGN": [4.75, 4.75], + "YR9K": [4.75, 4.25], + "rBqN": [4.25, 4.25], + "73Hf": [4.25, 4.75] + }, + "vertices": ["73Hf", "rBqN", "YR9K", "zNGN"], + "texture": 16 + }, + "xp2sa1WG": { + "uv": { + "73Hf": [5.75, 4.75], + "rBqN": [5.75, 4.25], + "G7iR": [5.25, 4.25], + "4ExO": [5.25, 4.75] + }, + "vertices": ["4ExO", "G7iR", "rBqN", "73Hf"], + "texture": 16 + }, + "LXV1I4uf": { + "uv": { + "4ExO": [6.75, 4.75], + "G7iR": [6.75, 4.25], + "G7Yn": [6.25, 4.25], + "f7le": [6.25, 4.75] + }, + "vertices": ["f7le", "G7Yn", "G7iR", "4ExO"], + "texture": 16 + }, + "33MWdMUL": { + "uv": { + "8QjC": [7.25, 4.75], + "f7le": [7.75, 4.25], + "G7Yn": [7.25, 4.25] + }, + "vertices": ["G7Yn", "f7le", "8QjC"], + "texture": 16 + }, + "nvCDOv6y": { + "uv": { + "C5s3": [4.5021, 0.9892], + "zNGN": [0.1463, 0.9892], + "HfsY": [4.6484, 0], + "90Fb": [0, 0] + }, + "vertices": ["90Fb", "HfsY", "zNGN", "C5s3"], + "texture": 16 + }, + "yfWtEI7A": { + "uv": { + "KBoA": [6.5021, 0.9892], + "C5s3": [2.1463, 0.9892], + "9RbY": [6.6484, 0], + "HfsY": [2, 0] + }, + "vertices": ["HfsY", "9RbY", "C5s3", "KBoA"], + "texture": 16 + }, + "ocFuf3xz": { + "uv": { + "W8jt": [9.5021, 0.9892], + "KBoA": [5.1463, 0.9892], + "rwOP": [9.6484, 0], + "9RbY": [5, 0] + }, + "vertices": ["9RbY", "rwOP", "KBoA", "W8jt"], + "texture": 16 + }, + "eulgYJCm": { + "uv": { + "ddkb": [4.5021, 0.9892], + "W8jt": [0.1463, 0.9892], + "Clz7": [4.6484, 0], + "rwOP": [0, 0] + }, + "vertices": ["rwOP", "Clz7", "W8jt", "ddkb"], + "texture": 16 + }, + "qSrVFTTR": { + "uv": { + "rIID": [7.5021, 0.9892], + "ddkb": [3.1463, 0.9892], + "7asH": [7.6484, 0], + "Clz7": [3, 0] + }, + "vertices": ["Clz7", "7asH", "ddkb", "rIID"], + "texture": 16 + }, + "5HJj304c": { + "uv": { + "aLVc": [10.5021, 0.9892], + "rIID": [6.1463, 0.9892], + "NsXb": [10.6484, 0], + "7asH": [6, 0] + }, + "vertices": ["7asH", "NsXb", "rIID", "aLVc"], + "texture": 16 + }, + "UY5zSthE": { + "uv": { + "P9rX": [5.5021, 0.9892], + "aLVc": [1.1463, 0.9892], + "6L0d": [5.6484, 0], + "NsXb": [1, 0] + }, + "vertices": ["NsXb", "6L0d", "aLVc", "P9rX"], + "texture": 16 + }, + "dKCOWHfj": { + "uv": { + "5mdt": [8.5021, 0.9892], + "P9rX": [4.1463, 0.9892], + "odwY": [8.6484, 0], + "6L0d": [4, 0] + }, + "vertices": ["6L0d", "odwY", "P9rX", "5mdt"], + "texture": 16 + }, + "aGdI6sMr": { + "uv": { + "lr5A": [4.5021, 1.9892], + "5mdt": [0.1463, 1.9892], + "mRE8": [4.6484, 1], + "odwY": [0, 1] + }, + "vertices": ["odwY", "mRE8", "5mdt", "lr5A"], + "texture": 16 + }, + "NgqcgSvB": { + "uv": { + "64eD": [6.5021, 1.9892], + "lr5A": [2.1463, 1.9892], + "g8AY": [6.6484, 1], + "mRE8": [2, 1] + }, + "vertices": ["mRE8", "g8AY", "lr5A", "64eD"], + "texture": 16 + }, + "cSZhnQck": { + "uv": { + "YR9K": [9.5021, 1.9892], + "64eD": [5.1463, 1.9892], + "Cmxu": [9.6484, 1], + "g8AY": [5, 1] + }, + "vertices": ["g8AY", "Cmxu", "64eD", "YR9K"], + "texture": 16 + }, + "dqNbUXu2": { + "uv": { + "zNGN": [4.5021, 1.9892], + "YR9K": [0.1463, 1.9892], + "90Fb": [4.6484, 1], + "Cmxu": [0, 1] + }, + "vertices": ["Cmxu", "90Fb", "YR9K", "zNGN"], + "texture": 16 + } + }, + "type": "mesh", + "uuid": "6a178103-1589-41fe-b037-1f65c1aefa98" + }, + { + "name": "circle", + "color": 0, + "origin": [0, 813, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "Lb68": [0, 0, 0], + "lHYq": [63.78889, 0, 154], + "D3xM": [154, 0, 63.78889], + "GUjY": [154, 0, -63.78889], + "cjjE": [63.78889, 0, -154], + "Ykzo": [-63.78889, 0, -154], + "Ipqy": [-154, 0, -63.78889], + "Tt0B": [-154, 0, 63.78889], + "xSe6": [-63.78889, 0, 154], + "1HYu": [-63.78889, -602, -154], + "C5c8": [-154, -602, -63.78889], + "TSr5": [-154, -602, 63.78889], + "Ac4o": [-63.78889, -602, 154], + "qd6r": [63.78889, -602, 154], + "yXpp": [154, -602, 63.78889], + "eWzF": [154, -602, -63.78889], + "Erg7": [63.78889, -602, -154] + }, + "faces": { + "ZZCs9WCf": { + "uv": { + "Lb68": [0, 26.5097], + "D3xM": [64, 53.0194], + "GUjY": [64, 0] + }, + "vertices": ["GUjY", "D3xM", "Lb68"], + "texture": 17 + }, + "CwixZAzB": { + "uv": { + "Lb68": [0, 48.98345], + "GUjY": [69.27311, 48.98345], + "cjjE": [48.98353, 0] + }, + "vertices": ["cjjE", "GUjY", "Lb68"], + "texture": 17 + }, + "E9Yh0wnI": { + "uv": { + "Lb68": [26.5097, 64], + "cjjE": [53.0194, 0], + "Ykzo": [0, 0] + }, + "vertices": ["Ykzo", "cjjE", "Lb68"], + "texture": 17 + }, + "tA6sGfKX": { + "uv": { + "Lb68": [48.98345, 69.27311], + "Ykzo": [48.98345, 0], + "Ipqy": [0, 20.28958] + }, + "vertices": ["Ipqy", "Ykzo", "Lb68"], + "texture": 17 + }, + "uiEnmbKW": { + "uv": { + "Lb68": [64, 26.5097], + "Ipqy": [0, 0], + "Tt0B": [0, 53.0194] + }, + "vertices": ["Tt0B", "Ipqy", "Lb68"], + "texture": 17 + }, + "86YV9ACJ": { + "uv": { + "Lb68": [69.27311, 0], + "Tt0B": [0, 0], + "xSe6": [20.28958, 48.98345] + }, + "vertices": ["xSe6", "Tt0B", "Lb68"], + "texture": 17 + }, + "kES0GHbH": { + "uv": { + "Lb68": [26.5097, 0], + "xSe6": [0, 64], + "lHYq": [53.0194, 64] + }, + "vertices": ["lHYq", "xSe6", "Lb68"], + "texture": 17 + }, + "homMWLpb": { + "uv": { + "Lb68": [0, 0], + "lHYq": [0, 69.27311], + "D3xM": [48.98345, 48.98353] + }, + "vertices": ["D3xM", "lHYq", "Lb68"], + "texture": 17 + }, + "hEsVeMfN": { + "uv": { + "Ipqy": [1920.5778, 0], + "Tt0B": [0, 0], + "C5c8": [1920.5778, 1920], + "TSr5": [0, 1920] + }, + "vertices": ["TSr5", "C5c8", "Tt0B", "Ipqy"], + "texture": 17 + }, + "ezD7Hxz3": { + "uv": { + "Tt0B": [0, 0], + "xSe6": [1920.5778, 0], + "TSr5": [0, 1920], + "Ac4o": [1920.5778, 1920] + }, + "vertices": ["Ac4o", "TSr5", "xSe6", "Tt0B"], + "texture": 17 + }, + "jP4AAqJP": { + "uv": { + "xSe6": [1920.5778, 0], + "lHYq": [0, 0], + "Ac4o": [1920.5778, 1920], + "qd6r": [0, 1920] + }, + "vertices": ["qd6r", "Ac4o", "lHYq", "xSe6"], + "texture": 17 + }, + "Y1EEqygM": { + "uv": { + "lHYq": [0, 0], + "D3xM": [1920.5778, 0], + "qd6r": [0, 1920], + "yXpp": [1920.5778, 1920] + }, + "vertices": ["yXpp", "qd6r", "D3xM", "lHYq"], + "texture": 17 + }, + "6zbkNjOZ": { + "uv": { + "D3xM": [1920.5778, 0], + "GUjY": [0, 0], + "yXpp": [1920.5778, 1920], + "eWzF": [0, 1920] + }, + "vertices": ["eWzF", "yXpp", "GUjY", "D3xM"], + "texture": 17 + }, + "P0gjfTlT": { + "uv": { + "GUjY": [0, 0], + "cjjE": [1920.5778, 0], + "eWzF": [0, 1920], + "Erg7": [1920.5778, 1920] + }, + "vertices": ["Erg7", "eWzF", "cjjE", "GUjY"], + "texture": 17 + }, + "sI0pS4K9": { + "uv": { + "Ykzo": [0, 0], + "Ipqy": [1920.5778, 0], + "1HYu": [0, 1920], + "C5c8": [1920.5778, 1920] + }, + "vertices": ["C5c8", "1HYu", "Ipqy", "Ykzo"], + "texture": 17 + }, + "suT0RS9d": { + "uv": { + "cjjE": [1920.5778, 0], + "Ykzo": [0, 0], + "Erg7": [1920.5778, 1920], + "1HYu": [0, 1920] + }, + "vertices": ["1HYu", "Erg7", "Ykzo", "cjjE"], + "texture": 17 + } + }, + "type": "mesh", + "uuid": "09a82128-c2da-4050-4365-ba9fac88f114" } ], "outliner": [ @@ -10430,7 +17134,7 @@ "f2ee2225-6cf0-0d4a-cde5-856d38b66daa", { "name": "Eyes", - "origin": [0, 25.245, -3.78], + "origin": [0, 25.245, -3.28], "color": 0, "uuid": "a1dd5a7e-241b-749a-81e9-19c48e29f67d", "export": true, @@ -10444,10 +17148,9 @@ }, "13b888c6-ccc6-3eba-eac8-25aa02e3ae0a", "d10a4c76-5e2b-18bf-de9f-e3dc84e195ec", - "6ee6c485-55e3-677f-8a8a-6437317da917", { "name": "HelmetPivot", - "origin": [0, 21.6, 0], + "origin": [0, 21.6, 0.5], "color": 0, "uuid": "95e8d8bb-c005-1f2b-4ff0-56a7861dac90", "export": true, @@ -10461,7 +17164,7 @@ }, { "name": "HelmetItemPivot", - "origin": [0, 21.6, 0], + "origin": [0, 21.6, 0.5], "color": 0, "uuid": "895f5668-c8b7-aeb4-0085-2a456ba3451a", "export": true, @@ -10475,7 +17178,7 @@ }, { "name": "LeftSpyglassPivot", - "origin": [-1.8, 26.1, -3.6], + "origin": [-1.8, 26.1, -3.1], "color": 0, "uuid": "652f5f01-1c60-78ed-cfd0-b0f7a02f265c", "export": true, @@ -10489,7 +17192,7 @@ }, { "name": "RightSpyglassPivot", - "origin": [1.8, 26.1, -3.6], + "origin": [1.8, 26.1, -3.1], "color": 0, "uuid": "37b6d76a-b922-bdc1-c509-f5907127af15", "export": true, @@ -10500,6 +17203,21 @@ "autouv": 0, "selected": false, "children": [] + }, + "37bab61f-3c16-71cc-fa8a-bae5c0bee841", + { + "name": "bone", + "origin": [0, 22.5, 0.5], + "color": 0, + "uuid": "fd251d94-ebbb-f14a-6bde-0d9c3d219b27", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [] } ] }, @@ -10584,7 +17302,7 @@ "mirror_uv": false, "isOpen": true, "locked": false, - "visibility": false, + "visibility": true, "autouv": 0, "selected": false, "children": [ @@ -10597,7 +17315,7 @@ "mirror_uv": false, "isOpen": true, "locked": false, - "visibility": false, + "visibility": true, "autouv": 0, "selected": false, "children": ["9d5d4d0c-3741-bd02-c98e-a172432aa02f"] @@ -10611,7 +17329,7 @@ "mirror_uv": false, "isOpen": true, "locked": false, - "visibility": false, + "visibility": true, "autouv": 0, "selected": false, "children": ["96a3cb8c-5a5d-c76f-8090-446b052c4253"] @@ -10662,7 +17380,34 @@ "autouv": 0, "selected": false, "children": [ - "3ff463ae-9682-6417-285e-b19d1b2220eb", + { + "name": "LeftHandPlain", + "origin": [-6.525, 11.7, 0.36], + "color": 0, + "uuid": "57cf0e3b-4824-33b7-034f-40841a713813", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["e59b8213-b69b-c95c-e4c8-7ade84e43e61"] + }, + { + "name": "LeftHandFist", + "origin": [-6.525, 11.7, 0.36], + "color": 0, + "uuid": "9d791a47-f1e1-c409-d6bb-5347c8460983", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["92f7a675-d5dd-e014-4501-2f70b0840d8f"] + }, { "name": "LeftItemPivot", "origin": [-4.95, 10.8, -0.99], @@ -10725,12 +17470,25 @@ "autouv": 0, "selected": false, "children": [ - "87c7237b-f5b2-6534-e9bd-e1cb4eceaeda", { - "name": "RightCamera", - "origin": [3.73333, 13.44444, 0], + "name": "RightHandPlain", + "origin": [6.925, 11.7, 0.36], "color": 0, - "uuid": "cfaeacce-4968-d72b-9a37-e2f0fb4255e8", + "uuid": "41da1498-ef5d-9fde-e6fb-f0064efa0c2c", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["5c0c8088-4fec-62c4-daa4-9a61e11c8b1a"] + }, + { + "name": "RightHandFist", + "origin": [6.925, 11.7, 0.36], + "color": 0, + "uuid": "1dba5304-1caa-6e07-c0a6-d7664f2c5ed4", "export": true, "mirror_uv": false, "isOpen": true, @@ -10738,17 +17496,21 @@ "visibility": false, "autouv": 0, "selected": false, - "children": [ - "28edf6c3-9e51-9aa6-e986-06718e224cf4", - "6f8d85c8-d224-3d60-439e-e6026a8bb67a", - "bb3d788f-0b96-faf1-c93e-ec31a94c8ac5", - "fcf1645a-dea9-04d1-2e0d-fe655d4bafcc", - "8999e835-8300-56d0-e735-274e3f8c42a3", - "9b51edf7-90e0-226b-2ced-771b9667b3c6", - "a1daae99-e186-4045-047f-33a8f6ec8b68", - "5640faf0-69c0-0cca-307d-37e784b29730", - "a85c0339-e7a5-65d2-88a1-21b5f2347100" - ] + "children": ["a7ff4b5e-7042-a38c-c883-f2e72ff2dd7c"] + }, + { + "name": "RightCamera", + "origin": [3.73333, 13.44444, 0], + "color": 0, + "uuid": "569881c8-a2cc-6fe1-d699-56c17335934f", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [] }, { "name": "RightItemPivot", @@ -10757,7 +17519,7 @@ "uuid": "d5c28e0c-2ec5-296a-42c7-59967676aebe", "export": true, "mirror_uv": false, - "isOpen": false, + "isOpen": true, "locked": false, "visibility": true, "autouv": 0, @@ -10940,37 +17702,322 @@ "selected": false, "children": ["c1a191fa-bda9-da93-b666-4ee63af908b3"] }, - "58a66c62-16cb-55b7-2195-1e1a1280b174" + "58a66c62-16cb-55b7-2195-1e1a1280b174", + "3ff463ae-9682-6417-285e-b19d1b2220eb", + { + "name": "symbols", + "origin": [0, 13, 8], + "color": 0, + "uuid": "257888ea-540d-c844-892e-76855e5ac593", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": [ + { + "name": "s1", + "origin": [-6, 15, 8], + "color": 0, + "uuid": "cd23c28a-f1a0-ae4e-00cd-c519e5e71ed0", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["b92e3959-84e9-137a-08fd-f02494193524"] + }, + { + "name": "s2", + "origin": [2, 15, 8], + "color": 0, + "uuid": "43622244-f03f-dc0d-a522-2d01c2ca50e1", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["27fc6f62-950d-dcda-085c-84309264ffe8"] + }, + { + "name": "s3", + "origin": [10, 15, 8], + "color": 0, + "uuid": "8091a46a-25d6-0558-047c-e2098bb1126c", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["8bf93158-6028-7e7d-537e-e421536deee4"] + }, + { + "name": "s4", + "origin": [18, 15, 8], + "color": 0, + "uuid": "8af6dfdb-3ff0-e614-572d-238ed04ce4ef", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["1579092f-ba31-f220-1b8d-ba5d4a99f28f"] + }, + { + "name": "sx1", + "origin": [-6, 11, 8], + "color": 0, + "uuid": "34dfaf06-1387-a2c6-f3e6-99793044e82d", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["941a4272-5b70-00ad-45a4-aacc85f521f0"] + }, + { + "name": "sx2", + "origin": [-2, 11, 8], + "color": 0, + "uuid": "bb176c22-6ae6-6c8d-3125-6dc4a4b34b04", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["be7264de-a991-9452-4993-b0bb19ad56d3"] + }, + { + "name": "sx3", + "origin": [2, 11, 8], + "color": 0, + "uuid": "dd3dbc09-2543-5b44-0d51-139155e860e2", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["dacb6415-2bc6-9d5f-844e-37615bc10066"] + }, + { + "name": "sx4", + "origin": [6, 11, 8], + "color": 0, + "uuid": "0062d29b-c2f9-6c29-ecdb-744857789699", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["363579ea-e5bc-b6a8-7cb3-1ff461c918c0"] + } + ] + }, + { + "name": "RipeCamera", + "origin": [1.73333, 13.44444, 0], + "color": 0, + "uuid": "cfaeacce-4968-d72b-9a37-e2f0fb4255e8", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": true, + "children": [ + "28edf6c3-9e51-9aa6-e986-06718e224cf4", + "6f8d85c8-d224-3d60-439e-e6026a8bb67a", + "bb3d788f-0b96-faf1-c93e-ec31a94c8ac5", + "fcf1645a-dea9-04d1-2e0d-fe655d4bafcc", + "8999e835-8300-56d0-e735-274e3f8c42a3", + "9b51edf7-90e0-226b-2ced-771b9667b3c6", + "a1daae99-e186-4045-047f-33a8f6ec8b68", + "5640faf0-69c0-0cca-307d-37e784b29730", + "a85c0339-e7a5-65d2-88a1-21b5f2347100" + ] + }, + { + "name": "Add", + "origin": [0, 0, 0], + "color": 0, + "uuid": "e0030be9-455f-29b9-38fd-cb9084d3ec66", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": [ + { + "name": "cracks", + "origin": [0, 0, -13], + "color": 0, + "uuid": "0d076dec-3c72-d095-dcbb-580e565eac0d", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["0d41ca09-736e-56df-7902-f4493f19863e"] + }, + { + "name": "fountain_start", + "origin": [0, -8, -13], + "color": 0, + "uuid": "bde38dfd-d839-cf9b-814b-9ffdb9ede731", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": [ + "bc6494c5-f257-6646-6d66-c5c408173de4", + { + "name": "fountain_start_outer", + "origin": [0, 0, 1], + "color": 0, + "uuid": "3ace12ce-fb59-0b04-7336-e97288425ea6", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["5305cce9-ebff-656a-3edd-cc991cbcfe47"] + } + ] + }, + { + "name": "fountain", + "origin": [0, -8.48884, -13], + "color": 0, + "uuid": "c8c19cb6-1fe5-f43f-5b6e-d46a3fa343b9", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": [ + "75c4b7a5-33bb-d981-6233-1ef3fe04f975", + { + "name": "fountain_outer", + "origin": [0, 0, 1], + "color": 0, + "uuid": "f7c055ef-5fcd-2246-53c5-967637458855", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["6a178103-1589-41fe-b037-1f65c1aefa98"] + } + ] + }, + { + "name": "fountain_cap", + "origin": [0, 25.98684, -13], + "color": 0, + "uuid": "1b170149-39ce-f9a9-0a59-ebdfcaeef48b", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": [ + { + "name": "fountain_cap_outer", + "origin": [0, 0, 1], + "color": 0, + "uuid": "8369a372-0b71-a773-31a0-e707a966264b", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": [] + } + ] + }, + { + "name": "fountain_cap2", + "origin": [0, 34.98684, -13], + "color": 0, + "uuid": "93699a35-3b66-981e-b702-e0b2b14e22ea", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": [ + { + "name": "fountain_cap_outer2", + "origin": [0, 0, 1], + "color": 0, + "uuid": "26e8db58-fa0c-3fe3-867d-240d5426c539", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": [] + } + ] + }, + { + "name": "smog", + "origin": [0, 0, 0], + "color": 0, + "uuid": "f1eba479-2a5a-f919-bb13-a58163a6f03b", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["09a82128-c2da-4050-4365-ba9fac88f114"] + } + ] + } ], "textures": [ - { - "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/akiracombined_v4.png", - "name": "akiracombined_v4.png", - "folder": "", - "namespace": "", - "id": "0", - "group": "", - "width": 36, - "height": 60, - "uv_width": 36, - "uv_height": 60, - "particle": false, - "use_as_default": false, - "layers_enabled": false, - "sync_to_project": "", - "render_mode": "default", - "render_sides": "auto", - "pbr_channel": "color", - "frame_time": 1, - "frame_order_type": "loop", - "frame_order": "", - "frame_interpolate": false, - "visible": true, - "internal": false, - "saved": true, - "uuid": "52081aa1-5867-5eef-7a66-414d06fb2d1a", - "relative_path": "akiracombined_v4.png" - }, { "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/camera.png", "name": "camera.png", @@ -10999,6 +18046,34 @@ "uuid": "bdf66bbf-25dc-ec31-2ce8-7208db05773d", "relative_path": "camera.png" }, + { + "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/akiracombined_v4.png", + "name": "akiracombined_v4.png", + "folder": "", + "namespace": "", + "id": "0", + "group": "", + "width": 36, + "height": 60, + "uv_width": 36, + "uv_height": 60, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "52081aa1-5867-5eef-7a66-414d06fb2d1a", + "relative_path": "akiracombined_v4.png" + }, { "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/akiracombined_happy.png", "name": "akiracombined_happy.png", @@ -11139,6 +18214,34 @@ "uuid": "db6f1fca-abee-6441-3dff-ca1dddde8398", "relative_path": "akiracombined_sleep.png" }, + { + "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/akiracombined_guilt.png", + "name": "akiracombined_guilt.png", + "folder": "", + "namespace": "", + "id": "0", + "group": "", + "width": 36, + "height": 60, + "uv_width": 36, + "uv_height": 60, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "550dddf8-21e4-d8a6-81e3-fc1c33149c72", + "relative_path": "akiracombined_guilt.png" + }, { "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/taunt3.png", "name": "taunt3.png", @@ -11278,6 +18381,174 @@ "saved": true, "uuid": "90877fad-1768-1aa0-9198-8f4a69765cbb", "relative_path": "elytra.png" + }, + { + "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/symbol_x_e.png", + "name": "symbol_x_e.png", + "folder": "", + "namespace": "", + "id": "14", + "group": "", + "width": 16, + "height": 16, + "uv_width": 8, + "uv_height": 8, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "0047fbb1-c53b-41a6-715e-eb68adbb14f5", + "relative_path": "symbol_x_e.png" + }, + { + "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/symbol_e.png", + "name": "symbol_e.png", + "folder": "", + "namespace": "", + "id": "19", + "group": "", + "width": 16, + "height": 16, + "uv_width": 8, + "uv_height": 8, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "2b0a7aa0-be38-ae46-8b6d-da97ef9cee44", + "relative_path": "symbol_e.png" + }, + { + "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/fountain_inner.png", + "name": "fountain_inner.png", + "folder": "", + "namespace": "", + "id": "20", + "group": "", + "width": 1, + "height": 1, + "uv_width": 1, + "uv_height": 1, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "emissive", + "render_sides": "double", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "496624d5-f763-047a-2d21-e0db85f8a0fe", + "relative_path": "fountain_inner.png" + }, + { + "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/fountain_outer.png", + "name": "fountain_outer.png", + "folder": "", + "namespace": "", + "id": "21", + "group": "", + "width": 1, + "height": 1, + "uv_width": 1, + "uv_height": 1, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "emissive", + "render_sides": "double", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "a4d7bf4a-5616-e264-3a60-16036f8e9896", + "relative_path": "fountain_outer.png" + }, + { + "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/smog.png", + "name": "smog.png", + "folder": "", + "namespace": "", + "id": "22", + "group": "", + "width": 1920, + "height": 1920, + "uv_width": 1920, + "uv_height": 1920, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "emissive", + "render_sides": "double", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "281d8252-384c-326c-7c41-125a8a138136", + "relative_path": "smog.png" + }, + { + "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/blob_single.png", + "name": "blob_single.png", + "folder": "", + "namespace": "", + "id": "23", + "group": "", + "width": 72, + "height": 72, + "uv_width": 72, + "uv_height": 72, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "f0fe6575-4b9a-326e-6e03-79b9dd4dbe03", + "relative_path": "blob_single.png" } ], "animations": [ @@ -13685,7 +20956,7 @@ }, { "uuid": "3c072359-f9ba-f341-d4ed-c926bec0c1f7", - "name": "sitting", + "name": "sit", "loop": "loop", "override": true, "length": 2, @@ -13990,7 +21261,7 @@ "channel": "rotation", "data_points": [ { - "x": "-62.5", + "x": "-65", "y": "0", "z": "0" } @@ -14006,7 +21277,7 @@ { "x": "1", "y": "0", - "z": "-2" + "z": "-1" } ], "uuid": "2a6fb0f1-4f1d-3e87-60ce-c4a4409de468", @@ -14092,9 +21363,9 @@ "channel": "rotation", "data_points": [ { - "x": "15.21645", - "y": "10.78019", - "z": "-31.9121" + "x": "21.9999000983", + "y": "46.5056567762", + "z": "-18.4888924123" } ], "uuid": "89f12832-3160-c7cc-64fd-0f50c1cfedd5", @@ -14106,9 +21377,9 @@ "channel": "position", "data_points": [ { - "x": "1", - "y": "1", - "z": "1.5" + "x": "0", + "y": "0", + "z": "0.5" } ], "uuid": "7af52b44-a326-2864-849c-985c230a3d0c", @@ -20539,7 +27810,7 @@ "override": true, "length": 0, "snapping": 24, - "selected": true, + "selected": false, "anim_time_update": "", "blend_weight": "", "start_delay": "", @@ -36081,7 +43352,7 @@ "channel": "timeline", "data_points": [ { - "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\n1sounds[\"04_coin\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play() \n" + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"04_coin\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" } ], "uuid": "aa8995b9-60af-bb4d-a4b4-12f9b2c2c102", @@ -44031,7 +51302,7 @@ ] }, "cfaeacce-4968-d72b-9a37-e2f0fb4255e8": { - "name": "RightCamera", + "name": "RipeCamera", "type": "bone", "keyframes": [ { @@ -44073,7 +51344,7 @@ "override": true, "length": 0.25, "snapping": 24, - "selected": false, + "selected": true, "anim_time_update": "", "blend_weight": "", "start_delay": "", @@ -44120,7 +51391,7 @@ ] }, "cfaeacce-4968-d72b-9a37-e2f0fb4255e8": { - "name": "RightCamera", + "name": "RipeCamera", "type": "bone", "keyframes": [ { @@ -44153,96 +51424,6 @@ } ] }, - "effects": { - "name": "Effects", - "type": "effect", - "keyframes": [ - { - "channel": "timeline", - "data_points": [ - { - "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\n" - } - ], - "uuid": "1a61804c-f734-5ad5-b2c3-b418ab59e5ca", - "time": 0, - "color": -1, - "interpolation": "linear" - }, - { - "channel": "timeline", - "data_points": [ - { - "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\n" - } - ], - "uuid": "69cb741c-2302-e207-0691-8444a583a3b6", - "time": 0.04167, - "color": -1, - "interpolation": "linear" - }, - { - "channel": "timeline", - "data_points": [ - { - "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\n" - } - ], - "uuid": "55bfc805-c5ed-cfe8-1eaf-5c83a801913f", - "time": 0.08333, - "color": -1, - "interpolation": "linear" - }, - { - "channel": "timeline", - "data_points": [ - { - "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\n" - } - ], - "uuid": "38fe1d76-d089-3544-bc4f-e97263cee5d1", - "time": 0.125, - "color": -1, - "interpolation": "linear" - }, - { - "channel": "timeline", - "data_points": [ - { - "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\n" - } - ], - "uuid": "397dda3d-7ef4-61d4-156a-5bcc2de38b29", - "time": 0.16667, - "color": -1, - "interpolation": "linear" - }, - { - "channel": "timeline", - "data_points": [ - { - "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\n" - } - ], - "uuid": "30ff8bc8-00b3-345e-ac7f-f60bc2b8eaa0", - "time": 0.25, - "color": -1, - "interpolation": "linear" - }, - { - "channel": "timeline", - "data_points": [ - { - "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\n" - } - ], - "uuid": "0c7736e5-ae39-75ee-7b62-c802068d05d8", - "time": 0.20833, - "color": -1, - "interpolation": "linear" - } - ] - }, "0fe9582e-afee-9945-c051-79e1996ab231": { "name": "RightHand", "type": "bone", @@ -44262,6 +51443,27 @@ "interpolation": "linear" } ] + }, + "d5c28e0c-2ec5-296a-42c7-59967676aebe": { + "name": "RightItemPivot", + "type": "bone", + "keyframes": [ + { + "channel": "scale", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5b34b75a-6a6a-8249-ce9e-1e5f57322e95", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] } } }, @@ -49601,6 +56803,8952 @@ ] } } + }, + { + "uuid": "793030e8-8f1a-d542-2b98-2082f2c34e7d", + "name": "fountain_opening", + "loop": "once", + "override": true, + "length": 30.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "markers": [ + { + "color": 8, + "time": 0.375 + }, + { + "color": 0, + "time": 0.625 + } + ], + "animators": { + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "fd22a3ba-127e-ad0a-e782-138d8d8b9730", + "time": 0.625, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "c2675fcb-b278-706a-e6e1-6483a3a46b6a", + "time": 0.66667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "57fa8034-0e01-7929-03b3-af394aec08e7", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "ccddde6b-1e16-d6e5-6779-856961aba299", + "time": 0.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "34ef097c-aa25-a913-9a7c-2b1b184e9f37", + "time": 0.79167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "fd09fa32-3bf7-0e2c-005d-c5d811a4b824", + "time": 0.83333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "c91aa9c3-5665-a6e3-82d8-0139338c0472", + "time": 0.875, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "80696ad6-4c0a-605d-962b-757b58e76cc0", + "time": 0.91667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "061158aa-3367-0a36-66a9-7cd3879b7d52", + "time": 0.95833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "b1245a6d-f0bf-aaf8-856e-f60888eb9f53", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "712d5bb0-6d08-198e-95e4-2bcbb14c0747", + "time": 1.04167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "ec2dab89-b18a-1132-8647-a60271a59206", + "time": 1.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "ac631a09-cf8c-a185-5af5-121001086a12", + "time": 1.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "707c52c5-6bed-a5d3-ef0c-1e2ffbbfe992", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "cd0b33bd-53b9-df8a-badc-49fa88f303eb", + "time": 1.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "40a85175-4dfb-afb0-0e29-19c6d74c750c", + "time": 1.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink.Add:setOpacity(1)\nmodels.akira_eiko_olivia_pink.Add:setVisible(true)\nmodels.akira_eiko_olivia_pink.Add.cracks:setVisible(false)\nmodels.akira_eiko_olivia_pink.Add.fountain:setVisible(false)\nmodels.akira_eiko_olivia_pink.Add.fountain_start:setVisible(false)\nmodels.akira_eiko_olivia_pink.Add.fountain_cap:setVisible(false)\nmodels.akira_eiko_olivia_pink.Add.fountain_cap2:setVisible(false)\nmodels.akira_eiko_olivia_pink.symbols:setVisible(true)\nmodels.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_guilt\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\n" + } + ], + "uuid": "1c189d6f-142a-4a63-6c4b-905fb89fff74", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"fountain_opening\", player:getPos(), 1, 0.33)\nmodels.akira_eiko_olivia_pink.Add.cracks:setVisible(true)\nmodels.akira_eiko_olivia_pink.Add.fountain_start:setVisible(true)\nmodels.akira_eiko_olivia_pink.Add.fountain_start.inner:setVisible(false)\npings.setLighed()" + } + ], + "uuid": "fbc0859f-9bfb-13a1-f757-fd05924dc114", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink.Add.fountain_start:setVisible(false)\nmodels.akira_eiko_olivia_pink.Add.fountain:setVisible(true)\nmodels.akira_eiko_olivia_pink.Add.fountain.inner:setOpacity(0)\nmodels.akira_eiko_olivia_pink.symbols:setVisible(false)\n" + } + ], + "uuid": "0e90b605-ee0a-43bc-0abf-c5bd3f5e6d1a", + "time": 1.625, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "fountain_darking=true\n" + } + ], + "uuid": "555e18d9-faab-7f8a-30fc-b0a31aaaa0fc", + "time": 4, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink.root.LeftArm.LeftForeArm.LeftHand.LeftHandPlain:setVisible(false)\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightHandPlain:setVisible(false)\nmodels.akira_eiko_olivia_pink.root.LeftArm.LeftForeArm.LeftHand.LeftHandFist:setVisible(true)\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightHandFist:setVisible(true)\n" + } + ], + "uuid": "9f8470f2-748e-9132-ed22-affe05e9106f", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink.Add.smog:setVisible(true)" + } + ], + "uuid": "9ee308a5-2106-1edc-3813-77b903f36a51", + "time": 19.33333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nhide_all=true\n" + } + ], + "uuid": "da712d5d-d716-109e-3854-1a03179b3a6d", + "time": 30.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink.Add.smog:setVisible(false)" + } + ], + "uuid": "819a00f4-fa1a-1b36-48b9-9501ae6e9d06", + "time": 1.66667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink.Add:setVisible(false)" + } + ], + "uuid": "ae8839cd-2386-cead-dfb2-4352ee74f276", + "time": 20, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "\n" + } + ], + "uuid": "54a4e00b-c1ea-78bd-df2a-5f188f8aec93", + "time": 16.75, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "89d1df80-8f44-0692-f5f4-1ca7173c51d3", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "b9474bdf-838c-abd9-f462-21b2d2e3c646", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "b1223438-8f46-2a9b-25ee-5ac39f7575ea", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "8aab4b39-f61f-a17f-7ff4-ea669d009746", + "time": 6.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10", + "y": "0", + "z": "0" + } + ], + "uuid": "992d59ab-ebf4-e1a9-86e5-0d64727dc56d", + "time": 7, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-5", + "y": "0", + "z": "0" + } + ], + "uuid": "91340785-57a8-5c69-8ba0-35378c7d3add", + "time": 7.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "db918c91-f8fd-4b22-f077-36e48a91488d", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d9c93516-1a6a-52b2-97a4-39c51cc52735", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "86e7291c-a7ea-aba1-b388-23cc58775f18", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "44705d1d-d6fc-d259-224b-5750581105b8", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ab369344-e366-78d6-ae78-9c6386c25f65", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "867790ab-4757-d3e7-26d9-5d16e508beba", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-6", + "z": "1" + } + ], + "uuid": "5c122138-17dc-5dc9-c1a8-8e1ab84e2978", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-6", + "z": "1" + } + ], + "uuid": "0e363ee1-69e3-747d-da74-1fd8cb089db5", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "-2" + } + ], + "uuid": "03326259-395a-a0fb-ab45-88a9c51c21b4", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "725a008c-0744-319f-c96e-09d045259a0f", + "time": 6.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-1" + } + ], + "uuid": "6ce202db-926f-5175-68f9-ac5b5f164528", + "time": 7, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "179928b6-753f-e702-f79b-0cb5185ac925", + "time": 7.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "7.5", + "z": "-3" + } + ], + "uuid": "aa63a1c1-a5aa-85d3-94f3-7e6096e32e3f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6a4b207a-d6cc-0c85-5926-33b866e87670", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "7.5", + "z": "-3" + } + ], + "uuid": "53193065-d0c8-4fa1-5c6f-e6eacba4c05a", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-6", + "z": "1" + } + ], + "uuid": "ab0eb3c7-4d81-a5e7-2c8f-40cdb0e4b937", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b818ae07-081c-78f4-572c-025b2b0b20a3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ab6b7e32-7255-a877-80c6-d86aecad966f", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "05272186-8a50-a754-a42f-20f85f8ce97e", + "time": 7, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "125327ef-e0b5-69ae-ed5b-bb39f2d21816", + "time": 1.58333, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "2b109790-e16f-7dad-4d5f-8fb8e1b76b27", + "time": 7.75, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "e517abb6-bebd-39eb-dd0a-b78d0cb708c2", + "time": 0.41667, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b7a1a35d-0e01-cf66-8def-67f4d20e4414", + "time": 1.25, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "04588a63-3f8b-d1ea-0ede-763e37bf28cc", + "time": 6, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "62053bdc-9f25-8cfe-77d4-c7539b73d3a8", + "time": 12.16667, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "27.5", + "y": "0", + "z": "0" + } + ], + "uuid": "0b53533b-c1ab-e8ee-8a20-9c724fbc031b", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "36455090-669f-9d33-4e6b-0c5ffc578d5e", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "248734bc-8a7d-e9fe-f83c-afb717f8bc2e", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ad6e54d7-b6cf-638b-0011-b2c9d497fb6e", + "time": 7, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "39d25ea8-014f-4819-0258-ca9a3b498a85", + "time": 6.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "cc2224fe-b50b-6004-4a42-f889d6fd3277", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "12138a42-d6c3-41f7-3d61-03253830e220", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "f80a7f31-6614-c576-534e-85df953d1a12", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "29e3d30a-d9f6-4283-0d9f-d05e5a555a1b", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c8da17e6-166e-88af-9fef-e210331de175", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "663b0853-c3ea-ffa5-9891-e517388f38d1", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b92d5cf1-c1c3-6499-91a1-25509ffa8824", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0.5" + } + ], + "uuid": "efc328f3-0cdf-b77d-12f1-1ed00a237d09", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "289f9776-fcde-7ea9-8cf3-c9b70e0b5624", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "34c95bdd-2bdb-f3bb-9b00-284e39f90ee4", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f3fa6d16-095b-e459-9f2f-0e95dc258883", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0.5" + } + ], + "uuid": "8d21172a-55ee-bb6c-5501-405af6ea2447", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1111c89c-9a88-83f2-fc11-b1e4b67eeed5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "93fa8eb1-28d0-1317-be6c-f9c9c8d4242b", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "8e3fb09e-4293-e017-9b44-73e4b78ecd03", + "time": 1.58333, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "de9e1d7d-4d7e-2b57-128f-8627d2a56bf7", + "time": 7.75, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "4bfc6e69-f242-3497-61a8-f6f6b70d0eb6", + "time": 0.41667, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "57e0b6d9-ceb2-83f2-bca1-7a40fe94c6a5", + "time": 1.25, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "861fb5b3-a43c-8499-b10f-10dfa8dc77e8", + "time": 6, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b6f30828-7b1e-2e18-dcd9-89075be10624", + "time": 12.16667, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-94.8843886087", + "y": "18.5208543924", + "z": "-12.5314334474" + } + ], + "uuid": "c597164f-58a2-2f30-0264-5f1163f1bafc", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-1.4600531719", + "y": "6.2745933243", + "z": "-4.472639289" + } + ], + "uuid": "ea6ef79e-05ca-f1fa-3102-0b376bd488fb", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-1.46", + "y": "6.27", + "z": "-4.47" + } + ], + "uuid": "7810856c-fa54-c6a1-5f32-39037300d3c2", + "time": 7.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-104.8843886087", + "y": "18.5208543924", + "z": "-12.5314334474" + } + ], + "uuid": "7558afc6-8354-75ad-4e2a-24da8051bc8f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.3843886087", + "y": "18.5208543924", + "z": "-12.5314334474" + } + ], + "uuid": "76d1374b-a5dd-879b-435b-bd0133a5f0f6", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ac729cbc-bc93-ba19-18fb-7e0ef02aabc6", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-104.8843886087", + "y": "18.5208543924", + "z": "-12.5314334474" + } + ], + "uuid": "cb9ce858-1450-609e-1d1b-532d842e39d4", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.3843886087", + "y": "18.5208543924", + "z": "-12.5314334474" + } + ], + "uuid": "5537b523-aa8f-d8be-c059-3595efb251fb", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "daf497fb-6339-b003-5738-ceff70e7145e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "26891f15-6013-ffd8-9cc8-9dc1633c49af", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "f4befc21-a595-a3a4-ad12-064effbba6bb", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.5", + "y": "0", + "z": "0" + } + ], + "uuid": "6ea98ce0-9de5-cfcd-012c-4b2bceb76637", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.5", + "y": "0", + "z": "0" + } + ], + "uuid": "49de459d-044e-acb6-af3f-aa0a2856661c", + "time": 7.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "7dc19422-672e-f59f-623d-e086631f118d", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0fcad4e0-623e-b957-d1c4-91fdb2e0ba85", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "91cc07cd-3ef2-97e0-964b-ef21df15e180", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "-1", + "z": "-1" + } + ], + "uuid": "1fab8771-fbdb-1b1b-84f1-bc15d3b3be3a", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "-1", + "z": "-1" + } + ], + "uuid": "a8b06fc1-8a28-1dd0-08e1-842b92441488", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a7d4b69d-8af0-cd63-188a-5042c30fcfba", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7dd538ae-4b11-efe4-33be-b1fb69c10463", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "c1a12cf7-b5e8-312f-e01a-30948ea7558c", + "time": 1.58333, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "019289e7-a029-77b8-5dae-4e1bf928bf17", + "time": 7.75, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "1cbfcf90-0b6c-f020-55a7-3d1fd96c30c0", + "time": 0.41667, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "970fadbb-54b4-9241-9050-254326b25899", + "time": 1.25, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "66387ba9-ef32-17df-83d4-937a4ceab83d", + "time": 6, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "5c9582d6-6315-0f8d-f8d1-2211ee74dfa3", + "time": 12.16667, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-94.8843886087", + "y": "-18.5208543924", + "z": "12.5314334474" + } + ], + "uuid": "e0bc74b4-bf96-a7a5-291e-f77d8ffd3806", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.3843886087", + "y": "-18.5208543924", + "z": "12.5314334474" + } + ], + "uuid": "88884ff1-bb3f-8214-96e6-d410970d303b", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-41.019792691", + "y": "-27.0599336266", + "z": "2.6131555627" + } + ], + "uuid": "4908dedd-1e49-f3d5-8e3f-9d89940ecdb7", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-75.9048897185", + "y": "-25.5100435755", + "z": "8.7510211205" + } + ], + "uuid": "9d3fa20b-c33b-583e-09e0-6921f739cf16", + "time": 6.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "1.480207309", + "y": "-27.0599336266", + "z": "2.6131555627" + } + ], + "uuid": "66966483-d583-7df6-2be3-a6f8bfa90df4", + "time": 6.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "1.3181778683", + "y": "0.4322043271", + "z": "3.2965988604" + } + ], + "uuid": "d4278f30-45ba-8a76-ba52-702d1cef8dd2", + "time": 7, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "1.32", + "y": "0.43", + "z": "3.3" + } + ], + "uuid": "124c328a-673b-fa0c-ca82-f3e5c79b2f75", + "time": 7.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-104.8843886087", + "y": "-18.5208543924", + "z": "12.5314334474" + } + ], + "uuid": "d9afafed-3a97-830f-ae9d-751f2405d03a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3627cdfc-940b-3cd9-6411-70ef932e21ee", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-104.8843886087", + "y": "-18.5208543924", + "z": "12.5314334474" + } + ], + "uuid": "f2867409-bad0-8d0d-4fc1-dbd094c9afe8", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.3843886087", + "y": "-18.5208543924", + "z": "12.5314334474" + } + ], + "uuid": "65b101fe-4056-3b0f-fd0b-010a026df9d8", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c2929f92-761d-d686-89e6-55189783c6f2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f4b30b01-dab8-8398-7297-c420e8f569c3", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "0" + } + ], + "uuid": "c49397f3-88fc-4461-5908-9ff1cd910855", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "-1", + "z": "-1" + } + ], + "uuid": "1d655621-db6d-f27f-1c02-dee69ba70e7f", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "6" + } + ], + "uuid": "3adba95a-0408-26ef-4c89-56247110f2ff", + "time": 6.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "97a19b52-bfb7-bc61-63b7-2a7cd3dd1d1d", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "c5da027c-b766-b50f-d6a7-9954297d0bbd", + "time": 6.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "34d6ece5-4fa8-67f9-77db-97b2d8b7c78d", + "time": 7, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4196220c-ed8e-734e-34fd-ded910ca9f24", + "time": 7.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "0" + } + ], + "uuid": "2fdad4b7-682d-df85-0437-b83c425c820e", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ae02953b-1b51-5226-011f-44925cb25674", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "0" + } + ], + "uuid": "ab67bd15-2a77-dd0f-fc48-2755cee518b7", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "-1", + "z": "-1" + } + ], + "uuid": "5be8a56c-656e-f4ff-b434-04040b84e210", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6fc7fb2b-8341-b914-8e9b-84db8c0d7ad0", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "be1d5106-bad4-7444-8203-0ba6ff637921", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "71b243c3-bb2f-6bcc-0e8d-c038244211a1", + "time": 1.58333, + "color": -1, + "uniform": true, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "443945f7-9439-aa4f-a061-7942ccff2cdf", + "time": 7.75, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "47a8c205-53d3-0c19-53eb-4a4930be0c2f", + "time": 0.41667, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "ed94fd5b-a88e-1348-04b4-d5bc9b41c321", + "time": 1.25, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "8e3a9ff9-a2ae-eb86-2351-6190a4970ad6", + "time": 6, + "color": -1, + "uniform": true, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "9da4caad-9c73-f64c-5532-ed6cc214fc80", + "time": 12.16667, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "d5c28e0c-2ec5-296a-42c7-59967676aebe": { + "name": "RightItemPivot", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "56a7bbd2-f699-3849-42a1-f831a147cd02", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "100", + "y": "0", + "z": "0" + } + ], + "uuid": "4b78771b-a599-9f26-2859-fe2f64d0ab11", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "135", + "y": "0", + "z": "0" + } + ], + "uuid": "ca79ab98-f923-188a-492a-d68f60173f71", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "197.5", + "y": "0", + "z": "0" + } + ], + "uuid": "72039b84-c733-a457-c359-d90ea04a7737", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "175.3124033243", + "y": "-5.7767732163", + "z": "22.5284236732" + } + ], + "uuid": "e116d0e5-c808-428a-f512-a2a4ab610a81", + "time": 0.625, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "180", + "y": "5", + "z": "15" + } + ], + "uuid": "465bc85a-1d32-bc57-e8f1-737171eafa0d", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "175.3124033243", + "y": "-5.7767732163", + "z": "22.5284236732" + } + ], + "uuid": "e2db793a-0bad-a9a1-5699-d3e80b0b8234", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "180", + "y": "5", + "z": "15" + } + ], + "uuid": "fc43523f-eb6b-1623-b1d8-cb7024b64848", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "de90cf0b-712d-56af-6b3c-f6b849654bfd", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7799b133-fc0e-7816-c0c9-120867221446", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e3a979ff-202d-7204-c172-aa5c91c9da82", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "3" + } + ], + "uuid": "0845c475-7712-7e98-f4be-016bcea1bfc4", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "4" + } + ], + "uuid": "d7ab8bfb-3ff2-b98c-8701-eb64d938e4ee", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "4" + } + ], + "uuid": "a3010144-54d7-3564-dae7-09fcc4377f93", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1.75", + "y": "2.75", + "z": "2" + } + ], + "uuid": "ad3836b1-d260-df3b-3453-37463345cdf5", + "time": 0.625, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1.75", + "y": "2.75", + "z": "2" + } + ], + "uuid": "458e9832-7ef4-d469-4d45-bf270659b871", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1.3851854969", + "y": "-0.1779928219", + "z": "2.0757608135" + } + ], + "uuid": "b0ddaa1f-e735-07e2-8beb-cda15c720cb2", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1.3851854969", + "y": "-0.1779928219", + "z": "2.0757608135" + } + ], + "uuid": "91249116-0894-f6e6-399b-7ded2ad202f2", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-686", + "z": "0" + } + ], + "uuid": "7b970ada-8ea8-be6e-0e03-d121f8a0e693", + "time": 0, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "678e6fff-a3c3-8494-ad08-b1158d3a1cbe", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "8c7666e4-8b9e-6f17-4b62-703abd0906b5", + "time": 7.75, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "0cc28c45-76b9-1499-adae-1c042b884f64", + "time": 12.16667, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a8498c17-f6dd-4637-c054-d356357b256d", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-132.5", + "y": "0", + "z": "0" + } + ], + "uuid": "f5c16982-f289-b1a5-cc8b-61b72a0491c6", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "dea3af0d-a2b7-0ee9-ac37-307b4ee6ca68", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7fc97e09-7409-e1b6-3fa0-e52268d8f6f0", + "time": 6.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.5", + "y": "0", + "z": "0" + } + ], + "uuid": "477608a8-140f-080c-c17b-c59b8aca7362", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73652c86-20b8-1d4c-818b-8d9bab7f5b73", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c6ee3e57-025e-801a-22ba-1bcb245f715f", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-132.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c221a2f1-f0b7-28b8-faf0-088a2f24140a", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "12dccef3-08b4-6138-8c12-ae775fdc975c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4c14e694-fa58-993a-46b7-ee8f4fecd455", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "6", + "z": "-5" + } + ], + "uuid": "207c9f4e-62b8-d25e-037d-6f3809ffa9e8", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2", + "z": "0" + } + ], + "uuid": "fdcae348-0d9e-f2cf-863c-2b889b7a0f9c", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "-5" + } + ], + "uuid": "eee2e7fc-7ed7-a64e-f828-a71fc07baf58", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a2dad9c8-df96-1abf-07e4-ece241bc44b6", + "time": 6.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "-3.75" + } + ], + "uuid": "bb4c0507-c1ad-90d3-4f22-81b9d3e9279c", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6d221702-5c77-7a03-8025-f5fdbd471e3e", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "-3.75" + } + ], + "uuid": "0ec28f1e-362d-0804-266f-6061cbc6317a", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2", + "z": "0" + } + ], + "uuid": "e07f6b0a-cc0d-ba66-ec03-4c09b8f791b1", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c0bc0ec3-bd39-0d7d-428d-53b58991be2b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "82f69533-bf60-3c6b-6cc4-70d4f666a85e", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "0.9", + "z": "1.1" + } + ], + "uuid": "80cd9fbd-d8b6-e4cf-3f41-667385e35c38", + "time": 1.375, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "0.9", + "z": "1.1" + } + ], + "uuid": "cd0489f9-f132-9be3-c814-63a6c037cbb3", + "time": 1.58333, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "97dff6ef-f2aa-bb66-fa1c-13ea51a3f1c5", + "time": 6.5, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "39e398ae-d868-51b1-50b8-fafe070f12d1", + "time": 7.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.0261", + "y": "0.9739", + "z": "1.0261" + } + ], + "uuid": "c4963cf2-b324-6c2a-a124-0a904c45f0c1", + "time": 0.41667, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.0261", + "y": "0.9739", + "z": "1.0261" + } + ], + "uuid": "a9ec4b4d-9189-1df3-257d-8fe3204b5807", + "time": 1.25, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "0.9", + "z": "1.1" + } + ], + "uuid": "2c3da017-9703-7503-f428-88127be51f96", + "time": 6, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "d12db323-6269-2269-752a-60ea0d3021d7", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "1194d0ea-8e27-9f67-8e51-2b51c18aa2e3", + "time": 12.16667, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "62.2978770815", + "y": "-6.6485093716", + "z": "3.4787499715" + } + ], + "uuid": "25765280-f3bc-26eb-4d7b-9c4b8ff0c479", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-40.2021229185", + "y": "-6.6485093716", + "z": "3.4787499715" + } + ], + "uuid": "eca8053a-9b56-1172-d557-3282cd2570e8", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.3", + "y": "-6.65", + "z": "3.48" + } + ], + "uuid": "ae775ecc-6dbe-1c02-e089-cd61eacef125", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "45", + "y": "0", + "z": "0" + } + ], + "uuid": "e6440c92-f101-ece9-f404-3fb048973898", + "time": 6.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "10", + "y": "0", + "z": "0" + } + ], + "uuid": "7887c19e-74df-863b-22e5-3f9021b0f5b6", + "time": 7, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a3938ae1-7e59-0e7a-419e-e7b127e4d5fa", + "time": 7.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3e4dfa93-46c9-e751-122c-bcaf0dc74f49", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cd051c93-9a8e-0cf4-7f4c-aadd1186d408", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "f074f251-fbf1-56f0-af48-533781f4bc6f", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-40.2021229185", + "y": "-6.6485093716", + "z": "3.4787499715" + } + ], + "uuid": "12a8172a-c1b8-497a-85d8-a8e8a155e424", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "13ccd043-9546-22b7-ec4c-5307ff163e65", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "88fc4e15-11b3-b685-de8c-45e5c0c69849", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "-1", + "z": "-6" + } + ], + "uuid": "9d2c28ac-9c28-fde2-95df-8ee776807eb5", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "-1" + } + ], + "uuid": "98074295-ad7d-cfe8-9b84-61a3e2547bf7", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "-1", + "z": "-4" + } + ], + "uuid": "f87ceb37-a0a7-54b5-1e46-46e10f66954f", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "-1", + "z": "-3" + } + ], + "uuid": "136f6631-0c60-9b45-1864-23363be67f15", + "time": 6.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a59924cf-ba3e-d1d4-2be1-1da450c06145", + "time": 7, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.5", + "y": "0.5", + "z": "-2.5" + } + ], + "uuid": "2f93daf9-f67a-2d77-c7d2-2960124c60e3", + "time": 6.875, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "26e33cc1-57de-4c45-ca71-4082d637c350", + "time": 7.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "-1" + } + ], + "uuid": "21c5b17a-4223-7553-2ea9-d98fb98d6ac3", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c6957b98-a90a-c96e-a62b-1f8ce9a5a67a", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "-1" + } + ], + "uuid": "146f27e5-d395-6fe4-ba04-9132093b51ac", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "-1" + } + ], + "uuid": "9fa68870-049a-1e58-085b-ccfa90e7b2a1", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cf3b543f-766c-3f10-8db9-e76574137744", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e15367f3-993f-90f9-614f-67241e17cb98", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "318c7a73-5510-2e44-ed51-4be46599949f", + "time": 1.375, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "d5bec38a-ec06-01da-b7e3-b231bad6a1de", + "time": 1.58333, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "91a323e4-5731-ae12-de60-7527fb20195f", + "time": 7.25, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "d7ad6aaf-a2f7-3d36-ed77-b7036d5edc76", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "25f97324-b5f6-a1a8-fa1b-4f3b1dc94780", + "time": 7.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "2f3e2ed8-8acc-c596-df05-8d3fe0297df7", + "time": 1.25, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "ab5b0aba-8adb-f4d3-b446-dc0d9a526576", + "time": 6, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "4e8958f7-af95-9f63-85d3-a255935aea17", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "49da2d0d-983b-8b5f-2763-a0530a4a3d3e", + "time": 12.16667, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "257888ea-540d-c844-892e-76855e5ac593": { + "name": "symbols", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "180", + "z": "0" + } + ], + "uuid": "0909c7ed-3b03-a15c-8d0f-c192b0eb9055", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "74cddfd5-14e2-3e2f-f398-a4b69b31ca5c", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "180", + "z": "0" + } + ], + "uuid": "ffb7762c-67e3-5ff0-d9f1-398fa1483fba", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "180", + "z": "0" + } + ], + "uuid": "1ec3aeec-2db3-696c-e810-d3b05f3444ae", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "180", + "z": "0" + } + ], + "uuid": "b92e27cd-320d-a82c-4c33-61571a013efa", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "180", + "z": "0" + } + ], + "uuid": "dfbf2a3f-6f59-adc7-ac8c-a976bbd57167", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-19", + "z": "0" + } + ], + "uuid": "c6157ce9-890d-38c6-9b96-bf0809a9f0b7", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "18ea0737-23cf-650f-1486-758ff96ad563", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-19", + "z": "0" + } + ], + "uuid": "2fee73d7-08bc-a6e6-10a2-20d365518608", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-19", + "z": "0" + } + ], + "uuid": "927f482c-256f-6ca7-dc32-343a4c009af9", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-19", + "z": "0" + } + ], + "uuid": "81b30724-fcfd-798d-9019-d2e15e4c50ba", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-19", + "z": "0" + } + ], + "uuid": "da4086be-045b-11ed-1d3c-0631e97599da", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "cd23c28a-f1a0-ae4e-00cd-c519e5e71ed0": { + "name": "s1", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4bea2d49-137b-9f3e-2a31-14f63c2a0a2f", + "time": 0.625, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "de11a0ba-01af-0785-e27d-ed9e82274650", + "time": 0.625, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "25", + "y": "26", + "z": "0" + } + ], + "uuid": "c66879a5-8c0e-91c1-975a-bb762f2b9870", + "time": 0.66667, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "20", + "y": "25", + "z": "0" + } + ], + "uuid": "bec23e87-2e95-b1e4-9068-d33616a88270", + "time": 0.75, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "12.25", + "y": "32.5", + "z": "0" + } + ], + "uuid": "50457e13-8abc-7758-cbc4-002d8e5a197f", + "time": 0.79167, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "7\n", + "y": "35", + "z": "0" + } + ], + "uuid": "90bb88eb-dac4-0a8f-9c30-fc564c3173f8", + "time": 0.83333, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3b470605-0c93-23d5-202b-e964eb5f8810", + "time": 0.91667, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-15", + "y": "43", + "z": "0" + } + ], + "uuid": "f114f8f0-d6a6-fc26-0d7f-d9a9e0787c9b", + "time": 1, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-22", + "y": "42.75", + "z": "0" + } + ], + "uuid": "1f7208ec-c1c5-70ca-9b01-dcf516b9537b", + "time": 1.08333, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-27.75", + "y": "34.75", + "z": "0" + } + ], + "uuid": "40c19e72-a8f7-d96c-b508-cc8e0a0cbc57", + "time": 1.125, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-33", + "y": "40.75", + "z": "0" + } + ], + "uuid": "793aa423-d3a9-d362-c5ba-3273df890c23", + "time": 1.20833, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-38.5", + "y": "37.5", + "z": "0" + } + ], + "uuid": "90320f39-49eb-55ea-dfa5-c24c26544d55", + "time": 1.29167, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cf900d6a-1049-244b-4462-eb7cddbcaf12", + "time": 1.375, + "color": -1, + "interpolation": "step" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "075d9e6a-3520-6da5-d288-6444773a7f90", + "time": 0.625, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "43622244-f03f-dc0d-a522-2d01c2ca50e1": { + "name": "s2", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3b883373-ea06-7703-ca14-6db6f0e6e07d", + "time": 0.66667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8c0168aa-bc6c-218e-9ac5-25c9e7bb7e55", + "time": 0.66667, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "26.75", + "y": "28", + "z": "0" + } + ], + "uuid": "b0b21cc8-7658-96c0-8f7f-f9030d89a55a", + "time": 0.70833, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "22", + "y": "30", + "z": "0" + } + ], + "uuid": "e97ca225-e01c-dbfd-b83c-2373f7ddb9cc", + "time": 0.75, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "19", + "y": "33", + "z": "0" + } + ], + "uuid": "72a7cacf-5285-64a8-f6c2-fcd9f59774dd", + "time": 0.79167, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "13.75", + "y": "30.5", + "z": "0" + } + ], + "uuid": "9b496bb5-03d0-f6b2-ab61-c8167f80a238", + "time": 0.83333, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "6.75", + "y": "27.5", + "z": "0" + } + ], + "uuid": "629a1213-d623-5de7-dd3b-0c6d41617582", + "time": 0.875, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "626beaff-b4b4-6192-bb29-1ffb0b40a108", + "time": 0.91667, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-15", + "y": "39", + "z": "0" + } + ], + "uuid": "e170993f-4201-823d-8397-b43c35eacb1e", + "time": 1.04167, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-21", + "y": "35", + "z": "0" + } + ], + "uuid": "cf0ec433-409e-19d5-14e2-4b8b7ae860e2", + "time": 1.08333, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-26.5", + "y": "35.5", + "z": "0" + } + ], + "uuid": "bcef7549-05d9-a99a-3afd-008297385360", + "time": 1.16667, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-31.5", + "y": "42.75", + "z": "0" + } + ], + "uuid": "93644712-b62a-1db9-c6f4-da68e96a5c75", + "time": 1.25, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5e08cd8f-1197-fad1-5c78-1b20cb8410ff", + "time": 1.29167, + "color": -1, + "interpolation": "step" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b388953c-8047-746c-0be9-abd25d4c0411", + "time": 0.66667, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "34dfaf06-1387-a2c6-f3e6-99793044e82d": { + "name": "sx1", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a130632c-ec6c-00d8-7d03-776c502d9f30", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8413983f-cb86-001e-38d9-f922d8f0d5c0", + "time": 0, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "25", + "y": "30", + "z": "0" + } + ], + "uuid": "02cb283b-de57-093a-9ba6-2ddce0cbf715", + "time": 0.625, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "22.75", + "y": "32", + "z": "0" + } + ], + "uuid": "799babdb-b46d-cc78-e4c0-d36b4db807b9", + "time": 0.66667, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "18", + "y": "34", + "z": "0" + } + ], + "uuid": "ac8eb8fb-728e-c7c6-6a1c-8d0258db628a", + "time": 0.70833, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "12.25", + "y": "36.5", + "z": "0" + } + ], + "uuid": "70a465ab-532f-24fe-242a-061061b834ec", + "time": 0.75, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "9.75", + "y": "34.5", + "z": "0" + } + ], + "uuid": "ae2ad1c4-6d14-cd0c-e7a7-529f333a3283", + "time": 0.79167, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.75", + "y": "31.5", + "z": "0" + } + ], + "uuid": "d4898320-ab9d-9ecd-5295-604a77b03db9", + "time": 0.83333, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7d7a172f-37a1-4bae-bb57-64e6b9e3f14b", + "time": 0.875, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-15", + "y": "47", + "z": "0" + } + ], + "uuid": "293ede67-d6ed-76fe-8b79-8914368ce23a", + "time": 0.91667, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-22", + "y": "46.75", + "z": "0" + } + ], + "uuid": "7cfa185b-aa39-1d9c-2e74-495094c13d1d", + "time": 1, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-27.75", + "y": "38.75", + "z": "0" + } + ], + "uuid": "2a1d7108-3cdb-596f-6bcb-3ddee2e94ecd", + "time": 1.08333, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-33", + "y": "44.75", + "z": "0" + } + ], + "uuid": "0f7984b9-390c-ddf6-5cb9-f8ef2968f38b", + "time": 1.125, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-38.5", + "y": "41.5", + "z": "0" + } + ], + "uuid": "4c1feb1a-7ac3-8f29-c4b7-aac91d8c11fb", + "time": 1.20833, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5f788d6e-f944-38ad-e286-5614e2cdbe81", + "time": 1.33333, + "color": -1, + "interpolation": "step" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b237eddb-d68f-e03a-22f0-8d1af7bf0339", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "bb176c22-6ae6-6c8d-3125-6dc4a4b34b04": { + "name": "sx2", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "60d512a9-7445-1f63-a1f6-5622afcbaf09", + "time": 0.66667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ece469f8-3ff5-b17c-22ac-c3e6827f9e01", + "time": 0.625, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-15", + "y": "43", + "z": "0" + } + ], + "uuid": "85a2f88f-7a2b-82d9-908a-b49b162f334c", + "time": 0.95833, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-26.5", + "y": "39.5", + "z": "0" + } + ], + "uuid": "45ccb702-1e02-beff-305b-3296f0c17fb4", + "time": 1.08333, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-31.5", + "y": "46.75", + "z": "0" + } + ], + "uuid": "63d8ea97-190b-b575-5290-9181980481f5", + "time": 1.16667, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "eb447523-10fb-4d19-b142-d0c40165d57f", + "time": 0.625, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "24", + "y": "29", + "z": "0" + } + ], + "uuid": "499d3aa3-1e88-8364-8513-dc67ab7d1cd8", + "time": 0.66667, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "19", + "y": "37", + "z": "0" + } + ], + "uuid": "4f6fc51a-9c69-58c3-86b9-336a4fc6ac52", + "time": 0.75, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "11", + "y": "39", + "z": "0" + } + ], + "uuid": "54a77893-236f-b97a-5ef3-e436ecf40154", + "time": 0.79167, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5d2a189d-70f9-c2df-6d8e-3b3b3f3b2bd4", + "time": 0.83333, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-21", + "y": "39", + "z": "0" + } + ], + "uuid": "1a7fdf42-8066-9ffa-5806-bf118dd890af", + "time": 1.04167, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7796522d-8692-442e-b4c6-6da6634b24fb", + "time": 1.25, + "color": -1, + "interpolation": "step" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "35e1a398-8eef-a712-8611-67f5299dab9f", + "time": 0.66667, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "04595a5e-c2ca-7ac4-5e34-c25e377df26f", + "time": 0.625, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "a44bbbce-1888-d74b-2319-04bcb9ea33b5", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "d11dbd00-d1ec-f5ad-3413-6ed0326d8a2a", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1c794a72-7256-cbab-e6df-e16629b8fda2", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f19cff26-e767-ef2b-6392-4270191f361d", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0bc1d5c8-1cd2-5c5b-64bc-a0ac87d3e46b", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "6e2cf164-3309-5403-bd90-25b684394c49", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d54b2d60-7f22-35b8-6c7d-c7126fcd56e3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "742ba1be-4d35-2863-0d1d-a97db30d6030", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d8a0958a-fa0c-8400-4ff3-84a45b04296f", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b3a9ce08-fed2-76ac-8970-72d843eac68d", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c514adb8-f91c-5ebf-243a-b66e9443ff4a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "64a4271f-3a53-327f-4676-a0b9a26f8baa", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e0566a59-cf77-3e59-e298-243e98ecdb7a", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6a9d32c0-2cd2-c849-c4f9-a70e742e4763", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "80ef4d0c-005c-d459-2777-e3c467cc918d", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b173104b-1b0c-d139-ec22-9dc974b64c63", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-44.03", + "y": "0", + "z": "0" + } + ], + "uuid": "e194b4c4-c517-2329-cd0a-3886e4a36167", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-87.5", + "y": "0", + "z": "0" + } + ], + "uuid": "6e927861-e203-c0a4-cbbc-c91eb5a9567c", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "aa3b1ace-1be9-edd7-f5bf-d6fbb0e5a824", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-44.03", + "y": "0", + "z": "0" + } + ], + "uuid": "cd610944-e688-7064-c96a-6d8b04521f0c", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-87.5", + "y": "0", + "z": "0" + } + ], + "uuid": "cfe1746a-956a-92c0-2f31-1d6bbe9a91b0", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dff757df-728d-aab8-64f5-ba2efe7bdce5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e50a5903-ff65-eb9a-71d3-e91c64d0f589", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "3e187488-c04c-bf2e-ee2a-e2480b1739e7", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0.95" + } + ], + "uuid": "2e339458-b582-eacc-db40-5b57c3036630", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1d408f14-8a7f-3081-6adb-5dc27ca1277f", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "53eaf1cd-f5f1-21b4-9bb5-220200430c82", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0.95" + } + ], + "uuid": "a29d49b7-ce5a-6503-d7b6-a1e5f5d32508", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "04de0748-8491-9424-112c-2618ca42ceb2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "269eb829-009d-4429-ef73-eac121011787", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1.2774" + } + ], + "uuid": "afb0f3d6-48b5-fb24-1f63-abedd36cbfe6", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1.2692" + } + ], + "uuid": "03e6ab37-6fb4-97de-eca4-ea9ee044ee5c", + "time": 1.58333, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "c5bb8c9d-301b-d5e9-f005-6b4bcb7a81fd", + "time": 7.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1.2774" + } + ], + "uuid": "48e108ca-6105-1c06-ed17-3be17b414c57", + "time": 1.25, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1.2692" + } + ], + "uuid": "1797d1aa-56cf-d995-d87e-84f54302929c", + "time": 6, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "adfed242-83b3-75af-a637-101bfc87aa31", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "ef80ca22-e7d2-11d1-9d6c-dc05fb59f5ef", + "time": 12.16667, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4599de05-58d3-2e7a-1fe0-65c784c759ae", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-60.66", + "y": "0", + "z": "-15" + } + ], + "uuid": "b46ef2c0-075f-260a-4966-5b6c4d37e80d", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "40", + "z": "0" + } + ], + "uuid": "7e1ba5e8-99da-270b-0af5-64643c584c34", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "78b12393-4bbd-a147-db3d-e337899e47a6", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-60.66", + "y": "0", + "z": "-15" + } + ], + "uuid": "141e50b9-8377-9aba-a0cc-7e984310647e", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7c88050-441d-822b-643c-33ba6360d365", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "40", + "z": "0" + } + ], + "uuid": "8df7e14e-6ec4-2032-24af-1e398a86a956", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1" + } + ], + "uuid": "e3e09f23-7edb-f638-17ee-bfc4c93613c9", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.6481924452", + "y": "-2.5292650813", + "z": "-1.3554075247" + } + ], + "uuid": "4bdaa265-8781-0a9a-209e-aa15c59f6737", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1" + } + ], + "uuid": "6bc08abb-a731-12ad-8b24-01d056d5b02b", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4a2df5fb-cbef-e6e2-ec49-c7ff8c4e0158", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9555e28d-a7d5-8893-6be4-a81e94801219", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bf033d07-2a6c-27fe-2b66-cd099cefc38d", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "14ad5fd5-ec85-8949-0e55-737b6a25667f", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "115", + "y": "0", + "z": "0" + } + ], + "uuid": "65dbcb18-e18b-2d82-2e11-737eb65a672e", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "110.68", + "y": "0", + "z": "0" + } + ], + "uuid": "562d08bb-c98c-3350-754f-8d605392d33c", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a0df4cf8-4c49-e4a9-4a52-ff005c6639ad", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "115", + "y": "0", + "z": "0" + } + ], + "uuid": "0b79f3f1-3b9c-ced0-0083-befee4877929", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "110.68", + "y": "0", + "z": "0" + } + ], + "uuid": "2053aaba-b88a-85a4-8fb0-d56e3b61c674", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8714bd76-f6c3-308b-3533-400fa4ed12cf", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66f778ec-b71f-15fb-5642-bfdd914271a4", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "bb1d95ed-4aee-ca5b-a331-bffe555c2f51", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1b31c100-eb62-48de-5b1e-6da3007024c2", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.26", + "z": "0" + } + ], + "uuid": "51342c72-3bac-f150-f056-aa8905d8b903", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.26", + "z": "0" + } + ], + "uuid": "b661a479-0bbc-eae2-4019-dcbefdfbc3d7", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.2990654385", + "z": "-0.9333123865" + } + ], + "uuid": "7276f689-324f-a9b7-a886-0426878cb5e1", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "ea8e2e4a-656a-207c-7f7e-a24415951dae", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "127cc455-ac9a-816f-a2b4-5db3b772fed6", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "85a659d1-1be4-19ad-fad4-1ec0aea66a50", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "107.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3fd5ce95-ec6f-1e37-3fd2-41277020f96c", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "907d82ed-5455-c3b6-2140-cb6b520ac92e", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2a28d01e-1f65-9fed-f0be-f87beba098b4", + "time": 6.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "23.35", + "y": "0", + "z": "0" + } + ], + "uuid": "2678688b-2a6f-c304-7e93-314869aef310", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "23.35", + "y": "0", + "z": "0" + } + ], + "uuid": "9a604a5f-42e1-697c-c59a-8c1f83db76a5", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "107.5", + "y": "0", + "z": "0" + } + ], + "uuid": "017d6cc1-0f4a-2747-bc98-a74f66a52645", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a8d3fbad-f5ce-f083-25c6-97a790add314", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0703af68-1144-7a83-3c89-8b418c40c652", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f268d448-a782-cb0c-a11b-ad9631e9995a", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3a94e6c5-4286-4544-ad4f-a81820fa0d5d", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6eda1424-6c74-f320-ceed-5549b0318d39", + "time": 6.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1ba01782-7272-4f35-a9c5-d9d2aeeaf9c6", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4a0b1b94-2165-fafe-df15-c9a43c0f08b8", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "56f17876-9165-73b1-30c6-843b8f6344ab", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6e49268c-a4a9-ab86-3b88-e967765d3fcd", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "49cfb28c-0571-3e64-ea0e-d0e54607c9c0", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "ad206578-a187-4a18-10f0-8f1dc31d05e6", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "61.67", + "y": "0", + "z": "0" + } + ], + "uuid": "715a88d7-cc38-604d-e5a1-49da086d7286", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "87992cad-c582-93e8-995f-0c1c699186d4", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "5e607d90-e518-55f4-3210-1c54805b1f72", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "61.67", + "y": "0", + "z": "0" + } + ], + "uuid": "8dbe0fdb-8ae0-8030-6f9b-6525ef939225", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9a1f09df-f8d8-3d0d-cc43-653072d63ab1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b7f1510a-833a-86c2-9e20-8472658f9e28", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "1" + } + ], + "uuid": "9b9d91b8-0ced-db38-4ac8-208d8ea071f7", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.95", + "z": "0.95" + } + ], + "uuid": "d057b290-aca2-7e91-d2a4-c123605f65ad", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5d129877-4788-800c-8b88-31ecbc4c6645", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "1" + } + ], + "uuid": "973206df-78f8-3cf4-653a-8cf80bc7a5c3", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.95", + "z": "0.95" + } + ], + "uuid": "8004d856-4217-4724-8db4-d9608d0c9c4b", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "737482d9-9cb3-4bf2-72c6-d0920af3be0d", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3ec03d0d-67ed-849d-4aef-3610746685f9", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "f5050d8b-8962-4323-186c-35a1f0bc935e", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0136add9-9224-e301-a01b-c75082404e48", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "ad427336-0d8d-d641-25bf-75795a826f1d", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-60.66", + "y": "0", + "z": "15" + } + ], + "uuid": "db307d07-297c-e694-a081-ac18514b540a", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-60.66", + "y": "0", + "z": "15" + } + ], + "uuid": "cdde8401-19e2-90d0-c333-edd4e348c2e5", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7090c465-3482-f9c7-dfb9-c507efc4874e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f35a805e-ed17-2bd0-bfe8-ce31fcafebb8", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.2", + "z": "-1.3" + } + ], + "uuid": "0ffbeed2-4362-f636-7de4-5d35f0fa3381", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.6481924452", + "y": "-2.5292650813", + "z": "-1.3554075247" + } + ], + "uuid": "298326a9-bd51-b943-4507-6579f51edda9", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.2", + "z": "-1.3" + } + ], + "uuid": "bcd8db6e-c570-b6a9-64b1-bc283743a86d", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "403ce07d-fbb6-163e-949b-5910594fe4a9", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c5fd3d10-baf7-824b-1bdc-6d71e8f86fb2", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "10", + "z": "0" + } + ], + "uuid": "c970c1cf-c360-aa5f-5ecd-cdf67a2630c3", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "10", + "z": "0" + } + ], + "uuid": "6e17e166-e81f-e64a-8725-a83a3f631217", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bf35775d-5c37-4419-13f2-e16196e0a2b0", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a1bf0e71-d7bb-3b92-da2b-13dd99ad1e37", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "be2842cf-5209-6e31-570d-40abf0386792", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.5", + "z": "0" + } + ], + "uuid": "d3a345ab-fbd2-d003-4bff-b552cba9969d", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b90c1926-f1ea-b33c-8793-5984d0ab213a", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f24bb344-c504-ba5b-4767-ff4ccb488c60", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c81f98d8-bf4e-5d59-fbac-33d7fb21e9b4", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "57cf0e3b-4824-33b7-034f-40841a713813": { + "name": "LeftHandPlain", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7977383a-25e2-94a2-fa54-a8aa577f7f56", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ce278378-2b32-45be-5699-97065c91d8ee", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "586d4245-050d-c3ef-c059-cdd68017fa35", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "0fe9582e-afee-9945-c051-79e1996ab231": { + "name": "RightHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-10", + "z": "0" + } + ], + "uuid": "937a37a9-4337-bc4a-068c-c08ba6b74b43", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-10", + "z": "0" + } + ], + "uuid": "4d5bff06-2123-c971-f221-fdff19e6bf55", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cf62e037-a7ed-0d95-e409-001f4fad5d8e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "60bba7bd-e454-e097-de8f-4d84748f9ee8", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "67175e52-1a70-2e86-d518-8dfa7912e1ee", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.5", + "z": "0" + } + ], + "uuid": "845e4e97-f003-38dc-649e-3ead2c77bcf3", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8a77cb1c-23e2-44f7-6ff8-7d916ffce44c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "71ed8b33-19de-e2db-a247-004b3172defc", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1f81fe1d-3cda-8bf0-d628-c81f1b01fa36", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "41da1498-ef5d-9fde-e6fb-f0064efa0c2c": { + "name": "RightHandPlain", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2d3185d4-bda4-d46a-14db-038b857368e8", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b37d4a8c-3383-fd65-1ece-48362f40f5af", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6c273855-9e94-c486-1519-e464c9ced80d", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "00c0e3fc-2568-d879-8bcf-1f220a441bea", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "683659f0-1dc3-4768-c8e8-e1eef68625a3", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "114721e3-2176-a4b2-9bad-d2f048fef42d", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "b712df6e-0aab-cc65-950b-5e5c1c6c1f01", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "645586f0-12c9-fdb1-5076-b43068af7e17", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ed701eee-ffac-6942-1843-c6c702e8399c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73a42d6b-1c52-6b11-dcf1-5054f4e78ff4", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b33a7e91-47a4-8885-ebd9-a26b3b424c72", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "bde38dfd-d839-cf9b-814b-9ffdb9ede731": { + "name": "fountain_start", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1ee0ff4a-30e3-2af6-a8dc-111f6d6093f6", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c9000f2d-cd15-fbe5-1367-3326074718f8", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "22f72d5a-4faf-b973-4eb1-0892a7ecd247", + "time": 1.33333, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ede2eabd-df67-c26d-6b78-84b0a42d63c8", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "8", + "z": "-4" + } + ], + "uuid": "b577853e-950c-a61e-d7ad-72be4c5e4c79", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "932c2b99-afc0-0ba4-f63d-20e84902b2da", + "time": 1.33333, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "8", + "z": "-4" + } + ], + "uuid": "202963ba-d4b9-f382-81bf-82a22f2e8bf6", + "time": 1.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b6ead140-1ca2-4056-1f6e-e48951832eea", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.5", + "y": "0.1", + "z": "0.5" + } + ], + "uuid": "9c52f916-2a1c-f7a0-e1c4-795571c32682", + "time": 1.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "ae550ad1-e0f2-d816-cb9c-f0bc63d43dd3", + "time": 1.33333, + "color": -1, + "uniform": true, + "interpolation": "step" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "3.5", + "y": "0.1", + "z": "1" + } + ], + "uuid": "85f79829-74a5-2084-5db4-72cde52157e1", + "time": 1.45833, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.5", + "y": "3.2", + "z": "1.5" + } + ], + "uuid": "6bc3252c-0f94-2fe6-0bf5-1268fa6aa272", + "time": 1.54167, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2", + "y": "7.6", + "z": "1.5" + } + ], + "uuid": "a8010692-ddf6-f62d-4fbb-c99602fe880c", + "time": 1.58333, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "c8c19cb6-1fe5-f43f-5b6e-d46a3fa343b9": { + "name": "fountain", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d7a5ca14-9a72-ac4b-1740-bcb20973b106", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "47780af5-d0a8-da76-9b60-a9c1a2ca2a52", + "time": 1.625, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-4" + } + ], + "uuid": "9c3e92b7-ef29-e3c8-92ab-25138cde5129", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "4", + "z": "-4" + } + ], + "uuid": "a1db7611-0b30-800d-9e6b-72fa2b9941ae", + "time": 1.625, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "4", + "z": "-4" + } + ], + "uuid": "29601e21-dfd7-af96-7799-5d2b81a33e2b", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "4", + "z": "-4" + } + ], + "uuid": "ef3311dd-b3ad-0540-d879-502a111df198", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "ccbadefe-2a5d-34dc-3cfe-571dd213a717", + "time": 1.58333, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "2.1" + } + ], + "uuid": "f7237c54-67bc-efb5-cd9c-0b3258c2c927", + "time": 1.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "57391190-23ef-c0f0-d574-2b501267b580", + "time": 1.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "2bcd0282-035b-147b-11ca-bcf5dacd8d7b", + "time": 1.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "0ab61f21-1e3c-b30f-340f-e82d679bc8a6", + "time": 2, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "1a3bb1ad-6073-f921-25bf-91a21feb0fae", + "time": 2.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "e6eeb8d2-e859-b581-7f73-c88016b4ac36", + "time": 2.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "3e209f5b-84ec-7842-521e-117fdd3d5595", + "time": 2.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "311cb273-49fc-cdc4-9153-2cb2dede2d19", + "time": 2.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "3cc80da9-85aa-705d-7d44-f91a744bf90a", + "time": 2.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "0e380315-b5a8-2049-586d-3a1b40eb24d3", + "time": 2.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "cef6f51c-b636-cce4-9411-eab182186cd9", + "time": 2.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "a5e228a6-7b03-10a0-22e4-22ce64d1088a", + "time": 3, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "923a12cb-9068-3edd-00f5-2032a57ca3e2", + "time": 3.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "b07514a3-d7fe-8abe-4810-075facc1ecc8", + "time": 3.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "e06a8dac-ceeb-8fb0-071f-c5aa3820b758", + "time": 3.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "a01435cc-eb9d-7d0b-4ed8-1cb896494fb3", + "time": 3.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "5075df33-119f-6721-b0bc-e3ab4c38a467", + "time": 3.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "0537dbae-8cd3-391f-ecea-76e93c5d8aff", + "time": 3.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "faee58ec-5c5d-6f88-2898-6e52d56f9cc3", + "time": 3.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "882ea0dd-2b36-f4a9-ad9e-04156e1b5d5a", + "time": 4, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "12678f80-1033-d740-e4bd-890b4fe1e97c", + "time": 4.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "bf43af1f-95d7-875c-2dcf-9e09582fe5a0", + "time": 4.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "9ee70677-6696-15f8-2381-f66efa57d712", + "time": 4.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "fe91b67d-eb4b-a3fa-1df4-168c66da991d", + "time": 4.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "349de838-8232-5ef3-0be2-c1fd3e207fa7", + "time": 4.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "e3ad9ca3-87e5-203c-8bce-2538d59ecac0", + "time": 4.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "5b318984-d2b2-eedd-c647-5520d9fc949f", + "time": 4.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "af218b0d-35d5-5932-8878-a121ea0f2f75", + "time": 5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "541e92e5-9f03-ff92-84a1-13b7dbb9cecf", + "time": 5.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "4e77b519-a865-6410-9560-9c89f4f3d709", + "time": 5.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "78ef5e01-f828-919e-0aee-48d54a040509", + "time": 5.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "f1d38036-f1c9-d9db-b89f-ded1c41ad59e", + "time": 5.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "2f8cf3a3-6ff6-3de2-156a-24637cb4c449", + "time": 5.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "6c3db332-cb5e-c7ce-1f40-0223f4afd6b3", + "time": 5.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "a9b30b2f-c8e7-58af-aa93-a86e082d4cf7", + "time": 5.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "7b1f9ed2-1ecb-0396-f58b-0110bf31c3d9", + "time": 6, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "c6d2a779-93d2-297d-621b-8a77f9e789a0", + "time": 6.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "c04cb1a7-89bc-21c3-1691-44e2015803b2", + "time": 6.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "700a00a6-171e-3144-1537-698dcc6d0b08", + "time": 6.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "2a7a3852-cbbf-2363-a651-7db8b84335e4", + "time": 6.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "514ea1a0-8ef2-815c-2c7b-1530d3bd741f", + "time": 6.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "673a7960-76f1-51b2-f73b-fd864a99bb32", + "time": 6.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "2b78f8c5-2974-1a81-ba82-44a493d1ef04", + "time": 6.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "bc54a46f-8094-5398-72dc-ffc9da1137a5", + "time": 7, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "0a363b65-ab0e-63d6-cb01-743de6012d34", + "time": 7.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "8e6a9e1c-d1fd-d7ef-d1c6-3c2e9a2b897c", + "time": 7.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "0bb7728d-098f-ec85-211c-da40ff66db23", + "time": 7.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "c609af33-3939-3d84-4bac-b3b8d9ed5c46", + "time": 7.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "be89f1e8-47ec-4ad7-daf9-a06307ed37df", + "time": 7.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "8fe612a7-7c63-96a3-0104-1f70ae4d819f", + "time": 7.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "b7b9df5a-d3fa-af41-1f3d-20a3d8ca9912", + "time": 7.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "07289ada-8851-c50f-f26f-910e5a702be3", + "time": 8, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "d9d4c161-341e-7e16-f05a-7c81a5b6f20f", + "time": 8.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "49cafaaf-c2c4-f018-510c-874218eab3a9", + "time": 8.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "6c68e8ad-34ef-6a3e-a039-d6bd0a29eeac", + "time": 8.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "035459f7-3db7-c43a-2d30-3105b597f224", + "time": 8.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "b802ae03-c1be-234c-5e27-501c9cd62797", + "time": 8.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "b0c4a6aa-d520-eb67-35eb-f73b53e6daf4", + "time": 8.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "c1c8e97f-5e71-69e3-3bc6-ecfa8ae9f023", + "time": 8.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "6ff56fc9-57e6-ffa0-7e00-472972561652", + "time": 9, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "6ca813e3-dafd-31cc-f5a4-d422f9bb7bef", + "time": 9.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "d870f40c-ca46-ee59-f529-97238e6bb850", + "time": 9.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "9cb591e5-637d-577e-f34c-e8ed8be35c23", + "time": 9.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "4425424f-90d9-15c9-0f58-cc9dcadfaa21", + "time": 9.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "99bf477c-a222-0abd-07d6-537fa129a3d5", + "time": 9.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "ef7ff7b8-620a-6f55-f401-10a6f777554d", + "time": 9.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "44aef7bc-67bd-0a46-bab6-3c197eb3197f", + "time": 9.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "0a44e83a-b184-3259-9aac-fd0db35b6c78", + "time": 10, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "6056d45f-ed80-f9fe-9a24-28d4abbba01a", + "time": 10.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "47fd0958-06db-2718-ee06-5e466a329028", + "time": 10.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "a84ddc71-516d-6439-e80e-5a241c4078e0", + "time": 10.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "77aed913-0f5f-a5ed-92c8-748b28470626", + "time": 10.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "5c088993-32a9-692f-28d1-03ea79d7d119", + "time": 10.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "4170c6c3-d407-4547-a10b-a32931681f08", + "time": 10.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "df447011-7b4f-a2b4-6552-8f5a579c3ddc", + "time": 10.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "08a8d0e8-cbb7-3366-66c2-0821b9a90455", + "time": 11, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "d3b9c0a3-4f79-9fc3-d612-4a90be9a70fd", + "time": 11.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "1283b7e5-200f-8119-d4ff-18d934f0ef11", + "time": 11.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "3a318019-a4b4-2ac0-89db-6f1d69ce34f1", + "time": 11.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "8461ebb4-5da3-0b85-0549-c11cbe00529d", + "time": 11.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "c21f00bf-1454-b9da-597f-67425550fc08", + "time": 11.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "1fec3416-3427-ad39-5f91-367e122d4190", + "time": 11.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "98e5a86f-b9e0-ec1f-d569-87cbc92938a5", + "time": 11.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "e7b54ccd-6c3a-74b2-03f7-7cb852271e8f", + "time": 12, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "4cecdfd5-bca5-3598-57f1-f051d03a57f3", + "time": 12.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "ac0caf71-debe-33fa-6337-057f97a5d7a2", + "time": 12.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "3e16c3dd-7504-859e-e13e-76350d659bcc", + "time": 12.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "1048bacf-9aa1-ec14-7bd1-4eeaec1fae5c", + "time": 12.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "7c60ce71-76ba-ee32-33b2-6a8bd376b5e4", + "time": 12.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "8b0a9fa4-c9f0-5636-9007-100bb282b4bd", + "time": 12.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "27294479-d444-7662-286f-123b4d100ada", + "time": 13, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "e3e5b899-2c12-a2bc-2e02-3999f4296457", + "time": 13.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "d2006bce-aa9e-6c55-2d90-2497630f5601", + "time": 13.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "a4f767fc-d1d9-c68f-2077-238485010c90", + "time": 13.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "cf7833bb-5e48-9339-2942-ae55647235e5", + "time": 13.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "cf6fadf9-f243-8f59-6492-57f48d53c6a9", + "time": 13.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "1849b01e-5d97-8c22-82f0-fa73f24304aa", + "time": 13.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "3f20f3b3-0d39-1ecb-4f31-863a181649db", + "time": 13.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "638b7610-ce39-dfc1-6f2d-b3169df81646", + "time": 14, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "08db18b2-8c6e-ad2e-ba0c-595426af26c3", + "time": 14.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "61be04b2-c8fa-f10a-1cdd-68c775416d40", + "time": 14.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "a558704f-5afe-a3c4-b33d-6d2d73380cb9", + "time": 14.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "2361509c-3224-56ce-2d87-8a9b9daa49a5", + "time": 14.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "142f9325-a01a-9b75-b5b8-dd399c8c82ec", + "time": 14.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "720ed310-e7e8-cbbe-7fac-90050b23b99d", + "time": 14.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "ce9e5967-38cf-81d8-72d2-81ed459247bb", + "time": 14.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "5aca0753-28fe-2d0a-602d-ab86833d70b7", + "time": 15, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "9fdd6b4d-83f8-d4b9-b5e8-e6e051f06d53", + "time": 15.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "ca3562f4-57fe-d365-096d-5799dd6d2245", + "time": 15.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "21ada7f6-1a9a-686e-54f5-34d0ae8eff1b", + "time": 15.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "1b54cfbc-2e34-3b71-e9da-fd1c395cfd70", + "time": 15.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "dd77aade-4efa-cd53-7eb0-9d3c85fb66df", + "time": 15.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "26b4be15-d11f-a596-018e-9868276b042a", + "time": 15.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "180747ba-9d3d-060e-e26f-8d4974843d31", + "time": 15.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "969cc977-0d9b-816c-bbc8-632189e59457", + "time": 16, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "c8e4e259-1c30-8ab1-836f-5e5dee8765c0", + "time": 12.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0", + "y": "7.9", + "z": "0" + } + ], + "uuid": "f4692ac8-51b8-6d27-70ff-3408d6888139", + "time": 16.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "1b170149-39ce-f9a9-0a59-ebdfcaeef48b": { + "name": "fountain_cap", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f396ad99-aad3-d3e5-f03a-0cfaedcb22b4", + "time": 7, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "93c5d750-e88d-c335-c8a1-786c86ac6a14", + "time": 6.95833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cb0876fa-52d1-0c91-757b-8f2e12e9c86b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "197", + "z": "-4" + } + ], + "uuid": "77e7a4e9-1488-0c66-5912-1dff33e146c9", + "time": 7, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "197", + "z": "-4" + } + ], + "uuid": "dbf2b651-924b-3d03-9b75-a808cc578971", + "time": 6.95833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "197", + "z": "-4" + } + ], + "uuid": "cf9ead9a-9075-6070-1427-9f78f5612e4d", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "9b3a5ce1-4aca-52e3-934c-ac3bddb67353", + "time": 7, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "300\n", + "y": "1", + "z": "300\n" + } + ], + "uuid": "18bfddd7-db19-c4a6-6b03-1e54fa21d078", + "time": 7.54167, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "627752e5-66d1-d889-ebcb-2da478ffb40c", + "time": 6.95833, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "3d00fdc2-c29a-3964-2ab7-c5dd30b6f93a", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "93699a35-3b66-981e-b702-e0b2b14e22ea": { + "name": "fountain_cap2", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "180\n", + "y": "0", + "z": "0" + } + ], + "uuid": "4e31d74e-995d-9944-b8fe-1b24078e18e1", + "time": 7.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0\n", + "y": "0", + "z": "0" + } + ], + "uuid": "89fb05d8-a795-f1ba-9a48-9b05029cb458", + "time": 7.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "180", + "y": "0", + "z": "0" + } + ], + "uuid": "76f1f921-676b-98c2-8a4f-418ce7da8e80", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "219", + "z": "0" + } + ], + "uuid": "6f415629-afde-8c89-6197-c587122400b6", + "time": 7.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "206.97", + "z": "0" + } + ], + "uuid": "8b2e26e7-e041-b455-af83-bb29bf54fd96", + "time": 7.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "462.97", + "z": "0" + } + ], + "uuid": "f02d2bc7-7b13-1e05-8271-cdb1eb554196", + "time": 15, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "219", + "z": "0" + } + ], + "uuid": "34597d8a-2439-8ea2-bf28-1e8db4efd08a", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "762a05b4-327d-2d3b-2e67-c23fe823d198", + "time": 7.5, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "10", + "y": "1", + "z": "10" + } + ], + "uuid": "b8d035c3-509e-d814-7415-b8441e97bc9b", + "time": 7.54167, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "10", + "y": "56.6", + "z": "10\n" + } + ], + "uuid": "88320cdb-1b06-5fdd-5352-b446cf972be1", + "time": 15, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "4a21346f-3a63-7b1a-6e32-a14711db93e5", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "f1eba479-2a5a-f919-bb13-a58163a6f03b": { + "name": "smog", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5063f52c-ea02-0197-2595-fe9d278b2add", + "time": 16.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-426", + "z": "0" + } + ], + "uuid": "c0e5bc50-27de-effc-c849-6bc98c0c6624", + "time": 30.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-512", + "z": "0" + } + ], + "uuid": "e33bebd0-ff6a-8fb1-7cf5-25058e4d3500", + "time": 17.75, + "color": -1, + "interpolation": "catmullrom" + } + ] + } + } + }, + { + "uuid": "71ca2828-c6e9-3457-bc65-01729c50445f", + "name": "animation", + "loop": "once", + "override": false, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "-1" + } + ], + "uuid": "a47de454-d91c-f07a-c8f5-d12699c9b1de", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "47.5", + "y": "0", + "z": "0" + } + ], + "uuid": "875981c8-7c94-1f21-98d5-220b66a9de2e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-1" + } + ], + "uuid": "61d0e645-7ba2-0711-f2ac-64fb5aa431f1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-1" + } + ], + "uuid": "e885ecc5-b6b8-68df-366d-813237360abe", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-30", + "y": "0", + "z": "0" + } + ], + "uuid": "1da171b1-ebe2-8951-169b-eb9158cd3cbe", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "90", + "y": "0", + "z": "0" + } + ], + "uuid": "fa1d71b5-1515-8d6b-0904-bb673bc8724e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-47.5", + "y": "0", + "z": "0" + } + ], + "uuid": "db31c793-7ada-7d7f-36da-4b4efd62f737", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "ccbe5164-07d6-91b2-6958-fd4145e9f767", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "0c5116db-1164-ff5e-4843-3d96a3d5284c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "32.5", + "y": "0", + "z": "0" + } + ], + "uuid": "85041e6b-2010-27e1-5cf1-a1f3d2205287", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "5679431d-98e7-c966-c87d-d7f643d5b1d8", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "c684321a-c5ce-fadc-5277-633e69d1d29b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "1c6a3648-cac9-048f-f72e-711700912b33", + "name": "fountain_consuming", + "loop": "once", + "override": false, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "" } ] } \ No newline at end of file diff --git a/3d_models/akira/model 4.13/akiracombined_guilt.png b/3d_models/akira/model 4.13/akiracombined_guilt.png new file mode 100644 index 0000000..23b5420 Binary files /dev/null and b/3d_models/akira/model 4.13/akiracombined_guilt.png differ diff --git a/3d_models/akira/model 4.13/blob_single.png b/3d_models/akira/model 4.13/blob_single.png new file mode 100644 index 0000000..13fa337 Binary files /dev/null and b/3d_models/akira/model 4.13/blob_single.png differ diff --git a/3d_models/akira/model 4.13/camera.png b/3d_models/akira/model 4.13/camera.png index 3a74697..8f008d8 100644 Binary files a/3d_models/akira/model 4.13/camera.png and b/3d_models/akira/model 4.13/camera.png differ diff --git a/3d_models/akira/model 4.13/confetti.lua b/3d_models/akira/model 4.13/confetti.lua new file mode 100644 index 0000000..49f1deb --- /dev/null +++ b/3d_models/akira/model 4.13/confetti.lua @@ -0,0 +1,221 @@ +---- Confetti - A Custom Particle Library by manuel_2867 ---- + +---@class Confetti +local Confetti = {} + +local Particles = {} +local Instances = {} +local modelinstances = models:newPart("confetti"..client.intUUIDToString(client.generateUUID())):setParentType("World"):newPart("Instances") +local DEFAULT_LIFETIME = 20 +local math_lerp = math.lerp + +-- Metatable change for syncing emissive SpriteTask to the regular one +local SpriteMap = {} +local SpriteTask__index = figuraMetatables.SpriteTask.__index +figuraMetatables.SpriteTask.__index = {} +for key, value in pairs(SpriteTask__index) do + figuraMetatables.SpriteTask.__index[key] = function(self,...) + if SpriteMap[self] then + value(SpriteMap[self],...) + end + return value(self,...) + end +end + +---Default ticker +---@param instance Confetto +function Confetti.defaultTicker(instance) + local opts = instance.options + instance._position = instance.position + instance._rotation = instance.rotation + instance._scale = instance.scale + instance.velocity = (instance.velocity + opts.acceleration) * opts.friction + instance.position = instance.position + instance.velocity + instance.scale = instance.scale + opts.scaleOverTime + instance.rotation = instance.rotation + opts.rotationOverTime +end + +---Default renderer +---@param instance Confetto +function Confetti.defaultRenderer(instance, delta, context, matrix) + if context == "PAPERDOLL" then return end + instance.mesh:setPos((math_lerp(instance._position,instance.position,delta))*16) + instance.mesh:setRot(math_lerp(instance._rotation,instance.rotation,delta)) + instance.mesh:setScale(math_lerp(instance._scale,instance.scale,delta)) +end + +---@class ConfettoOptions +---@field lifetime number|nil Initial lifetime in ticks +---@field acceleration Vector3|number|nil Vector in world space or a number which accelerates forwards (positive) or backwards (negative) in the current movement direction +---@field friction number|nil Number of friction to slow down the particle. Value of 1 is no friction, value <1 slows it down, value >1 speeds it up. +---@field scale Vector3|number|nil Initial scale when spawning +---@field scaleOverTime Vector3|number|nil Change of scale every tick +---@field rotation Vector3|number|nil Initial rotation when spawning +---@field rotationOverTime Vector3|number|nil Change of rotation every tick +---@field billboard boolean|nil Makes the particle always face the camera +---@field emissive boolean|nil Makes the particle emissive. +---@field ticker fun(particle: Confetto)|nil Function called each tick. Will overwrite the default behavior which calculates position, velocity, rotation and scale. To keep default behavior, call `Confetti.defaultTicker(particle)` before your own code. +---@field renderer fun(particle: Confetto, delta: number, context: Event.Render.context, matrix: Matrix4)|nil Function called each frame. Will overwrite the default behavior which smoothes the pos,rot,scale if it was calculated correctly by the ticker. To keep default behavior, call `Confetti.defaultRenderer(particle, delta, context, matrix)` before your own code. +local ConfettoOptions = {} + +local DefaultConfettoOptions = { + lifetime = DEFAULT_LIFETIME, + acceleration = vec(0,0,0), + friction = 1, + scale = vec(1,1,1), + scaleOverTime = vec(0,0,0), + rotation = vec(0,0,0), + rotationOverTime = vec(0,0,0), + billboard=false, + emissive=false, + ticker=Confetti.defaultTicker, + renderer=Confetti.defaultRenderer +} + +---@class Confetto +---@field mesh ModelPart The model part +---@field task SpriteTask|nil The sprite task if it's a sprite particle. (If emissive, not a real SpriteTask but a fake one because internally it uses two actual SpriteTasks to have a normal layer and an emissive layer above it. This is so you can still just use one line of code to access both of them at the same time internally.) +---@field position Vector3 Current position in world coordinates +---@field _position Vector3 Last tick position +---@field velocity Vector3 The particles velocity +---@field lifetime number Remaining lifetime in ticks +---@field scale Vector3|number Current scale +---@field _scale Vector3|number Last tick scale +---@field rotation Vector3|number Current rotation +---@field _rotation Vector3|number Last tick rotation +---@field options ConfettoOptions +local Confetto = {} +Confetto.__index = Confetto + +function Confetto:new(mesh, task, pos, vel, bounds, pivot, options) + return setmetatable({ + mesh=mesh, + task=task, + position=pos, + _position=pos, + velocity=vel, + lifetime=options.lifetime, + scale=options.scale, + _scale=options.scale, + rotation=options.rotation, + _rotation=options.rotation, + bounds=bounds, + pivot=pivot, + options=options + }, Confetto) +end + +--- Register a Mesh Particle +---@param name string +---@param mesh ModelPart +---@param lifetime number|nil Lifetime in ticks +---@return nil +function Confetti.registerMesh(name, mesh, lifetime) + assert(mesh, "Model Part does not exist! Double check the path, spelling, and if you saved your model file.") + if mesh:getType() ~= "GROUP" then logJson('[{color="yellow",text="[WARNING] "},{color:"white",text:"You are creating a particle by targeting a model part directly, instead of a group. This can cause unexpected behavior. It is recommended to use a group that is positioned at (0,0,0) instead. If you know what you are doing, to get rid of this warning simply delete this line of code."}]') end + Particles[name] = {mesh=mesh,lifetime=lifetime or DEFAULT_LIFETIME} + mesh:setVisible(false) +end + +--- Register a Sprite Particle +---@param name string +---@param sprite Texture The texture file to use +---@param bounds Vector4 (x,y,z,w) with x,y top left corner (inclusive) and z,w bottom right corner (inclusive), in pixels +---@param lifetime number|nil Lifetime in ticks. Default is 20. +---@param pivot Vector2|nil Offset to change pivot point. 0,0 is top left corner. Default is in center. +---@return nil +function Confetti.registerSprite(name, sprite, bounds, lifetime, pivot) + if not sprite then + logTable(textures:getTextures()) + error("Texture does not exist. Use the correct name shown in the list above. It may need a model name before the texture name separated by a dot.") + end + Particles[name] = {sprite=sprite,bounds=bounds,lifetime=lifetime or DEFAULT_LIFETIME,pivot=pivot or vec((bounds.z+1-bounds.x)/2,(bounds.w+1-bounds.y)/2)} +end + +--- Spawn a registered custom particle without checking arguments. This uses less instructions, but doesn't allow different argument types. In the options, scaleOverTime, rotationOverTime and acceleration must be Vector3 if used. +---@param name string +---@param pos Vector3 Position in world coordinates +---@param vel Vector3 Velocity vector +---@param options ConfettoOptions +---@return Confetto +function Confetti.newParticleUnchecked(name, pos, vel, options) + local ptcl = Particles[name] + options.lifetime = options.lifetime or ptcl.lifetime + setmetatable(options, { __index = DefaultConfettoOptions }) + local meshInstance, task + if ptcl.mesh ~= nil then + meshInstance = modelinstances:newPart("_") + ptcl.mesh:copy("meshholder"):moveTo(meshInstance):setParentType(options.billboard and "CAMERA" or "NONE"):setVisible(true) + else + meshInstance = modelinstances:newPart("_") + local holder = meshInstance:newPart("taskholder") + :setParentType(options.billboard and "CAMERA" or "NONE") + local x,y,z,w = ptcl.bounds:unpack() + task = (holder:newPart("_")):newSprite("_") + :setPos(ptcl.pivot.xy_) + :setTexture(ptcl.sprite) + :setDimensions(ptcl.sprite:getDimensions()) + :setUVPixels(x,y) + :setRegion(z+1-x,w+1-y) + :setSize(z+1-x,w+1-y) + if options.emissive then + SpriteMap[task] = (holder:newPart("_")):newSprite("_") + :setPos(ptcl.pivot.xy_) + :setTexture(ptcl.sprite) + :setDimensions(ptcl.sprite:getDimensions()) + :setUVPixels(x,y) + :setRegion(z+1-x,w+1-y) + :setSize(z+1-x,w+1-y) + :setRenderType("EMISSIVE") + end + end + if options.emissive then + meshInstance:setSecondaryTexture("PRIMARY") + end + local particle = Confetto:new(meshInstance, task, pos, vel, ptcl.bounds, Particles[name].pivot, options) + Instances[client.intUUIDToString(client.generateUUID())] = particle + return particle +end + +--- Spawn a registered custom particle +---@param name string +---@param pos Vector3 Position in world coordinates +---@param vel Vector3|nil Velocity vector +---@param options ConfettoOptions|nil +---@return Confetto +function Confetti.newParticle(name, pos, vel, options) + vel = vel or vec(0,0,0) + options = options or {} + if type(options.scaleOverTime) == "number" then + options.scaleOverTime = vec(options.scaleOverTime,options.scaleOverTime,options.scaleOverTime) + end + if type(options.rotationOverTime) == "number" then + options.rotationOverTime = vec(options.rotationOverTime,options.rotationOverTime,options.rotationOverTime) + end + if type(options.acceleration) == "number" then + options.acceleration = vel:normalized() * options.acceleration + end + return Confetti.newParticleUnchecked(name, pos, vel, options) +end + +function events.TICK() + for key, instance in pairs(Instances) do + instance.options.ticker(instance) + instance.lifetime = instance.lifetime - 1 + if instance.lifetime <= 0 then + modelinstances:removeChild(instance.mesh) + if instance.task then + SpriteMap[instance.task] = nil + end + Instances[key] = nil + end + end +end + +function events.RENDER(delta, context, matrix) + for _, instance in pairs(Instances) do + instance.options.renderer(instance, delta, context, matrix) + end +end + +return Confetti diff --git a/3d_models/akira/model 4.13/fountain_inner.png b/3d_models/akira/model 4.13/fountain_inner.png new file mode 100644 index 0000000..c99defe Binary files /dev/null and b/3d_models/akira/model 4.13/fountain_inner.png differ diff --git a/3d_models/akira/model 4.13/fountain_opening.ogg b/3d_models/akira/model 4.13/fountain_opening.ogg new file mode 100644 index 0000000..7360145 Binary files /dev/null and b/3d_models/akira/model 4.13/fountain_opening.ogg differ diff --git a/3d_models/akira/model 4.13/fountain_outer.png b/3d_models/akira/model 4.13/fountain_outer.png new file mode 100644 index 0000000..d6ffc76 Binary files /dev/null and b/3d_models/akira/model 4.13/fountain_outer.png differ diff --git a/3d_models/akira/model 4.13/iron_knife.png b/3d_models/akira/model 4.13/iron_knife.png new file mode 100644 index 0000000..fc21489 Binary files /dev/null and b/3d_models/akira/model 4.13/iron_knife.png differ diff --git a/3d_models/akira/model 4.13/script.lua b/3d_models/akira/model 4.13/script.lua index 072d1fa..6f0da75 100644 --- a/3d_models/akira/model 4.13/script.lua +++ b/3d_models/akira/model 4.13/script.lua @@ -12,7 +12,6 @@ example:addAllOverrider(animations.akira_eiko_olivia_pink.spyglog) example:addAllOverrider(animations.akira_eiko_olivia_pink.spyglog2) example:addAllOverrider(animations.akira_eiko_olivia_pink.attackL) example:addAllOverrider(animations.akira_eiko_olivia_pink.attackR) - example:addAllOverrider(animations.akira_eiko_olivia_pink.taunt_01) example:addAllOverrider(animations.akira_eiko_olivia_pink.taunt_02) example:addAllOverrider(animations.akira_eiko_olivia_pink.taunt_03) @@ -51,13 +50,19 @@ function camera.press() sounds:playSound("item.spyglass.use", player:getPos(), 1, 1, false) models.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setVisible(true) animations.akira_eiko_olivia_pink.spyglog2:setPlaying(true) + models.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture("Custom", textures["elytra"]) + models.akira_eiko_olivia_pink.RipeCamera:moveTo(models.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand) + models.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RipeCamera:setPrimaryTexture("Custom", textures["camera"]) + models.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RipeCamera:setVisible(true) keyHeld = true end function camera.release() - sounds:playSound("item.spyglass.stop", player:getPos(), 1, 1, false) - models.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setVisible(false) + sounds:playSound("item.spyglass.stop_using", player:getPos(), 1, 1, false) + models.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RipeCamera:setPrimaryTexture("Custom", textures["camera"]) + models.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RipeCamera:setVisible(false) animations.akira_eiko_olivia_pink.spyglog2:setPlaying(false) + models.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RipeCamera:moveTo(models.akira_eiko_olivia_pink) keyHeld = false end @@ -79,13 +84,13 @@ end -function events.render(delta,context) - local firstPerson = context == "FIRST_PERSON" - models.akira_eiko_olivia_pink.root.Head:setVisible(not (renderer:isFirstPerson() and context == "OTHER")) - if keyHeld then - models.akira_eiko_olivia_pink.root.RightArm:setVisible(not (renderer:isFirstPerson() and context == "OTHER")) - end -end +-- function events.render(delta,context) +-- local firstPerson = context == "FIRST_PERSON" +-- models.akira_eiko_olivia_pink.root.Head:setVisible(not (renderer:isFirstPerson() and context == "OTHER")) +-- if keyHeld then +-- models.akira_eiko_olivia_pink.root.RightArm:setVisible(not (renderer:isFirstPerson() and context == "OTHER")) +-- end +-- end function events.tick() -- every tick... if curxp < player:getExperienceLevel() then -- ...compare LV to what it was, and if it's higher... @@ -127,7 +132,6 @@ function models.akira_eiko_olivia_pink.preRender() end end - --change nameplate function events.POST_RENDER(delta) -- Get the world-space position of the head plus the offset of the nameplate. @@ -145,12 +149,12 @@ local bladeHeld = false function pings.examplePing(state) bladeHeld = state end -local exampleKey = keybinds:newKeybind("Show Rose Gold Rapier", "key.keyboard.p") +-- local exampleKey = keybinds:newKeybind("Show Rose Gold Rapier", "key.keyboard.p") -exampleKey.press = function() - bladeHeld = not bladeHeld - pings.examplePing(bladeHeld) -end +-- exampleKey.press = function() +-- bladeHeld = not bladeHeld +-- pings.examplePing(bladeHeld) +-- end function events.item_render(item, mode) if item:getName():find("Rose Gold Rapier") or bladeHeld then diff --git a/3d_models/akira/model 4.13/smog.png b/3d_models/akira/model 4.13/smog.png new file mode 100644 index 0000000..532470b Binary files /dev/null and b/3d_models/akira/model 4.13/smog.png differ diff --git a/3d_models/akira/model 4.13/symbol_e.png b/3d_models/akira/model 4.13/symbol_e.png new file mode 100644 index 0000000..7470921 Binary files /dev/null and b/3d_models/akira/model 4.13/symbol_e.png differ diff --git a/3d_models/akira/model 4.13/symbol_x_e.png b/3d_models/akira/model 4.13/symbol_x_e.png new file mode 100644 index 0000000..4d68397 Binary files /dev/null and b/3d_models/akira/model 4.13/symbol_x_e.png differ diff --git a/3d_models/akira/model 4.13/symbols_sound.ogg b/3d_models/akira/model 4.13/symbols_sound.ogg new file mode 100644 index 0000000..7ed411c Binary files /dev/null and b/3d_models/akira/model 4.13/symbols_sound.ogg differ diff --git a/3d_models/akira/model 4.13/taunt3.png b/3d_models/akira/model 4.13/taunt3.png index 2581d06..5c42610 100644 Binary files a/3d_models/akira/model 4.13/taunt3.png and b/3d_models/akira/model 4.13/taunt3.png differ diff --git a/3d_models/akira/old model backup/akira_eiko_olivia_pink_410.bbmodel b/3d_models/akira/old model backup/akira_eiko_olivia_pink_410.bbmodel new file mode 100644 index 0000000..ae578a7 --- /dev/null +++ b/3d_models/akira/old model backup/akira_eiko_olivia_pink_410.bbmodel @@ -0,0 +1,49604 @@ +{ + "meta": { + "format_version": "4.10", + "model_format": "figura", + "box_uv": false + }, + "visible_box": [1, 1, 0], + "variable_placeholders": "", + "variable_placeholder_buttons": [], + "timeline_setups": [], + "unhandled_root_fields": {}, + "resolution": { + "width": 96, + "height": 64 + }, + "elements": [ + { + "name": "cube", + "color": 8, + "origin": [-0.91367, 0, -0.15628], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "BtHE": [3.78, 1.8, 1.8], + "p9SG": [3.78, 1.8, -0.77143], + "dP2U": [3.78, 0, 1.8], + "eok7": [4.5, 0, -0.77143], + "ocfu": [1.62, 1.8, 1.8], + "vUhB": [1.62, 1.8, -0.77143], + "EUsg": [1.62, 0, 1.8], + "oqGO": [0.9, 0, -0.77143], + "LuHl": [1.62, 1.8, -2.7], + "xXtl": [3.78, 1.8, -2.7], + "EDaA": [1.62, 0, -3.6], + "X2US": [3.78, 0, -3.6] + }, + "faces": { + "rLMf7opp": { + "uv": { + "dP2U": [0, 27.9836], + "eok7": [0, 25.9836], + "BtHE": [4, 27.9836], + "p9SG": [4, 25.9836] + }, + "vertices": ["p9SG", "BtHE", "eok7", "dP2U"], + "texture": 0 + }, + "lK1uZ4ZU": { + "uv": { + "oqGO": [0, 27.9836], + "EUsg": [0, 25.9836], + "vUhB": [4, 27.9836], + "ocfu": [4, 25.9836] + }, + "vertices": ["ocfu", "vUhB", "EUsg", "oqGO"], + "texture": 0 + }, + "IOcJK5rY": { + "uv": { + "ocfu": [0, 29.9836], + "BtHE": [0, 25.9836], + "vUhB": [3, 29.9836], + "p9SG": [3, 25.9836] + }, + "vertices": ["p9SG", "vUhB", "BtHE", "ocfu"], + "texture": 0 + }, + "TZD9oDhP": { + "uv": { + "oqGO": [0, 29.9836], + "eok7": [0, 25.9836], + "EUsg": [3, 29.9836], + "dP2U": [3, 25.9836] + }, + "vertices": ["dP2U", "EUsg", "eok7", "oqGO"], + "texture": 0 + }, + "h8ImDcMA": { + "uv": { + "EUsg": [0, 27.9836], + "dP2U": [0, 25.9836], + "ocfu": [3, 27.9836], + "BtHE": [3, 25.9836] + }, + "vertices": ["BtHE", "ocfu", "dP2U", "EUsg"], + "texture": 0 + }, + "4tbVDhEo": { + "uv": { + "X2US": [0, 27.9836], + "EDaA": [0, 25.9836], + "xXtl": [3, 27.9836], + "LuHl": [3, 25.9836] + }, + "vertices": ["LuHl", "xXtl", "EDaA", "X2US"], + "texture": 0 + }, + "EtmLgTse": { + "uv": { + "vUhB": [3, 25.9836], + "oqGO": [0, 25.9836], + "EDaA": [0, 27.9836], + "LuHl": [3, 27.9836] + }, + "vertices": ["LuHl", "EDaA", "oqGO", "vUhB"], + "texture": 0 + }, + "iRHEFw0e": { + "uv": { + "p9SG": [3, 28.9836], + "vUhB": [3, 25.9836], + "LuHl": [0, 25.9836], + "xXtl": [0, 28.9836] + }, + "vertices": ["xXtl", "LuHl", "vUhB", "p9SG"], + "texture": 0 + }, + "5H56KX26": { + "uv": { + "eok7": [0, 27.9836], + "p9SG": [3, 27.9836], + "xXtl": [3, 25.9836], + "X2US": [0, 25.9836] + }, + "vertices": ["X2US", "xXtl", "p9SG", "eok7"], + "texture": 0 + }, + "YPxuRqB2": { + "uv": { + "oqGO": [0, 25.9836], + "eok7": [0, 28.9836], + "X2US": [3, 28.9836], + "EDaA": [3, 25.9836] + }, + "vertices": ["EDaA", "X2US", "eok7", "oqGO"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "841507ff-09dc-0d69-b367-522f44abd3cd" + }, + { + "name": "Head", + "color": 8, + "origin": [0, 21.6, -0.9], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "ppnZ": [0, 0.9, 0.08194], + "TV9o": [1.14168, 2.05, 1.29973], + "n3UK": [1.30478, 6.95, 1.99986], + "xI8D": [2.75625, 2.05, 0.47689], + "If9H": [3.15, 6.95, 1.05948], + "NlFz": [2.75625, 1.87, -0.93308], + "lH3O": [2.86875, 6.95, -1.26057], + "BlXc": [1.14168, 1.31941, -2.38257], + "j3zU": [1.38199, 6.95, -2.91102], + "8Vaz": [1.30478, 3.18607, -3.35271], + "2fMz": [1.30478, 3.93333, -2.90109], + "DFnu": [2.75625, 3.38666, -1.26057], + "ZKz3": [2.75625, 3.93333, -1.26057], + "9wlZ": [3.15, 3.11666, 1.05948], + "HeA6": [3.15, 4.63334, 1.05948], + "ETfb": [1.30478, 3.11666, 2.7], + "EqZH": [1.30478, 5.33334, 2.7], + "yF3x": [-1.14168, 2.05, 1.29973], + "lXqu": [-1.30477, 6.95, 1.99986], + "C6cU": [-2.75625, 2.05, 0.47689], + "qc0L": [-3.15, 6.95, 1.05948], + "HCVy": [-2.75625, 1.87, -0.93308], + "dgCx": [-2.8, 6.95, -1.26057], + "a6Ti": [-1.14168, 1.31941, -2.38257], + "2NA1": [-1.5098, 6.95, -2.91102], + "5WyA": [-1.30477, 3.18607, -3.35271], + "FBal": [-1.30477, 3.93333, -2.90109], + "XPZQ": [-2.75625, 3.38666, -1.26057], + "tTFb": [-2.75625, 3.93333, -1.26057], + "A49p": [-3.15, 3.11666, 1.05948], + "uuLd": [-3.15, 4.63334, 1.05948], + "Jfz9": [-1.30477, 3.11666, 2.7], + "ZHiN": [-1.30477, 5.33334, 2.7], + "y7s6": [1.00507, 8.27214, -2.22], + "r4hz": [-1.00507, 8.27214, -2.22], + "eD5k": [0, 8.99996, -0.14998], + "AfLN": [-2.13776, 8.27598, -0.96465], + "yYAy": [-2.41141, 8.2805, 0.64749], + "TwUw": [-0.99092, 8.26204, 1.35238], + "jqYQ": [0.99092, 8.26204, 1.35238], + "cR8P": [2.41141, 8.2805, 0.64749], + "Wmhk": [2.13776, 8.27598, -0.96465], + "aBmc": [0, 8.27214, -2.22], + "fLpt": [0, 6.95, -2.91102], + "7lzt": [0, 3.93333, -2.90109], + "TQ4O": [0, 3.18607, -3.35271], + "5haT": [0, 1.31941, -2.38257], + "O2fe": [1.30478, 6.14166, 2.34994], + "2pNO": [3.15, 5.79166, 1.05948], + "zkoC": [2.86875, 5.44166, -1.26057], + "V1kR": [1.38199, 5.44166, -2.90605], + "MHH5": [0, 5.44166, -2.90605], + "vdUT": [-1.5098, 5.44166, -2.90605], + "wxOS": [-2.8, 5.44166, -1.26057], + "1l81": [-3.15, 5.79166, 1.05948], + "yyfa": [-1.30477, 6.14166, 2.34994] + }, + "faces": { + "SGOtJOVi": { + "uv": { + "ppnZ": [0, 8.9836], + "TV9o": [6, 5.9836], + "xI8D": [8, 8.9836] + }, + "vertices": ["xI8D", "TV9o", "ppnZ"], + "texture": 0 + }, + "qybQHbiM": { + "uv": { + "EqZH": [0, 8.9836], + "2pNO": [6, 7.4836], + "O2fe": [0, 7.4836], + "HeA6": [6, 8.9836] + }, + "vertices": ["HeA6", "O2fe", "2pNO", "EqZH"], + "texture": 0 + }, + "OTX97j14": { + "uv": { + "eD5k": [0, 6.9836], + "cR8P": [6, 9.9836], + "jqYQ": [0, 11.9836] + }, + "vertices": ["jqYQ", "cR8P", "eD5k"], + "texture": 0 + }, + "NeEi2vFZ": { + "uv": { + "ppnZ": [0, 7.9836], + "xI8D": [7, 5.9836], + "NlFz": [7, 9.9836] + }, + "vertices": ["NlFz", "xI8D", "ppnZ"], + "texture": 0 + }, + "WedP020P": { + "uv": { + "HeA6": [0, 8.9836], + "zkoC": [6, 7.4836], + "2pNO": [0, 7.4836], + "ZKz3": [6, 8.9836] + }, + "vertices": ["ZKz3", "2pNO", "zkoC", "HeA6"], + "texture": 0 + }, + "BYsI7aC0": { + "uv": { + "eD5k": [0, 8.9836], + "Wmhk": [7, 6.9836], + "cR8P": [7, 10.9836] + }, + "vertices": ["cR8P", "Wmhk", "eD5k"], + "texture": 0 + }, + "WWTxBVtP": { + "uv": { + "ppnZ": [0, 5.9836], + "NlFz": [6, 8.9836], + "BlXc": [0, 10.9836] + }, + "vertices": ["BlXc", "NlFz", "ppnZ"], + "texture": 0 + }, + "m9E4bexa": { + "uv": { + "ZKz3": [0, 8], + "V1kR": [3, 12], + "zkoC": [0, 12], + "2fMz": [3, 8] + }, + "vertices": ["2fMz", "zkoC", "V1kR", "ZKz3"], + "texture": 0 + }, + "1K3IilLx": { + "uv": { + "eD5k": [0, 9.9836], + "y7s6": [6, 6.9836], + "Wmhk": [8, 9.9836] + }, + "vertices": ["Wmhk", "y7s6", "eD5k"], + "texture": 0 + }, + "gkvqNXSk": { + "uv": { + "BlXc": [6, 9.9836], + "5haT": [3, 9.9836], + "ppnZ": [3, 5.9836] + }, + "vertices": ["ppnZ", "5haT", "BlXc"], + "texture": 0 + }, + "WZA3BCX4": { + "uv": { + "2fMz": [3, 8], + "MHH5": [0, 12], + "V1kR": [3, 12], + "7lzt": [0, 8] + }, + "vertices": ["7lzt", "V1kR", "MHH5", "2fMz"], + "texture": 0 + }, + "UfluJ6be": { + "uv": { + "r4hz": [0, 6.9836], + "aBmc": [3, 6.9836], + "eD5k": [3, 10.9836] + }, + "vertices": ["eD5k", "aBmc", "r4hz"], + "texture": 0 + }, + "mCNrpYIj": { + "uv": { + "ppnZ": [3, 9.9836], + "yF3x": [0, 5.9836], + "TV9o": [6, 5.9836] + }, + "vertices": ["TV9o", "yF3x", "ppnZ"], + "texture": 0 + }, + "taIZthpZ": { + "uv": { + "ZHiN": [0, 8.9836], + "O2fe": [6, 7.4836], + "yyfa": [0, 7.4836], + "EqZH": [6, 8.9836] + }, + "vertices": ["EqZH", "yyfa", "O2fe", "ZHiN"], + "texture": 0 + }, + "eHr3thlr": { + "uv": { + "eD5k": [3, 6.9836], + "jqYQ": [6, 10.9836], + "TwUw": [0, 10.9836] + }, + "vertices": ["TwUw", "jqYQ", "eD5k"], + "texture": 0 + }, + "mOGzqJIk": { + "uv": { + "8Vaz": [13, 3], + "5haT": [18, 10], + "TQ4O": [18, 3], + "BlXc": [13, 10] + }, + "vertices": ["BlXc", "TQ4O", "5haT", "8Vaz"], + "texture": 0 + }, + "IspizuX0": { + "uv": { + "2fMz": [0, 8.9836], + "TQ4O": [3, 11.9836], + "7lzt": [3, 8.9836], + "8Vaz": [0, 11.9836] + }, + "vertices": ["8Vaz", "7lzt", "TQ4O", "2fMz"], + "texture": 0 + }, + "4elRqR2m": { + "uv": { + "NlFz": [0, 11.9836], + "DFnu": [0, 5.9836], + "8Vaz": [3.18182, 5.9836], + "BlXc": [3.18182, 11.9836] + }, + "vertices": ["BlXc", "8Vaz", "DFnu", "NlFz"], + "texture": 0 + }, + "Pro0QCF0": { + "uv": { + "DFnu": [0, 11.9836], + "ZKz3": [0, 8.9836], + "2fMz": [6, 8.9836], + "8Vaz": [6, 11.9836] + }, + "vertices": ["8Vaz", "2fMz", "ZKz3", "DFnu"], + "texture": 0 + }, + "0wLusB14": { + "uv": { + "xI8D": [0, 8.9836], + "9wlZ": [0, 5.9836], + "DFnu": [6, 5.9836], + "NlFz": [6, 8.9836] + }, + "vertices": ["NlFz", "DFnu", "9wlZ", "xI8D"], + "texture": 0 + }, + "wGe6CeFl": { + "uv": { + "9wlZ": [0, 11.9836], + "HeA6": [0, 8.9836], + "ZKz3": [6, 8.9836], + "DFnu": [6, 11.9836] + }, + "vertices": ["DFnu", "ZKz3", "HeA6", "9wlZ"], + "texture": 0 + }, + "ZCt7nfD8": { + "uv": { + "TV9o": [0, 8.9836], + "ETfb": [0, 5.9836], + "9wlZ": [6, 5.9836], + "xI8D": [6, 8.9836] + }, + "vertices": ["xI8D", "9wlZ", "ETfb", "TV9o"], + "texture": 0 + }, + "yq9buZK2": { + "uv": { + "ETfb": [0, 11.9836], + "EqZH": [0, 8.9836], + "HeA6": [6, 8.9836], + "9wlZ": [6, 11.9836] + }, + "vertices": ["9wlZ", "HeA6", "EqZH", "ETfb"], + "texture": 0 + }, + "3RmOj4jX": { + "uv": { + "yF3x": [0, 8.9836], + "Jfz9": [0, 5.9836], + "ETfb": [6, 5.9836], + "TV9o": [6, 8.9836] + }, + "vertices": ["TV9o", "ETfb", "Jfz9", "yF3x"], + "texture": 0 + }, + "5QqsYfQ8": { + "uv": { + "Jfz9": [0, 11.9836], + "ZHiN": [0, 8.9836], + "EqZH": [6, 8.9836], + "ETfb": [6, 11.9836] + }, + "vertices": ["ETfb", "EqZH", "ZHiN", "Jfz9"], + "texture": 0 + }, + "Fg9vJv4N": { + "uv": { + "ppnZ": [0, 8.9836], + "C6cU": [8, 8.9836], + "yF3x": [6, 5.9836] + }, + "vertices": ["yF3x", "C6cU", "ppnZ"], + "texture": 0 + }, + "wfInJ26T": { + "uv": { + "uuLd": [6, 8.9836], + "yyfa": [0, 7.4836], + "1l81": [6, 7.4836], + "ZHiN": [0, 8.9836] + }, + "vertices": ["ZHiN", "1l81", "yyfa", "uuLd"], + "texture": 0 + }, + "eiK1svyY": { + "uv": { + "eD5k": [0, 6.9836], + "TwUw": [0, 11.9836], + "yYAy": [6, 9.9836] + }, + "vertices": ["yYAy", "TwUw", "eD5k"], + "texture": 0 + }, + "ZFEG13AU": { + "uv": { + "ppnZ": [0, 7.9836], + "HCVy": [7, 9.9836], + "C6cU": [7, 5.9836] + }, + "vertices": ["C6cU", "HCVy", "ppnZ"], + "texture": 0 + }, + "BcBa4KR3": { + "uv": { + "tTFb": [6, 8.9836], + "1l81": [0, 7.4836], + "wxOS": [6, 7.4836], + "uuLd": [0, 8.9836] + }, + "vertices": ["uuLd", "wxOS", "1l81", "tTFb"], + "texture": 0 + }, + "ixMgOYvh": { + "uv": { + "eD5k": [0, 8.9836], + "yYAy": [7, 10.9836], + "AfLN": [7, 6.9836] + }, + "vertices": ["AfLN", "yYAy", "eD5k"], + "texture": 0 + }, + "RBqNM3aV": { + "uv": { + "ppnZ": [0, 5.9836], + "a6Ti": [0, 10.9836], + "HCVy": [6, 8.9836] + }, + "vertices": ["HCVy", "a6Ti", "ppnZ"], + "texture": 0 + }, + "PbRsxzNF": { + "uv": { + "FBal": [3, 8], + "wxOS": [0, 12], + "vdUT": [3, 12], + "tTFb": [0, 8] + }, + "vertices": ["tTFb", "vdUT", "wxOS", "FBal"], + "texture": 0 + }, + "YLxZHzXa": { + "uv": { + "eD5k": [0, 9.9836], + "AfLN": [8, 9.9836], + "r4hz": [6, 6.9836] + }, + "vertices": ["r4hz", "AfLN", "eD5k"], + "texture": 0 + }, + "j7kPMev4": { + "uv": { + "HCVy": [0, 5.9836], + "XPZQ": [0, 11.9836], + "a6Ti": [3.18182, 5.9836], + "5WyA": [3.18182, 11.9836] + }, + "vertices": ["5WyA", "a6Ti", "XPZQ", "HCVy"], + "texture": 0 + }, + "oYEZeJop": { + "uv": { + "XPZQ": [0, 11.9836], + "tTFb": [0, 8.9836], + "5WyA": [6, 11.9836], + "FBal": [6, 8.9836] + }, + "vertices": ["FBal", "5WyA", "tTFb", "XPZQ"], + "texture": 0 + }, + "JN2qxV70": { + "uv": { + "C6cU": [0, 8.9836], + "A49p": [0, 5.9836], + "HCVy": [6, 8.9836], + "XPZQ": [6, 5.9836] + }, + "vertices": ["XPZQ", "HCVy", "A49p", "C6cU"], + "texture": 0 + }, + "s7idVvdI": { + "uv": { + "A49p": [0, 11.9836], + "uuLd": [0, 8.9836], + "XPZQ": [6, 11.9836], + "tTFb": [6, 8.9836] + }, + "vertices": ["tTFb", "XPZQ", "uuLd", "A49p"], + "texture": 0 + }, + "3YxMl6ID": { + "uv": { + "yF3x": [0, 8.9836], + "Jfz9": [0, 5.9836], + "C6cU": [6, 8.9836], + "A49p": [6, 5.9836] + }, + "vertices": ["A49p", "C6cU", "Jfz9", "yF3x"], + "texture": 0 + }, + "W7j54Eei": { + "uv": { + "Jfz9": [0, 11.9836], + "ZHiN": [0, 8.9836], + "A49p": [6, 11.9836], + "uuLd": [6, 8.9836] + }, + "vertices": ["uuLd", "A49p", "ZHiN", "Jfz9"], + "texture": 0 + }, + "M8wNGDX4": { + "uv": { + "y7s6": [4.45455, 11.9836], + "fLpt": [1.90909, 9.4836], + "aBmc": [1.90909, 11.9836], + "j3zU": [4.45455, 9.4836] + }, + "vertices": ["j3zU", "aBmc", "fLpt", "y7s6"], + "texture": 0 + }, + "yDqHbo9h": { + "uv": { + "dgCx": [7, 9.4836], + "2NA1": [4.45455, 9.4836], + "r4hz": [4.45455, 11.9836], + "AfLN": [7, 11.9836] + }, + "vertices": ["AfLN", "r4hz", "2NA1", "dgCx"], + "texture": 0 + }, + "MoW8TQLr": { + "uv": { + "qc0L": [5, 8.9836], + "dgCx": [2, 8.9836], + "AfLN": [2, 7.9836], + "yYAy": [5, 7.9836] + }, + "vertices": ["yYAy", "AfLN", "dgCx", "qc0L"], + "texture": 0 + }, + "0jS0Uy5k": { + "uv": { + "lXqu": [1, 9.9836], + "qc0L": [1, 7.9836], + "yYAy": [2, 7.9836], + "TwUw": [2, 9.9836] + }, + "vertices": ["TwUw", "yYAy", "qc0L", "lXqu"], + "texture": 0 + }, + "LWutpvwP": { + "uv": { + "n3UK": [3, 9.9836], + "lXqu": [0, 9.9836], + "TwUw": [0, 8.9836], + "jqYQ": [3, 8.9836] + }, + "vertices": ["jqYQ", "TwUw", "lXqu", "n3UK"], + "texture": 0 + }, + "jpZwlyIV": { + "uv": { + "If9H": [2, 9.9836], + "n3UK": [0, 9.9836], + "jqYQ": [0, 8.9836], + "cR8P": [2, 8.9836] + }, + "vertices": ["cR8P", "jqYQ", "n3UK", "If9H"], + "texture": 0 + }, + "KFDI8HrX": { + "uv": { + "lH3O": [4, 9.9836], + "If9H": [4, 6.9836], + "cR8P": [5, 6.9836], + "Wmhk": [5, 9.9836] + }, + "vertices": ["Wmhk", "cR8P", "If9H", "lH3O"], + "texture": 0 + }, + "9U6WwQ2l": { + "uv": { + "j3zU": [5.09091, 9.4836], + "lH3O": [2.54545, 9.4836], + "Wmhk": [2.54545, 11.9836], + "y7s6": [5.09091, 11.9836] + }, + "vertices": ["y7s6", "Wmhk", "lH3O", "j3zU"], + "texture": 0 + }, + "v1ehew7P": { + "uv": { + "2NA1": [4.45455, 9.4836], + "fLpt": [1.90909, 9.4836], + "aBmc": [1.90909, 11.9836], + "r4hz": [4.45455, 11.9836] + }, + "vertices": ["r4hz", "aBmc", "fLpt", "2NA1"], + "texture": 0 + }, + "CR7AFEZW": { + "uv": { + "7lzt": [0, 8], + "vdUT": [4, 12], + "MHH5": [0, 12], + "FBal": [4, 8] + }, + "vertices": ["FBal", "MHH5", "vdUT", "7lzt"], + "texture": 0 + }, + "Mm2kvP11": { + "uv": { + "5WyA": [6, 11.9836], + "TQ4O": [3, 11.9836], + "7lzt": [3, 8.9836], + "FBal": [6, 8.9836] + }, + "vertices": ["FBal", "7lzt", "TQ4O", "5WyA"], + "texture": 0 + }, + "4W0EnR3i": { + "uv": { + "a6Ti": [23, 10], + "5haT": [18, 10], + "TQ4O": [18, 3], + "5WyA": [23, 3] + }, + "vertices": ["5WyA", "TQ4O", "5haT", "a6Ti"], + "texture": 0 + }, + "dnGjh5q7": { + "uv": { + "ppnZ": [3, 5.9836], + "5haT": [3, 9.9836], + "a6Ti": [0, 9.9836] + }, + "vertices": ["a6Ti", "5haT", "ppnZ"], + "texture": 0 + }, + "kKJrjpb6": { + "uv": { + "eD5k": [3, 10.9836], + "aBmc": [3, 6.9836], + "y7s6": [6, 6.9836] + }, + "vertices": ["y7s6", "aBmc", "eD5k"], + "texture": 0 + }, + "lYXDWMd3": { + "uv": { + "If9H": [6, 5.9836], + "2pNO": [6, 7.4836], + "O2fe": [0, 7.4836], + "n3UK": [0, 5.9836] + }, + "vertices": ["n3UK", "O2fe", "2pNO", "If9H"], + "texture": 0 + }, + "8e3URcRo": { + "uv": { + "lH3O": [6, 5.9836], + "zkoC": [6, 7.4836], + "2pNO": [0, 7.4836], + "If9H": [0, 5.9836] + }, + "vertices": ["If9H", "2pNO", "zkoC", "lH3O"], + "texture": 0 + }, + "CVAgmYM8": { + "uv": { + "j3zU": [30, 3.5], + "V1kR": [30, 9.5], + "zkoC": [36, 9.5], + "lH3O": [36, 3.5] + }, + "vertices": ["lH3O", "zkoC", "V1kR", "j3zU"], + "texture": 0 + }, + "t8V2Pqnx": { + "uv": { + "fLpt": [24, 3.5], + "MHH5": [24, 9.5], + "V1kR": [30, 9.5], + "j3zU": [30, 3.5] + }, + "vertices": ["j3zU", "V1kR", "MHH5", "fLpt"], + "texture": 0 + }, + "260ADKqo": { + "uv": { + "2NA1": [30, 3.5], + "vdUT": [30, 9.5], + "MHH5": [24, 9.5], + "fLpt": [24, 3.5] + }, + "vertices": ["fLpt", "MHH5", "vdUT", "2NA1"], + "texture": 0 + }, + "yjLgvyYt": { + "uv": { + "dgCx": [36, 3.5], + "wxOS": [36, 9.5], + "vdUT": [30, 9.5], + "2NA1": [30, 3.5] + }, + "vertices": ["2NA1", "vdUT", "wxOS", "dgCx"], + "texture": 0 + }, + "xEfTTb4g": { + "uv": { + "qc0L": [0, 5.9836], + "1l81": [0, 7.4836], + "wxOS": [6, 7.4836], + "dgCx": [6, 5.9836] + }, + "vertices": ["dgCx", "wxOS", "1l81", "qc0L"], + "texture": 0 + }, + "VUv0d16w": { + "uv": { + "lXqu": [0, 5.9836], + "yyfa": [0, 7.4836], + "1l81": [6, 7.4836], + "qc0L": [6, 5.9836] + }, + "vertices": ["qc0L", "1l81", "yyfa", "lXqu"], + "texture": 0 + }, + "v470CMMW": { + "uv": { + "n3UK": [6, 5.9836], + "O2fe": [6, 7.4836], + "yyfa": [0, 7.4836], + "lXqu": [0, 5.9836] + }, + "vertices": ["lXqu", "yyfa", "O2fe", "n3UK"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "7564b320-32ad-f191-5c63-fdfa5abfafd5" + }, + { + "name": "sphere", + "color": 8, + "origin": [0, 27, -0.45], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "jKok": [-4.99829, 1.42535, 2.47075], + "FXfo": [-4.36738, -4.70018, 3.6726], + "75IQ": [-4.99829, 1.29867, -2.33264], + "jDJU": [-4.76614, 2.20008, -1.35527], + "vple": [-4.76614, 2.20008, 2.16847], + "HSIv": [-5.59919, -1.34381, -0.4728], + "nHut": [-5.59919, -1.34381, 2.67465], + "LbBY": [-4.88221, -0.42628, -2.21937], + "5AXE": [-3.64969, 0.86428, -2.64685], + "4Aek": [-4.88221, -0.01255, 2.31961], + "nGlq": [-0.85031, -0.11072, -2.15352], + "lIQ3": [-4.36738, -5.67518, 2.68593], + "GFNw": [-4.36738, -5.67518, 1.64702], + "owwU": [3.53433, 3.95017, 1.86617], + "yJdM": [4.99829, 1.42535, 2.47075], + "Vz8M": [4.36738, -4.70018, 3.6726], + "jbYw": [4.99829, 1.29867, -2.33264], + "LInl": [2.21884, 1.90413, -3.77932], + "CEed": [4.76614, 2.20008, -1.35527], + "aAun": [4.76614, 2.20008, 2.16847], + "b8kf": [5.59919, -1.34381, -0.4728], + "kpeJ": [5.59919, -1.34381, 2.67465], + "BHgp": [4.88221, -0.42628, -2.21937], + "NL1s": [3.64969, 0.86428, -2.64685], + "UilW": [4.88221, -0.01255, 2.31961], + "HRTL": [1.13652, 2.38818, -2.94839], + "ytho": [0.85031, -0.11072, -2.15352], + "PCb6": [-3.53433, 3.95017, 1.86617], + "cefY": [-3.53433, 3.95017, -1.05298], + "1Acn": [-2.21884, 1.90413, -3.77932], + "PG6A": [-3.64029, -2.86217, -1.06434], + "YKrh": [-2.07036, 1.42535, 5.38991], + "9Vbx": [-2.46853, -5.67518, 5.73675], + "AETh": [-1.9742, 2.20008, 4.66012], + "B9LH": [-2.60021, -1.34381, 6.46655], + "T24w": [-1.91876, -0.01255, 5.84476], + "0y1E": [0, -6.3, 3.19327], + "7NKt": [0, 4.95, 0.4066], + "9osI": [-1.46397, 3.95017, 3.93033], + "NXb9": [-1.46397, 3.95017, -3.11714], + "wOfP": [-1.46397, -4.70018, 0.76286], + "grtz": [1.46397, 3.95017, 3.93033], + "QrYn": [1.46397, 3.95017, -3.11714], + "AAGn": [1.46397, -4.70018, 0.76286], + "MGSN": [2.07036, 1.42535, 5.38991], + "cVzJ": [2.46853, -5.67518, 5.73675], + "pSuD": [1.9742, 2.20008, 4.66012], + "fvDz": [2.60021, -1.34381, 6.46655], + "EApG": [1.91876, -0.01255, 5.84476], + "TmnP": [4.36738, -5.67518, 2.68593], + "z83N": [3.53433, 3.95017, -1.05298], + "zWCT": [4.36738, -5.67518, 1.64702], + "zBbf": [-1.13652, 1.99818, -3.21839], + "mjln": [3.64029, -2.86217, -1.06434] + }, + "faces": { + "CfZlFLu3": { + "uv": { + "7NKt": [15.35365, 24.2836], + "9osI": [18.30731, 28.92881], + "PCb6": [12.4, 28.92881] + }, + "vertices": ["PCb6", "9osI", "7NKt"], + "texture": 0 + }, + "YMU6twbg": { + "uv": { + "YKrh": [12.4, 28.445], + "vple": [22.42197, 24.86432], + "jKok": [23.2138, 28.445], + "AETh": [13.19183, 24.86432] + }, + "vertices": ["AETh", "jKok", "vple", "YKrh"], + "texture": 0 + }, + "599E21cC": { + "uv": { + "9Vbx": [13.98366, 35.445], + "nHut": [22.42197, 29.8643], + "FXfo": [21.63014, 35.445], + "B9LH": [13.19183, 29.8643] + }, + "vertices": ["B9LH", "FXfo", "nHut", "9Vbx"], + "texture": 0 + }, + "e3aOm5Hl": { + "uv": { + "0y1E": [16.22324, 35.445], + "FXfo": [20.04648, 24.2836], + "9Vbx": [12.4, 24.2836] + }, + "vertices": ["9Vbx", "FXfo", "0y1E"], + "texture": 0 + }, + "R9EdmOeg": { + "uv": { + "7NKt": [15.35365, 24.2836], + "PCb6": [18.30731, 28.92881], + "cefY": [12.4, 28.92881] + }, + "vertices": ["cefY", "PCb6", "7NKt"], + "texture": 0 + }, + "GjEjz7Ro": { + "uv": { + "jKok": [12.4, 28.445], + "jDJU": [22.42197, 24.86432], + "75IQ": [23.2138, 28.445], + "vple": [13.19183, 24.86432] + }, + "vertices": ["vple", "75IQ", "jDJU", "jKok"], + "texture": 0 + }, + "J6qum8Ns": { + "uv": { + "FXfo": [13.98366, 35.445], + "HSIv": [22.42197, 29.8643], + "GFNw": [21.63014, 35.445], + "nHut": [13.19183, 29.8643] + }, + "vertices": ["nHut", "GFNw", "HSIv", "FXfo"], + "texture": 0 + }, + "p7QAgnbw": { + "uv": { + "0y1E": [16.22324, 35.445], + "GFNw": [20.04648, 24.2836], + "FXfo": [12.4, 24.2836] + }, + "vertices": ["FXfo", "GFNw", "0y1E"], + "texture": 0 + }, + "VqJzQYeL": { + "uv": { + "75IQ": [12.4, 28.445], + "1Acn": [22.81789, 26.65466], + "jDJU": [13.19183, 24.86432] + }, + "vertices": ["jDJU", "1Acn", "75IQ"], + "texture": 0 + }, + "rjwxyevX": { + "uv": { + "GFNw": [13.98366, 35.445], + "wOfP": [21.63014, 35.445], + "HSIv": [13.19183, 29.8643] + }, + "vertices": ["HSIv", "wOfP", "GFNw"], + "texture": 0 + }, + "FpGG2OsV": { + "uv": { + "NXb9": [19.11966, 24.2836], + "1Acn": [13.74808, 24.2836], + "cefY": [19.67591, 27.111], + "jDJU": [13.19183, 27.111] + }, + "vertices": ["jDJU", "cefY", "1Acn", "NXb9"], + "texture": 0 + }, + "WVywrfkh": { + "uv": { + "PCb6": [19.11966, 24.2836], + "vple": [13.74808, 24.2836], + "9osI": [19.67591, 27.111], + "AETh": [13.19183, 27.111] + }, + "vertices": ["AETh", "9osI", "vple", "PCb6"], + "texture": 0 + }, + "wjPrqXqq": { + "uv": { + "cefY": [19.11966, 24.2836], + "jDJU": [13.74808, 24.2836], + "PCb6": [19.67591, 27.111], + "vple": [13.19183, 27.111] + }, + "vertices": ["vple", "PCb6", "jDJU", "cefY"], + "texture": 0 + }, + "U2CwdCcf": { + "uv": { + "HSIv": [13.19183, 29.8643], + "5AXE": [22.81788, 27.07395], + "PG6A": [22.42197, 29.8643], + "LbBY": [12.79592, 27.07395] + }, + "vertices": ["LbBY", "PG6A", "5AXE", "HSIv"], + "texture": 0 + }, + "oPupHgRI": { + "uv": { + "B9LH": [13.19183, 29.8643], + "4Aek": [22.81788, 27.07395], + "nHut": [22.42197, 29.8643], + "T24w": [12.79592, 27.07395] + }, + "vertices": ["T24w", "nHut", "4Aek", "B9LH"], + "texture": 0 + }, + "JZ21qe1j": { + "uv": { + "nHut": [13.19183, 29.8643], + "LbBY": [22.81788, 27.07395], + "HSIv": [22.42197, 29.8643], + "4Aek": [12.79592, 27.07395] + }, + "vertices": ["4Aek", "HSIv", "LbBY", "nHut"], + "texture": 0 + }, + "cGzqpGPN": { + "uv": { + "5AXE": [22.81788, 27.07395], + "75IQ": [12.4, 24.2836], + "LbBY": [12.79592, 27.07395] + }, + "vertices": ["LbBY", "75IQ", "5AXE"], + "texture": 0 + }, + "n4JqRr2O": { + "uv": { + "jKok": [23.2138, 24.2836], + "4Aek": [22.81788, 27.07395], + "YKrh": [12.4, 24.2836], + "T24w": [12.79592, 27.07395] + }, + "vertices": ["T24w", "YKrh", "4Aek", "jKok"], + "texture": 0 + }, + "5TE5NA9Q": { + "uv": { + "75IQ": [23.2138, 24.2836], + "LbBY": [22.81788, 27.07395], + "jKok": [12.4, 24.2836], + "4Aek": [12.79592, 27.07395] + }, + "vertices": ["4Aek", "jKok", "LbBY", "75IQ"], + "texture": 0 + }, + "qpAUxEXX": { + "uv": { + "GFNw": [13.98366, 35.445], + "PG6A": [22.42197, 29.8643], + "HSIv": [13.19183, 29.8643] + }, + "vertices": ["HSIv", "PG6A", "GFNw"], + "texture": 0 + }, + "v2wDlkRg": { + "uv": { + "wOfP": [17.44698, 34.61157], + "GFNw": [20.63818, 34.61157], + "PG6A": [19.79468, 32.54355] + }, + "vertices": ["PG6A", "GFNw", "wOfP"], + "texture": 0 + }, + "3OIMqIi2": { + "uv": { + "1Acn": [24, 28], + "5AXE": [23, 31], + "nGlq": [13, 31], + "zBbf": [12, 28] + }, + "vertices": ["zBbf", "nGlq", "5AXE", "1Acn"], + "texture": 0 + }, + "O5x06ylH": { + "uv": { + "7NKt": [15.35365, 24.2836], + "owwU": [12.4, 28.92881], + "grtz": [18.30731, 28.92881] + }, + "vertices": ["grtz", "owwU", "7NKt"], + "texture": 0 + }, + "tIZmB4lc": { + "uv": { + "7NKt": [15.35365, 24.2836], + "z83N": [12.4, 28.92881], + "owwU": [18.30731, 28.92881] + }, + "vertices": ["owwU", "z83N", "7NKt"], + "texture": 0 + }, + "wxE5wvrO": { + "uv": { + "7NKt": [18.09971, 25.20137], + "QrYn": [15.14606, 29.84659], + "z83N": [21.05337, 29.84659] + }, + "vertices": ["z83N", "QrYn", "7NKt"], + "texture": 0 + }, + "ubicc3vF": { + "uv": { + "7NKt": [18.09971, 26.11915], + "grtz": [15.14606, 30.76436], + "9osI": [21.05337, 30.76436] + }, + "vertices": ["9osI", "grtz", "7NKt"], + "texture": 0 + }, + "16KVhNq8": { + "uv": { + "7NKt": [19.93042, 29.84659], + "NXb9": [16.97677, 25.20137], + "QrYn": [22.88407, 25.20137] + }, + "vertices": ["QrYn", "NXb9", "7NKt"], + "texture": 0 + }, + "Tuh4qWWV": { + "uv": { + "wOfP": [13.98366, 35.445], + "mjln": [22.42197, 29.8643], + "AAGn": [21.63014, 35.445], + "PG6A": [13.19183, 29.8643] + }, + "vertices": ["PG6A", "AAGn", "mjln", "wOfP"], + "texture": 0 + }, + "rBoCNANZ": { + "uv": { + "0y1E": [16.22324, 35.445], + "AAGn": [20.04648, 24.2836], + "wOfP": [12.4, 24.2836] + }, + "vertices": ["wOfP", "AAGn", "0y1E"], + "texture": 0 + }, + "NvWxXDXs": { + "uv": { + "cVzJ": [13.98366, 35.445], + "B9LH": [22.42197, 29.8643], + "9Vbx": [21.63014, 35.445], + "fvDz": [13.19183, 29.8643] + }, + "vertices": ["fvDz", "9Vbx", "B9LH", "cVzJ"], + "texture": 0 + }, + "rewAC0ru": { + "uv": { + "0y1E": [16.22324, 35.445], + "9Vbx": [20.04648, 24.2836], + "cVzJ": [12.4, 24.2836] + }, + "vertices": ["cVzJ", "9Vbx", "0y1E"], + "texture": 0 + }, + "TCkvc3xB": { + "uv": { + "0y1E": [16.22324, 35.445], + "lIQ3": [20.04648, 24.2836], + "9Vbx": [12.4, 24.2836] + }, + "vertices": ["9Vbx", "lIQ3", "0y1E"], + "texture": 0 + }, + "7TpoJPYf": { + "uv": { + "0y1E": [16.22324, 35.445], + "GFNw": [20.04648, 24.2836], + "lIQ3": [12.4, 24.2836] + }, + "vertices": ["lIQ3", "GFNw", "0y1E"], + "texture": 0 + }, + "AbcasAJX": { + "uv": { + "7NKt": [15.35365, 28.92881], + "cefY": [12.4, 24.2836], + "NXb9": [18.30731, 24.2836] + }, + "vertices": ["NXb9", "cefY", "7NKt"], + "texture": 0 + }, + "Y4GP8LGk": { + "uv": { + "0y1E": [16.22324, 35.445], + "wOfP": [20.04648, 24.2836], + "GFNw": [12.4, 24.2836] + }, + "vertices": ["GFNw", "wOfP", "0y1E"], + "texture": 0 + }, + "ybqKUDwY": { + "uv": { + "7NKt": [15.35365, 24.2836], + "owwU": [12.4, 28.92881], + "grtz": [18.30731, 28.92881] + }, + "vertices": ["grtz", "owwU", "7NKt"], + "texture": 0 + }, + "YCAiOAhK": { + "uv": { + "MGSN": [12.4, 28.445], + "aAun": [22.42197, 24.86432], + "pSuD": [13.19183, 24.86432], + "yJdM": [23.2138, 28.445] + }, + "vertices": ["yJdM", "pSuD", "aAun", "MGSN"], + "texture": 0 + }, + "2lrSoywG": { + "uv": { + "cVzJ": [13.98366, 35.445], + "kpeJ": [22.42197, 29.8643], + "fvDz": [13.19183, 29.8643], + "Vz8M": [21.63014, 35.445] + }, + "vertices": ["Vz8M", "fvDz", "kpeJ", "cVzJ"], + "texture": 0 + }, + "T0O1Qklz": { + "uv": { + "0y1E": [16.22324, 35.445], + "cVzJ": [12.4, 24.2836], + "Vz8M": [20.04648, 24.2836] + }, + "vertices": ["Vz8M", "cVzJ", "0y1E"], + "texture": 0 + }, + "fxmhnWuI": { + "uv": { + "7NKt": [15.35365, 24.2836], + "z83N": [12.4, 28.92881], + "owwU": [18.30731, 28.92881] + }, + "vertices": ["owwU", "z83N", "7NKt"], + "texture": 0 + }, + "e9g1ZM2R": { + "uv": { + "yJdM": [12.4, 28.445], + "CEed": [22.42197, 24.86432], + "aAun": [13.19183, 24.86432], + "jbYw": [23.2138, 28.445] + }, + "vertices": ["jbYw", "aAun", "CEed", "yJdM"], + "texture": 0 + }, + "hvzCyS3N": { + "uv": { + "Vz8M": [13.98366, 35.445], + "b8kf": [22.42197, 29.8643], + "kpeJ": [13.19183, 29.8643], + "zWCT": [21.63014, 35.445] + }, + "vertices": ["zWCT", "kpeJ", "b8kf", "Vz8M"], + "texture": 0 + }, + "M7w0Y8jw": { + "uv": { + "0y1E": [16.22324, 35.445], + "Vz8M": [12.4, 24.2836], + "zWCT": [20.04648, 24.2836] + }, + "vertices": ["zWCT", "Vz8M", "0y1E"], + "texture": 0 + }, + "QWd7RZLx": { + "uv": { + "jbYw": [12.4, 28.445], + "CEed": [13.19183, 24.86432], + "LInl": [22.81789, 26.65466] + }, + "vertices": ["LInl", "CEed", "jbYw"], + "texture": 0 + }, + "TauxAtoF": { + "uv": { + "zWCT": [13.98366, 35.445], + "b8kf": [13.19183, 29.8643], + "AAGn": [21.63014, 35.445] + }, + "vertices": ["AAGn", "b8kf", "zWCT"], + "texture": 0 + }, + "ZDHBz7cG": { + "uv": { + "QrYn": [19.11966, 24.2836], + "LInl": [13.74808, 24.2836], + "CEed": [13.19183, 27.111], + "z83N": [19.67591, 27.111] + }, + "vertices": ["z83N", "CEed", "LInl", "QrYn"], + "texture": 0 + }, + "Ywlp2A5z": { + "uv": { + "owwU": [19.11966, 24.2836], + "aAun": [13.74808, 24.2836], + "pSuD": [13.19183, 27.111], + "grtz": [19.67591, 27.111] + }, + "vertices": ["grtz", "pSuD", "aAun", "owwU"], + "texture": 0 + }, + "qQ6VpRZe": { + "uv": { + "z83N": [19.11966, 24.2836], + "CEed": [13.74808, 24.2836], + "aAun": [13.19183, 27.111], + "owwU": [19.67591, 27.111] + }, + "vertices": ["owwU", "aAun", "CEed", "z83N"], + "texture": 0 + }, + "9Xmbk06f": { + "uv": { + "b8kf": [13.19183, 29.8643], + "NL1s": [22.81788, 27.07395], + "BHgp": [12.79592, 27.07395], + "mjln": [22.42197, 29.8643] + }, + "vertices": ["mjln", "BHgp", "NL1s", "b8kf"], + "texture": 0 + }, + "90U61sQs": { + "uv": { + "fvDz": [13.19183, 29.8643], + "UilW": [22.81788, 27.07395], + "EApG": [12.79592, 27.07395], + "kpeJ": [22.42197, 29.8643] + }, + "vertices": ["kpeJ", "EApG", "UilW", "fvDz"], + "texture": 0 + }, + "3nAPr5Vb": { + "uv": { + "kpeJ": [13.19183, 29.8643], + "BHgp": [22.81788, 27.07395], + "UilW": [12.79592, 27.07395], + "b8kf": [22.42197, 29.8643] + }, + "vertices": ["b8kf", "UilW", "BHgp", "kpeJ"], + "texture": 0 + }, + "N7gZZzuE": { + "uv": { + "NL1s": [22.81788, 27.07395], + "BHgp": [12.79592, 27.07395], + "jbYw": [12.4, 24.2836] + }, + "vertices": ["jbYw", "BHgp", "NL1s"], + "texture": 0 + }, + "oCsF34PS": { + "uv": { + "yJdM": [23.2138, 24.2836], + "UilW": [22.81788, 27.07395], + "EApG": [12.79592, 27.07395], + "MGSN": [12.4, 24.2836] + }, + "vertices": ["MGSN", "EApG", "UilW", "yJdM"], + "texture": 0 + }, + "7OtzI9CF": { + "uv": { + "jbYw": [23.2138, 24.2836], + "BHgp": [22.81788, 27.07395], + "UilW": [12.79592, 27.07395], + "yJdM": [12.4, 24.2836] + }, + "vertices": ["yJdM", "UilW", "BHgp", "jbYw"], + "texture": 0 + }, + "MHxYSMHA": { + "uv": { + "zWCT": [13.98366, 35.445], + "b8kf": [13.19183, 29.8643], + "mjln": [22.42197, 29.8643] + }, + "vertices": ["mjln", "b8kf", "zWCT"], + "texture": 0 + }, + "e1EGiE0x": { + "uv": { + "AAGn": [17.44698, 34.61157], + "mjln": [19.79468, 32.54355], + "zWCT": [20.63818, 34.61157] + }, + "vertices": ["zWCT", "mjln", "AAGn"], + "texture": 0 + }, + "EnOjasRk": { + "uv": { + "LInl": [24, 28], + "NL1s": [12, 28], + "HRTL": [23, 31], + "ytho": [13, 31] + }, + "vertices": ["ytho", "HRTL", "NL1s", "LInl"], + "texture": 0 + }, + "BnVyjGEr": { + "uv": { + "7NKt": [15.35365, 24.2836], + "9osI": [18.30731, 28.92881], + "PCb6": [12.4, 28.92881] + }, + "vertices": ["PCb6", "9osI", "7NKt"], + "texture": 0 + }, + "1GP5oMXt": { + "uv": { + "7NKt": [15.35365, 24.2836], + "PCb6": [18.30731, 28.92881], + "cefY": [12.4, 28.92881] + }, + "vertices": ["cefY", "PCb6", "7NKt"], + "texture": 0 + }, + "HbmqV6wX": { + "uv": { + "7NKt": [18.09971, 25.20137], + "cefY": [21.05337, 29.84659], + "NXb9": [15.14606, 29.84659] + }, + "vertices": ["NXb9", "cefY", "7NKt"], + "texture": 0 + }, + "TZISD7Ta": { + "uv": { + "7NKt": [18.09971, 26.11915], + "grtz": [21.05337, 30.76436], + "9osI": [15.14606, 30.76436] + }, + "vertices": ["9osI", "grtz", "7NKt"], + "texture": 0 + }, + "jLIOfIVV": { + "uv": { + "grtz": [19.11966, 24.2836], + "pSuD": [19.67591, 27.111], + "AETh": [13.19183, 27.111], + "9osI": [13.74808, 24.2836] + }, + "vertices": ["9osI", "AETh", "pSuD", "grtz"], + "texture": 0 + }, + "EEI5QteS": { + "uv": { + "7NKt": [19.93042, 29.84659], + "NXb9": [22.88407, 25.20137], + "QrYn": [16.97677, 25.20137] + }, + "vertices": ["QrYn", "NXb9", "7NKt"], + "texture": 0 + }, + "DDwjMZN5": { + "uv": { + "NXb9": [19.94808, 27.1836], + "1Acn": [20.67591, 31.011], + "LInl": [12.19183, 31.011], + "QrYn": [12.91966, 27.1836] + }, + "vertices": ["QrYn", "LInl", "1Acn", "NXb9"], + "texture": 0 + }, + "ujSOPSMx": { + "uv": { + "AAGn": [13.98366, 35.445], + "PG6A": [22.42197, 29.8643], + "mjln": [13.19183, 29.8643], + "wOfP": [21.63014, 35.445] + }, + "vertices": ["wOfP", "mjln", "PG6A", "AAGn"], + "texture": 0 + }, + "J8OhjxTG": { + "uv": { + "0y1E": [16.22324, 35.445], + "AAGn": [12.4, 24.2836], + "wOfP": [20.04648, 24.2836] + }, + "vertices": ["wOfP", "AAGn", "0y1E"], + "texture": 0 + }, + "oKAkzerh": { + "uv": { + "YKrh": [12.4, 28.445], + "pSuD": [22.42197, 24.86432], + "AETh": [13.19183, 24.86432], + "MGSN": [23.2138, 28.445] + }, + "vertices": ["MGSN", "AETh", "pSuD", "YKrh"], + "texture": 0 + }, + "74vyrQL4": { + "uv": { + "0y1E": [16.22324, 35.445], + "9Vbx": [12.4, 24.2836], + "cVzJ": [20.04648, 24.2836] + }, + "vertices": ["cVzJ", "9Vbx", "0y1E"], + "texture": 0 + }, + "QwElfzPz": { + "uv": { + "B9LH": [13.19183, 29.8643], + "EApG": [22.81788, 27.07395], + "T24w": [12.79592, 27.07395], + "fvDz": [22.42197, 29.8643] + }, + "vertices": ["fvDz", "T24w", "EApG", "B9LH"], + "texture": 0 + }, + "UAW1iLNx": { + "uv": { + "MGSN": [23.2138, 24.2836], + "EApG": [22.81788, 27.07395], + "T24w": [12.79592, 27.07395], + "YKrh": [12.4, 24.2836] + }, + "vertices": ["YKrh", "T24w", "EApG", "MGSN"], + "texture": 0 + }, + "PqO49L9U": { + "uv": { + "0y1E": [16.22324, 35.445], + "cVzJ": [12.4, 24.2836], + "TmnP": [20.04648, 24.2836] + }, + "vertices": ["TmnP", "cVzJ", "0y1E"], + "texture": 0 + }, + "LktzJ856": { + "uv": { + "0y1E": [16.22324, 35.445], + "TmnP": [12.4, 24.2836], + "zWCT": [20.04648, 24.2836] + }, + "vertices": ["zWCT", "TmnP", "0y1E"], + "texture": 0 + }, + "biSz2U4t": { + "uv": { + "7NKt": [15.35365, 28.92881], + "QrYn": [18.30731, 24.2836], + "z83N": [12.4, 24.2836] + }, + "vertices": ["z83N", "QrYn", "7NKt"], + "texture": 0 + }, + "gFu0yaKG": { + "uv": { + "0y1E": [16.22324, 35.445], + "zWCT": [12.4, 24.2836], + "AAGn": [20.04648, 24.2836] + }, + "vertices": ["AAGn", "zWCT", "0y1E"], + "texture": 0 + }, + "LxyrzKoA": { + "uv": { + "1Acn": [23.2138, 24.2836], + "75IQ": [12.4, 24.2836], + "5AXE": [22.81788, 27.07395] + }, + "vertices": ["5AXE", "75IQ", "1Acn"], + "texture": 0 + }, + "mtdFIh3D": { + "uv": { + "LInl": [23.2138, 24.2836], + "NL1s": [22.81788, 27.07395], + "jbYw": [12.4, 24.2836] + }, + "vertices": ["jbYw", "NL1s", "LInl"], + "texture": 0 + }, + "YVCc997S": { + "uv": { + "1Acn": [12, 29.82347], + "zBbf": [13.3481, 28.22928], + "HRTL": [16.29357, 26.9836], + "LInl": [17.69612, 29.82347] + }, + "vertices": ["LInl", "HRTL", "zBbf", "1Acn"], + "texture": 0 + }, + "7JMKLqjo": { + "uv": { + "zBbf": [16.07105, 32.93739], + "HRTL": [16.04119, 29.9836], + "nGlq": [13.29124, 32.93739], + "ytho": [13, 30.76341] + }, + "vertices": ["ytho", "nGlq", "HRTL", "zBbf"], + "texture": 0 + }, + "s6PlbZph": { + "uv": { + "mjln": [13, 29.77682], + "NL1s": [13, 24.9836], + "ytho": [16.60807, 26.27909] + }, + "vertices": ["ytho", "NL1s", "mjln"], + "texture": 0 + }, + "CxGUwfqa": { + "uv": { + "5AXE": [16.8336, 24.9836], + "PG6A": [15.21383, 29.49484], + "nGlq": [13, 24.9836] + }, + "vertices": ["nGlq", "PG6A", "5AXE"], + "texture": 0 + }, + "o31175XQ": { + "uv": { + "PG6A": [22.3898, 28.4913], + "nGlq": [18.7916, 24.9836], + "mjln": [13, 28.4913], + "ytho": [16.5982, 24.9836] + }, + "vertices": ["ytho", "mjln", "nGlq", "PG6A"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "6ee6c485-55e3-677f-8a8a-6437317da917" + }, + { + "name": "cylinder", + "color": 8, + "origin": [0, 9.9, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "VNps": [-1.30727, 8.95891, -2.72852], + "4ezv": [-1.30727, 6.6678, -2.07689], + "EbdB": [-1.30727, 4.41973, -2.75171], + "qevP": [-1.13569, 1.5107, -1.50442], + "00Kd": [1.13552, 1.5107, -1.50442], + "hnZd": [1.3071, 8.95891, -2.72852], + "La2n": [1.3071, 6.6678, -2.07689], + "6ehA": [1.3071, 4.41973, -2.75171], + "GwxS": [2.27112, 1.5107, -1.50442], + "Hvq1": [-1.08212, 8.93096, -3.1567], + "Rnso": [-1.08212, 7.00051, -2.50503], + "4mSB": [-1.08212, 5.0953, -3.17988], + "7R9u": [-0.94009, 1.54293, -1.87242], + "Kim6": [0.94008, 1.93429, -2.1506], + "ww1k": [2.09242, 1.60496, -1.91364], + "JesZ": [0, 0.90973, 0.04566], + "qbIt": [2.1126, 1.04992, 2.13325], + "Bzop": [2.41688, 11.48408, 2.5296], + "qNY4": [3.80283, 1.03063, 0.09755], + "Atxb": [4.35181, 11.54264, 0.17909], + "iHjd": [-2.09795, 1.6107, -1.91821], + "6Fz4": [-3.81634, 1.03874, 0.09656], + "c1T2": [-4.31956, 11.56334, 0.17531], + "sCtj": [-2.11513, 1.05262, 2.13589], + "jkti": [-2.4018, 11.50927, 2.50811], + "8tqY": [-2.60151, 5.07509, -3.09181], + "2Cy7": [2.59802, 5.07686, -3.09334], + "qtJM": [-2.60594, 6.99078, -2.41519], + "XnvV": [2.6044, 7.00064, -2.41582], + "uyLC": [5.2276, 4.74335, 0.15815], + "D5z6": [4.72564, 6.99477, 0.1737], + "Uxw5": [2.58052, 4.74381, 3.0471], + "8HKl": [2.56314, 7.03158, 2.72793], + "Mwes": [-2.5819, 4.73129, 3.04598], + "YbTn": [-2.56504, 7.05507, 2.72585], + "4Qxs": [-5.22679, 4.72827, 0.15782], + "KUq1": [-4.72535, 7.01081, 0.17525], + "Sx25": [-2.60648, 8.93458, -3.06659], + "8U5W": [-5.22435, 8.98164, 0.1993], + "Dpuc": [-2.53794, 8.97188, 2.73714], + "FVmL": [2.53794, 8.89006, 2.73714], + "tsu4": [5.22435, 8.88029, 0.1993], + "AYR2": [2.60648, 8.92734, -3.06659], + "zojw": [1.08212, 8.93096, -3.1567], + "BQWs": [1.08212, 7.00051, -2.50503], + "OaX5": [1.08212, 5.0953, -3.17988], + "rN5K": [-1.13411, 12.72132, -2.95922], + "V5o8": [-2.4565, 12.64499, -2.13536], + "2YyB": [-1.71994, 12.49646, 1.68307], + "4uEE": [-0.99277, 12.5609, 1.26799], + "vfKR": [-1.45132, 11.52806, 1.60898], + "lVHe": [-2.4061, 11.56499, -2.1391], + "95Wr": [-1.08212, 11.64282, -2.06143], + "2hIL": [0.95205, 11.54948, 1.43849], + "u0Gb": [-0.79558, 11.50088, 2.51528], + "dfiu": [-0.34911, 11.55643, 0.17657], + "b69x": [0.81065, 11.49248, 2.52244], + "Qy1i": [0.42634, 11.54954, 0.17783], + "sm1U": [-0.84598, 8.9446, 2.73714], + "wHNi": [0.84597, 8.91733, 2.73714], + "LF0V": [-0.85565, 7.04724, 2.72654], + "rdSk": [0.85374, 7.03941, 2.72723], + "hTCm": [-0.8611, 4.73547, 3.04636], + "LyZP": [0.85971, 4.73963, 3.04673], + "W7og": [-0.70589, 1.05172, 2.13501], + "euyv": [0.70335, 1.05082, 2.13413], + "dL7l": [-0.95205, 11.52698, 1.43849], + "lO3C": [-1.3071, 11.565, -1.80688], + "iF7E": [0.00009, 11.77076, -1.22669], + "qpa3": [1.30727, 11.565, -1.80688], + "K8mw": [1.71995, 12.49646, 1.68307], + "c3OB": [1.45132, 11.52806, 1.60898], + "mebZ": [2.4061, 11.56499, -2.1391], + "dNWt": [2.4565, 12.64499, -2.13536], + "AoTh": [0.99277, 12.5609, 1.26799], + "y7CQ": [1.13411, 12.72132, -2.95922], + "z3lK": [0.95205, 11.52698, 1.43849], + "WCsk": [1.08212, 11.64282, -2.06143] + }, + "faces": { + "n9OF4vTz": { + "uv": { + "qevP": [7, 26], + "EbdB": [6.73205, 22.0836], + "00Kd": [6, 26], + "6ehA": [5.57735, 22.0836] + }, + "vertices": ["6ehA", "00Kd", "EbdB", "qevP"], + "texture": 0 + }, + "qQ6Tj1tt": { + "uv": { + "4ezv": [1.73205, 16.0836], + "VNps": [1.73205, 14.0836], + "La2n": [0.57735, 16.0836], + "hnZd": [0.57735, 14.0836] + }, + "vertices": ["hnZd", "La2n", "VNps", "4ezv"], + "texture": 0 + }, + "UNfAJBLi": { + "uv": { + "EbdB": [1.73205, 19.9836], + "4ezv": [1.73205, 15.9836], + "6ehA": [0.57735, 19.9836], + "La2n": [0.57735, 15.9836] + }, + "vertices": ["La2n", "6ehA", "4ezv", "EbdB"], + "texture": 0 + }, + "PZTHi2NP": { + "uv": { + "JesZ": [2, 25], + "iHjd": [1, 26.66667], + "6Fz4": [0, 25] + }, + "vertices": ["6Fz4", "iHjd", "JesZ"], + "texture": 0 + }, + "o6vR960m": { + "uv": { + "qtJM": [0, 28.33333], + "8U5W": [2, 26.66667], + "Sx25": [0, 26.66667], + "KUq1": [2, 28.33333] + }, + "vertices": ["KUq1", "Sx25", "8U5W", "qtJM"], + "texture": 0 + }, + "Xs4ZXoVL": { + "uv": { + "JesZ": [2, 26.66667], + "6Fz4": [0, 26.66667], + "sCtj": [1, 25] + }, + "vertices": ["sCtj", "6Fz4", "JesZ"], + "texture": 0 + }, + "RsnMytIp": { + "uv": { + "KUq1": [0, 28.33333], + "Dpuc": [2, 26.66667], + "8U5W": [0, 26.66667], + "YbTn": [2, 28.33333] + }, + "vertices": ["YbTn", "8U5W", "Dpuc", "KUq1"], + "texture": 0 + }, + "X1EBn6ci": { + "uv": { + "6Fz4": [0, 35], + "4Qxs": [0, 31.66667], + "Mwes": [2, 31.66667], + "sCtj": [2, 35] + }, + "vertices": ["sCtj", "Mwes", "4Qxs", "6Fz4"], + "texture": 0 + }, + "beE5w2Ye": { + "uv": { + "4Qxs": [0, 31.66667], + "KUq1": [0, 28.33333], + "YbTn": [2, 28.33333], + "Mwes": [2, 31.66667] + }, + "vertices": ["Mwes", "YbTn", "KUq1", "4Qxs"], + "texture": 0 + }, + "ciRZpVSK": { + "uv": { + "iHjd": [0, 35], + "8tqY": [0, 31.66667], + "4Qxs": [2, 31.66667], + "6Fz4": [2, 35] + }, + "vertices": ["6Fz4", "4Qxs", "8tqY", "iHjd"], + "texture": 0 + }, + "TI08wsJr": { + "uv": { + "8tqY": [0, 31.66667], + "qtJM": [0, 28.33333], + "KUq1": [2, 28.33333], + "4Qxs": [2, 31.66667] + }, + "vertices": ["4Qxs", "KUq1", "qtJM", "8tqY"], + "texture": 0 + }, + "OvuFuXq5": { + "uv": { + "c1T2": [2, 25], + "8U5W": [2, 26.66667], + "Sx25": [0, 26.66667], + "lVHe": [0, 25] + }, + "vertices": ["lVHe", "Sx25", "8U5W", "c1T2"], + "texture": 0 + }, + "RDhhyXov": { + "uv": { + "jkti": [2, 25], + "Dpuc": [2, 26.66667], + "8U5W": [0, 26.66667], + "c1T2": [0, 25] + }, + "vertices": ["c1T2", "8U5W", "Dpuc", "jkti"], + "texture": 0 + }, + "VSHmfbTe": { + "uv": { + "qtJM": [26.25, 27.9836], + "Rnso": [24.75, 27.9836], + "Hvq1": [24.75, 23.9836], + "Sx25": [26.25, 23.9836] + }, + "vertices": ["Sx25", "Hvq1", "Rnso", "qtJM"], + "texture": 0 + }, + "JvlKDALY": { + "uv": { + "8tqY": [26.25, 27.9836], + "4mSB": [24.75, 27.9836], + "Rnso": [24.75, 23.9836], + "qtJM": [26.25, 23.9836] + }, + "vertices": ["qtJM", "Rnso", "4mSB", "8tqY"], + "texture": 0 + }, + "0XD78FeQ": { + "uv": { + "iHjd": [26.25, 23.9836], + "7R9u": [24.75, 23.9836], + "4mSB": [24.75, 27.9836], + "8tqY": [26.25, 27.9836] + }, + "vertices": ["8tqY", "4mSB", "7R9u", "iHjd"], + "texture": 0 + }, + "rHp11s5v": { + "uv": { + "JesZ": [26.25, 27.9836], + "7R9u": [24.75, 23.9836], + "iHjd": [24.75, 27.9836] + }, + "vertices": ["iHjd", "7R9u", "JesZ"], + "texture": 0 + }, + "BSrc4Csr": { + "uv": { + "Sx25": [26.25, 27.9836], + "Hvq1": [24.75, 27.9836], + "95Wr": [24.75, 23.9836], + "lVHe": [26.25, 23.9836] + }, + "vertices": ["lVHe", "95Wr", "Hvq1", "Sx25"], + "texture": 0 + }, + "SFkdM7Po": { + "uv": { + "ww1k": [2, 26.66667], + "7R9u": [1, 26.66667], + "JesZ": [1, 25] + }, + "vertices": ["JesZ", "7R9u", "ww1k"], + "texture": 0 + }, + "SQsqbOoz": { + "uv": { + "AYR2": [26.25, 27.9836], + "BQWs": [24.75, 23.9836], + "zojw": [24.75, 27.9836], + "XnvV": [26.25, 23.9836] + }, + "vertices": ["XnvV", "zojw", "BQWs", "AYR2"], + "texture": 0 + }, + "EKfPkOay": { + "uv": { + "sCtj": [0, 25], + "W7og": [2, 25], + "JesZ": [1, 26.66667] + }, + "vertices": ["JesZ", "W7og", "sCtj"], + "texture": 0 + }, + "6EztQi7p": { + "uv": { + "8HKl": [2, 28.33333], + "wHNi": [2, 26.66667], + "rdSk": [2, 28.33333], + "FVmL": [2, 26.66667] + }, + "vertices": ["FVmL", "rdSk", "wHNi", "8HKl"], + "texture": 0 + }, + "UTGzqFGo": { + "uv": { + "2Cy7": [26.25, 23.9836], + "Kim6": [24.75, 27.9836], + "OaX5": [24.75, 23.9836], + "ww1k": [26.25, 27.9836] + }, + "vertices": ["ww1k", "OaX5", "Kim6", "2Cy7"], + "texture": 0 + }, + "93TZ8dyd": { + "uv": { + "XnvV": [26.25, 27.9836], + "OaX5": [24.75, 23.9836], + "BQWs": [24.75, 27.9836], + "2Cy7": [26.25, 23.9836] + }, + "vertices": ["2Cy7", "BQWs", "OaX5", "XnvV"], + "texture": 0 + }, + "iTD3Q4X2": { + "uv": { + "qbIt": [2, 35], + "LyZP": [2, 31.66667], + "euyv": [2, 35], + "Uxw5": [2, 31.66667] + }, + "vertices": ["Uxw5", "euyv", "LyZP", "qbIt"], + "texture": 0 + }, + "hApOPGS9": { + "uv": { + "Uxw5": [2, 31.66667], + "rdSk": [2, 28.33333], + "LyZP": [2, 31.66667], + "8HKl": [2, 28.33333] + }, + "vertices": ["8HKl", "LyZP", "rdSk", "Uxw5"], + "texture": 0 + }, + "VNKyi5TO": { + "uv": { + "FVmL": [2, 26.66667], + "b69x": [2, 25], + "wHNi": [2, 26.66667], + "Bzop": [2, 25] + }, + "vertices": ["Bzop", "wHNi", "b69x", "FVmL"], + "texture": 0 + }, + "vK6wJUrn": { + "uv": { + "mebZ": [26.25, 27.9836], + "zojw": [24.75, 23.9836], + "WCsk": [24.75, 27.9836], + "AYR2": [26.25, 23.9836] + }, + "vertices": ["AYR2", "WCsk", "zojw", "mebZ"], + "texture": 0 + }, + "OGLt4pyG": { + "uv": { + "JesZ": [0, 26.66667], + "qbIt": [1, 25], + "qNY4": [2, 26.66667] + }, + "vertices": ["qNY4", "qbIt", "JesZ"], + "texture": 0 + }, + "PSHAvkQA": { + "uv": { + "JesZ": [0, 25], + "qNY4": [2, 25], + "ww1k": [1, 26.66667] + }, + "vertices": ["ww1k", "qNY4", "JesZ"], + "texture": 0 + }, + "NU9LV3TF": { + "uv": { + "qNY4": [0, 35], + "uyLC": [0, 31.66667], + "2Cy7": [2, 31.66667], + "ww1k": [2, 35] + }, + "vertices": ["ww1k", "2Cy7", "uyLC", "qNY4"], + "texture": 0 + }, + "eWNLaUh1": { + "uv": { + "qbIt": [0, 35], + "Uxw5": [0, 31.66667], + "uyLC": [2, 31.66667], + "qNY4": [2, 35] + }, + "vertices": ["qNY4", "uyLC", "Uxw5", "qbIt"], + "texture": 0 + }, + "7OpZlenr": { + "uv": { + "8HKl": [0, 28.33333], + "tsu4": [2, 26.66667], + "FVmL": [0, 26.66667], + "D5z6": [2, 28.33333] + }, + "vertices": ["D5z6", "FVmL", "tsu4", "8HKl"], + "texture": 0 + }, + "LMEp0vkq": { + "uv": { + "D5z6": [0, 28.33333], + "AYR2": [2, 26.66667], + "tsu4": [0, 26.66667], + "XnvV": [2, 28.33333] + }, + "vertices": ["XnvV", "tsu4", "AYR2", "D5z6"], + "texture": 0 + }, + "IZhPvWFw": { + "uv": { + "uyLC": [0, 31.66667], + "D5z6": [0, 28.33333], + "XnvV": [2, 28.33333], + "2Cy7": [2, 31.66667] + }, + "vertices": ["2Cy7", "XnvV", "D5z6", "uyLC"], + "texture": 0 + }, + "SbOPjyT9": { + "uv": { + "Uxw5": [0, 31.66667], + "8HKl": [0, 28.33333], + "D5z6": [2, 28.33333], + "uyLC": [2, 31.66667] + }, + "vertices": ["uyLC", "D5z6", "8HKl", "Uxw5"], + "texture": 0 + }, + "JzyyncTS": { + "uv": { + "Atxb": [2, 25], + "tsu4": [2, 26.66667], + "FVmL": [0, 26.66667], + "Bzop": [0, 25] + }, + "vertices": ["Bzop", "FVmL", "tsu4", "Atxb"], + "texture": 0 + }, + "mKnmlKRy": { + "uv": { + "mebZ": [2, 25], + "AYR2": [2, 26.66667], + "tsu4": [0, 26.66667], + "Atxb": [0, 25] + }, + "vertices": ["Atxb", "tsu4", "AYR2", "mebZ"], + "texture": 0 + }, + "cMtrfwQb": { + "uv": { + "4ezv": [24, 27.9836], + "VNps": [24, 23.9836], + "Hvq1": [25, 23.9836], + "Rnso": [25, 27.9836] + }, + "vertices": ["Rnso", "Hvq1", "VNps", "4ezv"], + "texture": 0 + }, + "Y33rUMC7": { + "uv": { + "EbdB": [24, 27.9836], + "4ezv": [24, 23.9836], + "Rnso": [25, 23.9836], + "4mSB": [25, 27.9836] + }, + "vertices": ["4mSB", "Rnso", "4ezv", "EbdB"], + "texture": 0 + }, + "ZzNAHZec": { + "uv": { + "qevP": [25, 23.9836], + "EbdB": [25, 27.9836], + "4mSB": [24, 27.9836], + "7R9u": [24, 23.9836] + }, + "vertices": ["7R9u", "4mSB", "EbdB", "qevP"], + "texture": 0 + }, + "09dBiOBM": { + "uv": { + "VNps": [24, 27.9836], + "lO3C": [24, 23.9836], + "95Wr": [25, 23.9836], + "Hvq1": [25, 27.9836] + }, + "vertices": ["Hvq1", "95Wr", "lO3C", "VNps"], + "texture": 0 + }, + "cRoD6z5f": { + "uv": { + "GwxS": [25, 23.9836], + "qevP": [25, 27.9836], + "7R9u": [24, 27.9836], + "ww1k": [24, 23.9836] + }, + "vertices": ["ww1k", "7R9u", "qevP", "GwxS"], + "texture": 0 + }, + "JI8OZCGa": { + "uv": { + "hnZd": [24, 27.9836], + "La2n": [24, 23.9836], + "BQWs": [25, 23.9836], + "zojw": [25, 27.9836] + }, + "vertices": ["zojw", "BQWs", "La2n", "hnZd"], + "texture": 0 + }, + "JwbEywX4": { + "uv": { + "00Kd": [26.25, 23.9836], + "GwxS": [24.75, 23.9836], + "ww1k": [24.75, 27.9836], + "Kim6": [26.25, 27.9836] + }, + "vertices": ["Kim6", "ww1k", "GwxS", "00Kd"], + "texture": 0 + }, + "K8KxJUkc": { + "uv": { + "6ehA": [25, 23.9836], + "00Kd": [25, 27.9836], + "Kim6": [24, 27.9836], + "OaX5": [24, 23.9836] + }, + "vertices": ["OaX5", "Kim6", "00Kd", "6ehA"], + "texture": 0 + }, + "hYkNu1Mz": { + "uv": { + "La2n": [24, 27.9836], + "6ehA": [24, 23.9836], + "OaX5": [25, 23.9836], + "BQWs": [25, 27.9836] + }, + "vertices": ["BQWs", "OaX5", "6ehA", "La2n"], + "texture": 0 + }, + "lkuqRz64": { + "uv": { + "qpa3": [24, 27.9836], + "hnZd": [24, 23.9836], + "zojw": [25, 23.9836], + "WCsk": [25, 27.9836] + }, + "vertices": ["WCsk", "zojw", "hnZd", "qpa3"], + "texture": 0 + }, + "NC4hIjdH": { + "uv": { + "vfKR": [1, 29.16667], + "dL7l": [0, 30.83333], + "2YyB": [2, 32.5] + }, + "vertices": ["2YyB", "dL7l", "vfKR"], + "texture": 0 + }, + "0wc8SlE7": { + "uv": { + "VNps": [1.73205, 14.0836], + "lO3C": [1.73205, 12.0836], + "hnZd": [0.57735, 14.0836], + "qpa3": [0.57735, 12.0836] + }, + "vertices": ["qpa3", "hnZd", "lO3C", "VNps"], + "texture": 0 + }, + "POoFRKmF": { + "uv": { + "iF7E": [1.4524, 7.48358], + "qpa3": [0, 7.9836], + "2hIL": [0, 6.9836] + }, + "vertices": ["2hIL", "qpa3", "iF7E"], + "texture": 0 + }, + "AN01rZCN": { + "uv": { + "iF7E": [1.4524, 7.48358], + "lO3C": [2.9048, 7.9836], + "qpa3": [0, 7.9836] + }, + "vertices": ["qpa3", "lO3C", "iF7E"], + "texture": 0 + }, + "dOn85EGy": { + "uv": { + "c1T2": [2, 25], + "lVHe": [0, 25], + "lO3C": [2, 26.66667], + "95Wr": [0, 26.66667] + }, + "vertices": ["95Wr", "lO3C", "lVHe", "c1T2"], + "texture": 0 + }, + "XhqlzGeX": { + "uv": { + "Bzop": [2, 26.66667], + "Qy1i": [2, 25], + "b69x": [2, 26.66667], + "Atxb": [2, 25] + }, + "vertices": ["Atxb", "b69x", "Qy1i", "Bzop"], + "texture": 0 + }, + "exiF1FcH": { + "uv": { + "WCsk": [2, 25], + "qpa3": [0, 25], + "mebZ": [2, 26.66667], + "Atxb": [0, 26.66667] + }, + "vertices": ["Atxb", "mebZ", "qpa3", "WCsk"], + "texture": 0 + }, + "5aIvrcvK": { + "uv": { + "rN5K": [3, 28.33333], + "V5o8": [1, 28.33333], + "2YyB": [0, 27.5], + "4uEE": [2, 27.5] + }, + "vertices": ["4uEE", "2YyB", "V5o8", "rN5K"], + "texture": 0 + }, + "iSAiDTYc": { + "uv": { + "V5o8": [2, 27.5], + "lVHe": [2, 28.33333], + "vfKR": [0, 27.5], + "2YyB": [0, 26.66667] + }, + "vertices": ["2YyB", "vfKR", "lVHe", "V5o8"], + "texture": 0 + }, + "PwPxBdKQ": { + "uv": { + "V5o8": [3, 27.5], + "lVHe": [3, 28.33333], + "95Wr": [4, 28.33333], + "rN5K": [4, 27.5] + }, + "vertices": ["rN5K", "95Wr", "lVHe", "V5o8"], + "texture": 0 + }, + "9pq1jXgB": { + "uv": { + "2YyB": [2, 32.5], + "dL7l": [0, 30.83333], + "4uEE": [0, 32.5] + }, + "vertices": ["4uEE", "dL7l", "2YyB"], + "texture": 0 + }, + "V66n5vfi": { + "uv": { + "c1T2": [0, 25], + "dfiu": [1, 25], + "u0Gb": [1, 26.66667], + "jkti": [0, 26.66667] + }, + "vertices": ["jkti", "u0Gb", "dfiu", "c1T2"], + "texture": 0 + }, + "Gz3BxX0B": { + "uv": { + "dfiu": [1, 25], + "Qy1i": [2, 25], + "b69x": [2, 26.66667], + "u0Gb": [1, 26.66667] + }, + "vertices": ["u0Gb", "b69x", "Qy1i", "dfiu"], + "texture": 0 + }, + "SHp3UP9H": { + "uv": { + "jkti": [0, 25], + "u0Gb": [1, 25], + "sm1U": [1, 26.66667], + "Dpuc": [0, 26.66667] + }, + "vertices": ["Dpuc", "sm1U", "u0Gb", "jkti"], + "texture": 0 + }, + "um736Dq3": { + "uv": { + "u0Gb": [1, 25], + "b69x": [2, 25], + "wHNi": [2, 26.66667], + "sm1U": [1, 26.66667] + }, + "vertices": ["sm1U", "wHNi", "b69x", "u0Gb"], + "texture": 0 + }, + "rWGGdvq2": { + "uv": { + "Dpuc": [0, 26.66667], + "sm1U": [1, 26.66667], + "LF0V": [1, 28.33333], + "YbTn": [0, 28.33333] + }, + "vertices": ["YbTn", "LF0V", "sm1U", "Dpuc"], + "texture": 0 + }, + "e3ukGqpq": { + "uv": { + "sm1U": [1, 26.66667], + "wHNi": [2, 26.66667], + "rdSk": [2, 28.33333], + "LF0V": [1, 28.33333] + }, + "vertices": ["LF0V", "rdSk", "wHNi", "sm1U"], + "texture": 0 + }, + "Z1lWsWgL": { + "uv": { + "YbTn": [0, 28.33333], + "LF0V": [1, 28.33333], + "hTCm": [1, 31.66667], + "Mwes": [0, 31.66667] + }, + "vertices": ["Mwes", "hTCm", "LF0V", "YbTn"], + "texture": 0 + }, + "Rz4sb4QU": { + "uv": { + "LF0V": [1, 28.33333], + "rdSk": [2, 28.33333], + "LyZP": [2, 31.66667], + "hTCm": [1, 31.66667] + }, + "vertices": ["hTCm", "LyZP", "rdSk", "LF0V"], + "texture": 0 + }, + "Y18WdEWz": { + "uv": { + "Mwes": [0, 31.66667], + "hTCm": [1, 31.66667], + "W7og": [1, 35], + "sCtj": [0, 35] + }, + "vertices": ["sCtj", "W7og", "hTCm", "Mwes"], + "texture": 0 + }, + "vilrXqoC": { + "uv": { + "hTCm": [1, 31.66667], + "LyZP": [2, 31.66667], + "euyv": [2, 35], + "W7og": [1, 35] + }, + "vertices": ["W7og", "euyv", "LyZP", "hTCm"], + "texture": 0 + }, + "fdQoRajU": { + "uv": { + "JesZ": [1, 26.66667], + "W7og": [2, 25], + "qbIt": [2, 25] + }, + "vertices": ["qbIt", "W7og", "JesZ"], + "texture": 0 + }, + "DrtiOr4Z": { + "uv": { + "Atxb": [4, 30.83333], + "Qy1i": [2, 27.5], + "qpa3": [4, 27.5] + }, + "vertices": ["qpa3", "Qy1i", "Atxb"], + "texture": 0 + }, + "tjm5pHFW": { + "uv": { + "c1T2": [6, 28.33333], + "dfiu": [2, 29.16667], + "lO3C": [2, 27.5] + }, + "vertices": ["lO3C", "dfiu", "c1T2"], + "texture": 0 + }, + "DOLSY8dr": { + "uv": { + "dfiu": [3, 29.16667], + "Qy1i": [4, 29.16667], + "lO3C": [2, 27.5], + "qpa3": [5, 27.5] + }, + "vertices": ["qpa3", "lO3C", "Qy1i", "dfiu"], + "texture": 0 + }, + "cY6ai2RJ": { + "uv": { + "iF7E": [1.4524, 7.48358], + "dL7l": [0, 6.9836], + "lO3C": [0, 7.9836] + }, + "vertices": ["lO3C", "dL7l", "iF7E"], + "texture": 0 + }, + "eZhAcwzx": { + "uv": { + "iF7E": [1.4524, 7.48358], + "lO3C": [0, 7.9836], + "qpa3": [2.9048, 7.9836] + }, + "vertices": ["qpa3", "lO3C", "iF7E"], + "texture": 0 + }, + "vcbjYQ56": { + "uv": { + "iF7E": [1.0579, 6], + "2hIL": [2.1156, 8.9715], + "dL7l": [0, 8.9715] + }, + "vertices": ["dL7l", "2hIL", "iF7E"], + "texture": 0 + }, + "J8zAALyf": { + "uv": { + "rN5K": [1, 25], + "95Wr": [0, 25.83333], + "4uEE": [1, 29.16667], + "dL7l": [0, 29.16667] + }, + "vertices": ["dL7l", "4uEE", "95Wr", "rN5K"], + "texture": 0 + }, + "LPxIqajL": { + "uv": { + "c3OB": [1, 29.16667], + "K8mw": [2, 32.5], + "z3lK": [0, 30.83333] + }, + "vertices": ["z3lK", "K8mw", "c3OB"], + "texture": 0 + }, + "sc700U88": { + "uv": { + "y7CQ": [3, 28.33333], + "dNWt": [1, 28.33333], + "AoTh": [2, 27.5], + "K8mw": [0, 27.5] + }, + "vertices": ["K8mw", "AoTh", "dNWt", "y7CQ"], + "texture": 0 + }, + "RpTXdYE9": { + "uv": { + "dNWt": [2, 27.5], + "mebZ": [2, 28.33333], + "K8mw": [0, 26.66667], + "c3OB": [0, 27.5] + }, + "vertices": ["c3OB", "K8mw", "mebZ", "dNWt"], + "texture": 0 + }, + "zNZXQO0c": { + "uv": { + "dNWt": [3, 27.5], + "mebZ": [3, 28.33333], + "y7CQ": [4, 27.5], + "WCsk": [4, 28.33333] + }, + "vertices": ["WCsk", "y7CQ", "mebZ", "dNWt"], + "texture": 0 + }, + "CEfhvRmd": { + "uv": { + "K8mw": [2, 32.5], + "AoTh": [0, 32.5], + "z3lK": [0, 30.83333] + }, + "vertices": ["z3lK", "AoTh", "K8mw"], + "texture": 0 + }, + "q6b9SoOv": { + "uv": { + "y7CQ": [1, 25], + "WCsk": [0, 25.83333], + "z3lK": [0, 29.16667], + "AoTh": [1, 29.16667] + }, + "vertices": ["AoTh", "z3lK", "WCsk", "y7CQ"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "9b7ace10-f4a4-74b2-a33d-8dc435a7d04c" + }, + { + "name": "cylinder", + "color": 8, + "origin": [2.23633, 8.67857, -0.15628], + "rotation": [1.72795, 0.14886, -0.15341], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "fXDl": [0.00234, -4.17816, 0.47714], + "769S": [0, 4.82143, 0.45], + "Ngnq": [1.29904, -3.27857, 2.61], + "86iU": [1.10725, 3.08572, 3.15], + "Orqk": [2.59808, -3.27857, 0.45], + "2WPs": [2.21451, 3.08572, 0.45], + "sf20": [1.29904, -3.27857, -1.71], + "JpAB": [1.10725, 3.08572, -2.25], + "uSt3": [-1.29904, -3.27857, -1.71], + "LEG0": [-1.10725, 3.08572, -2.25], + "H1ru": [-2.59807, -3.27857, 0.45], + "GPdT": [-2.21451, 3.08572, 0.45], + "HLm2": [-1.29904, -3.27857, 2.61], + "Ba1X": [-1.10725, 3.08572, 3.15] + }, + "faces": { + "kIuOJ6a5": { + "uv": { + "fXDl": [1.3815, 54.3836], + "Ngnq": [3.37555, 51.9836], + "Orqk": [5.3696, 54.3836] + }, + "vertices": ["Orqk", "Ngnq", "fXDl"], + "texture": 0 + }, + "jwCmvIw0": { + "uv": { + "86iU": [1.3815, 47.9999], + "2WPs": [5.80906, 47.9836], + "Orqk": [6.11257, 58.9896], + "Ngnq": [2.24355, 58.9896] + }, + "vertices": ["Ngnq", "Orqk", "2WPs", "86iU"], + "texture": 0 + }, + "8CBehK8M": { + "uv": { + "769S": [3.18974, 48.9836], + "2WPs": [4.47951, 52.7496], + "86iU": [0, 52.7496] + }, + "vertices": ["86iU", "2WPs", "769S"], + "texture": 0 + }, + "6735bTQz": { + "uv": { + "fXDl": [1.3815, 50.9836], + "Orqk": [5.3696, 50.9836], + "sf20": [3.37555, 53.3836] + }, + "vertices": ["sf20", "Orqk", "fXDl"], + "texture": 0 + }, + "5RuiYjJo": { + "uv": { + "2WPs": [1.68501, 47.9893], + "JpAB": [6.11257, 47.9836], + "sf20": [5.25052, 58.9844], + "Orqk": [1.3815, 58.9844] + }, + "vertices": ["Orqk", "sf20", "JpAB", "2WPs"], + "texture": 0 + }, + "haqmnfWx": { + "uv": { + "769S": [2.67126, 51.9836], + "JpAB": [5.86086, 55.7496], + "2WPs": [1.3815, 55.7496] + }, + "vertices": ["2WPs", "JpAB", "769S"], + "texture": 0 + }, + "LzfYKXZg": { + "uv": { + "fXDl": [3.37555, 52.9836], + "sf20": [5.3696, 55.3836], + "uSt3": [1.3815, 55.3836] + }, + "vertices": ["uSt3", "sf20", "fXDl"], + "texture": 0 + }, + "cdXcnv9J": { + "uv": { + "JpAB": [1.67589, 47.9836], + "LEG0": [5.07521, 47.9836], + "uSt3": [5.3696, 58.9999], + "sf20": [1.3815, 58.9999] + }, + "vertices": ["sf20", "uSt3", "LEG0", "JpAB"], + "texture": 0 + }, + "2Zbo3wUk": { + "uv": { + "769S": [3.08115, 48.9836], + "LEG0": [4.78081, 53.2262], + "JpAB": [1.3815, 53.2262] + }, + "vertices": ["JpAB", "LEG0", "769S"], + "texture": 0 + }, + "7Lb8dPtY": { + "uv": { + "fXDl": [5.36947, 50.9836], + "uSt3": [3.37541, 53.3836], + "H1ru": [1.3815, 50.9836] + }, + "vertices": ["H1ru", "uSt3", "fXDl"], + "texture": 0 + }, + "smP5XAom": { + "uv": { + "LEG0": [0, 47.9999], + "GPdT": [4.42756, 47.9836], + "H1ru": [4.73108, 58.9896], + "uSt3": [0.86205, 58.9896] + }, + "vertices": ["uSt3", "H1ru", "GPdT", "LEG0"], + "texture": 0 + }, + "Jq3zWgIi": { + "uv": { + "769S": [3.1896, 51.9836], + "GPdT": [4.47937, 55.7496], + "LEG0": [0, 55.7496] + }, + "vertices": ["LEG0", "GPdT", "769S"], + "texture": 0 + }, + "Lf6TqTg3": { + "uv": { + "fXDl": [5.36947, 54.3836], + "H1ru": [1.3815, 54.3836], + "HLm2": [3.37541, 51.9836] + }, + "vertices": ["HLm2", "H1ru", "fXDl"], + "texture": 0 + }, + "8RzK1EH5": { + "uv": { + "GPdT": [1.68501, 47.9893], + "Ba1X": [6.11257, 47.9836], + "HLm2": [5.25052, 58.9843], + "H1ru": [1.3815, 58.9843] + }, + "vertices": ["H1ru", "HLm2", "Ba1X", "GPdT"], + "texture": 0 + }, + "BDGVQs73": { + "uv": { + "769S": [4.05276, 48.9836], + "Ba1X": [7.2425, 52.7496], + "GPdT": [2.76299, 52.7496] + }, + "vertices": ["GPdT", "Ba1X", "769S"], + "texture": 0 + }, + "1l3NVOxJ": { + "uv": { + "fXDl": [3.37555, 53.3836], + "HLm2": [1.3815, 50.9836], + "Ngnq": [5.3696, 50.9836] + }, + "vertices": ["Ngnq", "HLm2", "fXDl"], + "texture": 0 + }, + "yIuKEBDF": { + "uv": { + "Ba1X": [1.67589, 47.9836], + "86iU": [5.07521, 47.9836], + "Ngnq": [5.3696, 59], + "HLm2": [1.3815, 59] + }, + "vertices": ["HLm2", "Ngnq", "86iU", "Ba1X"], + "texture": 0 + }, + "ZCMrJe0Y": { + "uv": { + "769S": [3.08115, 51.9836], + "86iU": [4.78081, 56.2262], + "Ba1X": [1.3815, 56.2262] + }, + "vertices": ["Ba1X", "86iU", "769S"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "952d1c26-5c46-044f-47a3-1bbb6da6bc21" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-2.23633, 8.67857, -0.15628], + "rotation": [1.72795, -0.14886, 0.15341], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "fXDl": [-0.00234, -4.17816, 0.47714], + "769S": [0, 4.82143, 0.45], + "Ngnq": [-1.29904, -3.27857, 2.61], + "86iU": [-1.10725, 3.08571, 3.15], + "Orqk": [-2.59807, -3.27857, 0.45], + "2WPs": [-2.21451, 3.08571, 0.45], + "sf20": [-1.29904, -3.27857, -1.71], + "JpAB": [-1.10725, 3.08571, -2.25], + "uSt3": [1.29904, -3.27857, -1.71], + "LEG0": [1.10725, 3.08571, -2.25], + "H1ru": [2.59808, -3.27857, 0.45], + "GPdT": [2.21451, 3.08571, 0.45], + "HLm2": [1.29904, -3.27857, 2.61], + "Ba1X": [1.10725, 3.08571, 3.15] + }, + "faces": { + "kIuOJ6a5": { + "uv": { + "fXDl": [5.3815, 55.3836], + "Orqk": [7.37555, 52.9836], + "Ngnq": [9.3696, 55.3836] + }, + "vertices": ["Ngnq", "Orqk", "fXDl"], + "texture": 0 + }, + "jwCmvIw0": { + "uv": { + "86iU": [9.80906, 48.9836], + "2WPs": [5.3815, 48.9999], + "Ngnq": [10.11257, 59.9896], + "Orqk": [6.24355, 59.9896] + }, + "vertices": ["Orqk", "Ngnq", "2WPs", "86iU"], + "texture": 0 + }, + "8CBehK8M": { + "uv": { + "769S": [7.18974, 49.9836], + "86iU": [8.47951, 53.7496], + "2WPs": [4, 53.7496] + }, + "vertices": ["2WPs", "86iU", "769S"], + "texture": 0 + }, + "6735bTQz": { + "uv": { + "fXDl": [5.3815, 51.9836], + "sf20": [9.3696, 51.9836], + "Orqk": [7.37555, 54.3836] + }, + "vertices": ["Orqk", "sf20", "fXDl"], + "texture": 0 + }, + "5RuiYjJo": { + "uv": { + "2WPs": [10.11257, 48.9836], + "JpAB": [5.68501, 48.9893], + "Orqk": [9.25052, 59.9844], + "sf20": [5.3815, 59.9844] + }, + "vertices": ["sf20", "Orqk", "JpAB", "2WPs"], + "texture": 0 + }, + "haqmnfWx": { + "uv": { + "769S": [6.67126, 52.9836], + "2WPs": [9.86086, 56.7496], + "JpAB": [5.3815, 56.7496] + }, + "vertices": ["JpAB", "2WPs", "769S"], + "texture": 0 + }, + "LzfYKXZg": { + "uv": { + "fXDl": [7.37555, 53.9836], + "uSt3": [9.3696, 56.3836], + "sf20": [5.3815, 56.3836] + }, + "vertices": ["sf20", "uSt3", "fXDl"], + "texture": 0 + }, + "cdXcnv9J": { + "uv": { + "JpAB": [9.07521, 48.9836], + "LEG0": [5.67589, 48.9836], + "sf20": [9.3696, 59.9999], + "uSt3": [5.3815, 59.9999] + }, + "vertices": ["uSt3", "sf20", "LEG0", "JpAB"], + "texture": 0 + }, + "2Zbo3wUk": { + "uv": { + "769S": [7.08115, 49.9836], + "JpAB": [8.78081, 54.2262], + "LEG0": [5.3815, 54.2262] + }, + "vertices": ["LEG0", "JpAB", "769S"], + "texture": 0 + }, + "7Lb8dPtY": { + "uv": { + "fXDl": [9.36947, 51.9836], + "H1ru": [7.37541, 54.3836], + "uSt3": [5.3815, 51.9836] + }, + "vertices": ["uSt3", "H1ru", "fXDl"], + "texture": 0 + }, + "smP5XAom": { + "uv": { + "LEG0": [8.42756, 48.9836], + "GPdT": [4, 48.9999], + "uSt3": [8.73108, 59.9896], + "H1ru": [4.86205, 59.9896] + }, + "vertices": ["H1ru", "uSt3", "GPdT", "LEG0"], + "texture": 0 + }, + "Jq3zWgIi": { + "uv": { + "769S": [7.1896, 52.9836], + "LEG0": [8.47937, 56.7496], + "GPdT": [4, 56.7496] + }, + "vertices": ["GPdT", "LEG0", "769S"], + "texture": 0 + }, + "Lf6TqTg3": { + "uv": { + "fXDl": [9.36947, 55.3836], + "HLm2": [5.3815, 55.3836], + "H1ru": [7.37541, 52.9836] + }, + "vertices": ["H1ru", "HLm2", "fXDl"], + "texture": 0 + }, + "8RzK1EH5": { + "uv": { + "GPdT": [10.11257, 48.9836], + "Ba1X": [5.68501, 48.9893], + "H1ru": [9.25052, 59.9843], + "HLm2": [5.3815, 59.9843] + }, + "vertices": ["HLm2", "H1ru", "Ba1X", "GPdT"], + "texture": 0 + }, + "BDGVQs73": { + "uv": { + "769S": [8.05276, 49.9836], + "GPdT": [11.2425, 53.7496], + "Ba1X": [6.76299, 53.7496] + }, + "vertices": ["Ba1X", "GPdT", "769S"], + "texture": 0 + }, + "1l3NVOxJ": { + "uv": { + "fXDl": [7.37555, 54.3836], + "Ngnq": [5.3815, 51.9836], + "HLm2": [9.3696, 51.9836] + }, + "vertices": ["HLm2", "Ngnq", "fXDl"], + "texture": 0 + }, + "yIuKEBDF": { + "uv": { + "Ba1X": [9.07521, 48.9836], + "86iU": [5.67589, 48.9836], + "HLm2": [9.3696, 60], + "Ngnq": [5.3815, 60] + }, + "vertices": ["Ngnq", "HLm2", "86iU", "Ba1X"], + "texture": 0 + }, + "ZCMrJe0Y": { + "uv": { + "769S": [7.08115, 52.9836], + "Ba1X": [8.78081, 57.2262], + "86iU": [5.3815, 57.2262] + }, + "vertices": ["86iU", "Ba1X", "769S"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "bfdad83a-2e41-be24-903c-5ebd81b969b3" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-2.68633, 5.4, -0.15628], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "hKiQ": [0.675, -4.95, 0.45], + "P9yc": [0.675, 2.7, 0.45], + "1O7X": [1.25111, -3.75652, 1.98], + "AuqO": [1.40234, 2.7, 1.98], + "3QLG": [1.82721, -3.75652, 0.45], + "SQtr": [2.56923, 2.7, 0.45], + "zALn": [1.25111, -3.75652, -1.08], + "XwTk": [1.62212, 2.7, -1.08], + "XrMY": [0.09889, -3.75652, -1.08], + "SxBA": [-0.27211, 2.7, -1.08], + "9bCg": [-0.47721, -3.75652, 0.45], + "xfU2": [-1.21923, 2.7, 0.45], + "YkcP": [0.09889, -3.75652, 1.98], + "5O4d": [-0.05233, 2.7, 1.98], + "H3Hz": [-0.27211, -0.5283, -1.08], + "uVfc": [1.62212, -0.5283, -1.08], + "D3Zi": [2.56923, -0.5283, 0.45], + "S34R": [1.40234, -0.5283, 1.98], + "gPMU": [-0.05233, -0.5283, 1.98], + "JTfr": [-1.21923, -0.5283, 0.45] + }, + "faces": { + "YiBnE33q": { + "uv": { + "hKiQ": [7, 43.9836], + "1O7X": [8.1547, 43.9836], + "3QLG": [7.5774, 42.9836] + }, + "vertices": ["3QLG", "1O7X", "hKiQ"], + "texture": 0 + }, + "amXAQ62A": { + "uv": { + "SQtr": [3.1548, 36.9836], + "S34R": [0, 38.48362], + "D3Zi": [3.1548, 38.48362], + "AuqO": [0, 36.9836] + }, + "vertices": ["AuqO", "D3Zi", "S34R", "SQtr"], + "texture": 0 + }, + "pmtHFukt": { + "uv": { + "P9yc": [5.1547, 35.9836], + "SQtr": [4, 35.9836], + "AuqO": [4.5773, 36.9836] + }, + "vertices": ["AuqO", "SQtr", "P9yc"], + "texture": 0 + }, + "dbwNvdVu": { + "uv": { + "hKiQ": [7, 42.9836], + "3QLG": [7.5774, 43.9836], + "zALn": [8.1547, 42.9836] + }, + "vertices": ["zALn", "3QLG", "hKiQ"], + "texture": 0 + }, + "KLi0aNFD": { + "uv": { + "XwTk": [3.1548, 36.9836], + "D3Zi": [0, 38.48362], + "uVfc": [3.1548, 38.48362], + "SQtr": [0, 36.9836] + }, + "vertices": ["SQtr", "uVfc", "D3Zi", "XwTk"], + "texture": 0 + }, + "1nnlJSX0": { + "uv": { + "P9yc": [5.1547, 35.9836], + "XwTk": [4, 35.9836], + "SQtr": [4.5773, 36.9836] + }, + "vertices": ["SQtr", "XwTk", "P9yc"], + "texture": 0 + }, + "xyppXCm4": { + "uv": { + "hKiQ": [7.5774, 42.9836], + "zALn": [7, 43.9836], + "XrMY": [8.1548, 43.9836] + }, + "vertices": ["XrMY", "zALn", "hKiQ"], + "texture": 0 + }, + "TlijztB8": { + "uv": { + "SxBA": [3.1548, 36.9836], + "uVfc": [0, 38.48362], + "H3Hz": [3.1548, 38.48362], + "XwTk": [0, 36.9836] + }, + "vertices": ["XwTk", "H3Hz", "uVfc", "SxBA"], + "texture": 0 + }, + "iSo9y4Ks": { + "uv": { + "P9yc": [5.1547, 35.9836], + "SxBA": [4, 35.9836], + "XwTk": [4.5773, 36.9836] + }, + "vertices": ["XwTk", "SxBA", "P9yc"], + "texture": 0 + }, + "802o7kue": { + "uv": { + "hKiQ": [8.1547, 42.9836], + "XrMY": [7, 42.9836], + "9bCg": [7.5773, 43.9836] + }, + "vertices": ["9bCg", "XrMY", "hKiQ"], + "texture": 0 + }, + "TZySRbzl": { + "uv": { + "xfU2": [3.1548, 36.9836], + "H3Hz": [0, 38.48362], + "JTfr": [3.1548, 38.48362], + "SxBA": [0, 36.9836] + }, + "vertices": ["SxBA", "JTfr", "H3Hz", "xfU2"], + "texture": 0 + }, + "VqxZUv3r": { + "uv": { + "P9yc": [5.1547, 35.9836], + "xfU2": [4, 35.9836], + "SxBA": [4.5773, 36.9836] + }, + "vertices": ["SxBA", "xfU2", "P9yc"], + "texture": 0 + }, + "VZ0J1wkW": { + "uv": { + "hKiQ": [8.1547, 43.9836], + "9bCg": [7.5773, 42.9836], + "YkcP": [7, 43.9836] + }, + "vertices": ["YkcP", "9bCg", "hKiQ"], + "texture": 0 + }, + "5JhxGbwK": { + "uv": { + "5O4d": [3.1548, 36.9836], + "JTfr": [0, 38.48362], + "gPMU": [3.1548, 38.48362], + "xfU2": [0, 36.9836] + }, + "vertices": ["xfU2", "gPMU", "JTfr", "5O4d"], + "texture": 0 + }, + "fjNguha9": { + "uv": { + "P9yc": [5.1547, 35.9836], + "5O4d": [4, 35.9836], + "xfU2": [4.5773, 36.9836] + }, + "vertices": ["xfU2", "5O4d", "P9yc"], + "texture": 0 + }, + "gmvsrhwQ": { + "uv": { + "hKiQ": [7.5774, 43.9836], + "YkcP": [8.1548, 42.9836], + "1O7X": [7, 42.9836] + }, + "vertices": ["1O7X", "YkcP", "hKiQ"], + "texture": 0 + }, + "vDOAOCtP": { + "uv": { + "AuqO": [3.1548, 36.9836], + "gPMU": [0, 38.48362], + "S34R": [3.1548, 38.48362], + "5O4d": [0, 36.9836] + }, + "vertices": ["5O4d", "S34R", "gPMU", "AuqO"], + "texture": 0 + }, + "dnWXIx0A": { + "uv": { + "P9yc": [5.1547, 35.9836], + "AuqO": [4, 35.9836], + "5O4d": [4.5773, 36.9836] + }, + "vertices": ["5O4d", "AuqO", "P9yc"], + "texture": 0 + }, + "hpoEQbnj": { + "uv": { + "zALn": [8, 43.58358], + "uVfc": [8, 41.9836], + "H3Hz": [7, 41.9836], + "XrMY": [7, 43.58358] + }, + "vertices": ["XrMY", "H3Hz", "uVfc", "zALn"], + "texture": 0 + }, + "KGaXeg2R": { + "uv": { + "3QLG": [8, 43.58358], + "D3Zi": [8, 41.9836], + "uVfc": [7, 41.9836], + "zALn": [7, 43.58358] + }, + "vertices": ["zALn", "uVfc", "D3Zi", "3QLG"], + "texture": 0 + }, + "PZum2TUC": { + "uv": { + "1O7X": [8, 43.58358], + "S34R": [8, 41.9836], + "D3Zi": [7, 41.9836], + "3QLG": [7, 43.58358] + }, + "vertices": ["3QLG", "D3Zi", "S34R", "1O7X"], + "texture": 0 + }, + "Hm45mM5A": { + "uv": { + "YkcP": [8, 43.58358], + "gPMU": [8, 41.9836], + "S34R": [7, 41.9836], + "1O7X": [7, 43.58358] + }, + "vertices": ["1O7X", "S34R", "gPMU", "YkcP"], + "texture": 0 + }, + "gGfMirYG": { + "uv": { + "9bCg": [8, 43.58358], + "JTfr": [8, 41.9836], + "gPMU": [7, 41.9836], + "YkcP": [7, 43.58358] + }, + "vertices": ["YkcP", "gPMU", "JTfr", "9bCg"], + "texture": 0 + }, + "RPPTuXb3": { + "uv": { + "XrMY": [8, 43.58358], + "H3Hz": [8, 41.9836], + "JTfr": [7, 41.9836], + "9bCg": [7, 43.58358] + }, + "vertices": ["9bCg", "JTfr", "H3Hz", "XrMY"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "fa408760-0e21-5c7c-f5f2-34ce3493f337" + }, + { + "name": "cylinder", + "color": 8, + "origin": [2.68633, 5.4, -0.15628], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "hKiQ": [-0.675, -4.95, 0.45], + "P9yc": [-0.675, 2.7, 0.45], + "1O7X": [-1.25111, -3.75652, 2.07], + "AuqO": [-1.40233, 2.7, 2.07], + "3QLG": [-1.82721, -3.75652, 0.45], + "SQtr": [-2.56923, 2.7, 0.45], + "zALn": [-1.25111, -3.75652, -1.17], + "XwTk": [-1.62211, 2.7, -1.17], + "XrMY": [-0.09889, -3.75652, -1.17], + "SxBA": [0.27212, 2.7, -1.17], + "9bCg": [0.47721, -3.75652, 0.45], + "xfU2": [1.21923, 2.7, 0.45], + "YkcP": [-0.09889, -3.75652, 2.07], + "5O4d": [0.05234, 2.7, 2.07], + "H3Hz": [0.27212, -0.5283, -1.17], + "uVfc": [-1.62211, -0.5283, -1.17], + "D3Zi": [-2.56923, -0.5283, 0.45], + "S34R": [-1.40233, -0.5283, 2.07], + "gPMU": [0.05234, -0.5283, 2.07], + "JTfr": [1.21923, -0.5283, 0.45] + }, + "faces": { + "YiBnE33q": { + "uv": { + "hKiQ": [7, 43.9836], + "3QLG": [8.1547, 43.9836], + "1O7X": [7.5774, 42.9836] + }, + "vertices": ["1O7X", "3QLG", "hKiQ"], + "texture": 0 + }, + "amXAQ62A": { + "uv": { + "SQtr": [3.1548, 36.9836], + "S34R": [0, 38.48362], + "AuqO": [0, 36.9836], + "D3Zi": [3.1548, 38.48362] + }, + "vertices": ["D3Zi", "AuqO", "S34R", "SQtr"], + "texture": 0 + }, + "pmtHFukt": { + "uv": { + "P9yc": [5.1547, 35.9836], + "AuqO": [4, 35.9836], + "SQtr": [4.5773, 36.9836] + }, + "vertices": ["SQtr", "AuqO", "P9yc"], + "texture": 0 + }, + "dbwNvdVu": { + "uv": { + "hKiQ": [7, 42.9836], + "zALn": [7.5774, 43.9836], + "3QLG": [8.1547, 42.9836] + }, + "vertices": ["3QLG", "zALn", "hKiQ"], + "texture": 0 + }, + "KLi0aNFD": { + "uv": { + "XwTk": [3.1548, 36.9836], + "D3Zi": [0, 38.48362], + "SQtr": [0, 36.9836], + "uVfc": [3.1548, 38.48362] + }, + "vertices": ["uVfc", "SQtr", "D3Zi", "XwTk"], + "texture": 0 + }, + "1nnlJSX0": { + "uv": { + "P9yc": [5.1547, 35.9836], + "SQtr": [4, 35.9836], + "XwTk": [4.5773, 36.9836] + }, + "vertices": ["XwTk", "SQtr", "P9yc"], + "texture": 0 + }, + "xyppXCm4": { + "uv": { + "hKiQ": [7.5774, 42.9836], + "XrMY": [7, 43.9836], + "zALn": [8.1548, 43.9836] + }, + "vertices": ["zALn", "XrMY", "hKiQ"], + "texture": 0 + }, + "TlijztB8": { + "uv": { + "SxBA": [3.1548, 36.9836], + "uVfc": [0, 38.48362], + "XwTk": [0, 36.9836], + "H3Hz": [3.1548, 38.48362] + }, + "vertices": ["H3Hz", "XwTk", "uVfc", "SxBA"], + "texture": 0 + }, + "iSo9y4Ks": { + "uv": { + "P9yc": [5.1547, 35.9836], + "XwTk": [4, 35.9836], + "SxBA": [4.5773, 36.9836] + }, + "vertices": ["SxBA", "XwTk", "P9yc"], + "texture": 0 + }, + "802o7kue": { + "uv": { + "hKiQ": [8.1547, 42.9836], + "9bCg": [7, 42.9836], + "XrMY": [7.5773, 43.9836] + }, + "vertices": ["XrMY", "9bCg", "hKiQ"], + "texture": 0 + }, + "TZySRbzl": { + "uv": { + "xfU2": [3.1548, 36.9836], + "H3Hz": [0, 38.48362], + "SxBA": [0, 36.9836], + "JTfr": [3.1548, 38.48362] + }, + "vertices": ["JTfr", "SxBA", "H3Hz", "xfU2"], + "texture": 0 + }, + "VqxZUv3r": { + "uv": { + "P9yc": [5.1547, 35.9836], + "SxBA": [4, 35.9836], + "xfU2": [4.5773, 36.9836] + }, + "vertices": ["xfU2", "SxBA", "P9yc"], + "texture": 0 + }, + "VZ0J1wkW": { + "uv": { + "hKiQ": [8.1547, 43.9836], + "YkcP": [7.5773, 42.9836], + "9bCg": [7, 43.9836] + }, + "vertices": ["9bCg", "YkcP", "hKiQ"], + "texture": 0 + }, + "5JhxGbwK": { + "uv": { + "5O4d": [3.1548, 36.9836], + "JTfr": [0, 38.48362], + "xfU2": [0, 36.9836], + "gPMU": [3.1548, 38.48362] + }, + "vertices": ["gPMU", "xfU2", "JTfr", "5O4d"], + "texture": 0 + }, + "fjNguha9": { + "uv": { + "P9yc": [5.1547, 35.9836], + "xfU2": [4, 35.9836], + "5O4d": [4.5773, 36.9836] + }, + "vertices": ["5O4d", "xfU2", "P9yc"], + "texture": 0 + }, + "gmvsrhwQ": { + "uv": { + "hKiQ": [7.5774, 43.9836], + "1O7X": [8.1548, 42.9836], + "YkcP": [7, 42.9836] + }, + "vertices": ["YkcP", "1O7X", "hKiQ"], + "texture": 0 + }, + "vDOAOCtP": { + "uv": { + "AuqO": [3.1548, 36.9836], + "gPMU": [0, 38.48362], + "5O4d": [0, 36.9836], + "S34R": [3.1548, 38.48362] + }, + "vertices": ["S34R", "5O4d", "gPMU", "AuqO"], + "texture": 0 + }, + "dnWXIx0A": { + "uv": { + "P9yc": [5.1547, 35.9836], + "5O4d": [4, 35.9836], + "AuqO": [4.5773, 36.9836] + }, + "vertices": ["AuqO", "5O4d", "P9yc"], + "texture": 0 + }, + "hpoEQbnj": { + "uv": { + "zALn": [7, 43.58358], + "uVfc": [7, 41.9836], + "XrMY": [8, 43.58358], + "H3Hz": [8, 41.9836] + }, + "vertices": ["H3Hz", "XrMY", "uVfc", "zALn"], + "texture": 0 + }, + "KGaXeg2R": { + "uv": { + "3QLG": [7, 43.58358], + "D3Zi": [7, 41.9836], + "zALn": [8, 43.58358], + "uVfc": [8, 41.9836] + }, + "vertices": ["uVfc", "zALn", "D3Zi", "3QLG"], + "texture": 0 + }, + "PZum2TUC": { + "uv": { + "1O7X": [7, 43.58358], + "S34R": [7, 41.9836], + "3QLG": [8, 43.58358], + "D3Zi": [8, 41.9836] + }, + "vertices": ["D3Zi", "3QLG", "S34R", "1O7X"], + "texture": 0 + }, + "Hm45mM5A": { + "uv": { + "YkcP": [7, 43.58358], + "gPMU": [7, 41.9836], + "1O7X": [8, 43.58358], + "S34R": [8, 41.9836] + }, + "vertices": ["S34R", "1O7X", "gPMU", "YkcP"], + "texture": 0 + }, + "gGfMirYG": { + "uv": { + "9bCg": [7, 43.58358], + "JTfr": [7, 41.9836], + "YkcP": [8, 43.58358], + "gPMU": [8, 41.9836] + }, + "vertices": ["gPMU", "YkcP", "JTfr", "9bCg"], + "texture": 0 + }, + "RPPTuXb3": { + "uv": { + "XrMY": [7, 43.58358], + "H3Hz": [7, 41.9836], + "9bCg": [8, 43.58358], + "JTfr": [8, 41.9836] + }, + "vertices": ["JTfr", "9bCg", "H3Hz", "XrMY"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "03a7b0ca-adbc-e921-e466-02042f51f0fb" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-5.04, 12.87, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "uXX4": [-0.04405, -1.08, 0.135], + "xQ7R": [0.62925, -0.21375, 1.2], + "KviP": [0.9208, 4.08375, 1.7325], + "ZAwo": [0.71946, -0.21375, 0.135], + "jvUa": [1.88565, 4.08375, 0.135], + "ZlND": [0.62925, -0.21375, -0.93], + "0viC": [0.9208, 4.08375, -1.4625], + "0sOe": [-0.71735, -0.21375, -0.93], + "bbcG": [-0.4258, 4.08375, -1.4625], + "EHEa": [-1.39065, -0.21375, 0.135], + "Hf1h": [-1.39065, 4.08375, 0.135], + "qpo9": [-0.71735, -0.21375, 1.2], + "AFOM": [-0.4258, 4.08375, 1.7325], + "oTYm": [-0.04405, 4.95, 0.135] + }, + "faces": { + "lobLHojZ": { + "uv": { + "uXX4": [0, 6.9836], + "xQ7R": [0.5774, 5.9836], + "ZAwo": [1.1547, 6.9836] + }, + "vertices": ["ZAwo", "xQ7R", "uXX4"], + "texture": 0 + }, + "2wrsF9PS": { + "uv": { + "KviP": [0, 3.9836], + "jvUa": [1.1548, 3.9836], + "ZAwo": [1.1548, 9.9836], + "xQ7R": [0, 9.9836] + }, + "vertices": ["xQ7R", "ZAwo", "jvUa", "KviP"], + "texture": 0 + }, + "NHGFWn7K": { + "uv": { + "uXX4": [0, 5.9836], + "ZAwo": [1.1547, 5.9836], + "ZlND": [0.5774, 6.9836] + }, + "vertices": ["ZlND", "ZAwo", "uXX4"], + "texture": 0 + }, + "8cc6hOOR": { + "uv": { + "jvUa": [0, 3.9836], + "0viC": [1.1548, 3.9836], + "ZlND": [1.1548, 9.9836], + "ZAwo": [0, 9.9836] + }, + "vertices": ["ZAwo", "ZlND", "0viC", "jvUa"], + "texture": 0 + }, + "9UtXiLWH": { + "uv": { + "uXX4": [0.5774, 5.9836], + "ZlND": [1.1548, 6.9836], + "0sOe": [0, 6.9836] + }, + "vertices": ["0sOe", "ZlND", "uXX4"], + "texture": 0 + }, + "qGP3hNLj": { + "uv": { + "0viC": [0, 3.9836], + "bbcG": [1.1548, 3.9836], + "0sOe": [1.1548, 9.9836], + "ZlND": [0, 9.9836] + }, + "vertices": ["ZlND", "0sOe", "bbcG", "0viC"], + "texture": 0 + }, + "6tckQVaJ": { + "uv": { + "uXX4": [1.1547, 5.9836], + "0sOe": [0.5773, 6.9836], + "EHEa": [0, 5.9836] + }, + "vertices": ["EHEa", "0sOe", "uXX4"], + "texture": 0 + }, + "2WWrRUBm": { + "uv": { + "bbcG": [0, 3.9836], + "Hf1h": [1.1548, 3.9836], + "EHEa": [1.1548, 9.9836], + "0sOe": [0, 9.9836] + }, + "vertices": ["0sOe", "EHEa", "Hf1h", "bbcG"], + "texture": 0 + }, + "Gd1XafzL": { + "uv": { + "uXX4": [0.5774, 6.9836], + "EHEa": [0, 5.9836], + "qpo9": [1.1548, 5.9836] + }, + "vertices": ["qpo9", "EHEa", "uXX4"], + "texture": 0 + }, + "4eJ8kTWL": { + "uv": { + "Hf1h": [0, 3.9836], + "AFOM": [1.1548, 3.9836], + "qpo9": [1.1548, 9.9836], + "EHEa": [0, 9.9836] + }, + "vertices": ["EHEa", "qpo9", "AFOM", "Hf1h"], + "texture": 0 + }, + "U1EMdNou": { + "uv": { + "uXX4": [0.5774, 6.9836], + "qpo9": [0, 5.9836], + "xQ7R": [1.1548, 5.9836] + }, + "vertices": ["xQ7R", "qpo9", "uXX4"], + "texture": 0 + }, + "JaWe1p8r": { + "uv": { + "AFOM": [0, 3.9836], + "KviP": [1.1548, 3.9836], + "xQ7R": [1.1548, 9.9836], + "qpo9": [0, 9.9836] + }, + "vertices": ["qpo9", "xQ7R", "KviP", "AFOM"], + "texture": 0 + }, + "MLElNaEL": { + "uv": { + "oTYm": [3, 3.9836], + "jvUa": [4.1547, 3.9836], + "KviP": [3.5774, 4.9836] + }, + "vertices": ["KviP", "jvUa", "oTYm"], + "texture": 0 + }, + "SrTdhUln": { + "uv": { + "oTYm": [3, 4.9836], + "0viC": [3.5774, 3.9836], + "jvUa": [4.1547, 4.9836] + }, + "vertices": ["jvUa", "0viC", "oTYm"], + "texture": 0 + }, + "1B3EpcYx": { + "uv": { + "oTYm": [3.5774, 4.9836], + "bbcG": [3, 3.9836], + "0viC": [4.1548, 3.9836] + }, + "vertices": ["0viC", "bbcG", "oTYm"], + "texture": 0 + }, + "gSUoLh4J": { + "uv": { + "oTYm": [3.5774, 4.9836], + "Hf1h": [3, 3.9836], + "bbcG": [4.1548, 3.9836] + }, + "vertices": ["bbcG", "Hf1h", "oTYm"], + "texture": 0 + }, + "EiJgXwpU": { + "uv": { + "oTYm": [3.5774, 4.9836], + "AFOM": [3, 3.9836], + "Hf1h": [4.1548, 3.9836] + }, + "vertices": ["Hf1h", "AFOM", "oTYm"], + "texture": 0 + }, + "1NM4KFOU": { + "uv": { + "oTYm": [3.5774, 4.9836], + "KviP": [3, 3.9836], + "AFOM": [4.1548, 3.9836] + }, + "vertices": ["AFOM", "KviP", "oTYm"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "fcd91531-57f5-3dad-6808-1c446c0006ae" + }, + { + "name": "cube", + "color": 8, + "origin": [0.91367, 0, -0.15628], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "BtHE": [-3.78, 1.8, 1.8], + "p9SG": [-3.78, 1.8, -0.77143], + "dP2U": [-3.78, 0, 1.8], + "eok7": [-4.5, 0, -0.77143], + "ocfu": [-1.62, 1.8, 1.8], + "vUhB": [-1.62, 1.8, -0.77143], + "EUsg": [-1.62, 0, 1.8], + "oqGO": [-0.9, 0, -0.77143], + "LuHl": [-1.62, 1.8, -2.7], + "xXtl": [-3.78, 1.8, -2.7], + "EDaA": [-1.62, 0, -3.6], + "X2US": [-3.78, 0, -3.6] + }, + "faces": { + "rLMf7opp": { + "uv": { + "dP2U": [0, 27.9836], + "eok7": [0, 25.9836], + "p9SG": [4, 25.9836], + "BtHE": [4, 27.9836] + }, + "vertices": ["BtHE", "p9SG", "eok7", "dP2U"], + "texture": 0 + }, + "lK1uZ4ZU": { + "uv": { + "oqGO": [0, 27.9836], + "EUsg": [0, 25.9836], + "ocfu": [4, 25.9836], + "vUhB": [4, 27.9836] + }, + "vertices": ["vUhB", "ocfu", "EUsg", "oqGO"], + "texture": 0 + }, + "IOcJK5rY": { + "uv": { + "ocfu": [0, 29.9836], + "BtHE": [0, 25.9836], + "p9SG": [3, 25.9836], + "vUhB": [3, 29.9836] + }, + "vertices": ["vUhB", "p9SG", "BtHE", "ocfu"], + "texture": 0 + }, + "TZD9oDhP": { + "uv": { + "oqGO": [0, 29.9836], + "eok7": [0, 25.9836], + "dP2U": [3, 25.9836], + "EUsg": [3, 29.9836] + }, + "vertices": ["EUsg", "dP2U", "eok7", "oqGO"], + "texture": 0 + }, + "h8ImDcMA": { + "uv": { + "EUsg": [0, 27.9836], + "dP2U": [0, 25.9836], + "BtHE": [3, 25.9836], + "ocfu": [3, 27.9836] + }, + "vertices": ["ocfu", "BtHE", "dP2U", "EUsg"], + "texture": 0 + }, + "4tbVDhEo": { + "uv": { + "X2US": [0, 27.9836], + "EDaA": [0, 25.9836], + "LuHl": [3, 25.9836], + "xXtl": [3, 27.9836] + }, + "vertices": ["xXtl", "LuHl", "EDaA", "X2US"], + "texture": 0 + }, + "EtmLgTse": { + "uv": { + "vUhB": [3, 25.9836], + "oqGO": [0, 25.9836], + "LuHl": [3, 27.9836], + "EDaA": [0, 27.9836] + }, + "vertices": ["EDaA", "LuHl", "oqGO", "vUhB"], + "texture": 0 + }, + "iRHEFw0e": { + "uv": { + "p9SG": [3, 28.9836], + "vUhB": [3, 25.9836], + "xXtl": [0, 28.9836], + "LuHl": [0, 25.9836] + }, + "vertices": ["LuHl", "xXtl", "vUhB", "p9SG"], + "texture": 0 + }, + "5H56KX26": { + "uv": { + "eok7": [0, 27.9836], + "p9SG": [3, 27.9836], + "X2US": [0, 25.9836], + "xXtl": [3, 25.9836] + }, + "vertices": ["xXtl", "X2US", "p9SG", "eok7"], + "texture": 0 + }, + "YPxuRqB2": { + "uv": { + "oqGO": [0, 25.9836], + "eok7": [0, 28.9836], + "EDaA": [3, 25.9836], + "X2US": [3, 28.9836] + }, + "vertices": ["X2US", "EDaA", "eok7", "oqGO"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "88ccf0b1-c887-5a42-45aa-2a7eb359c98b" + }, + { + "name": "cube", + "color": 8, + "origin": [0, 24.21, -3.78], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "tkxK": [0.45, 3.42462, 0.51601], + "ECCY": [0.45, 1.12952, -0.93304], + "ZgvY": [0.63, 0.63, 0.9], + "iCyR": [0.63, 0.50549, -0.33026], + "cIz3": [-0.45, 3.42462, 0.51601], + "ZpVa": [-0.45, 1.12952, -0.93304], + "linI": [-0.63, 0.63, 0.9], + "zu4W": [-0.63, 0.50549, -0.33026] + }, + "faces": { + "dlJOkDpI": { + "uv": { + "ZgvY": [0, 4.9836], + "iCyR": [2, 4.9836], + "tkxK": [0, 6.9836], + "ECCY": [2, 6.9836] + }, + "vertices": ["ECCY", "tkxK", "iCyR", "ZgvY"], + "texture": 0 + }, + "XO0XBOJM": { + "uv": { + "zu4W": [0, 4.9836], + "linI": [2, 4.9836], + "ZpVa": [0, 6.9836], + "cIz3": [2, 6.9836] + }, + "vertices": ["cIz3", "ZpVa", "linI", "zu4W"], + "texture": 0 + }, + "z9C8lfjV": { + "uv": { + "cIz3": [0, 7.9836], + "tkxK": [2, 7.9836], + "ZpVa": [0, 5.9836], + "ECCY": [2, 5.9836] + }, + "vertices": ["ECCY", "ZpVa", "tkxK", "cIz3"], + "texture": 0 + }, + "Adj6L1Cx": { + "uv": { + "zu4W": [0, 3.9836], + "iCyR": [2, 3.9836], + "linI": [0, 5.9836], + "ZgvY": [2, 5.9836] + }, + "vertices": ["ZgvY", "linI", "iCyR", "zu4W"], + "texture": 0 + }, + "o9Tb4bFQ": { + "uv": { + "linI": [0, 7.9836], + "ZgvY": [2, 7.9836], + "cIz3": [0, 5.9836], + "tkxK": [2, 5.9836] + }, + "vertices": ["tkxK", "cIz3", "ZgvY", "linI"], + "texture": 0 + }, + "CqQfY0iI": { + "uv": { + "iCyR": [0, 4.9836], + "zu4W": [2, 4.9836], + "ECCY": [0, 6.9836], + "ZpVa": [2, 6.9836] + }, + "vertices": ["ZpVa", "ECCY", "zu4W", "iCyR"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "8cf37dda-a1f4-41c9-00ea-784d1ef19a8d" + }, + { + "name": "cube", + "color": 8, + "origin": [-6.15, 14.7, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "pd2g": [-0.99217, -0.3294, 1.1], + "mmL5": [-0.99217, -0.3294, -1.15], + "rrJj": [-1.30842, -3.15797, 1.1], + "s2jG": [-1.30842, -3.15797, -1.15], + "SQdA": [1.22158, 0.37774, 1.1], + "1I6t": [1.22158, 0.23632, -1.15], + "x97M": [1.22158, -3.15797, 1.1], + "6OCI": [1.22158, -3.15797, -1.15], + "1mAv": [-0.67592, -4.57226, 0.725], + "qLFu": [1.22158, -4.57226, 0.725], + "l2mI": [-0.67592, -4.57226, -0.775], + "0CGp": [1.22158, -4.57226, -0.775], + "Az5f": [1.22158, -1.74368, -1.9], + "cZ9p": [-0.67592, -1.74368, -1.9], + "zqiK": [1.22158, -3.15797, -1.9], + "iXLD": [-0.67592, -3.15797, -1.9], + "kFKb": [-0.99217, -0.3294, -0.5875], + "Jy9D": [-1.30842, -3.15797, -0.5875], + "NjLO": [-0.99217, -0.3294, -0.025], + "EamT": [-1.30842, -3.15797, -0.025], + "4Uw8": [-0.99217, -0.3294, 0.5375], + "E7H1": [-1.30842, -3.15797, 0.5375], + "zNmF": [-0.67592, -4.57226, -0.4], + "I94e": [-0.67592, -4.57226, -0.025], + "lmne": [-0.67592, -4.57226, 0.35], + "81Au": [1.22158, -4.57226, -0.4], + "bkdC": [1.22158, -4.57226, -0.025], + "GJFl": [1.22158, -4.57226, 0.35], + "iA4U": [1.22158, -3.15797, -0.5875], + "IVs2": [1.22158, -3.15797, -0.025], + "wqYW": [1.22158, -3.15797, 0.5375], + "UdID": [1.22158, 0.27167, -0.5875], + "09B4": [1.22158, 0.30703, -0.025], + "azok": [1.22158, 0.34239, 0.5375] + }, + "faces": { + "FKjq113j": { + "uv": { + "pd2g": [3, 8.9836], + "E7H1": [0, 8.4836], + "rrJj": [0, 8.9836], + "4Uw8": [3, 8.4836] + }, + "vertices": ["4Uw8", "rrJj", "E7H1", "pd2g"], + "texture": 0 + }, + "jZ871epm": { + "uv": { + "x97M": [0, 6.9836], + "azok": [3, 7.4836], + "SQdA": [3, 6.9836], + "wqYW": [0, 7.4836] + }, + "vertices": ["wqYW", "SQdA", "azok", "x97M"], + "texture": 0 + }, + "uGJH28Iv": { + "uv": { + "SQdA": [0, 8.9836], + "4Uw8": [0.375, 5.9836], + "pd2g": [0, 5.9836], + "azok": [0.375, 8.9836] + }, + "vertices": ["azok", "pd2g", "4Uw8", "SQdA"], + "texture": 0 + }, + "1nFJZMx2": { + "uv": { + "1mAv": [1.5, 5.9836], + "GJFl": [1.125, 8.9836], + "qLFu": [1.5, 8.9836], + "lmne": [1.125, 5.9836] + }, + "vertices": ["lmne", "qLFu", "GJFl", "1mAv"], + "texture": 0 + }, + "OQgR4dER": { + "uv": { + "x97M": [0, 8.9836], + "rrJj": [0, 6.9836], + "pd2g": [1.5, 6.9836], + "SQdA": [1.5, 8.9836] + }, + "vertices": ["SQdA", "pd2g", "rrJj", "x97M"], + "texture": 0 + }, + "UN1JDrWQ": { + "uv": { + "iXLD": [0, 8.9836], + "zqiK": [0, 6.9836], + "Az5f": [1.5, 6.9836], + "cZ9p": [1.5, 8.9836] + }, + "vertices": ["cZ9p", "Az5f", "zqiK", "iXLD"], + "texture": 0 + }, + "XyxwRClU": { + "uv": { + "rrJj": [0, 5.9836], + "lmne": [3, 6.2336], + "1mAv": [3, 5.9836], + "E7H1": [0, 6.2336] + }, + "vertices": ["E7H1", "1mAv", "lmne", "rrJj"], + "texture": 0 + }, + "Ilz3SEts": { + "uv": { + "x97M": [0, 5.9836], + "rrJj": [0, 6.9836], + "qLFu": [1.5, 5.9836], + "1mAv": [1.5, 6.9836] + }, + "vertices": ["1mAv", "qLFu", "rrJj", "x97M"], + "texture": 0 + }, + "Cchw1LL2": { + "uv": { + "qLFu": [3, 6.9836], + "wqYW": [0, 6.7336], + "x97M": [0, 6.9836], + "GJFl": [3, 6.7336] + }, + "vertices": ["GJFl", "x97M", "wqYW", "qLFu"], + "texture": 0 + }, + "n2rwk4ci": { + "uv": { + "s2jG": [0, 6.9836], + "6OCI": [0, 7.9836], + "l2mI": [1.5, 6.9836], + "0CGp": [1.5, 7.9836] + }, + "vertices": ["0CGp", "l2mI", "6OCI", "s2jG"], + "texture": 0 + }, + "O5Z8kx5g": { + "uv": { + "1I6t": [2, 6.9836], + "6OCI": [1, 6.9836], + "Az5f": [2, 8.9836], + "zqiK": [1, 8.9836] + }, + "vertices": ["zqiK", "Az5f", "6OCI", "1I6t"], + "texture": 0 + }, + "4RYNouH5": { + "uv": { + "mmL5": [1.5, 6.9836], + "1I6t": [1.5, 5.9836], + "cZ9p": [0, 6.9836], + "Az5f": [0, 5.9836] + }, + "vertices": ["Az5f", "cZ9p", "1I6t", "mmL5"], + "texture": 0 + }, + "TW0YxAz3": { + "uv": { + "s2jG": [0, 8.9836], + "mmL5": [1, 8.9836], + "iXLD": [0, 6.9836], + "cZ9p": [1, 6.9836] + }, + "vertices": ["cZ9p", "iXLD", "mmL5", "s2jG"], + "texture": 0 + }, + "2zYxvLvJ": { + "uv": { + "6OCI": [0, 5.9836], + "s2jG": [0, 6.9836], + "zqiK": [1.5, 5.9836], + "iXLD": [1.5, 6.9836] + }, + "vertices": ["iXLD", "zqiK", "s2jG", "6OCI"], + "texture": 0 + }, + "BKf5NSMf": { + "uv": { + "s2jG": [0, 4.9836], + "Jy9D": [0, 5.9836], + "mmL5": [3, 4.9836], + "kFKb": [3, 5.9836] + }, + "vertices": ["kFKb", "mmL5", "Jy9D", "s2jG"], + "texture": 0 + }, + "JpNiYA3G": { + "uv": { + "Jy9D": [0, 7.4836], + "EamT": [0, 7.9836], + "kFKb": [3, 7.4836], + "NjLO": [3, 7.9836] + }, + "vertices": ["NjLO", "kFKb", "EamT", "Jy9D"], + "texture": 0 + }, + "GdpzZg9a": { + "uv": { + "EamT": [0, 6.31693], + "E7H1": [0, 6.4836], + "NjLO": [3, 6.31693], + "4Uw8": [3, 6.4836] + }, + "vertices": ["4Uw8", "NjLO", "E7H1", "EamT"], + "texture": 0 + }, + "TlsMHfmZ": { + "uv": { + "l2mI": [3, 5.31693], + "zNmF": [3, 5.2336], + "s2jG": [0, 5.31693], + "Jy9D": [0, 5.2336] + }, + "vertices": ["Jy9D", "s2jG", "zNmF", "l2mI"], + "texture": 0 + }, + "aqKhnRXQ": { + "uv": { + "zNmF": [3, 6.7336], + "I94e": [3, 6.4836], + "Jy9D": [0, 6.7336], + "EamT": [0, 6.4836] + }, + "vertices": ["EamT", "Jy9D", "I94e", "zNmF"], + "texture": 0 + }, + "63v75zR5": { + "uv": { + "I94e": [3, 5.15027], + "lmne": [3, 5.06693], + "EamT": [0, 5.15027], + "E7H1": [0, 5.06693] + }, + "vertices": ["E7H1", "EamT", "lmne", "I94e"], + "texture": 0 + }, + "EMdhJPKA": { + "uv": { + "0CGp": [0, 5.9836], + "81Au": [0.375, 5.9836], + "l2mI": [0, 4.9836], + "zNmF": [0.375, 4.9836] + }, + "vertices": ["zNmF", "l2mI", "81Au", "0CGp"], + "texture": 0 + }, + "mbMoevDt": { + "uv": { + "81Au": [0.375, 8.9836], + "bkdC": [0.75, 8.9836], + "zNmF": [0.375, 5.9836], + "I94e": [0.75, 5.9836] + }, + "vertices": ["I94e", "zNmF", "bkdC", "81Au"], + "texture": 0 + }, + "x0VSEKNp": { + "uv": { + "bkdC": [0.75, 5.9836], + "GJFl": [1.125, 5.9836], + "I94e": [0.75, 4.9836], + "lmne": [1.125, 4.9836] + }, + "vertices": ["lmne", "I94e", "GJFl", "bkdC"], + "texture": 0 + }, + "JxgfCy0i": { + "uv": { + "6OCI": [0, 4.9836], + "iA4U": [0, 5.06693], + "0CGp": [3, 4.9836], + "81Au": [3, 5.06693] + }, + "vertices": ["81Au", "0CGp", "iA4U", "6OCI"], + "texture": 0 + }, + "QyoKJJph": { + "uv": { + "iA4U": [0, 6.2336], + "IVs2": [0, 6.4836], + "81Au": [3, 6.2336], + "bkdC": [3, 6.4836] + }, + "vertices": ["bkdC", "81Au", "IVs2", "iA4U"], + "texture": 0 + }, + "Lk3hmryg": { + "uv": { + "IVs2": [0, 5.15027], + "wqYW": [0, 5.2336], + "bkdC": [3, 5.15027], + "GJFl": [3, 5.2336] + }, + "vertices": ["GJFl", "bkdC", "wqYW", "IVs2"], + "texture": 0 + }, + "pJI3WqXz": { + "uv": { + "1I6t": [3, 6.65027], + "UdID": [3, 6.4836], + "6OCI": [0, 6.65027], + "iA4U": [0, 6.4836] + }, + "vertices": ["iA4U", "6OCI", "UdID", "1I6t"], + "texture": 0 + }, + "h7pymN6Y": { + "uv": { + "UdID": [3, 8.4836], + "09B4": [3, 7.9836], + "iA4U": [0, 8.4836], + "IVs2": [0, 7.9836] + }, + "vertices": ["IVs2", "iA4U", "09B4", "UdID"], + "texture": 0 + }, + "bDYNAwsd": { + "uv": { + "09B4": [3, 6.31693], + "azok": [3, 6.15027], + "IVs2": [0, 6.31693], + "wqYW": [0, 6.15027] + }, + "vertices": ["wqYW", "IVs2", "azok", "09B4"], + "texture": 0 + }, + "q4OUrDWP": { + "uv": { + "mmL5": [1.5, 4.9836], + "kFKb": [1.125, 4.9836], + "1I6t": [1.5, 5.9836], + "UdID": [1.125, 5.9836] + }, + "vertices": ["UdID", "1I6t", "kFKb", "mmL5"], + "texture": 0 + }, + "tdhfravm": { + "uv": { + "kFKb": [1.125, 5.9836], + "NjLO": [0.75, 5.9836], + "UdID": [1.125, 8.9836], + "09B4": [0.75, 8.9836] + }, + "vertices": ["09B4", "UdID", "NjLO", "kFKb"], + "texture": 0 + }, + "aBr6k8lJ": { + "uv": { + "NjLO": [0.75, 4.9836], + "4Uw8": [0.375, 4.9836], + "09B4": [0.75, 5.9836], + "azok": [0.375, 5.9836] + }, + "vertices": ["azok", "09B4", "4Uw8", "NjLO"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "58a66c62-16cb-55b7-2195-1e1a1280b174" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-3.6, 26.73, -1.71], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "8bfM": [0.495, -0.40249, 0], + "Kvjd": [0.495, -0.40249, -0.9], + "USVQ": [1.05866, -1.35, 0], + "HXhU": [1.05866, -1.35, -0.9], + "UZWq": [1.40702, -0.04057, 0], + "axTi": [1.40702, -0.04057, -0.9], + "tgyO": [0.495, 0.76869, 0], + "Ib2Y": [0.495, 0.76869, -0.9], + "FTwV": [-0.41702, -0.04057, 0], + "O5S9": [-0.41702, -0.04057, -0.9], + "5xC8": [-0.06866, -1.35, 0], + "tls7": [-0.06866, -1.35, -0.9] + }, + "faces": { + "91nAa0xC": { + "uv": { + "8bfM": [0, 10.07337], + "UZWq": [1.50002, 11.1632], + "USVQ": [1.50002, 8.9836] + }, + "vertices": ["USVQ", "UZWq", "8bfM"], + "texture": 0 + }, + "9ZKH0lG6": { + "uv": { + "HXhU": [0, 8.9836], + "axTi": [2.1796, 8.9836], + "USVQ": [0, 10.9836], + "UZWq": [2.1796, 10.9836] + }, + "vertices": ["UZWq", "USVQ", "axTi", "HXhU"], + "texture": 0 + }, + "RGmcX1UG": { + "uv": { + "Kvjd": [4.50306, 4.9836], + "HXhU": [5.06639, 6.75008], + "axTi": [2.16591, 6.75008] + }, + "vertices": ["axTi", "HXhU", "Kvjd"], + "texture": 0 + }, + "hURkvpYa": { + "uv": { + "8bfM": [0, 6.747], + "tgyO": [1.8541, 6.747], + "UZWq": [0.8729, 3.9836] + }, + "vertices": ["UZWq", "tgyO", "8bfM"], + "texture": 0 + }, + "WyrjtDC7": { + "uv": { + "axTi": [0, 8.9836], + "Ib2Y": [2.1796, 8.9836], + "UZWq": [0, 10.9836], + "tgyO": [2.1796, 10.9836] + }, + "vertices": ["tgyO", "UZWq", "Ib2Y", "axTi"], + "texture": 0 + }, + "acbFBVuv": { + "uv": { + "Kvjd": [4.50306, 4.9836], + "axTi": [5.06639, 6.75008], + "Ib2Y": [2.16591, 6.75008] + }, + "vertices": ["Ib2Y", "axTi", "Kvjd"], + "texture": 0 + }, + "lyFWiRhd": { + "uv": { + "8bfM": [0, 6.747], + "FTwV": [1.8541, 6.747], + "tgyO": [0.8729, 3.9836] + }, + "vertices": ["tgyO", "FTwV", "8bfM"], + "texture": 0 + }, + "wjezwsCE": { + "uv": { + "Ib2Y": [0, 8.9836], + "O5S9": [2.1796, 8.9836], + "tgyO": [0, 10.9836], + "FTwV": [2.1796, 10.9836] + }, + "vertices": ["FTwV", "tgyO", "O5S9", "Ib2Y"], + "texture": 0 + }, + "j57EBA6J": { + "uv": { + "Kvjd": [4.50306, 4.9836], + "Ib2Y": [5.06639, 6.75008], + "O5S9": [2.16591, 6.75008] + }, + "vertices": ["O5S9", "Ib2Y", "Kvjd"], + "texture": 0 + }, + "vcbsA7yR": { + "uv": { + "8bfM": [1.85413, 10.74693], + "5xC8": [1.28114, 8.9836], + "FTwV": [0, 10.74693] + }, + "vertices": ["FTwV", "5xC8", "8bfM"], + "texture": 0 + }, + "lYJAyjcC": { + "uv": { + "O5S9": [0, 8.9836], + "tls7": [2.1796, 8.9836], + "FTwV": [0, 10.9836], + "5xC8": [2.1796, 10.9836] + }, + "vertices": ["5xC8", "FTwV", "tls7", "O5S9"], + "texture": 0 + }, + "dswA4ncI": { + "uv": { + "Kvjd": [4.50306, 4.9836], + "O5S9": [5.06639, 6.75008], + "tls7": [2.16591, 6.75008] + }, + "vertices": ["tls7", "O5S9", "Kvjd"], + "texture": 0 + }, + "x4e93Rac": { + "uv": { + "8bfM": [1.0898, 10.4836], + "USVQ": [2.1796, 8.9836], + "5xC8": [0, 8.9836] + }, + "vertices": ["5xC8", "USVQ", "8bfM"], + "texture": 0 + }, + "TtnpSvW1": { + "uv": { + "tls7": [0, 8.9836], + "HXhU": [2.1796, 8.9836], + "5xC8": [0, 10.9836], + "USVQ": [2.1796, 10.9836] + }, + "vertices": ["USVQ", "5xC8", "HXhU", "tls7"], + "texture": 0 + }, + "royATjFd": { + "uv": { + "Kvjd": [4.50306, 4.9836], + "tls7": [5.06639, 6.75008], + "HXhU": [2.16591, 6.75008] + }, + "vertices": ["HXhU", "tls7", "Kvjd"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "13b888c6-ccc6-3eba-eac8-25aa02e3ae0a" + }, + { + "name": "cylinder", + "color": 2, + "origin": [0, 10.8, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "ITSp": [0, 3.15, 0.45], + "Nvu6": [3.11346, -1.8, 4.5], + "RrBX": [2.53136, 3.15, 3.38625], + "iPyJ": [6.22692, -1.8, 0.45], + "0Y79": [5.0627, 3.15, 0.45], + "eigQ": [3.11346, -1.8, -3.6], + "Xvb6": [2.53136, 3.15, -2.48625], + "5Dmg": [-3.11346, -1.8, -3.6], + "AtQi": [-2.53136, 3.15, -2.48625], + "eaBi": [-6.22692, -1.8, 0.45], + "2g3l": [-5.0627, 3.15, 0.45], + "ztoH": [-3.11346, -1.8, 4.5], + "sPHf": [-2.53136, 3.15, 3.38625], + "FbI5": [-2.33509, -1.8, -2.5875], + "gG1t": [2.3351, -1.8, -2.5875], + "cDOV": [4.67019, -1.8, 0.45], + "LmQd": [2.3351, -1.8, 3.4875], + "vun5": [-2.33509, -1.8, 3.4875], + "yR3f": [-4.67019, -1.8, 0.45], + "eaV1": [-2.33509, -0.45, -2.5875], + "tN6F": [2.3351, -0.45, -2.5875], + "klLY": [0, -0.45, 0.45], + "rCTa": [4.67019, -0.45, 0.45], + "pXeQ": [2.3351, -0.45, 3.4875], + "8ZDb": [-2.33509, -0.45, 3.4875], + "bcxb": [-4.67019, -0.45, 0.45] + }, + "faces": { + "bxrwCLzy": { + "uv": { + "klLY": [0, 57.99286], + "pXeQ": [5.8571, 51.46508], + "rCTa": [11.71399, 57.99286] + }, + "vertices": ["rCTa", "pXeQ", "klLY"], + "texture": 0 + }, + "V9FyZeSc": { + "uv": { + "RrBX": [1.52502, 35.96623], + "0Y79": [10.09378, 35.96623], + "iPyJ": [11.6188, 47.6082], + "Nvu6": [0, 47.6082] + }, + "vertices": ["Nvu6", "iPyJ", "0Y79", "RrBX"], + "texture": 0 + }, + "OQQuJfT4": { + "uv": { + "ITSp": [9.6188, 35.9836], + "0Y79": [4.8094, 47.9836], + "RrBX": [0, 35.9836] + }, + "vertices": ["RrBX", "0Y79", "ITSp"], + "texture": 0 + }, + "SPlMr3Na": { + "uv": { + "klLY": [0, 47.9836], + "rCTa": [11.71399, 47.9836], + "tN6F": [5.8571, 54.51138] + }, + "vertices": ["tN6F", "rCTa", "klLY"], + "texture": 0 + }, + "0ruZX02Z": { + "uv": { + "0Y79": [1.52502, 35.96623], + "Xvb6": [10.09378, 35.96623], + "eigQ": [11.6188, 47.6082], + "iPyJ": [0, 47.6082] + }, + "vertices": ["iPyJ", "eigQ", "Xvb6", "0Y79"], + "texture": 0 + }, + "ulXhCvEk": { + "uv": { + "ITSp": [4.8094, 35.9836], + "Xvb6": [9.6188, 47.9836], + "0Y79": [0, 47.9836] + }, + "vertices": ["0Y79", "Xvb6", "ITSp"], + "texture": 0 + }, + "DU8KihLn": { + "uv": { + "klLY": [5.8571, 53.20582], + "tN6F": [11.7142, 59.7336], + "eaV1": [0, 59.7336] + }, + "vertices": ["eaV1", "tN6F", "klLY"], + "texture": 0 + }, + "XWzjVFrf": { + "uv": { + "Xvb6": [1.52502, 35.96623], + "AtQi": [10.09378, 35.96623], + "5Dmg": [11.6188, 47.6082], + "eigQ": [0, 47.6082] + }, + "vertices": ["eigQ", "5Dmg", "AtQi", "Xvb6"], + "texture": 0 + }, + "w9jFffcg": { + "uv": { + "ITSp": [0, 35.9836], + "AtQi": [9.6188, 35.9836], + "Xvb6": [4.8094, 47.9836] + }, + "vertices": ["Xvb6", "AtQi", "ITSp"], + "texture": 0 + }, + "K2cLYEBb": { + "uv": { + "klLY": [11.71399, 47.9836], + "eaV1": [5.85689, 54.51138], + "bcxb": [0, 47.9836] + }, + "vertices": ["bcxb", "eaV1", "klLY"], + "texture": 0 + }, + "kG34slMj": { + "uv": { + "AtQi": [1.52502, 35.96623], + "2g3l": [10.09378, 35.96623], + "eaBi": [11.6188, 47.6082], + "5Dmg": [0, 47.6082] + }, + "vertices": ["5Dmg", "eaBi", "2g3l", "AtQi"], + "texture": 0 + }, + "8ihFMEJy": { + "uv": { + "ITSp": [0, 47.9836], + "2g3l": [4.8094, 35.9836], + "AtQi": [9.6188, 47.9836] + }, + "vertices": ["AtQi", "2g3l", "ITSp"], + "texture": 0 + }, + "UjD7vhy7": { + "uv": { + "klLY": [11.71399, 57.99286], + "bcxb": [0, 57.99286], + "8ZDb": [5.85689, 51.46508] + }, + "vertices": ["8ZDb", "bcxb", "klLY"], + "texture": 0 + }, + "SDLqZtLt": { + "uv": { + "2g3l": [1.52502, 35.96623], + "sPHf": [10.09378, 35.96623], + "ztoH": [11.6188, 47.6082], + "eaBi": [0, 47.6082] + }, + "vertices": ["eaBi", "ztoH", "sPHf", "2g3l"], + "texture": 0 + }, + "EdMUBDM6": { + "uv": { + "ITSp": [4.8094, 47.9836], + "sPHf": [0, 35.9836], + "2g3l": [9.6188, 35.9836] + }, + "vertices": ["2g3l", "sPHf", "ITSp"], + "texture": 0 + }, + "cMbGsGyo": { + "uv": { + "klLY": [5.8571, 54.51138], + "8ZDb": [0, 47.9836], + "pXeQ": [11.7142, 47.9836] + }, + "vertices": ["pXeQ", "8ZDb", "klLY"], + "texture": 0 + }, + "jFTliP3X": { + "uv": { + "sPHf": [1.52502, 35.96623], + "RrBX": [10.09378, 35.96623], + "Nvu6": [11.6188, 47.6082], + "ztoH": [0, 47.6082] + }, + "vertices": ["ztoH", "Nvu6", "RrBX", "sPHf"], + "texture": 0 + }, + "bxf4msRu": { + "uv": { + "ITSp": [9.6188, 47.9836], + "RrBX": [0, 47.9836], + "sPHf": [4.8094, 35.9836] + }, + "vertices": ["sPHf", "RrBX", "ITSp"], + "texture": 0 + }, + "sxvMJH49": { + "uv": { + "eigQ": [7.6188, 43.2336], + "5Dmg": [0, 43.2336], + "FbI5": [0.9523, 41.9836], + "gG1t": [6.6665, 41.9836] + }, + "vertices": ["gG1t", "FbI5", "5Dmg", "eigQ"], + "texture": 0 + }, + "eqZO2G0m": { + "uv": { + "iPyJ": [6.28582, 43.49869], + "eigQ": [0, 43.49863], + "gG1t": [0.41719, 41.9836], + "cDOV": [5.13153, 41.9836] + }, + "vertices": ["cDOV", "gG1t", "eigQ", "iPyJ"], + "texture": 0 + }, + "WzKqxyO5": { + "uv": { + "Nvu6": [6.51503, 39.9836], + "iPyJ": [6.51509, 46.26942], + "cDOV": [5, 45.11513], + "LmQd": [5, 40.40079] + }, + "vertices": ["LmQd", "cDOV", "iPyJ", "Nvu6"], + "texture": 0 + }, + "dxcKcdd6": { + "uv": { + "ztoH": [3, 40.9836], + "Nvu6": [10.6188, 40.9836], + "LmQd": [9.6665, 42.2336], + "vun5": [3.9523, 42.2336] + }, + "vertices": ["vun5", "LmQd", "Nvu6", "ztoH"], + "texture": 0 + }, + "WVrgpPxW": { + "uv": { + "eaBi": [4, 40.9836], + "ztoH": [10.28582, 40.98365], + "vun5": [9.86863, 42.49869], + "yR3f": [5.15429, 42.49869] + }, + "vertices": ["yR3f", "vun5", "ztoH", "eaBi"], + "texture": 0 + }, + "QseuJ9JX": { + "uv": { + "5Dmg": [4.00005, 38.26942], + "eaBi": [4, 31.9836], + "yR3f": [5.51509, 33.13789], + "FbI5": [5.51509, 37.85223] + }, + "vertices": ["FbI5", "yR3f", "eaBi", "5Dmg"], + "texture": 0 + }, + "aqWuqrqN": { + "uv": { + "gG1t": [0, 56.9836], + "FbI5": [11.7141, 56.9836], + "eaV1": [11.7141, 59.9836], + "tN6F": [0, 59.9836] + }, + "vertices": ["tN6F", "eaV1", "FbI5", "gG1t"], + "texture": 0 + }, + "yTBPAKrY": { + "uv": { + "cDOV": [2.05, 50.9836], + "gG1t": [11.7143, 50.9836], + "tN6F": [11.7143, 53.9836], + "rCTa": [2.05, 53.9836] + }, + "vertices": ["rCTa", "tN6F", "gG1t", "cDOV"], + "texture": 0 + }, + "rer2pNQY": { + "uv": { + "LmQd": [2.05, 53.9836], + "cDOV": [11.7143, 53.9836], + "rCTa": [11.7143, 56.9836], + "pXeQ": [2.05, 56.9836] + }, + "vertices": ["pXeQ", "rCTa", "cDOV", "LmQd"], + "texture": 0 + }, + "Hl4STh0d": { + "uv": { + "vun5": [0, 47.9836], + "LmQd": [11.7141, 47.9836], + "pXeQ": [11.7141, 50.9836], + "8ZDb": [0, 50.9836] + }, + "vertices": ["8ZDb", "pXeQ", "LmQd", "vun5"], + "texture": 0 + }, + "K2K6NWmV": { + "uv": { + "yR3f": [0, 53.9836], + "vun5": [9.6643, 53.9836], + "8ZDb": [9.6643, 56.9836], + "bcxb": [0, 56.9836] + }, + "vertices": ["bcxb", "8ZDb", "vun5", "yR3f"], + "texture": 0 + }, + "AaGZZNOw": { + "uv": { + "FbI5": [0, 50.9836], + "yR3f": [9.6643, 50.9836], + "bcxb": [9.6643, 53.9836], + "eaV1": [0, 53.9836] + }, + "vertices": ["eaV1", "bcxb", "yR3f", "FbI5"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "46e46f49-fca6-eb7f-d115-7473d8719233" + }, + { + "name": "neutral", + "color": 8, + "origin": [0, 25.245, -3.78], + "rotation": [2.5, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "zyRr": [3.42443, 2.88, -0.01809], + "ooTR": [3.42443, 0, -0.01809], + "73OG": [-3.38855, 2.88, -0.01812], + "HXoH": [-3.38855, 0, -0.01812], + "fJPg": [-0.05908, 0, -0.68839], + "ujQW": [-0.05908, 2.88, -0.68839] + }, + "faces": { + "ygbaDk3h": { + "uv": { + "HXoH": [12, 24], + "ujQW": [24, 12], + "fJPg": [24, 24], + "73OG": [12, 12] + }, + "vertices": ["73OG", "fJPg", "ujQW", "HXoH"], + "texture": 0 + }, + "QOPlDywE": { + "uv": { + "zyRr": [12, 12], + "ujQW": [24, 12], + "fJPg": [24, 24], + "ooTR": [12, 24] + }, + "vertices": ["ooTR", "fJPg", "ujQW", "zyRr"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "8dee770f-2330-9d98-92fa-7c0c3210c4fd" + }, + { + "name": "circle", + "color": 8, + "origin": [-1.26, 26.37, -3.87], + "rotation": [-90, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "QlBo": [-0.48991, -0.00219, 0.22539], + "FP9N": [-1.19526, -0.11927, 1.55103], + "lUGq": [-1.97384, -0.17814, 0.16592], + "ro66": [-1.26809, -0.12511, -1.05129], + "Usga": [0.21544, 0.11489, -1.10026], + "GyQD": [0.99362, 0.23782, 0.17642], + "sKKe": [0.28826, 0.12074, 1.50206], + "gp6k": [3.71712, -0.12004, 1.55117], + "vTgM": [3.78994, -0.12589, -1.05115], + "IXDG": [2.30639, 0.11411, -1.10012], + "82YR": [1.52822, 0.23704, 0.17655], + "p7xK": [2.23358, 0.11996, 1.5022], + "1CcK": [0.83122, 0.16318, 0.52527], + "zLaG": [1.69062, 0.1624, 0.52542], + "BVQ2": [-1.69017, -0.1204, 0.86226], + "hOxT": [-1.47135, -2.83723, 0.77308], + "DUmR": [-1.72577, -2.84914, 0.16754], + "ijmy": [3.99135, -2.80315, 0.81459], + "B9AS": [4.24577, -2.85484, 0.20997], + "mmJQ": [3.01175, -0.00296, 0.22552], + "49hN": [4.49549, -0.20233, 0.2568], + "qMSp": [4.15912, -0.16726, 0.92424] + }, + "faces": { + "MOKUwzxs": { + "uv": { + "QlBo": [29.1547, 15.9836], + "lUGq": [28, 21.9836], + "ro66": [30.3094, 21.9836] + }, + "vertices": ["ro66", "lUGq", "QlBo"], + "texture": 0 + }, + "51YiqX10": { + "uv": { + "lUGq": [33, 23], + "BVQ2": [31, 21], + "hOxT": [26, 21], + "DUmR": [28, 23] + }, + "vertices": ["DUmR", "hOxT", "BVQ2", "lUGq"], + "texture": 0 + }, + "2pIUB8ES": { + "uv": { + "QlBo": [29.1547, 15.9836], + "ro66": [28, 21.9836], + "Usga": [30.3094, 21.9836] + }, + "vertices": ["Usga", "ro66", "QlBo"], + "texture": 0 + }, + "ZK7NKOeF": { + "uv": { + "QlBo": [29.1547, 15.9836], + "Usga": [28, 21.9836], + "GyQD": [30.3094, 21.9836] + }, + "vertices": ["GyQD", "Usga", "QlBo"], + "texture": 0 + }, + "wR8umpUu": { + "uv": { + "QlBo": [29.1547, 18.2836], + "sKKe": [28, 13.2836], + "FP9N": [30.3094, 13.2836] + }, + "vertices": ["FP9N", "sKKe", "QlBo"], + "texture": 0 + }, + "H6VP4Ksv": { + "uv": { + "mmJQ": [29.1547, 15.9836], + "IXDG": [30.3094, 21.9836], + "vTgM": [28, 21.9836] + }, + "vertices": ["vTgM", "IXDG", "mmJQ"], + "texture": 0 + }, + "wJyfxrMY": { + "uv": { + "GyQD": [28.1547, 13.2836], + "QlBo": [30, 18.2836], + "1CcK": [28, 13.2836], + "sKKe": [30.3094, 13.2836] + }, + "vertices": ["sKKe", "1CcK", "QlBo", "GyQD"], + "texture": 0 + }, + "DIF8u6Nx": { + "uv": { + "p7xK": [28, 13.2836], + "mmJQ": [30.5, 18.2836], + "zLaG": [28, 13.2836], + "82YR": [30.5, 13.2836] + }, + "vertices": ["82YR", "zLaG", "mmJQ", "p7xK"], + "texture": 0 + }, + "Y3MIAtYU": { + "uv": { + "49hN": [33, 23], + "qMSp": [31, 21], + "B9AS": [28, 23], + "ijmy": [26, 21] + }, + "vertices": ["ijmy", "B9AS", "qMSp", "49hN"], + "texture": 0 + }, + "m5Ei64ON": { + "uv": { + "lUGq": [28, 13.2836], + "QlBo": [30.5, 18.2836], + "FP9N": [30.5, 13.2836], + "BVQ2": [28, 13.2836] + }, + "vertices": ["BVQ2", "FP9N", "QlBo", "lUGq"], + "texture": 0 + }, + "JXbA3fJc": { + "uv": { + "mmJQ": [29.1547, 15.9836], + "82YR": [30.3094, 21.9836], + "IXDG": [28, 21.9836] + }, + "vertices": ["IXDG", "82YR", "mmJQ"], + "texture": 0 + }, + "tMb37bkc": { + "uv": { + "1CcK": [25, 21.3173], + "GyQD": [25.52825, 20.9836], + "82YR": [26.03255, 20.9836], + "zLaG": [26.5608, 21.3173] + }, + "vertices": ["zLaG", "82YR", "GyQD", "1CcK"], + "texture": 0 + }, + "6XGDzFgh": { + "uv": { + "mmJQ": [29.1547, 15.9836], + "vTgM": [30.3094, 21.9836], + "49hN": [28, 21.9836] + }, + "vertices": ["49hN", "vTgM", "mmJQ"], + "texture": 0 + }, + "ZQX1Mu9J": { + "uv": { + "mmJQ": [30.5, 18.2836], + "gp6k": [28, 13.2836], + "p7xK": [30.5, 13.2836] + }, + "vertices": ["p7xK", "gp6k", "mmJQ"], + "texture": 0 + }, + "57qo5ODz": { + "uv": { + "49hN": [28, 13.2836], + "mmJQ": [30.5, 18.2836], + "qMSp": [28, 13.2836], + "gp6k": [30.5, 13.2836] + }, + "vertices": ["gp6k", "qMSp", "mmJQ", "49hN"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "f2ee2225-6cf0-0d4a-cde5-856d38b66daa" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-5.04375, 18.26353, -0.0135], + "rotation": [0, 0, -10], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "4WRs": [0.51754, -2.42797, 0.1485], + "hwjg": [-0.49831, -1.90803, 2.25225], + "ZISf": [-0.84896, 2.93586, 1.72632], + "ryg1": [-1.51418, -1.90803, 0.1485], + "Jq92": [-1.45551, 2.93586, 0.1485], + "rilX": [-0.49831, -1.90803, -1.95525], + "iCDk": [-0.84896, 2.93586, -1.42932], + "v1hz": [1.53339, -1.90803, -1.95525], + "UN0m": [1.12407, 3.29155, -1.42932], + "92Ln": [2.54925, -1.90803, 0.1485], + "uZrh": [1.73063, 3.29155, 0.1485], + "bftR": [1.53339, -1.90803, 2.25225], + "ORyy": [1.12407, 3.29155, 1.72632], + "9zIy": [0.51754, 3.8115, 0.1485], + "zVQ5": [-0.08899, 3.8115, 0.1485], + "Lrul": [0.21425, 3.8115, 0.93743], + "Sltx": [0.82082, 3.8115, 0.93743], + "l955": [1.12411, 3.8115, 0.1485], + "ovht": [0.82082, 3.8115, -0.64043], + "12zS": [0.21425, 3.8115, -0.64043], + "jS6F": [0.11318, -2.42797, 1.20035], + "IKHl": [-0.29121, -2.42797, 0.1485], + "srzj": [0.11316, -2.42797, -0.9034], + "TZsM": [0.92192, -2.42797, -0.9034], + "n74E": [1.32629, -2.42797, 0.1485], + "AgKl": [0.92192, -2.42797, 1.2004] + }, + "faces": { + "sGCABgEN": { + "uv": { + "hwjg": [3.3516, 30.1401], + "IKHl": [1.4433, 31.4211], + "jS6F": [2.5815, 31.4211], + "ryg1": [1, 29.9836] + }, + "vertices": ["ryg1", "jS6F", "IKHl", "hwjg"], + "texture": 0 + }, + "sWWfgk4K": { + "uv": { + "ZISf": [8.00293, 29.68519], + "Jq92": [7.99834, 27.9836], + "hwjg": [0.00761, 30.34339], + "ryg1": [0, 27.9836] + }, + "vertices": ["ryg1", "hwjg", "Jq92", "ZISf"], + "texture": 0 + }, + "QNUAKYIT": { + "uv": { + "Jq92": [1, 28.9202], + "Lrul": [2.349, 26.9836], + "zVQ5": [1.4953, 26.9836], + "ZISf": [2.7075, 28.9202] + }, + "vertices": ["ZISf", "zVQ5", "Lrul", "Jq92"], + "texture": 0 + }, + "BRnWTTQ7": { + "uv": { + "ryg1": [2.3517, 27.9836], + "srzj": [0.7701, 29.4153], + "IKHl": [1.9085, 29.4153], + "rilX": [0, 28.1291] + }, + "vertices": ["rilX", "IKHl", "srzj", "ryg1"], + "texture": 0 + }, + "USWUQ28I": { + "uv": { + "Jq92": [2.334, 25.9851], + "iCDk": [0.6324, 25.9836], + "ryg1": [2.3597, 33.9822], + "rilX": [0, 33.9822] + }, + "vertices": ["rilX", "ryg1", "iCDk", "Jq92"], + "texture": 0 + }, + "telwhUl5": { + "uv": { + "iCDk": [1, 31.9202], + "zVQ5": [2.2123, 29.9836], + "12zS": [1.3585, 29.9836], + "Jq92": [2.7075, 31.9202] + }, + "vertices": ["Jq92", "12zS", "zVQ5", "iCDk"], + "texture": 0 + }, + "Y0oRikhE": { + "uv": { + "rilX": [2.0522, 31.9836], + "TZsM": [0.6177, 33.3496], + "srzj": [1.4346, 33.3496], + "v1hz": [0, 31.9836] + }, + "vertices": ["v1hz", "srzj", "TZsM", "rilX"], + "texture": 0 + }, + "M1vklvUl": { + "uv": { + "iCDk": [8.122, 31.00235], + "UN0m": [8.61183, 28.9836], + "rilX": [0.09854, 31.03343], + "v1hz": [0, 28.9836] + }, + "vertices": ["v1hz", "rilX", "UN0m", "iCDk"], + "texture": 0 + }, + "ZVE21JMg": { + "uv": { + "UN0m": [1, 27.1202], + "12zS": [1.919, 25.9836], + "ovht": [1.3063, 25.9836], + "iCDk": [2.9929, 27.6345] + }, + "vertices": ["iCDk", "ovht", "12zS", "UN0m"], + "texture": 0 + }, + "L0SUV83I": { + "uv": { + "v1hz": [2.3517, 27.1402], + "n74E": [0.4433, 28.4212], + "TZsM": [1.5816, 28.4212], + "92Ln": [0, 26.9836] + }, + "vertices": ["92Ln", "TZsM", "n74E", "v1hz"], + "texture": 0 + }, + "R3T6mLRW": { + "uv": { + "UN0m": [2.0612, 24.9958], + "uZrh": [0.3596, 24.9836], + "v1hz": [2.3598, 33.6013], + "92Ln": [0, 33.6013] + }, + "vertices": ["92Ln", "v1hz", "uZrh", "UN0m"], + "texture": 0 + }, + "ttIS0sst": { + "uv": { + "uZrh": [0, 31.0152], + "ovht": [1.0736, 29.9836], + "l955": [0.2199, 29.9836], + "UN0m": [1.7075, 31.0152] + }, + "vertices": ["UN0m", "l955", "ovht", "uZrh"], + "texture": 0 + }, + "dQPt3CZa": { + "uv": { + "92Ln": [2.3516, 29.9836], + "AgKl": [0.7701, 31.4152], + "n74E": [1.9084, 31.4152], + "bftR": [0, 30.129] + }, + "vertices": ["bftR", "n74E", "AgKl", "92Ln"], + "texture": 0 + }, + "FiVhgNvE": { + "uv": { + "uZrh": [2.0002, 24.9836], + "ORyy": [0.2986, 24.9935], + "92Ln": [2.3597, 33.6001], + "bftR": [0, 33.6001] + }, + "vertices": ["bftR", "92Ln", "ORyy", "uZrh"], + "texture": 0 + }, + "f27qtq3m": { + "uv": { + "ORyy": [0, 28.0152], + "l955": [1.4876, 26.9836], + "Sltx": [0.6339, 26.9836], + "uZrh": [1.7075, 28.0152] + }, + "vertices": ["uZrh", "Sltx", "l955", "ORyy"], + "texture": 0 + }, + "Ahdauex4": { + "uv": { + "bftR": [2.0522, 25.9837], + "jS6F": [0.6176, 27.3497], + "AgKl": [1.4345, 27.3497], + "hwjg": [0, 25.9836] + }, + "vertices": ["hwjg", "AgKl", "jS6F", "bftR"], + "texture": 0 + }, + "FwaC0inC": { + "uv": { + "ORyy": [2.01682, 24.9836], + "ZISf": [0, 25.48108], + "bftR": [2.0503, 33.59517], + "hwjg": [0, 33.50459] + }, + "vertices": ["hwjg", "bftR", "ZISf", "ORyy"], + "texture": 0 + }, + "9ZkZ6NpN": { + "uv": { + "ZISf": [0, 33.5854], + "Sltx": [1.6866, 31.9836], + "Lrul": [1.0739, 31.9836], + "ORyy": [1.9929, 33.155] + }, + "vertices": ["ORyy", "Lrul", "Sltx", "ZISf"], + "texture": 0 + }, + "bLGLsiVU": { + "uv": { + "Lrul": [0.3063, 26.7805], + "zVQ5": [0, 25.9836], + "9zIy": [0.6127, 25.9836] + }, + "vertices": ["9zIy", "zVQ5", "Lrul"], + "texture": 0 + }, + "FdG3nVPa": { + "uv": { + "Sltx": [1.6127, 27.7805], + "Lrul": [1, 27.7805], + "9zIy": [1.3064, 26.9836] + }, + "vertices": ["9zIy", "Lrul", "Sltx"], + "texture": 0 + }, + "ud1TCfhY": { + "uv": { + "l955": [2.6127, 25.9836], + "Sltx": [2.3063, 26.7805], + "9zIy": [2, 25.9836] + }, + "vertices": ["9zIy", "Sltx", "l955"], + "texture": 0 + }, + "41w1S6rR": { + "uv": { + "ovht": [2.3063, 31.9836], + "l955": [2.6127, 32.7805], + "9zIy": [2, 32.7805] + }, + "vertices": ["9zIy", "l955", "ovht"], + "texture": 0 + }, + "wEgUowfB": { + "uv": { + "12zS": [1, 30.9836], + "ovht": [1.6127, 30.9836], + "9zIy": [1.3064, 31.7805] + }, + "vertices": ["9zIy", "ovht", "12zS"], + "texture": 0 + }, + "G3UiYJeg": { + "uv": { + "zVQ5": [0, 32.7805], + "12zS": [0.3063, 31.9836], + "9zIy": [0.6127, 32.7805] + }, + "vertices": ["9zIy", "12zS", "zVQ5"], + "texture": 0 + }, + "HSXF4kkA": { + "uv": { + "IKHl": [1, 34.0461], + "jS6F": [1.4084, 32.9836], + "4WRs": [1.8169, 34.0461] + }, + "vertices": ["4WRs", "jS6F", "IKHl"], + "texture": 0 + }, + "QqJPEzgx": { + "uv": { + "srzj": [1.4084, 27.0461], + "IKHl": [1, 25.9836], + "4WRs": [1.8169, 25.9836] + }, + "vertices": ["4WRs", "IKHl", "srzj"], + "texture": 0 + }, + "TY9u2sDg": { + "uv": { + "TZsM": [1.8169, 28.0461], + "srzj": [1, 28.0461], + "4WRs": [1.4085, 26.9836] + }, + "vertices": ["4WRs", "srzj", "TZsM"], + "texture": 0 + }, + "0orapcDd": { + "uv": { + "n74E": [2.8169, 25.9836], + "TZsM": [2.4084, 27.0461], + "4WRs": [2, 25.9836] + }, + "vertices": ["4WRs", "TZsM", "n74E"], + "texture": 0 + }, + "uoHhPK1e": { + "uv": { + "AgKl": [2.4084, 32.9836], + "n74E": [2.8169, 34.0461], + "4WRs": [2, 34.0461] + }, + "vertices": ["4WRs", "n74E", "AgKl"], + "texture": 0 + }, + "R8i2SJV3": { + "uv": { + "jS6F": [1, 30.9836], + "AgKl": [1.8169, 30.9836], + "4WRs": [1.4085, 32.0461] + }, + "vertices": ["4WRs", "AgKl", "jS6F"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "b4aa1095-c834-139c-8b5f-93abfd983a84" + }, + { + "name": "cylinder", + "color": 8, + "origin": [5.04375, 18.26353, -0.0135], + "rotation": [0, 0, 10], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "4WRs": [-0.51754, -2.42797, 0.1485], + "hwjg": [0.49832, -1.90803, 2.25225], + "ZISf": [0.84896, 2.93586, 1.72632], + "ryg1": [1.51418, -1.90803, 0.1485], + "Jq92": [1.45551, 2.93586, 0.1485], + "rilX": [0.49832, -1.90803, -1.95525], + "iCDk": [0.84896, 2.93586, -1.42932], + "v1hz": [-1.53339, -1.90803, -1.95525], + "UN0m": [-1.12407, 3.29155, -1.42932], + "92Ln": [-2.54925, -1.90803, 0.1485], + "uZrh": [-1.73063, 3.29155, 0.1485], + "bftR": [-1.53339, -1.90803, 2.25225], + "ORyy": [-1.12407, 3.29155, 1.72632], + "9zIy": [-0.51754, 3.8115, 0.1485], + "zVQ5": [0.08899, 3.8115, 0.1485], + "Lrul": [-0.21425, 3.8115, 0.93743], + "Sltx": [-0.82082, 3.8115, 0.93743], + "l955": [-1.12411, 3.8115, 0.1485], + "ovht": [-0.82082, 3.8115, -0.64043], + "12zS": [-0.21425, 3.8115, -0.64043], + "jS6F": [-0.11318, -2.42797, 1.20035], + "IKHl": [0.29121, -2.42797, 0.1485], + "srzj": [-0.11316, -2.42797, -0.9034], + "TZsM": [-0.92192, -2.42797, -0.9034], + "n74E": [-1.32628, -2.42797, 0.1485], + "AgKl": [-0.92192, -2.42797, 1.2004] + }, + "faces": { + "sGCABgEN": { + "uv": { + "hwjg": [2.5815, 31.4211], + "IKHl": [1, 29.9836], + "ryg1": [1.4433, 31.4211], + "jS6F": [3.3516, 30.1401] + }, + "vertices": ["jS6F", "ryg1", "IKHl", "hwjg"], + "texture": 0 + }, + "sWWfgk4K": { + "uv": { + "ZISf": [0.00761, 30.34339], + "Jq92": [0, 27.9836], + "ryg1": [7.99834, 27.9836], + "hwjg": [8.00293, 29.68519] + }, + "vertices": ["hwjg", "ryg1", "Jq92", "ZISf"], + "texture": 0 + }, + "QNUAKYIT": { + "uv": { + "Jq92": [1.4953, 26.9836], + "Lrul": [2.7075, 28.9202], + "ZISf": [2.349, 26.9836], + "zVQ5": [1, 28.9202] + }, + "vertices": ["zVQ5", "ZISf", "Lrul", "Jq92"], + "texture": 0 + }, + "BRnWTTQ7": { + "uv": { + "ryg1": [1.9085, 29.4153], + "srzj": [0, 28.1291], + "rilX": [0.7701, 29.4153], + "IKHl": [2.3517, 27.9836] + }, + "vertices": ["IKHl", "rilX", "srzj", "ryg1"], + "texture": 0 + }, + "USWUQ28I": { + "uv": { + "Jq92": [2.3597, 33.9822], + "iCDk": [0, 33.9822], + "rilX": [0.6324, 25.9836], + "ryg1": [2.334, 25.9851] + }, + "vertices": ["ryg1", "rilX", "iCDk", "Jq92"], + "texture": 0 + }, + "telwhUl5": { + "uv": { + "iCDk": [1.3585, 29.9836], + "zVQ5": [2.7075, 31.9202], + "Jq92": [2.2123, 29.9836], + "12zS": [1, 31.9202] + }, + "vertices": ["12zS", "Jq92", "zVQ5", "iCDk"], + "texture": 0 + }, + "Y0oRikhE": { + "uv": { + "rilX": [1.4346, 33.3496], + "TZsM": [0, 31.9836], + "v1hz": [0.6177, 33.3496], + "srzj": [2.0522, 31.9836] + }, + "vertices": ["srzj", "v1hz", "TZsM", "rilX"], + "texture": 0 + }, + "M1vklvUl": { + "uv": { + "iCDk": [0.09854, 31.03343], + "UN0m": [0, 28.9836], + "v1hz": [8.61183, 28.9836], + "rilX": [8.122, 31.00235] + }, + "vertices": ["rilX", "v1hz", "UN0m", "iCDk"], + "texture": 0 + }, + "ZVE21JMg": { + "uv": { + "UN0m": [1.3063, 25.9836], + "12zS": [2.9929, 27.6345], + "iCDk": [1.919, 25.9836], + "ovht": [1, 27.1202] + }, + "vertices": ["ovht", "iCDk", "12zS", "UN0m"], + "texture": 0 + }, + "L0SUV83I": { + "uv": { + "v1hz": [1.5816, 28.4212], + "n74E": [0, 26.9836], + "92Ln": [0.4433, 28.4212], + "TZsM": [2.3517, 27.1402] + }, + "vertices": ["TZsM", "92Ln", "n74E", "v1hz"], + "texture": 0 + }, + "R3T6mLRW": { + "uv": { + "UN0m": [2.3598, 33.6013], + "uZrh": [0, 33.6013], + "92Ln": [0.3596, 24.9836], + "v1hz": [2.0612, 24.9958] + }, + "vertices": ["v1hz", "92Ln", "uZrh", "UN0m"], + "texture": 0 + }, + "ttIS0sst": { + "uv": { + "uZrh": [0.2199, 29.9836], + "ovht": [1.7075, 31.0152], + "UN0m": [1.0736, 29.9836], + "l955": [0, 31.0152] + }, + "vertices": ["l955", "UN0m", "ovht", "uZrh"], + "texture": 0 + }, + "dQPt3CZa": { + "uv": { + "92Ln": [1.9084, 31.4152], + "AgKl": [0, 30.129], + "bftR": [0.7701, 31.4152], + "n74E": [2.3516, 29.9836] + }, + "vertices": ["n74E", "bftR", "AgKl", "92Ln"], + "texture": 0 + }, + "FiVhgNvE": { + "uv": { + "uZrh": [2.3597, 33.6001], + "ORyy": [0, 33.6001], + "bftR": [0.2986, 24.9935], + "92Ln": [2.0002, 24.9836] + }, + "vertices": ["92Ln", "bftR", "ORyy", "uZrh"], + "texture": 0 + }, + "f27qtq3m": { + "uv": { + "ORyy": [0.6339, 26.9836], + "l955": [1.7075, 28.0152], + "uZrh": [1.4876, 26.9836], + "Sltx": [0, 28.0152] + }, + "vertices": ["Sltx", "uZrh", "l955", "ORyy"], + "texture": 0 + }, + "Ahdauex4": { + "uv": { + "bftR": [1.4345, 27.3497], + "jS6F": [0, 25.9836], + "hwjg": [0.6176, 27.3497], + "AgKl": [2.0522, 25.9837] + }, + "vertices": ["AgKl", "hwjg", "jS6F", "bftR"], + "texture": 0 + }, + "FwaC0inC": { + "uv": { + "ORyy": [2.0503, 33.59517], + "ZISf": [0, 33.50459], + "hwjg": [0, 25.48108], + "bftR": [2.01682, 24.9836] + }, + "vertices": ["bftR", "hwjg", "ZISf", "ORyy"], + "texture": 0 + }, + "9ZkZ6NpN": { + "uv": { + "ZISf": [1.0739, 31.9836], + "Sltx": [1.9929, 33.155], + "ORyy": [1.6866, 31.9836], + "Lrul": [0, 33.5854] + }, + "vertices": ["Lrul", "ORyy", "Sltx", "ZISf"], + "texture": 0 + }, + "bLGLsiVU": { + "uv": { + "Lrul": [0.3063, 26.7805], + "9zIy": [0, 25.9836], + "zVQ5": [0.6127, 25.9836] + }, + "vertices": ["zVQ5", "9zIy", "Lrul"], + "texture": 0 + }, + "FdG3nVPa": { + "uv": { + "Sltx": [1.6127, 27.7805], + "9zIy": [1, 27.7805], + "Lrul": [1.3064, 26.9836] + }, + "vertices": ["Lrul", "9zIy", "Sltx"], + "texture": 0 + }, + "ud1TCfhY": { + "uv": { + "l955": [2.6127, 25.9836], + "9zIy": [2.3063, 26.7805], + "Sltx": [2, 25.9836] + }, + "vertices": ["Sltx", "9zIy", "l955"], + "texture": 0 + }, + "41w1S6rR": { + "uv": { + "ovht": [2.3063, 31.9836], + "9zIy": [2.6127, 32.7805], + "l955": [2, 32.7805] + }, + "vertices": ["l955", "9zIy", "ovht"], + "texture": 0 + }, + "wEgUowfB": { + "uv": { + "12zS": [1, 30.9836], + "9zIy": [1.6127, 30.9836], + "ovht": [1.3064, 31.7805] + }, + "vertices": ["ovht", "9zIy", "12zS"], + "texture": 0 + }, + "G3UiYJeg": { + "uv": { + "zVQ5": [0, 32.7805], + "9zIy": [0.3063, 31.9836], + "12zS": [0.6127, 32.7805] + }, + "vertices": ["12zS", "9zIy", "zVQ5"], + "texture": 0 + }, + "HSXF4kkA": { + "uv": { + "IKHl": [1, 34.0461], + "4WRs": [1.4084, 32.9836], + "jS6F": [1.8169, 34.0461] + }, + "vertices": ["jS6F", "4WRs", "IKHl"], + "texture": 0 + }, + "QqJPEzgx": { + "uv": { + "srzj": [1.4084, 27.0461], + "4WRs": [1, 25.9836], + "IKHl": [1.8169, 25.9836] + }, + "vertices": ["IKHl", "4WRs", "srzj"], + "texture": 0 + }, + "TY9u2sDg": { + "uv": { + "TZsM": [1.8169, 28.0461], + "4WRs": [1, 28.0461], + "srzj": [1.4085, 26.9836] + }, + "vertices": ["srzj", "4WRs", "TZsM"], + "texture": 0 + }, + "0orapcDd": { + "uv": { + "n74E": [2.8169, 25.9836], + "4WRs": [2.4084, 27.0461], + "TZsM": [2, 25.9836] + }, + "vertices": ["TZsM", "4WRs", "n74E"], + "texture": 0 + }, + "uoHhPK1e": { + "uv": { + "AgKl": [2.4084, 32.9836], + "4WRs": [2.8169, 34.0461], + "n74E": [2, 34.0461] + }, + "vertices": ["n74E", "4WRs", "AgKl"], + "texture": 0 + }, + "R8i2SJV3": { + "uv": { + "jS6F": [1, 30.9836], + "4WRs": [1.8169, 30.9836], + "AgKl": [1.4085, 32.0461] + }, + "vertices": ["AgKl", "4WRs", "jS6F"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "5b436543-2419-e70e-86f7-2277ab9225f9" + }, + { + "name": "cylinder", + "color": 8, + "origin": [2.23633, 5.07857, -0.15628], + "rotation": [1.72795, 0.14886, -0.15341], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "fXDl": [0.0021, -4.17816, 0.47714], + "769S": [0, 4.82143, 0.45], + "Ngnq": [1.16404, -3.27857, 2.61], + "86iU": [0.99219, 3.08572, 3.15], + "Orqk": [2.32808, -3.27857, 0.45], + "2WPs": [1.98437, 3.08572, 0.45], + "sf20": [1.16404, -3.27857, -1.71], + "JpAB": [0.99219, 3.08572, -2.25], + "uSt3": [-1.16404, -3.27857, -1.71], + "LEG0": [-0.99219, 3.08572, -2.25], + "H1ru": [-2.32807, -3.27857, 0.45], + "GPdT": [-2.16437, 3.08572, 0.45], + "HLm2": [-1.16404, -3.27857, 2.61], + "Ba1X": [-0.99219, 3.08572, 3.15] + }, + "faces": { + "kIuOJ6a5": { + "uv": { + "fXDl": [1.3815, 54.3836], + "Ngnq": [3.37555, 51.9836], + "Orqk": [5.3696, 54.3836] + }, + "vertices": ["Orqk", "Ngnq", "fXDl"], + "texture": 0 + }, + "jwCmvIw0": { + "uv": { + "86iU": [1.3815, 47.9999], + "2WPs": [5.80906, 47.9836], + "Orqk": [6.11257, 58.9896], + "Ngnq": [2.24355, 58.9896] + }, + "vertices": ["Ngnq", "Orqk", "2WPs", "86iU"], + "texture": 0 + }, + "8CBehK8M": { + "uv": { + "769S": [3.18974, 48.9836], + "2WPs": [4.47951, 52.7496], + "86iU": [0, 52.7496] + }, + "vertices": ["86iU", "2WPs", "769S"], + "texture": 0 + }, + "6735bTQz": { + "uv": { + "fXDl": [1.3815, 50.9836], + "Orqk": [5.3696, 50.9836], + "sf20": [3.37555, 53.3836] + }, + "vertices": ["sf20", "Orqk", "fXDl"], + "texture": 0 + }, + "5RuiYjJo": { + "uv": { + "2WPs": [1.68501, 47.9893], + "JpAB": [6.11257, 47.9836], + "sf20": [5.25052, 58.9844], + "Orqk": [1.3815, 58.9844] + }, + "vertices": ["Orqk", "sf20", "JpAB", "2WPs"], + "texture": 0 + }, + "haqmnfWx": { + "uv": { + "769S": [2.67126, 51.9836], + "JpAB": [5.86086, 55.7496], + "2WPs": [1.3815, 55.7496] + }, + "vertices": ["2WPs", "JpAB", "769S"], + "texture": 0 + }, + "LzfYKXZg": { + "uv": { + "fXDl": [3.37555, 52.9836], + "sf20": [5.3696, 55.3836], + "uSt3": [1.3815, 55.3836] + }, + "vertices": ["uSt3", "sf20", "fXDl"], + "texture": 0 + }, + "cdXcnv9J": { + "uv": { + "JpAB": [1.67589, 47.9836], + "LEG0": [5.07521, 47.9836], + "uSt3": [5.3696, 58.9999], + "sf20": [1.3815, 58.9999] + }, + "vertices": ["sf20", "uSt3", "LEG0", "JpAB"], + "texture": 0 + }, + "2Zbo3wUk": { + "uv": { + "769S": [3.08115, 48.9836], + "LEG0": [4.78081, 53.2262], + "JpAB": [1.3815, 53.2262] + }, + "vertices": ["JpAB", "LEG0", "769S"], + "texture": 0 + }, + "7Lb8dPtY": { + "uv": { + "fXDl": [5.36947, 50.9836], + "uSt3": [3.37541, 53.3836], + "H1ru": [1.3815, 50.9836] + }, + "vertices": ["H1ru", "uSt3", "fXDl"], + "texture": 0 + }, + "smP5XAom": { + "uv": { + "LEG0": [0, 47.9999], + "GPdT": [4.42756, 47.9836], + "H1ru": [4.73108, 58.9896], + "uSt3": [0.86205, 58.9896] + }, + "vertices": ["uSt3", "H1ru", "GPdT", "LEG0"], + "texture": 0 + }, + "Jq3zWgIi": { + "uv": { + "769S": [3.1896, 51.9836], + "GPdT": [4.47937, 55.7496], + "LEG0": [0, 55.7496] + }, + "vertices": ["LEG0", "GPdT", "769S"], + "texture": 0 + }, + "Lf6TqTg3": { + "uv": { + "fXDl": [5.36947, 54.3836], + "H1ru": [1.3815, 54.3836], + "HLm2": [3.37541, 51.9836] + }, + "vertices": ["HLm2", "H1ru", "fXDl"], + "texture": 0 + }, + "8RzK1EH5": { + "uv": { + "GPdT": [1.68501, 47.9893], + "Ba1X": [6.11257, 47.9836], + "HLm2": [5.25052, 58.9843], + "H1ru": [1.3815, 58.9843] + }, + "vertices": ["H1ru", "HLm2", "Ba1X", "GPdT"], + "texture": 0 + }, + "BDGVQs73": { + "uv": { + "769S": [4.05276, 48.9836], + "Ba1X": [7.2425, 52.7496], + "GPdT": [2.76299, 52.7496] + }, + "vertices": ["GPdT", "Ba1X", "769S"], + "texture": 0 + }, + "1l3NVOxJ": { + "uv": { + "fXDl": [3.37555, 53.3836], + "HLm2": [1.3815, 50.9836], + "Ngnq": [5.3696, 50.9836] + }, + "vertices": ["Ngnq", "HLm2", "fXDl"], + "texture": 0 + }, + "yIuKEBDF": { + "uv": { + "Ba1X": [1.67589, 47.9836], + "86iU": [5.07521, 47.9836], + "Ngnq": [5.3696, 59], + "HLm2": [1.3815, 59] + }, + "vertices": ["HLm2", "Ngnq", "86iU", "Ba1X"], + "texture": 0 + }, + "ZCMrJe0Y": { + "uv": { + "769S": [3.08115, 51.9836], + "86iU": [4.78081, 56.2262], + "Ba1X": [1.3815, 56.2262] + }, + "vertices": ["Ba1X", "86iU", "769S"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "02c1d309-dc14-6511-c2fa-60a9333aff71" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-5.00244, 18.6218, -0.0135], + "rotation": [0, 0, -10], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "4WRs": [0.76504, -6.38797, 0.1485], + "hwjg": [-0.37456, -5.86803, 2.52225], + "ZISf": [-0.76793, -1.02414, 1.92882], + "ryg1": [-1.51418, -5.86803, 0.1485], + "Jq92": [-1.44836, -1.02414, 0.1485], + "rilX": [-0.37456, -5.86803, -2.22525], + "iCDk": [-0.76793, -1.02414, -1.63181], + "v1hz": [1.90464, -5.86803, -2.22525], + "UN0m": [1.44546, -0.66845, -1.63181], + "92Ln": [3.04425, -5.86803, 0.1485], + "uZrh": [2.12591, -0.66845, 0.1485], + "bftR": [1.90464, -5.86803, 2.52225], + "ORyy": [1.44546, -0.66845, 1.92882], + "9zIy": [0.76504, -0.1485, 0.1485], + "zVQ5": [0.08463, -0.1485, 0.1485], + "Lrul": [0.42481, -0.1485, 1.03868], + "Sltx": [1.10526, -0.1485, 1.03868], + "l955": [1.4455, -0.1485, 0.1485], + "ovht": [1.10526, -0.1485, -0.74168], + "12zS": [0.42481, -0.1485, -0.74168], + "jS6F": [0.31143, -6.38797, 1.33534], + "IKHl": [-0.14223, -6.38797, 0.1485], + "srzj": [0.3114, -6.38797, -1.03841], + "TZsM": [1.21868, -6.38797, -1.03841], + "n74E": [1.6723, -6.38797, 0.1485], + "AgKl": [1.21868, -6.38797, 1.33541] + }, + "faces": { + "sGCABgEN": { + "uv": { + "hwjg": [2.5815, 31.4211], + "IKHl": [1, 29.9836], + "jS6F": [3.3516, 30.1401], + "ryg1": [1.4433, 31.4211] + }, + "vertices": ["ryg1", "jS6F", "IKHl", "hwjg"], + "texture": 0 + }, + "sWWfgk4K": { + "uv": { + "ZISf": [0.00761, 30.34339], + "Jq92": [0, 27.9836], + "hwjg": [8.00293, 29.68519], + "ryg1": [7.99834, 27.9836] + }, + "vertices": ["ryg1", "hwjg", "Jq92", "ZISf"], + "texture": 0 + }, + "QNUAKYIT": { + "uv": { + "Jq92": [1.4953, 26.9836], + "Lrul": [2.7075, 28.9202], + "zVQ5": [1, 28.9202], + "ZISf": [2.349, 26.9836] + }, + "vertices": ["ZISf", "zVQ5", "Lrul", "Jq92"], + "texture": 0 + }, + "BRnWTTQ7": { + "uv": { + "ryg1": [1.9085, 29.4153], + "srzj": [0, 28.1291], + "IKHl": [2.3517, 27.9836], + "rilX": [0.7701, 29.4153] + }, + "vertices": ["rilX", "IKHl", "srzj", "ryg1"], + "texture": 0 + }, + "USWUQ28I": { + "uv": { + "Jq92": [2.3597, 33.9822], + "iCDk": [0, 33.9822], + "ryg1": [2.334, 25.9851], + "rilX": [0.6324, 25.9836] + }, + "vertices": ["rilX", "ryg1", "iCDk", "Jq92"], + "texture": 0 + }, + "telwhUl5": { + "uv": { + "iCDk": [1.3585, 29.9836], + "zVQ5": [2.7075, 31.9202], + "12zS": [1, 31.9202], + "Jq92": [2.2123, 29.9836] + }, + "vertices": ["Jq92", "12zS", "zVQ5", "iCDk"], + "texture": 0 + }, + "Y0oRikhE": { + "uv": { + "rilX": [1.4346, 33.3496], + "TZsM": [0, 31.9836], + "srzj": [2.0522, 31.9836], + "v1hz": [0.6177, 33.3496] + }, + "vertices": ["v1hz", "srzj", "TZsM", "rilX"], + "texture": 0 + }, + "M1vklvUl": { + "uv": { + "iCDk": [0.09854, 31.03343], + "UN0m": [0, 28.9836], + "rilX": [8.122, 31.00235], + "v1hz": [8.61183, 28.9836] + }, + "vertices": ["v1hz", "rilX", "UN0m", "iCDk"], + "texture": 0 + }, + "ZVE21JMg": { + "uv": { + "UN0m": [1.3063, 25.9836], + "12zS": [2.9929, 27.6345], + "ovht": [1, 27.1202], + "iCDk": [1.919, 25.9836] + }, + "vertices": ["iCDk", "ovht", "12zS", "UN0m"], + "texture": 0 + }, + "L0SUV83I": { + "uv": { + "v1hz": [1.5816, 28.4212], + "n74E": [0, 26.9836], + "TZsM": [2.3517, 27.1402], + "92Ln": [0.4433, 28.4212] + }, + "vertices": ["92Ln", "TZsM", "n74E", "v1hz"], + "texture": 0 + }, + "R3T6mLRW": { + "uv": { + "UN0m": [2.3598, 33.6013], + "uZrh": [0, 33.6013], + "v1hz": [2.0612, 24.9958], + "92Ln": [0.3596, 24.9836] + }, + "vertices": ["92Ln", "v1hz", "uZrh", "UN0m"], + "texture": 0 + }, + "ttIS0sst": { + "uv": { + "uZrh": [0.2199, 29.9836], + "ovht": [1.7075, 31.0152], + "l955": [0, 31.0152], + "UN0m": [1.0736, 29.9836] + }, + "vertices": ["UN0m", "l955", "ovht", "uZrh"], + "texture": 0 + }, + "dQPt3CZa": { + "uv": { + "92Ln": [1.9084, 31.4152], + "AgKl": [0, 30.129], + "n74E": [2.3516, 29.9836], + "bftR": [0.7701, 31.4152] + }, + "vertices": ["bftR", "n74E", "AgKl", "92Ln"], + "texture": 0 + }, + "FiVhgNvE": { + "uv": { + "uZrh": [2.3597, 33.6001], + "ORyy": [0, 33.6001], + "92Ln": [2.0002, 24.9836], + "bftR": [0.2986, 24.9935] + }, + "vertices": ["bftR", "92Ln", "ORyy", "uZrh"], + "texture": 0 + }, + "f27qtq3m": { + "uv": { + "ORyy": [0.6339, 26.9836], + "l955": [1.7075, 28.0152], + "Sltx": [0, 28.0152], + "uZrh": [1.4876, 26.9836] + }, + "vertices": ["uZrh", "Sltx", "l955", "ORyy"], + "texture": 0 + }, + "Ahdauex4": { + "uv": { + "bftR": [1.4345, 27.3497], + "jS6F": [0, 25.9836], + "AgKl": [2.0522, 25.9837], + "hwjg": [0.6176, 27.3497] + }, + "vertices": ["hwjg", "AgKl", "jS6F", "bftR"], + "texture": 0 + }, + "FwaC0inC": { + "uv": { + "ORyy": [2.0503, 33.59517], + "ZISf": [0, 33.50459], + "bftR": [2.01682, 24.9836], + "hwjg": [0, 25.48108] + }, + "vertices": ["hwjg", "bftR", "ZISf", "ORyy"], + "texture": 0 + }, + "9ZkZ6NpN": { + "uv": { + "ZISf": [1.0739, 31.9836], + "Sltx": [1.9929, 33.155], + "Lrul": [0, 33.5854], + "ORyy": [1.6866, 31.9836] + }, + "vertices": ["ORyy", "Lrul", "Sltx", "ZISf"], + "texture": 0 + }, + "bLGLsiVU": { + "uv": { + "Lrul": [0.3063, 26.7805], + "zVQ5": [0.6127, 25.9836], + "9zIy": [0, 25.9836] + }, + "vertices": ["9zIy", "zVQ5", "Lrul"], + "texture": 0 + }, + "FdG3nVPa": { + "uv": { + "Sltx": [1.6127, 27.7805], + "Lrul": [1.3064, 26.9836], + "9zIy": [1, 27.7805] + }, + "vertices": ["9zIy", "Lrul", "Sltx"], + "texture": 0 + }, + "ud1TCfhY": { + "uv": { + "l955": [2.6127, 25.9836], + "Sltx": [2, 25.9836], + "9zIy": [2.3063, 26.7805] + }, + "vertices": ["9zIy", "Sltx", "l955"], + "texture": 0 + }, + "41w1S6rR": { + "uv": { + "ovht": [2.3063, 31.9836], + "l955": [2, 32.7805], + "9zIy": [2.6127, 32.7805] + }, + "vertices": ["9zIy", "l955", "ovht"], + "texture": 0 + }, + "wEgUowfB": { + "uv": { + "12zS": [1, 30.9836], + "ovht": [1.3064, 31.7805], + "9zIy": [1.6127, 30.9836] + }, + "vertices": ["9zIy", "ovht", "12zS"], + "texture": 0 + }, + "G3UiYJeg": { + "uv": { + "zVQ5": [0, 32.7805], + "12zS": [0.6127, 32.7805], + "9zIy": [0.3063, 31.9836] + }, + "vertices": ["9zIy", "12zS", "zVQ5"], + "texture": 0 + }, + "HSXF4kkA": { + "uv": { + "IKHl": [1, 34.0461], + "jS6F": [1.8169, 34.0461], + "4WRs": [1.4084, 32.9836] + }, + "vertices": ["4WRs", "jS6F", "IKHl"], + "texture": 0 + }, + "QqJPEzgx": { + "uv": { + "srzj": [1.4084, 27.0461], + "IKHl": [1.8169, 25.9836], + "4WRs": [1, 25.9836] + }, + "vertices": ["4WRs", "IKHl", "srzj"], + "texture": 0 + }, + "TY9u2sDg": { + "uv": { + "TZsM": [1.8169, 28.0461], + "srzj": [1.4085, 26.9836], + "4WRs": [1, 28.0461] + }, + "vertices": ["4WRs", "srzj", "TZsM"], + "texture": 0 + }, + "0orapcDd": { + "uv": { + "n74E": [2.8169, 25.9836], + "TZsM": [2, 25.9836], + "4WRs": [2.4084, 27.0461] + }, + "vertices": ["4WRs", "TZsM", "n74E"], + "texture": 0 + }, + "uoHhPK1e": { + "uv": { + "AgKl": [2.4084, 32.9836], + "n74E": [2, 34.0461], + "4WRs": [2.8169, 34.0461] + }, + "vertices": ["4WRs", "n74E", "AgKl"], + "texture": 0 + }, + "R8i2SJV3": { + "uv": { + "jS6F": [1, 30.9836], + "AgKl": [1.4085, 32.0461], + "4WRs": [1.8169, 30.9836] + }, + "vertices": ["4WRs", "AgKl", "jS6F"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "db44415d-1faa-cca8-069a-d3e7cf83a414" + }, + { + "name": "cylinder", + "color": 8, + "origin": [5.00244, 18.6218, -0.0135], + "rotation": [0, 0, 10], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "4WRs": [-0.76504, -6.38797, 0.1485], + "hwjg": [0.37456, -5.86803, 2.52225], + "ZISf": [0.76793, -1.02414, 1.92882], + "ryg1": [1.51418, -5.86803, 0.1485], + "Jq92": [1.44836, -1.02414, 0.1485], + "rilX": [0.37456, -5.86803, -2.22525], + "iCDk": [0.76793, -1.02414, -1.63181], + "v1hz": [-1.90464, -5.86803, -2.22525], + "UN0m": [-1.44546, -0.66845, -1.63181], + "92Ln": [-3.04425, -5.86803, 0.1485], + "uZrh": [-2.12591, -0.66845, 0.1485], + "bftR": [-1.90464, -5.86803, 2.52225], + "ORyy": [-1.44546, -0.66845, 1.92882], + "9zIy": [-0.76504, -0.1485, 0.1485], + "zVQ5": [-0.08463, -0.1485, 0.1485], + "Lrul": [-0.42481, -0.1485, 1.03868], + "Sltx": [-1.10526, -0.1485, 1.03868], + "l955": [-1.4455, -0.1485, 0.1485], + "ovht": [-1.10526, -0.1485, -0.74168], + "12zS": [-0.42481, -0.1485, -0.74168], + "jS6F": [-0.31143, -6.38797, 1.33534], + "IKHl": [0.14223, -6.38797, 0.1485], + "srzj": [-0.3114, -6.38797, -1.03841], + "TZsM": [-1.21868, -6.38797, -1.03841], + "n74E": [-1.6723, -6.38797, 0.1485], + "AgKl": [-1.21868, -6.38797, 1.33541] + }, + "faces": { + "sGCABgEN": { + "uv": { + "hwjg": [2.5815, 31.4211], + "IKHl": [1, 29.9836], + "ryg1": [1.4433, 31.4211], + "jS6F": [3.3516, 30.1401] + }, + "vertices": ["jS6F", "ryg1", "IKHl", "hwjg"], + "texture": 0 + }, + "sWWfgk4K": { + "uv": { + "ZISf": [0.00761, 30.34339], + "Jq92": [0, 27.9836], + "ryg1": [7.99834, 27.9836], + "hwjg": [8.00293, 29.68519] + }, + "vertices": ["hwjg", "ryg1", "Jq92", "ZISf"], + "texture": 0 + }, + "QNUAKYIT": { + "uv": { + "Jq92": [1.4953, 26.9836], + "Lrul": [2.7075, 28.9202], + "ZISf": [2.349, 26.9836], + "zVQ5": [1, 28.9202] + }, + "vertices": ["zVQ5", "ZISf", "Lrul", "Jq92"], + "texture": 0 + }, + "BRnWTTQ7": { + "uv": { + "ryg1": [1.9085, 29.4153], + "srzj": [0, 28.1291], + "rilX": [0.7701, 29.4153], + "IKHl": [2.3517, 27.9836] + }, + "vertices": ["IKHl", "rilX", "srzj", "ryg1"], + "texture": 0 + }, + "USWUQ28I": { + "uv": { + "Jq92": [2.3597, 33.9822], + "iCDk": [0, 33.9822], + "rilX": [0.6324, 25.9836], + "ryg1": [2.334, 25.9851] + }, + "vertices": ["ryg1", "rilX", "iCDk", "Jq92"], + "texture": 0 + }, + "telwhUl5": { + "uv": { + "iCDk": [1.3585, 29.9836], + "zVQ5": [2.7075, 31.9202], + "Jq92": [2.2123, 29.9836], + "12zS": [1, 31.9202] + }, + "vertices": ["12zS", "Jq92", "zVQ5", "iCDk"], + "texture": 0 + }, + "Y0oRikhE": { + "uv": { + "rilX": [1.4346, 33.3496], + "TZsM": [0, 31.9836], + "v1hz": [0.6177, 33.3496], + "srzj": [2.0522, 31.9836] + }, + "vertices": ["srzj", "v1hz", "TZsM", "rilX"], + "texture": 0 + }, + "M1vklvUl": { + "uv": { + "iCDk": [0.09854, 31.03343], + "UN0m": [0, 28.9836], + "v1hz": [8.61183, 28.9836], + "rilX": [8.122, 31.00235] + }, + "vertices": ["rilX", "v1hz", "UN0m", "iCDk"], + "texture": 0 + }, + "ZVE21JMg": { + "uv": { + "UN0m": [1.3063, 25.9836], + "12zS": [2.9929, 27.6345], + "iCDk": [1.919, 25.9836], + "ovht": [1, 27.1202] + }, + "vertices": ["ovht", "iCDk", "12zS", "UN0m"], + "texture": 0 + }, + "L0SUV83I": { + "uv": { + "v1hz": [1.5816, 28.4212], + "n74E": [0, 26.9836], + "92Ln": [0.4433, 28.4212], + "TZsM": [2.3517, 27.1402] + }, + "vertices": ["TZsM", "92Ln", "n74E", "v1hz"], + "texture": 0 + }, + "R3T6mLRW": { + "uv": { + "UN0m": [2.3598, 33.6013], + "uZrh": [0, 33.6013], + "92Ln": [0.3596, 24.9836], + "v1hz": [2.0612, 24.9958] + }, + "vertices": ["v1hz", "92Ln", "uZrh", "UN0m"], + "texture": 0 + }, + "ttIS0sst": { + "uv": { + "uZrh": [0.2199, 29.9836], + "ovht": [1.7075, 31.0152], + "UN0m": [1.0736, 29.9836], + "l955": [0, 31.0152] + }, + "vertices": ["l955", "UN0m", "ovht", "uZrh"], + "texture": 0 + }, + "dQPt3CZa": { + "uv": { + "92Ln": [1.9084, 31.4152], + "AgKl": [0, 30.129], + "bftR": [0.7701, 31.4152], + "n74E": [2.3516, 29.9836] + }, + "vertices": ["n74E", "bftR", "AgKl", "92Ln"], + "texture": 0 + }, + "FiVhgNvE": { + "uv": { + "uZrh": [2.3597, 33.6001], + "ORyy": [0, 33.6001], + "bftR": [0.2986, 24.9935], + "92Ln": [2.0002, 24.9836] + }, + "vertices": ["92Ln", "bftR", "ORyy", "uZrh"], + "texture": 0 + }, + "f27qtq3m": { + "uv": { + "ORyy": [0.6339, 26.9836], + "l955": [1.7075, 28.0152], + "uZrh": [1.4876, 26.9836], + "Sltx": [0, 28.0152] + }, + "vertices": ["Sltx", "uZrh", "l955", "ORyy"], + "texture": 0 + }, + "Ahdauex4": { + "uv": { + "bftR": [1.4345, 27.3497], + "jS6F": [0, 25.9836], + "hwjg": [0.6176, 27.3497], + "AgKl": [2.0522, 25.9837] + }, + "vertices": ["AgKl", "hwjg", "jS6F", "bftR"], + "texture": 0 + }, + "FwaC0inC": { + "uv": { + "ORyy": [2.0503, 33.59517], + "ZISf": [0, 33.50459], + "hwjg": [0, 25.48108], + "bftR": [2.01682, 24.9836] + }, + "vertices": ["bftR", "hwjg", "ZISf", "ORyy"], + "texture": 0 + }, + "9ZkZ6NpN": { + "uv": { + "ZISf": [1.0739, 31.9836], + "Sltx": [1.9929, 33.155], + "ORyy": [1.6866, 31.9836], + "Lrul": [0, 33.5854] + }, + "vertices": ["Lrul", "ORyy", "Sltx", "ZISf"], + "texture": 0 + }, + "bLGLsiVU": { + "uv": { + "Lrul": [0.3063, 26.7805], + "9zIy": [0, 25.9836], + "zVQ5": [0.6127, 25.9836] + }, + "vertices": ["zVQ5", "9zIy", "Lrul"], + "texture": 0 + }, + "FdG3nVPa": { + "uv": { + "Sltx": [1.6127, 27.7805], + "9zIy": [1, 27.7805], + "Lrul": [1.3064, 26.9836] + }, + "vertices": ["Lrul", "9zIy", "Sltx"], + "texture": 0 + }, + "ud1TCfhY": { + "uv": { + "l955": [2.6127, 25.9836], + "9zIy": [2.3063, 26.7805], + "Sltx": [2, 25.9836] + }, + "vertices": ["Sltx", "9zIy", "l955"], + "texture": 0 + }, + "41w1S6rR": { + "uv": { + "ovht": [2.3063, 31.9836], + "9zIy": [2.6127, 32.7805], + "l955": [2, 32.7805] + }, + "vertices": ["l955", "9zIy", "ovht"], + "texture": 0 + }, + "wEgUowfB": { + "uv": { + "12zS": [1, 30.9836], + "9zIy": [1.6127, 30.9836], + "ovht": [1.3064, 31.7805] + }, + "vertices": ["ovht", "9zIy", "12zS"], + "texture": 0 + }, + "G3UiYJeg": { + "uv": { + "zVQ5": [0, 32.7805], + "9zIy": [0.3063, 31.9836], + "12zS": [0.6127, 32.7805] + }, + "vertices": ["12zS", "9zIy", "zVQ5"], + "texture": 0 + }, + "HSXF4kkA": { + "uv": { + "IKHl": [1, 34.0461], + "4WRs": [1.4084, 32.9836], + "jS6F": [1.8169, 34.0461] + }, + "vertices": ["jS6F", "4WRs", "IKHl"], + "texture": 0 + }, + "QqJPEzgx": { + "uv": { + "srzj": [1.4084, 27.0461], + "4WRs": [1, 25.9836], + "IKHl": [1.8169, 25.9836] + }, + "vertices": ["IKHl", "4WRs", "srzj"], + "texture": 0 + }, + "TY9u2sDg": { + "uv": { + "TZsM": [1.8169, 28.0461], + "4WRs": [1, 28.0461], + "srzj": [1.4085, 26.9836] + }, + "vertices": ["srzj", "4WRs", "TZsM"], + "texture": 0 + }, + "0orapcDd": { + "uv": { + "n74E": [2.8169, 25.9836], + "4WRs": [2.4084, 27.0461], + "TZsM": [2, 25.9836] + }, + "vertices": ["TZsM", "4WRs", "n74E"], + "texture": 0 + }, + "uoHhPK1e": { + "uv": { + "AgKl": [2.4084, 32.9836], + "4WRs": [2.8169, 34.0461], + "n74E": [2, 34.0461] + }, + "vertices": ["n74E", "4WRs", "AgKl"], + "texture": 0 + }, + "R8i2SJV3": { + "uv": { + "jS6F": [1, 30.9836], + "4WRs": [1.8169, 30.9836], + "AgKl": [1.4085, 32.0461] + }, + "vertices": ["AgKl", "4WRs", "jS6F"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "3772a39b-fac7-715e-f228-1ac66979af34" + }, + { + "name": "cylinder", + "color": 8, + "origin": [5.04, 12.87, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "uXX4": [0.04405, -1.08, 0.135], + "xQ7R": [-0.62925, -0.21375, 1.2], + "KviP": [-0.9208, 4.08375, 1.7325], + "ZAwo": [-0.71946, -0.21375, 0.135], + "jvUa": [-1.88565, 4.08375, 0.135], + "ZlND": [-0.62925, -0.21375, -0.93], + "0viC": [-0.9208, 4.08375, -1.4625], + "0sOe": [0.71735, -0.21375, -0.93], + "bbcG": [0.4258, 4.08375, -1.4625], + "EHEa": [1.39065, -0.21375, 0.135], + "Hf1h": [1.39065, 4.08375, 0.135], + "qpo9": [0.71735, -0.21375, 1.2], + "AFOM": [0.4258, 4.08375, 1.7325], + "oTYm": [0.04405, 4.95, 0.135] + }, + "faces": { + "lobLHojZ": { + "uv": { + "uXX4": [0, 6.9836], + "ZAwo": [1.1547, 6.9836], + "xQ7R": [0.5774, 5.9836] + }, + "vertices": ["xQ7R", "ZAwo", "uXX4"], + "texture": 0 + }, + "2wrsF9PS": { + "uv": { + "KviP": [0, 3.9836], + "jvUa": [1.1548, 3.9836], + "xQ7R": [0, 9.9836], + "ZAwo": [1.1548, 9.9836] + }, + "vertices": ["ZAwo", "xQ7R", "jvUa", "KviP"], + "texture": 0 + }, + "NHGFWn7K": { + "uv": { + "uXX4": [0, 5.9836], + "ZlND": [0.5774, 6.9836], + "ZAwo": [1.1547, 5.9836] + }, + "vertices": ["ZAwo", "ZlND", "uXX4"], + "texture": 0 + }, + "8cc6hOOR": { + "uv": { + "jvUa": [0, 3.9836], + "0viC": [1.1548, 3.9836], + "ZAwo": [0, 9.9836], + "ZlND": [1.1548, 9.9836] + }, + "vertices": ["ZlND", "ZAwo", "0viC", "jvUa"], + "texture": 0 + }, + "9UtXiLWH": { + "uv": { + "uXX4": [0.5774, 5.9836], + "0sOe": [0, 6.9836], + "ZlND": [1.1548, 6.9836] + }, + "vertices": ["ZlND", "0sOe", "uXX4"], + "texture": 0 + }, + "qGP3hNLj": { + "uv": { + "0viC": [0, 3.9836], + "bbcG": [1.1548, 3.9836], + "ZlND": [0, 9.9836], + "0sOe": [1.1548, 9.9836] + }, + "vertices": ["0sOe", "ZlND", "bbcG", "0viC"], + "texture": 0 + }, + "6tckQVaJ": { + "uv": { + "uXX4": [1.1547, 5.9836], + "EHEa": [0, 5.9836], + "0sOe": [0.5773, 6.9836] + }, + "vertices": ["0sOe", "EHEa", "uXX4"], + "texture": 0 + }, + "2WWrRUBm": { + "uv": { + "bbcG": [0, 3.9836], + "Hf1h": [1.1548, 3.9836], + "0sOe": [0, 9.9836], + "EHEa": [1.1548, 9.9836] + }, + "vertices": ["EHEa", "0sOe", "Hf1h", "bbcG"], + "texture": 0 + }, + "Gd1XafzL": { + "uv": { + "uXX4": [0.5774, 6.9836], + "qpo9": [1.1548, 5.9836], + "EHEa": [0, 5.9836] + }, + "vertices": ["EHEa", "qpo9", "uXX4"], + "texture": 0 + }, + "4eJ8kTWL": { + "uv": { + "Hf1h": [0, 3.9836], + "AFOM": [1.1548, 3.9836], + "EHEa": [0, 9.9836], + "qpo9": [1.1548, 9.9836] + }, + "vertices": ["qpo9", "EHEa", "AFOM", "Hf1h"], + "texture": 0 + }, + "U1EMdNou": { + "uv": { + "uXX4": [0.5774, 6.9836], + "xQ7R": [1.1548, 5.9836], + "qpo9": [0, 5.9836] + }, + "vertices": ["qpo9", "xQ7R", "uXX4"], + "texture": 0 + }, + "JaWe1p8r": { + "uv": { + "AFOM": [0, 3.9836], + "KviP": [1.1548, 3.9836], + "qpo9": [0, 9.9836], + "xQ7R": [1.1548, 9.9836] + }, + "vertices": ["xQ7R", "qpo9", "KviP", "AFOM"], + "texture": 0 + }, + "MLElNaEL": { + "uv": { + "oTYm": [3, 3.9836], + "KviP": [3.5774, 4.9836], + "jvUa": [4.1547, 3.9836] + }, + "vertices": ["jvUa", "KviP", "oTYm"], + "texture": 0 + }, + "SrTdhUln": { + "uv": { + "oTYm": [3, 4.9836], + "jvUa": [4.1547, 4.9836], + "0viC": [3.5774, 3.9836] + }, + "vertices": ["0viC", "jvUa", "oTYm"], + "texture": 0 + }, + "1B3EpcYx": { + "uv": { + "oTYm": [3.5774, 4.9836], + "0viC": [4.1548, 3.9836], + "bbcG": [3, 3.9836] + }, + "vertices": ["bbcG", "0viC", "oTYm"], + "texture": 0 + }, + "gSUoLh4J": { + "uv": { + "oTYm": [3.5774, 4.9836], + "bbcG": [4.1548, 3.9836], + "Hf1h": [3, 3.9836] + }, + "vertices": ["Hf1h", "bbcG", "oTYm"], + "texture": 0 + }, + "EiJgXwpU": { + "uv": { + "oTYm": [3.5774, 4.9836], + "Hf1h": [4.1548, 3.9836], + "AFOM": [3, 3.9836] + }, + "vertices": ["AFOM", "Hf1h", "oTYm"], + "texture": 0 + }, + "1NM4KFOU": { + "uv": { + "oTYm": [3.5774, 4.9836], + "AFOM": [4.1548, 3.9836], + "KviP": [3, 3.9836] + }, + "vertices": ["KviP", "AFOM", "oTYm"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "1671bdb4-27ee-e3a7-78c8-f18091c01495" + }, + { + "name": "cylinder", + "color": 8, + "origin": [3.6, 26.73, -1.71], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "8bfM": [-0.495, -0.40249, 0], + "Kvjd": [-0.495, -0.40249, -0.9], + "USVQ": [-1.05866, -1.35, 0], + "HXhU": [-1.05866, -1.35, -0.9], + "UZWq": [-1.40702, -0.04057, 0], + "axTi": [-1.40702, -0.04057, -0.9], + "tgyO": [-0.495, 0.76869, 0], + "Ib2Y": [-0.495, 0.76869, -0.9], + "FTwV": [0.41702, -0.04057, 0], + "O5S9": [0.41702, -0.04057, -0.9], + "5xC8": [0.06866, -1.35, 0], + "tls7": [0.06866, -1.35, -0.9] + }, + "faces": { + "91nAa0xC": { + "uv": { + "8bfM": [0, 10.07337], + "USVQ": [1.50002, 8.9836], + "UZWq": [1.50002, 11.1632] + }, + "vertices": ["UZWq", "USVQ", "8bfM"], + "texture": 0 + }, + "9ZKH0lG6": { + "uv": { + "HXhU": [0, 8.9836], + "axTi": [2.1796, 8.9836], + "UZWq": [2.1796, 10.9836], + "USVQ": [0, 10.9836] + }, + "vertices": ["USVQ", "UZWq", "axTi", "HXhU"], + "texture": 0 + }, + "RGmcX1UG": { + "uv": { + "Kvjd": [4.50306, 4.9836], + "axTi": [5.06639, 6.75008], + "HXhU": [2.16591, 6.75008] + }, + "vertices": ["HXhU", "axTi", "Kvjd"], + "texture": 0 + }, + "hURkvpYa": { + "uv": { + "8bfM": [0, 6.747], + "UZWq": [0.8729, 3.9836], + "tgyO": [1.8541, 6.747] + }, + "vertices": ["tgyO", "UZWq", "8bfM"], + "texture": 0 + }, + "WyrjtDC7": { + "uv": { + "axTi": [0, 8.9836], + "Ib2Y": [2.1796, 8.9836], + "tgyO": [2.1796, 10.9836], + "UZWq": [0, 10.9836] + }, + "vertices": ["UZWq", "tgyO", "Ib2Y", "axTi"], + "texture": 0 + }, + "acbFBVuv": { + "uv": { + "Kvjd": [4.50306, 4.9836], + "Ib2Y": [5.06639, 6.75008], + "axTi": [2.16591, 6.75008] + }, + "vertices": ["axTi", "Ib2Y", "Kvjd"], + "texture": 0 + }, + "lyFWiRhd": { + "uv": { + "8bfM": [0, 6.747], + "tgyO": [0.8729, 3.9836], + "FTwV": [1.8541, 6.747] + }, + "vertices": ["FTwV", "tgyO", "8bfM"], + "texture": 0 + }, + "wjezwsCE": { + "uv": { + "Ib2Y": [0, 8.9836], + "O5S9": [2.1796, 8.9836], + "FTwV": [2.1796, 10.9836], + "tgyO": [0, 10.9836] + }, + "vertices": ["tgyO", "FTwV", "O5S9", "Ib2Y"], + "texture": 0 + }, + "j57EBA6J": { + "uv": { + "Kvjd": [4.50306, 4.9836], + "O5S9": [5.06639, 6.75008], + "Ib2Y": [2.16591, 6.75008] + }, + "vertices": ["Ib2Y", "O5S9", "Kvjd"], + "texture": 0 + }, + "vcbsA7yR": { + "uv": { + "8bfM": [1.85413, 10.74693], + "FTwV": [0, 10.74693], + "5xC8": [1.28114, 8.9836] + }, + "vertices": ["5xC8", "FTwV", "8bfM"], + "texture": 0 + }, + "lYJAyjcC": { + "uv": { + "O5S9": [0, 8.9836], + "tls7": [2.1796, 8.9836], + "5xC8": [2.1796, 10.9836], + "FTwV": [0, 10.9836] + }, + "vertices": ["FTwV", "5xC8", "tls7", "O5S9"], + "texture": 0 + }, + "dswA4ncI": { + "uv": { + "Kvjd": [4.50306, 4.9836], + "tls7": [5.06639, 6.75008], + "O5S9": [2.16591, 6.75008] + }, + "vertices": ["O5S9", "tls7", "Kvjd"], + "texture": 0 + }, + "x4e93Rac": { + "uv": { + "8bfM": [1.0898, 10.4836], + "5xC8": [0, 8.9836], + "USVQ": [2.1796, 8.9836] + }, + "vertices": ["USVQ", "5xC8", "8bfM"], + "texture": 0 + }, + "TtnpSvW1": { + "uv": { + "tls7": [0, 8.9836], + "HXhU": [2.1796, 8.9836], + "USVQ": [2.1796, 10.9836], + "5xC8": [0, 10.9836] + }, + "vertices": ["5xC8", "USVQ", "HXhU", "tls7"], + "texture": 0 + }, + "royATjFd": { + "uv": { + "Kvjd": [4.50306, 4.9836], + "HXhU": [5.06639, 6.75008], + "tls7": [2.16591, 6.75008] + }, + "vertices": ["tls7", "HXhU", "Kvjd"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "d10a4c76-5e2b-18bf-de9f-e3dc84e195ec" + }, + { + "name": "cylinder", + "color": 8, + "origin": [0, 22.5, 0], + "rotation": [10, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "TYCj": [0, 1.8, 0], + "uqWQ": [0.65389, -1.8, 0.9], + "VUnI": [0.65389, 1.8, 0.9], + "3pM6": [1.05801, -1.8, -0.34377], + "k4Z0": [1.05801, 1.8, -0.34377], + "liE0": [0, -1.8, -1.11246], + "4MRC": [0, 1.8, -1.11246], + "BpW6": [-1.05801, -1.8, -0.34377], + "0kUY": [-1.05801, 1.8, -0.34377], + "rDCl": [-0.65389, -1.8, 0.9], + "uFpQ": [-0.65389, 1.8, 0.9], + "0klA": [0, -1.8, 0] + }, + "faces": { + "neQxZgj7": { + "uv": { + "0klA": [0, 4.71012], + "uqWQ": [0.99999, 3.9836], + "3pM6": [0.99999, 5.43674] + }, + "vertices": ["3pM6", "uqWQ", "0klA"], + "texture": 0 + }, + "Pmm72AqV": { + "uv": { + "VUnI": [0, 3.9836], + "k4Z0": [1.453, 3.9836], + "3pM6": [1.453, 5.9836], + "uqWQ": [0, 5.9836] + }, + "vertices": ["uqWQ", "3pM6", "k4Z0", "VUnI"], + "texture": 0 + }, + "zF43FN77": { + "uv": { + "TYCj": [0, 3.9836], + "k4Z0": [1.23611, 3.9836], + "VUnI": [0.3819, 5.15916] + }, + "vertices": ["VUnI", "k4Z0", "TYCj"], + "texture": 0 + }, + "3Z2mxhsi": { + "uv": { + "0klA": [0, 3.9836], + "3pM6": [1.1756, 4.3656], + "liE0": [0, 5.2197] + }, + "vertices": ["liE0", "3pM6", "0klA"], + "texture": 0 + }, + "Ge7vXuNy": { + "uv": { + "k4Z0": [0, 3.9836], + "4MRC": [1.453, 3.9836], + "liE0": [1.453, 5.9836], + "3pM6": [0, 5.9836] + }, + "vertices": ["3pM6", "liE0", "4MRC", "k4Z0"], + "texture": 0 + }, + "6csrFhyY": { + "uv": { + "TYCj": [0, 5.2197], + "4MRC": [0, 3.9836], + "k4Z0": [1.1756, 4.8377] + }, + "vertices": ["k4Z0", "4MRC", "TYCj"], + "texture": 0 + }, + "PzDbGLZI": { + "uv": { + "0klA": [1.1756, 3.9836], + "liE0": [1.1756, 5.2197], + "BpW6": [0, 4.3656] + }, + "vertices": ["BpW6", "liE0", "0klA"], + "texture": 0 + }, + "Jnti7pZB": { + "uv": { + "4MRC": [0, 3.9836], + "0kUY": [1.453, 3.9836], + "BpW6": [1.453, 5.9836], + "liE0": [0, 5.9836] + }, + "vertices": ["liE0", "BpW6", "0kUY", "4MRC"], + "texture": 0 + }, + "ggZw5JIi": { + "uv": { + "TYCj": [1.1756, 5.2197], + "0kUY": [0, 4.8377], + "4MRC": [1.1756, 3.9836] + }, + "vertices": ["4MRC", "0kUY", "TYCj"], + "texture": 0 + }, + "3aqe5f3y": { + "uv": { + "0klA": [1.23611, 5.15916], + "BpW6": [0, 5.15916], + "rDCl": [0.8542, 3.9836] + }, + "vertices": ["rDCl", "BpW6", "0klA"], + "texture": 0 + }, + "z1Wsx2z6": { + "uv": { + "0kUY": [0, 3.9836], + "uFpQ": [1.453, 3.9836], + "rDCl": [1.453, 5.9836], + "BpW6": [0, 5.9836] + }, + "vertices": ["BpW6", "rDCl", "uFpQ", "0kUY"], + "texture": 0 + }, + "WnJUw8Za": { + "uv": { + "TYCj": [1.99999, 4.71022], + "uFpQ": [1, 5.43674], + "0kUY": [1, 3.9836] + }, + "vertices": ["0kUY", "uFpQ", "TYCj"], + "texture": 0 + }, + "bGf5q9nr": { + "uv": { + "0klA": [0.7265, 4.9836], + "rDCl": [0, 3.9836], + "uqWQ": [1.453, 3.9836] + }, + "vertices": ["uqWQ", "rDCl", "0klA"], + "texture": 0 + }, + "cfYYgyy7": { + "uv": { + "uFpQ": [0, 3.9836], + "VUnI": [1.453, 3.9836], + "uqWQ": [1.453, 5.9836], + "rDCl": [0, 5.9836] + }, + "vertices": ["rDCl", "uqWQ", "VUnI", "uFpQ"], + "texture": 0 + }, + "grmykaTZ": { + "uv": { + "TYCj": [0.7265, 3.9836], + "VUnI": [1.453, 4.9836], + "uFpQ": [0, 4.9836] + }, + "vertices": ["uFpQ", "VUnI", "TYCj"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "4aaa3c6a-3bda-cbba-c5b6-8ea6c46c0453" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-17, 0, 9], + "to": [17, 34, 9], + "autouv": 0, + "color": 5, + "visibility": false, + "origin": [0, 17, 8], + "faces": { + "north": { + "uv": [0, 0, 134, 134], + "texture": 7 + }, + "east": { + "uv": [0, 0, 0, 134], + "texture": 7 + }, + "south": { + "uv": [134, 0, 0, 134], + "texture": 7 + }, + "west": { + "uv": [0, 0, 0, 134], + "texture": 7 + }, + "up": { + "uv": [0, 0, 134, 0], + "texture": 7 + }, + "down": { + "uv": [0, 0, 134, 0], + "texture": 7 + } + }, + "type": "cube", + "uuid": "dfc0856f-b7a6-f459-fca5-ee1e02e12260" + }, + { + "name": "cuboid", + "color": 0, + "origin": [-0.9, 19.35, 0], + "rotation": [0, 0, 45], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "Rbk7": [0.57728, 0.57728, 0.45], + "tFIJ": [0.57728, 0.57728, -0.45], + "34Pf": [0.13181, -0.76819, 0.45], + "dtZF": [0.13181, -0.76819, -0.45], + "mHED": [-0.76819, 0.13181, 0.45], + "a5UE": [-0.76819, 0.13181, -0.45], + "8cmE": [-0.57728, -0.57728, -0.27], + "OWmi": [1.28636, 0.51364, 0.45], + "oT2h": [1.35, -0.45, 0.45], + "Z8Sy": [1.28636, 0.51364, -0.45], + "MO6d": [1.35, -0.45, -0.45], + "NrEa": [0.57728, 1.22272, 0.45], + "46vx": [0.57728, 1.22272, -0.45], + "2YNc": [-0.45, 1.35, 0.45], + "bQ73": [-0.45, 1.35, -0.45], + "fLAO": [1.53, 0, 0], + "wp48": [0, 1.53, 0], + "Psl0": [-0.57728, -0.57728, 0.27] + }, + "faces": { + "Muzl4Es1": { + "uv": { + "fLAO": [6.5, 15.5], + "oT2h": [5, 17], + "OWmi": [5, 14] + }, + "vertices": ["OWmi", "oT2h", "fLAO"], + "texture": 0 + }, + "ATnexadO": { + "uv": { + "fLAO": [6.5, 15.5], + "MO6d": [8, 17], + "oT2h": [5, 17] + }, + "vertices": ["oT2h", "MO6d", "fLAO"], + "texture": 0 + }, + "qqi3rDKy": { + "uv": { + "wp48": [6.5, 15.5], + "bQ73": [5, 14], + "46vx": [8, 14] + }, + "vertices": ["46vx", "bQ73", "wp48"], + "texture": 0 + }, + "wZ0Q1VN7": { + "uv": { + "wp48": [6.5, 15.5], + "2YNc": [5, 17], + "bQ73": [5, 14] + }, + "vertices": ["bQ73", "2YNc", "wp48"], + "texture": 0 + }, + "rd2QG6CY": { + "uv": { + "fLAO": [6.5, 15.5], + "OWmi": [5, 14], + "Z8Sy": [8, 14] + }, + "vertices": ["Z8Sy", "OWmi", "fLAO"], + "texture": 0 + }, + "fdILn2f5": { + "uv": { + "fLAO": [6.5, 15.5], + "Z8Sy": [8, 14], + "MO6d": [8, 17] + }, + "vertices": ["MO6d", "Z8Sy", "fLAO"], + "texture": 0 + }, + "mgHfvV0U": { + "uv": { + "wp48": [6.5, 15.5], + "NrEa": [8, 17], + "2YNc": [5, 17] + }, + "vertices": ["2YNc", "NrEa", "wp48"], + "texture": 0 + }, + "8pt2D7xH": { + "uv": { + "wp48": [6.5, 15.5], + "46vx": [8, 14], + "NrEa": [8, 17] + }, + "vertices": ["NrEa", "46vx", "wp48"], + "texture": 0 + }, + "aeybYSkj": { + "uv": { + "8cmE": [5, 17], + "Psl0": [8, 17], + "a5UE": [5, 14], + "mHED": [8, 14] + }, + "vertices": ["mHED", "a5UE", "Psl0", "8cmE"], + "texture": 0 + }, + "EeSdz22H": { + "uv": { + "8cmE": [5, 17], + "dtZF": [8, 17], + "Psl0": [5, 14], + "34Pf": [8, 14] + }, + "vertices": ["34Pf", "Psl0", "dtZF", "8cmE"], + "texture": 0 + }, + "mTHqyU0p": { + "uv": { + "8cmE": [8, 17], + "a5UE": [8, 14], + "dtZF": [5, 17], + "tFIJ": [5, 14] + }, + "vertices": ["tFIJ", "dtZF", "a5UE", "8cmE"], + "texture": 0 + }, + "ccAZfM5B": { + "uv": { + "Rbk7": [6, 15], + "tFIJ": [6, 14], + "Z8Sy": [7, 14], + "OWmi": [7, 15] + }, + "vertices": ["OWmi", "Z8Sy", "tFIJ", "Rbk7"], + "texture": 0 + }, + "vYEWe2DW": { + "uv": { + "34Pf": [5, 16], + "Rbk7": [5, 15], + "OWmi": [6, 15], + "oT2h": [6, 16] + }, + "vertices": ["oT2h", "OWmi", "Rbk7", "34Pf"], + "texture": 0 + }, + "uAEfVAfZ": { + "uv": { + "dtZF": [6, 17], + "34Pf": [6, 16], + "oT2h": [7, 16], + "MO6d": [7, 17] + }, + "vertices": ["MO6d", "oT2h", "34Pf", "dtZF"], + "texture": 0 + }, + "VFraoDad": { + "uv": { + "tFIJ": [8, 15], + "dtZF": [8, 16], + "MO6d": [7, 16], + "Z8Sy": [7, 15] + }, + "vertices": ["Z8Sy", "MO6d", "dtZF", "tFIJ"], + "texture": 0 + }, + "ngEIUToe": { + "uv": { + "Rbk7": [7, 17], + "mHED": [6, 17], + "2YNc": [6, 16], + "NrEa": [7, 16] + }, + "vertices": ["NrEa", "2YNc", "mHED", "Rbk7"], + "texture": 0 + }, + "VanXuBGE": { + "uv": { + "tFIJ": [8, 16], + "Rbk7": [7, 16], + "NrEa": [7, 15], + "46vx": [8, 15] + }, + "vertices": ["46vx", "NrEa", "Rbk7", "tFIJ"], + "texture": 0 + }, + "3VnqxInH": { + "uv": { + "a5UE": [7, 15], + "tFIJ": [6, 15], + "46vx": [6, 14], + "bQ73": [7, 14] + }, + "vertices": ["bQ73", "46vx", "tFIJ", "a5UE"], + "texture": 0 + }, + "GDoLZyGx": { + "uv": { + "mHED": [6, 16], + "a5UE": [5, 16], + "bQ73": [5, 15], + "2YNc": [6, 15] + }, + "vertices": ["2YNc", "bQ73", "a5UE", "mHED"], + "texture": 0 + }, + "4Hxb797g": { + "uv": { + "Psl0": [5, 17], + "34Pf": [8, 17], + "mHED": [5, 14], + "Rbk7": [8, 14] + }, + "vertices": ["Rbk7", "mHED", "34Pf", "Psl0"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "ca491d2b-d46d-f1b3-8cf1-309423ed2497" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [1.8, 11.8, -7], + "to": [4.2, 14.2, -4], + "autouv": 0, + "color": 3, + "visibility": false, + "origin": [-5, 5, -9], + "faces": { + "north": { + "uv": [1, 20, 3, 22], + "texture": 1 + }, + "east": { + "uv": [0, 0, 0, 0], + "texture": 1 + }, + "south": { + "uv": [0, 0, 0, 0], + "texture": 1 + }, + "west": { + "uv": [0, 0, 0, 0], + "texture": 1 + }, + "up": { + "uv": [0, 0, 0, 0], + "texture": 1 + }, + "down": { + "uv": [0, 0, 0, 0], + "texture": 1 + } + }, + "type": "cube", + "uuid": "28edf6c3-9e51-9aa6-e986-06718e224cf4" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [1.8, 11, -8], + "to": [4.2, 11.8, -5], + "autouv": 0, + "color": 0, + "visibility": false, + "origin": [-5, 5, -9], + "faces": { + "north": { + "uv": [1, 22, 3, 22.8], + "texture": 1 + }, + "east": { + "uv": [0, 0, 0, 0], + "texture": 1 + }, + "south": { + "uv": [0, 0, 0, 0], + "texture": 1 + }, + "west": { + "uv": [0, 0, 0, 0], + "texture": 1 + }, + "up": { + "uv": [21, 19, 23, 22], + "texture": 1 + }, + "down": { + "uv": [13, 19, 15, 22], + "texture": 1 + } + }, + "type": "cube", + "uuid": "6f8d85c8-d224-3d60-439e-e6026a8bb67a" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [1.8, 14.2, -8], + "to": [4.2, 15, -5], + "autouv": 0, + "color": 1, + "visibility": false, + "origin": [-5, 5, -9], + "faces": { + "north": { + "uv": [1, 19.2, 3, 20], + "texture": 1 + }, + "east": { + "uv": [0, 0, 0, 0], + "texture": 1 + }, + "south": { + "uv": [0, 0, 0, 0], + "texture": 1 + }, + "west": { + "uv": [0, 0, 0, 0], + "texture": 1 + }, + "up": { + "uv": [5, 19, 7, 22], + "texture": 1 + }, + "down": { + "uv": [21, 19, 23, 22], + "rotation": 180, + "texture": 1 + } + }, + "type": "cube", + "uuid": "bb3d788f-0b96-faf1-c93e-ec31a94c8ac5" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [1, 11, -8], + "to": [1.8, 15, -5], + "autouv": 0, + "color": 1, + "visibility": false, + "origin": [-5, 5, -9], + "faces": { + "north": { + "uv": [3, 19, 3.8, 23], + "texture": 1 + }, + "east": { + "uv": [20, 19, 24, 22], + "rotation": 90, + "texture": 1 + }, + "south": { + "uv": [0, 0, 0, 0], + "texture": 1 + }, + "west": { + "uv": [16, 19, 20, 22], + "rotation": 90, + "texture": 1 + }, + "up": { + "uv": [7, 19, 7.8, 22], + "rotation": 180, + "texture": 1 + }, + "down": { + "uv": [15.1, 19, 15.9, 22], + "texture": 1 + } + }, + "type": "cube", + "uuid": "fcf1645a-dea9-04d1-2e0d-fe655d4bafcc" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [4.2, 11, -8], + "to": [5, 15, -5], + "autouv": 0, + "color": 5, + "visibility": false, + "origin": [-5, 5, -9], + "faces": { + "north": { + "uv": [0.2, 19, 1, 23], + "texture": 1 + }, + "east": { + "uv": [8, 19, 12, 22], + "rotation": 90, + "texture": 1 + }, + "south": { + "uv": [0, 0, 0, 0], + "texture": 1 + }, + "west": { + "uv": [20, 19, 24, 22], + "rotation": 270, + "texture": 1 + }, + "up": { + "uv": [4.2, 19, 5, 22], + "rotation": 180, + "texture": 1 + }, + "down": { + "uv": [12.2, 19, 13, 22], + "texture": 1 + } + }, + "type": "cube", + "uuid": "8999e835-8300-56d0-e735-274e3f8c42a3" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [0.5, 16, -4.5], + "to": [5.5, 17, 0.5], + "autouv": 0, + "color": 3, + "visibility": false, + "origin": [-5, 5, -9], + "faces": { + "north": { + "uv": [10, 9, 15, 10], + "texture": 1 + }, + "east": { + "uv": [10, 10, 15, 11], + "texture": 1 + }, + "south": { + "uv": [10, 11, 15, 12], + "texture": 1 + }, + "west": { + "uv": [10, 12, 15, 13], + "texture": 1 + }, + "up": { + "uv": [0, 9, 5, 14], + "texture": 1 + }, + "down": { + "uv": [0, 0, 0, 0], + "texture": 1 + } + }, + "type": "cube", + "uuid": "9b51edf7-90e0-226b-2ced-771b9667b3c6" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [5.6, 12, 1.6], + "to": [6.6, 14, 3.6], + "autouv": 0, + "color": 6, + "visibility": false, + "origin": [-5, 5, -9], + "faces": { + "north": { + "uv": [30, 7, 32, 8], + "rotation": 90, + "texture": 1 + }, + "east": { + "uv": [30, 10, 32, 12], + "texture": 1 + }, + "south": { + "uv": [30, 9, 32, 10], + "rotation": 90, + "texture": 1 + }, + "west": { + "uv": [0, 0, 0, 0], + "texture": 1 + }, + "up": { + "uv": [30, 6, 32, 7], + "rotation": 90, + "texture": 1 + }, + "down": { + "uv": [30, 8, 32, 9], + "rotation": 90, + "texture": 1 + } + }, + "type": "cube", + "uuid": "a1daae99-e186-4045-047f-33a8f6ec8b68" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [6, 12, -4], + "to": [7, 15, -1], + "autouv": 0, + "color": 3, + "visibility": false, + "origin": [-5, 5, -9], + "faces": { + "north": { + "uv": [29, 13, 32, 14], + "rotation": 90, + "texture": 1 + }, + "east": { + "uv": [29, 16, 32, 19], + "texture": 1 + }, + "south": { + "uv": [29, 15, 32, 16], + "rotation": 90, + "texture": 1 + }, + "west": { + "uv": [0, 0, 0, 0], + "texture": 1 + }, + "up": { + "uv": [29, 12, 32, 13], + "rotation": 90, + "texture": 1 + }, + "down": { + "uv": [29, 14, 32, 15], + "rotation": 90, + "texture": 1 + } + }, + "type": "cube", + "uuid": "5640faf0-69c0-0cca-307d-37e784b29730" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [0, 10, -5], + "to": [6, 16, 4], + "autouv": 0, + "color": 2, + "visibility": false, + "origin": [-5, 5, -9], + "faces": { + "north": { + "uv": [24, 0, 30, 6], + "texture": 1 + }, + "east": { + "uv": [6, 0, 12, 9], + "rotation": 90, + "texture": 1 + }, + "south": { + "uv": [24, 6, 30, 12], + "texture": 1 + }, + "west": { + "uv": [18, 0, 24, 9], + "rotation": 90, + "texture": 1 + }, + "up": { + "uv": [0, 0, 6, 9], + "texture": 1 + }, + "down": { + "uv": [12, 0, 18, 9], + "texture": 1 + } + }, + "type": "cube", + "uuid": "a85c0339-e7a5-65d2-88a1-21b5f2347100" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-2.23633, 5.07857, -0.15628], + "rotation": [1.72795, -0.14886, 0.15341], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "fXDl": [-0.0021, -4.17816, 0.47714], + "769S": [0, 4.82143, 0.45], + "Ngnq": [-1.16404, -3.27857, 2.61], + "86iU": [-0.99219, 3.08572, 3.15], + "Orqk": [-2.32807, -3.27857, 0.45], + "2WPs": [-1.98437, 3.08572, 0.45], + "sf20": [-1.16404, -3.27857, -1.71], + "JpAB": [-0.99219, 3.08572, -2.25], + "uSt3": [1.16404, -3.27857, -1.71], + "LEG0": [0.99219, 3.08572, -2.25], + "H1ru": [2.32808, -3.27857, 0.45], + "GPdT": [2.16437, 3.08572, 0.45], + "HLm2": [1.16404, -3.27857, 2.61], + "Ba1X": [0.99219, 3.08572, 3.15] + }, + "faces": { + "kIuOJ6a5": { + "uv": { + "fXDl": [1.3815, 54.3836], + "Orqk": [5.3696, 54.3836], + "Ngnq": [3.37555, 51.9836] + }, + "vertices": ["Ngnq", "Orqk", "fXDl"], + "texture": 0 + }, + "jwCmvIw0": { + "uv": { + "86iU": [1.3815, 47.9999], + "2WPs": [5.80906, 47.9836], + "Ngnq": [2.24355, 58.9896], + "Orqk": [6.11257, 58.9896] + }, + "vertices": ["Orqk", "Ngnq", "2WPs", "86iU"], + "texture": 0 + }, + "8CBehK8M": { + "uv": { + "769S": [3.18974, 48.9836], + "86iU": [0, 52.7496], + "2WPs": [4.47951, 52.7496] + }, + "vertices": ["2WPs", "86iU", "769S"], + "texture": 0 + }, + "6735bTQz": { + "uv": { + "fXDl": [1.3815, 50.9836], + "sf20": [3.37555, 53.3836], + "Orqk": [5.3696, 50.9836] + }, + "vertices": ["Orqk", "sf20", "fXDl"], + "texture": 0 + }, + "5RuiYjJo": { + "uv": { + "2WPs": [1.68501, 47.9893], + "JpAB": [6.11257, 47.9836], + "Orqk": [1.3815, 58.9844], + "sf20": [5.25052, 58.9844] + }, + "vertices": ["sf20", "Orqk", "JpAB", "2WPs"], + "texture": 0 + }, + "haqmnfWx": { + "uv": { + "769S": [2.67126, 51.9836], + "2WPs": [1.3815, 55.7496], + "JpAB": [5.86086, 55.7496] + }, + "vertices": ["JpAB", "2WPs", "769S"], + "texture": 0 + }, + "LzfYKXZg": { + "uv": { + "fXDl": [3.37555, 52.9836], + "uSt3": [1.3815, 55.3836], + "sf20": [5.3696, 55.3836] + }, + "vertices": ["sf20", "uSt3", "fXDl"], + "texture": 0 + }, + "cdXcnv9J": { + "uv": { + "JpAB": [1.67589, 47.9836], + "LEG0": [5.07521, 47.9836], + "sf20": [1.3815, 58.9999], + "uSt3": [5.3696, 58.9999] + }, + "vertices": ["uSt3", "sf20", "LEG0", "JpAB"], + "texture": 0 + }, + "2Zbo3wUk": { + "uv": { + "769S": [3.08115, 48.9836], + "JpAB": [1.3815, 53.2262], + "LEG0": [4.78081, 53.2262] + }, + "vertices": ["LEG0", "JpAB", "769S"], + "texture": 0 + }, + "7Lb8dPtY": { + "uv": { + "fXDl": [5.36947, 50.9836], + "H1ru": [1.3815, 50.9836], + "uSt3": [3.37541, 53.3836] + }, + "vertices": ["uSt3", "H1ru", "fXDl"], + "texture": 0 + }, + "smP5XAom": { + "uv": { + "LEG0": [0, 47.9999], + "GPdT": [4.42756, 47.9836], + "uSt3": [0.86205, 58.9896], + "H1ru": [4.73108, 58.9896] + }, + "vertices": ["H1ru", "uSt3", "GPdT", "LEG0"], + "texture": 0 + }, + "Jq3zWgIi": { + "uv": { + "769S": [3.1896, 51.9836], + "LEG0": [0, 55.7496], + "GPdT": [4.47937, 55.7496] + }, + "vertices": ["GPdT", "LEG0", "769S"], + "texture": 0 + }, + "Lf6TqTg3": { + "uv": { + "fXDl": [5.36947, 54.3836], + "HLm2": [3.37541, 51.9836], + "H1ru": [1.3815, 54.3836] + }, + "vertices": ["H1ru", "HLm2", "fXDl"], + "texture": 0 + }, + "8RzK1EH5": { + "uv": { + "GPdT": [1.68501, 47.9893], + "Ba1X": [6.11257, 47.9836], + "H1ru": [1.3815, 58.9843], + "HLm2": [5.25052, 58.9843] + }, + "vertices": ["HLm2", "H1ru", "Ba1X", "GPdT"], + "texture": 0 + }, + "BDGVQs73": { + "uv": { + "769S": [4.05276, 48.9836], + "GPdT": [2.76299, 52.7496], + "Ba1X": [7.2425, 52.7496] + }, + "vertices": ["Ba1X", "GPdT", "769S"], + "texture": 0 + }, + "1l3NVOxJ": { + "uv": { + "fXDl": [3.37555, 53.3836], + "Ngnq": [5.3696, 50.9836], + "HLm2": [1.3815, 50.9836] + }, + "vertices": ["HLm2", "Ngnq", "fXDl"], + "texture": 0 + }, + "yIuKEBDF": { + "uv": { + "Ba1X": [1.67589, 47.9836], + "86iU": [5.07521, 47.9836], + "HLm2": [1.3815, 59], + "Ngnq": [5.3696, 59] + }, + "vertices": ["Ngnq", "HLm2", "86iU", "Ba1X"], + "texture": 0 + }, + "ZCMrJe0Y": { + "uv": { + "769S": [3.08115, 51.9836], + "Ba1X": [1.3815, 56.2262], + "86iU": [4.78081, 56.2262] + }, + "vertices": ["86iU", "Ba1X", "769S"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "8cdada64-4e60-bfe3-2585-54e6850be9c4" + }, + { + "name": "circle_selection", + "color": 3, + "origin": [-0.38889, -2.22222, 0.36667], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "w6k7": [3.82214, 0.51619, -1.73274], + "yjoM": [1.58351, 1.2146, -3.52475], + "RTr5": [2.72572, 0.51619, -1.63649], + "KdeM": [1.29834, 1.2146, -2.46171], + "VS7R": [3.41799, 3.60864, 1.42521], + "mwoy": [3.19299, 3.61471, -0.55782], + "5Xoy": [-1.30172, 1.61309, -3.55237], + "w4Mt": [-3.30334, 1.81309, -1.16694], + "XMf1": [-2.61471, 2.11166, 1.20618], + "hDEr": [-0.9019, 2.41166, 2.71384], + "5Djd": [1.40162, 3.01015, 2.83934], + "fCLM": [2.63888, 3.61056, 0.39421], + "i0yp": [-1.20612, 1.61309, -2.45591], + "ElmV": [-2.20693, 1.81309, -1.26319], + "z7dP": [-1.89882, 2.11166, 0.79249], + "XJ4A": [-0.41338, 2.41166, 1.80015], + "SBy3": [1.30516, 3.01015, 1.73676], + "rDlp": [2.42788, 3.60864, 0.92056], + "f19k": [1.91083, -0.5823, 1.75883], + "BA3g": [-0.14948, -0.86815, 1.9657], + "aEsF": [0.23198, -1.04602, 2.98268], + "UzTv": [2.00643, -0.5823, 2.8553], + "Sjst": [-0.48783, -1.0808, 1.97023], + "1vLf": [-1.50456, -1.0808, 2.39172], + "eNbD": [-0.87273, -1.17929, 0.90395], + "ckie": [-1.92251, -1.17929, 0.5733], + "ReuT": [-0.59209, -1.27778, -0.13718], + "4EYt": [-0.30691, -1.27778, -1.20022], + "2Q2X": [2.91164, -0.2823, 0.56611], + "gVk6": [4.00805, -0.2823, 0.46986], + "yGTs": [3.80483, 1.07659, -1.71785], + "4PO5": [1.56216, 1.77501, -3.51668], + "dSZr": [2.70842, 1.07659, -1.6216], + "YfCL": [1.27699, 1.77501, -2.45364], + "TNRk": [3.39992, 4.16904, 1.42092], + "SnFO": [3.19187, 4.175, -0.53936], + "SPl7": [-1.31902, 2.1735, -3.53749], + "BJbH": [-3.32064, 2.3735, -1.15205], + "7mNX": [-2.6201, 2.67206, 1.22468], + "clsf": [-0.91858, 2.97206, 2.71117], + "Lp6I": [1.38936, 3.57055, 2.85386], + "7JyW": [2.63776, 4.17084, 0.41267], + "6Z9s": [-1.22342, 2.1735, -2.44102], + "Vjml": [-2.22423, 2.3735, -1.2483], + "VYPY": [-1.90421, 2.67206, 0.81099], + "7G48": [-0.43007, 2.97206, 1.79749], + "dcku": [1.29289, 3.57055, 1.75128], + "M9qu": [2.4098, 4.16904, 0.91627], + "UsA9": [1.89353, -0.0219, 1.77372], + "Ez9u": [0.3108, -0.46444, 1.94539], + "y75e": [0.22357, -0.42377, 3.0418], + "DpGl": [1.98913, -0.0219, 2.87019], + "nFol": [-0.49986, -0.52039, 1.98963], + "wxIE": [-1.51658, -0.52039, 2.41112], + "dkpp": [-0.89441, -0.61888, 0.91109], + "A9ji": [-1.9442, -0.61888, 0.58043], + "wbSp": [-0.61344, -0.71738, -0.1291], + "vw2t": [-0.32826, -0.71738, -1.19214], + "N64v": [2.89433, 0.2781, 0.581], + "KYpN": [3.99074, 0.2781, 0.48475], + "vH8B": [-2.39395, 4.85359, 0.13333], + "h470": [-2.39395, 4.85359, -0.86667], + "J35x": [-3.10106, 4.14648, 0.13333], + "AS4N": [-3.10106, 4.14648, -0.86667], + "uZl1": [-1.21111, 3.22222, 0.13333], + "r8cd": [-1.21111, 4.22222, 0.13333], + "RBuO": [1.48889, 3.22222, 0.13333], + "l43A": [1.48889, 4.22222, 0.13333], + "KK9l": [-1.21111, 4.22222, -0.86667], + "8RZE": [1.48889, 4.22222, -0.86667], + "zQUZ": [-1.21111, 3.22222, -0.86667], + "4r1K": [1.48889, 3.22222, -0.86667], + "v4FA": [-0.71111, 4.72222, 0.13333], + "SaP1": [-0.71111, 4.72222, -0.86667], + "hwtv": [0.98889, 4.72222, 0.13333], + "zSNG": [0.98889, 4.72222, -0.86667], + "NTOm": [-0.28611, 4.72222, 0.13333], + "6Rn5": [-0.28611, 4.72222, -0.86667], + "DQAm": [0.56389, 4.72222, 0.13333], + "hzda": [0.56389, 4.72222, -0.86667], + "4xjY": [-0.31111, 3.22222, -0.86667], + "xLlC": [-0.31111, 3.22222, 0.13333], + "ysV9": [0.58889, 3.22222, -0.86667], + "OEiu": [0.58889, 3.22222, 0.13333], + "HEb7": [-0.31111, 4.22222, 0.13333], + "Twz4": [0.58889, 4.22222, 0.13333], + "qFyh": [-0.31111, 4.22222, -0.86667], + "7Lkb": [0.58889, 4.22222, -0.86667], + "baM3": [-2.74751, 4.50004, -0.36667], + "AhYD": [2.48889, 4.22222, 0.13333], + "JchO": [2.48889, 3.22222, 0.13333], + "qdRn": [2.48889, 3.22222, -0.86667], + "YfWn": [-0.31111, -0.27778, -0.86667], + "z2De": [0.58889, -0.27778, -0.86667], + "nhav": [0.58889, -0.27778, 0.13333], + "E4yt": [-0.31111, -0.27778, 0.13333], + "Omja": [-0.69935, 4.72222, 0.13333], + "97I5": [-0.69935, 4.72222, -0.86667], + "x8Ka": [0.97712, 4.72222, 0.13333], + "whqz": [0.97712, 4.72222, -0.86667], + "S90S": [0.13889, 25.22222, 0.13333], + "dUmO": [0.13889, 25.22222, -0.86667], + "omTk": [-0.18161, 4.72222, 0.13333], + "LVkI": [0.45939, 4.72222, 0.13333], + "LrXm": [-0.18161, 4.72222, -0.86667], + "yOxX": [0.45939, 4.72222, -0.86667], + "MrKc": [1.58889, 23.47222, 0.13333], + "KdFN": [1.58889, 23.47222, -0.86667], + "jgz2": [0.50212, 23.47222, -0.86667], + "YHNn": [-0.22435, 23.47222, -0.86667], + "Kmzj": [-1.31111, 23.47222, -0.86667], + "sO8h": [-1.31111, 23.47222, 0.13333], + "CTNP": [-0.22435, 23.47222, 0.13333], + "k8pS": [0.50212, 23.47222, 0.13333], + "jizT": [2.48889, 4.22222, -0.86667], + "3PVE": [-0.59979, -1.86645, -1.15534], + "idto": [-0.59979, -1.86645, 0.42201], + "8DN7": [-0.66466, -0.57778, 0.48689], + "S5Ch": [-0.66466, -0.57778, -1.22022], + "GgE6": [0.87756, -1.86645, 0.42201], + "eaDD": [0.94244, -0.57778, 0.48689], + "8xZn": [0.87756, -1.86645, -1.15534], + "ZYxD": [0.94244, -0.57778, -1.22022] + }, + "faces": { + "UcCGWRIR": { + "uv": { + "4PO5": [7, 35], + "yGTs": [7, 34], + "dSZr": [8, 34], + "YfCL": [8, 35] + }, + "vertices": ["YfCL", "dSZr", "yGTs", "4PO5"], + "texture": 9 + }, + "cXJ4ks6b": { + "uv": { + "SPl7": [7, 35], + "4PO5": [7, 34], + "YfCL": [8, 34], + "6Z9s": [8, 35] + }, + "vertices": ["6Z9s", "YfCL", "4PO5", "SPl7"], + "texture": 9 + }, + "gzPb5JkI": { + "uv": { + "BJbH": [7, 35], + "SPl7": [7, 34], + "6Z9s": [8, 34], + "Vjml": [8, 35] + }, + "vertices": ["Vjml", "6Z9s", "SPl7", "BJbH"], + "texture": 9 + }, + "h8s8JfoI": { + "uv": { + "7mNX": [7, 35], + "BJbH": [7, 34], + "Vjml": [8, 34], + "VYPY": [8, 35] + }, + "vertices": ["VYPY", "Vjml", "BJbH", "7mNX"], + "texture": 9 + }, + "bDvnXrQk": { + "uv": { + "clsf": [7, 35], + "7mNX": [7, 34], + "VYPY": [8, 34], + "7G48": [8, 35] + }, + "vertices": ["7G48", "VYPY", "7mNX", "clsf"], + "texture": 9 + }, + "iD1dk5IL": { + "uv": { + "Lp6I": [7, 35], + "clsf": [7, 34], + "7G48": [8, 34], + "dcku": [8, 35] + }, + "vertices": ["dcku", "7G48", "clsf", "Lp6I"], + "texture": 9 + }, + "JajJDXMS": { + "uv": { + "TNRk": [7, 35], + "Lp6I": [7, 34], + "dcku": [8, 34], + "M9qu": [8, 35] + }, + "vertices": ["M9qu", "dcku", "Lp6I", "TNRk"], + "texture": 9 + }, + "yfSczmGZ": { + "uv": { + "SnFO": [7, 35], + "TNRk": [7, 34], + "M9qu": [8, 34], + "7JyW": [8, 35] + }, + "vertices": ["7JyW", "M9qu", "TNRk", "SnFO"], + "texture": 9 + }, + "7Sf4ZbSE": { + "uv": { + "A9ji": [7, 35], + "vw2t": [7, 34], + "wbSp": [8, 34], + "dkpp": [8, 35] + }, + "vertices": ["dkpp", "wbSp", "vw2t", "A9ji"], + "texture": 9 + }, + "mwoYr1wP": { + "uv": { + "wxIE": [7, 35], + "A9ji": [7, 34], + "dkpp": [8, 34], + "nFol": [8, 35] + }, + "vertices": ["nFol", "dkpp", "A9ji", "wxIE"], + "texture": 9 + }, + "9MbUksVi": { + "uv": { + "y75e": [7, 35], + "wxIE": [7, 34], + "nFol": [8, 34], + "Ez9u": [8, 35] + }, + "vertices": ["Ez9u", "nFol", "wxIE", "y75e"], + "texture": 9 + }, + "TmqkEeee": { + "uv": { + "DpGl": [7, 35], + "y75e": [7, 34], + "Ez9u": [8, 34], + "UsA9": [8, 35] + }, + "vertices": ["UsA9", "Ez9u", "y75e", "DpGl"], + "texture": 9 + }, + "ScegAI1G": { + "uv": { + "KYpN": [7, 35], + "DpGl": [7, 34], + "UsA9": [8, 34], + "N64v": [8, 35] + }, + "vertices": ["N64v", "UsA9", "DpGl", "KYpN"], + "texture": 9 + }, + "dW50K3Zh": { + "uv": { + "yGTs": [7, 35], + "KYpN": [7, 34], + "N64v": [8, 34], + "dSZr": [8, 35] + }, + "vertices": ["dSZr", "N64v", "KYpN", "yGTs"], + "texture": 9 + }, + "GfHRz9Nh": { + "uv": { + "RTr5": [7, 40], + "KdeM": [6, 40], + "YfCL": [6, 38], + "dSZr": [7, 38] + }, + "vertices": ["dSZr", "YfCL", "KdeM", "RTr5"], + "texture": 9 + }, + "q4W5foTj": { + "uv": { + "yjoM": [7, 40], + "w6k7": [6, 40], + "yGTs": [6, 38], + "4PO5": [7, 38] + }, + "vertices": ["4PO5", "yGTs", "w6k7", "yjoM"], + "texture": 9 + }, + "6QESHogn": { + "uv": { + "KdeM": [7, 40], + "i0yp": [6, 40], + "6Z9s": [6, 38], + "YfCL": [7, 38] + }, + "vertices": ["YfCL", "6Z9s", "i0yp", "KdeM"], + "texture": 9 + }, + "wx0qL51a": { + "uv": { + "5Xoy": [7, 40], + "yjoM": [6, 40], + "4PO5": [6, 38], + "SPl7": [7, 38] + }, + "vertices": ["SPl7", "4PO5", "yjoM", "5Xoy"], + "texture": 9 + }, + "ryiv0V2h": { + "uv": { + "i0yp": [7, 40], + "ElmV": [6, 40], + "Vjml": [6, 38], + "6Z9s": [7, 38] + }, + "vertices": ["6Z9s", "Vjml", "ElmV", "i0yp"], + "texture": 9 + }, + "MIYBu7WJ": { + "uv": { + "w4Mt": [7, 40], + "5Xoy": [6, 40], + "SPl7": [6, 38], + "BJbH": [7, 38] + }, + "vertices": ["BJbH", "SPl7", "5Xoy", "w4Mt"], + "texture": 9 + }, + "mKICjHmc": { + "uv": { + "ElmV": [7, 40], + "z7dP": [6, 40], + "VYPY": [6, 38], + "Vjml": [7, 38] + }, + "vertices": ["Vjml", "VYPY", "z7dP", "ElmV"], + "texture": 9 + }, + "5MLN4kNk": { + "uv": { + "XMf1": [7, 40], + "w4Mt": [6, 40], + "BJbH": [6, 38], + "7mNX": [7, 38] + }, + "vertices": ["7mNX", "BJbH", "w4Mt", "XMf1"], + "texture": 9 + }, + "y6PdrcyN": { + "uv": { + "z7dP": [7, 40], + "XJ4A": [6, 40], + "7G48": [6, 38], + "VYPY": [7, 38] + }, + "vertices": ["VYPY", "7G48", "XJ4A", "z7dP"], + "texture": 9 + }, + "JXIiKHa6": { + "uv": { + "hDEr": [7, 40], + "XMf1": [6, 40], + "7mNX": [6, 38], + "clsf": [7, 38] + }, + "vertices": ["clsf", "7mNX", "XMf1", "hDEr"], + "texture": 9 + }, + "82IxAoRf": { + "uv": { + "XJ4A": [7, 40], + "SBy3": [6, 40], + "dcku": [6, 38], + "7G48": [7, 38] + }, + "vertices": ["7G48", "dcku", "SBy3", "XJ4A"], + "texture": 9 + }, + "FpAym3Ut": { + "uv": { + "5Djd": [7, 40], + "hDEr": [6, 40], + "clsf": [6, 38], + "Lp6I": [7, 38] + }, + "vertices": ["Lp6I", "clsf", "hDEr", "5Djd"], + "texture": 9 + }, + "Mega3DlU": { + "uv": { + "SBy3": [7, 40], + "rDlp": [6, 40], + "M9qu": [6, 38], + "dcku": [7, 38] + }, + "vertices": ["dcku", "M9qu", "rDlp", "SBy3"], + "texture": 9 + }, + "esXSZ0YK": { + "uv": { + "VS7R": [7, 40], + "5Djd": [6, 40], + "Lp6I": [6, 38], + "TNRk": [7, 38] + }, + "vertices": ["TNRk", "Lp6I", "5Djd", "VS7R"], + "texture": 9 + }, + "EcAYNrv3": { + "uv": { + "rDlp": [7, 40], + "fCLM": [6, 40], + "7JyW": [6, 38], + "M9qu": [7, 38] + }, + "vertices": ["M9qu", "7JyW", "fCLM", "rDlp"], + "texture": 9 + }, + "zRAd92X0": { + "uv": { + "mwoy": [7, 40], + "VS7R": [6, 40], + "TNRk": [6, 38], + "SnFO": [7, 38] + }, + "vertices": ["SnFO", "TNRk", "VS7R", "mwoy"], + "texture": 9 + }, + "k6uXJr1t": { + "uv": { + "ReuT": [7, 40], + "eNbD": [6, 40], + "dkpp": [6, 38], + "wbSp": [7, 38] + }, + "vertices": ["wbSp", "dkpp", "eNbD", "ReuT"], + "texture": 9 + }, + "BGQ5Zv56": { + "uv": { + "4EYt": [7, 35], + "ReuT": [7, 34], + "wbSp": [8, 34], + "vw2t": [8, 35] + }, + "vertices": ["vw2t", "wbSp", "ReuT", "4EYt"], + "texture": 9 + }, + "FPao9USe": { + "uv": { + "ckie": [7, 40], + "4EYt": [6, 40], + "vw2t": [6, 38], + "A9ji": [7, 38] + }, + "vertices": ["A9ji", "vw2t", "4EYt", "ckie"], + "texture": 9 + }, + "wqfVf9MP": { + "uv": { + "eNbD": [7, 40], + "Sjst": [6, 40], + "nFol": [6, 38], + "dkpp": [7, 38] + }, + "vertices": ["dkpp", "nFol", "Sjst", "eNbD"], + "texture": 9 + }, + "n4xxKioQ": { + "uv": { + "1vLf": [7, 40], + "ckie": [6, 40], + "A9ji": [6, 38], + "wxIE": [7, 38] + }, + "vertices": ["wxIE", "A9ji", "ckie", "1vLf"], + "texture": 9 + }, + "dMiegt5h": { + "uv": { + "Sjst": [7, 40], + "BA3g": [6, 40], + "Ez9u": [6, 38], + "nFol": [7, 38] + }, + "vertices": ["nFol", "Ez9u", "BA3g", "Sjst"], + "texture": 9 + }, + "6jmR5Ais": { + "uv": { + "aEsF": [7, 40], + "1vLf": [6, 40], + "wxIE": [6, 38], + "y75e": [7, 38] + }, + "vertices": ["y75e", "wxIE", "1vLf", "aEsF"], + "texture": 9 + }, + "qHZfGGqR": { + "uv": { + "BA3g": [7, 40], + "f19k": [6, 40], + "UsA9": [6, 38], + "Ez9u": [7, 38] + }, + "vertices": ["Ez9u", "UsA9", "f19k", "BA3g"], + "texture": 9 + }, + "DhKzwxh9": { + "uv": { + "UzTv": [7, 40], + "aEsF": [6, 40], + "y75e": [6, 38], + "DpGl": [7, 38] + }, + "vertices": ["DpGl", "y75e", "aEsF", "UzTv"], + "texture": 9 + }, + "HZSwmAz4": { + "uv": { + "f19k": [7, 40], + "2Q2X": [6, 40], + "N64v": [6, 38], + "UsA9": [7, 38] + }, + "vertices": ["UsA9", "N64v", "2Q2X", "f19k"], + "texture": 9 + }, + "twDV2NkQ": { + "uv": { + "gVk6": [7, 40], + "UzTv": [6, 40], + "DpGl": [6, 38], + "KYpN": [7, 38] + }, + "vertices": ["KYpN", "DpGl", "UzTv", "gVk6"], + "texture": 9 + }, + "XMj40AXI": { + "uv": { + "2Q2X": [7, 40], + "RTr5": [6, 40], + "dSZr": [6, 38], + "N64v": [7, 38] + }, + "vertices": ["N64v", "dSZr", "RTr5", "2Q2X"], + "texture": 9 + }, + "nW4CQjKx": { + "uv": { + "w6k7": [7, 40], + "gVk6": [6, 40], + "KYpN": [6, 38], + "yGTs": [7, 38] + }, + "vertices": ["yGTs", "KYpN", "gVk6", "w6k7"], + "texture": 9 + }, + "7jvzcCRK": { + "uv": { + "RTr5": [8, 36], + "KdeM": [9, 36], + "w6k7": [8, 35], + "yjoM": [9, 35] + }, + "vertices": ["yjoM", "w6k7", "KdeM", "RTr5"], + "texture": 9 + }, + "BCToe3r8": { + "uv": { + "KdeM": [8, 36], + "i0yp": [9, 36], + "yjoM": [8, 35], + "5Xoy": [9, 35] + }, + "vertices": ["5Xoy", "yjoM", "i0yp", "KdeM"], + "texture": 9 + }, + "9qC1VWcs": { + "uv": { + "i0yp": [8, 36], + "ElmV": [9, 36], + "5Xoy": [8, 35], + "w4Mt": [9, 35] + }, + "vertices": ["w4Mt", "5Xoy", "ElmV", "i0yp"], + "texture": 9 + }, + "gorbgvot": { + "uv": { + "ElmV": [8, 36], + "z7dP": [9, 36], + "w4Mt": [8, 35], + "XMf1": [9, 35] + }, + "vertices": ["XMf1", "w4Mt", "z7dP", "ElmV"], + "texture": 9 + }, + "d7dYd7bf": { + "uv": { + "z7dP": [8, 36], + "XJ4A": [9, 36], + "XMf1": [8, 35], + "hDEr": [9, 35] + }, + "vertices": ["hDEr", "XMf1", "XJ4A", "z7dP"], + "texture": 9 + }, + "NteBE9TI": { + "uv": { + "5Djd": [8, 36], + "hDEr": [9, 36], + "SBy3": [8, 35], + "XJ4A": [9, 35] + }, + "vertices": ["XJ4A", "SBy3", "hDEr", "5Djd"], + "texture": 9 + }, + "cMbXpCB8": { + "uv": { + "VS7R": [8, 36], + "5Djd": [9, 36], + "rDlp": [8, 35], + "SBy3": [9, 35] + }, + "vertices": ["SBy3", "rDlp", "5Djd", "VS7R"], + "texture": 9 + }, + "g5poZ9UO": { + "uv": { + "mwoy": [8, 36], + "VS7R": [9, 36], + "fCLM": [8, 35], + "rDlp": [9, 35] + }, + "vertices": ["rDlp", "fCLM", "VS7R", "mwoy"], + "texture": 9 + }, + "M3Zn29e2": { + "uv": { + "w6k7": [8, 36], + "gVk6": [9, 36], + "RTr5": [8, 35], + "2Q2X": [9, 35] + }, + "vertices": ["2Q2X", "RTr5", "gVk6", "w6k7"], + "texture": 9 + }, + "xJL1koME": { + "uv": { + "gVk6": [8, 36], + "UzTv": [9, 36], + "2Q2X": [8, 35], + "f19k": [9, 35] + }, + "vertices": ["f19k", "2Q2X", "UzTv", "gVk6"], + "texture": 9 + }, + "rDFzeyuz": { + "uv": { + "UzTv": [8, 36], + "aEsF": [9, 36], + "f19k": [8, 35], + "BA3g": [9, 35] + }, + "vertices": ["BA3g", "f19k", "aEsF", "UzTv"], + "texture": 9 + }, + "lyubORSA": { + "uv": { + "aEsF": [8, 36], + "1vLf": [9, 36], + "BA3g": [8, 35], + "Sjst": [9, 35] + }, + "vertices": ["Sjst", "BA3g", "1vLf", "aEsF"], + "texture": 9 + }, + "bxDmZKzA": { + "uv": { + "1vLf": [8, 36], + "ckie": [9, 36], + "Sjst": [8, 35], + "eNbD": [9, 35] + }, + "vertices": ["eNbD", "Sjst", "ckie", "1vLf"], + "texture": 9 + }, + "33QZJbTF": { + "uv": { + "ckie": [8, 36], + "4EYt": [9, 36], + "eNbD": [8, 35], + "ReuT": [9, 35] + }, + "vertices": ["ReuT", "eNbD", "4EYt", "ckie"], + "texture": 9 + }, + "DY2LwgL6": { + "uv": { + "SnFO": [6, 38], + "mwoy": [6, 40], + "jizT": [7, 38], + "qdRn": [7, 40] + }, + "vertices": ["qdRn", "jizT", "mwoy", "SnFO"], + "texture": 9 + }, + "0tgbNELr": { + "uv": { + "7JyW": [7, 35], + "SnFO": [8, 35], + "AhYD": [7, 34], + "jizT": [8, 34] + }, + "vertices": ["jizT", "AhYD", "SnFO", "7JyW"], + "texture": 9 + }, + "Cyt8KQh6": { + "uv": { + "fCLM": [7, 40], + "7JyW": [7, 38], + "JchO": [6, 40], + "AhYD": [6, 38] + }, + "vertices": ["AhYD", "JchO", "7JyW", "fCLM"], + "texture": 9 + }, + "l45GOput": { + "uv": { + "mwoy": [8, 36], + "fCLM": [9, 36], + "qdRn": [8, 35], + "JchO": [9, 35] + }, + "vertices": ["JchO", "qdRn", "fCLM", "mwoy"], + "texture": 9 + }, + "MPvqDGXn": { + "uv": { + "vH8B": [5, 38], + "r8cd": [6, 38], + "uZl1": [6, 40], + "J35x": [5, 40] + }, + "vertices": ["J35x", "uZl1", "r8cd", "vH8B"], + "texture": 9 + }, + "ZAXqaDfd": { + "uv": { + "h470": [10, 39], + "KK9l": [9, 39], + "r8cd": [9, 38], + "vH8B": [10, 38] + }, + "vertices": ["vH8B", "r8cd", "KK9l", "h470"], + "texture": 9 + }, + "3XT2Qe0F": { + "uv": { + "AS4N": [10, 40], + "zQUZ": [9, 40], + "KK9l": [9, 38], + "h470": [10, 38] + }, + "vertices": ["h470", "KK9l", "zQUZ", "AS4N"], + "texture": 9 + }, + "OSTTZ1WB": { + "uv": { + "J35x": [8, 36], + "uZl1": [8, 35], + "zQUZ": [9, 35], + "AS4N": [9, 36] + }, + "vertices": ["AS4N", "zQUZ", "uZl1", "J35x"], + "texture": 9 + }, + "6x4Fm423": { + "uv": { + "r8cd": [10, 38], + "KK9l": [9, 38], + "SaP1": [9.18519, 37], + "v4FA": [9.81481, 37] + }, + "vertices": ["v4FA", "SaP1", "KK9l", "r8cd"], + "texture": 9 + }, + "QYuUKHe6": { + "uv": { + "8RZE": [10, 38], + "l43A": [9, 38], + "hwtv": [9.18519, 37], + "zSNG": [9.81481, 37] + }, + "vertices": ["zSNG", "hwtv", "l43A", "8RZE"], + "texture": 9 + }, + "1VC3adIZ": { + "uv": { + "4r1K": [8, 36], + "OEiu": [9, 35], + "ysV9": [8, 35], + "RBuO": [9, 36] + }, + "vertices": ["RBuO", "ysV9", "OEiu", "4r1K"], + "texture": 9 + }, + "8eL2HyBf": { + "uv": { + "RBuO": [9, 40], + "Twz4": [8, 38], + "OEiu": [8, 40], + "l43A": [9, 38] + }, + "vertices": ["l43A", "OEiu", "Twz4", "RBuO"], + "texture": 9 + }, + "XkyAZS74": { + "uv": { + "l43A": [9, 38], + "DQAm": [7.81481, 37], + "Twz4": [8, 38], + "hwtv": [8.44444, 37] + }, + "vertices": ["hwtv", "Twz4", "DQAm", "l43A"], + "texture": 9 + }, + "PwpnjFND": { + "uv": { + "8RZE": [6, 38], + "ysV9": [7, 40], + "7Lkb": [7, 38], + "4r1K": [6, 40] + }, + "vertices": ["4r1K", "7Lkb", "ysV9", "8RZE"], + "texture": 9 + }, + "9oMLbnfc": { + "uv": { + "zSNG": [6.55556, 37], + "7Lkb": [7, 38], + "hzda": [7.18519, 37], + "8RZE": [6, 38] + }, + "vertices": ["8RZE", "hzda", "7Lkb", "zSNG"], + "texture": 9 + }, + "Dpxx7CpN": { + "uv": { + "uZl1": [8, 36], + "xLlC": [8, 35], + "4xjY": [9, 35], + "zQUZ": [9, 36] + }, + "vertices": ["zQUZ", "4xjY", "xLlC", "uZl1"], + "texture": 9 + }, + "SVHHhcO2": { + "uv": { + "r8cd": [6, 38], + "HEb7": [7, 38], + "xLlC": [7, 40], + "uZl1": [6, 40] + }, + "vertices": ["uZl1", "xLlC", "HEb7", "r8cd"], + "texture": 9 + }, + "vdwOaCZ4": { + "uv": { + "HEb7": [7, 38], + "Twz4": [8, 38], + "OEiu": [8, 40], + "xLlC": [7, 40] + }, + "vertices": ["xLlC", "OEiu", "Twz4", "HEb7"], + "texture": 9 + }, + "FlfaAgiy": { + "uv": { + "v4FA": [6.55556, 37], + "NTOm": [7.18519, 37], + "HEb7": [7, 38], + "r8cd": [6, 38] + }, + "vertices": ["r8cd", "HEb7", "NTOm", "v4FA"], + "texture": 9 + }, + "NckUeqJ1": { + "uv": { + "zQUZ": [9, 40], + "4xjY": [8, 40], + "qFyh": [8, 38], + "KK9l": [9, 38] + }, + "vertices": ["KK9l", "qFyh", "4xjY", "zQUZ"], + "texture": 9 + }, + "ctGuI6pF": { + "uv": { + "4xjY": [8, 40], + "ysV9": [7, 40], + "7Lkb": [7, 38], + "qFyh": [8, 38] + }, + "vertices": ["qFyh", "7Lkb", "ysV9", "4xjY"], + "texture": 9 + }, + "vSPl6O7i": { + "uv": { + "KK9l": [9, 38], + "qFyh": [8, 38], + "6Rn5": [7.81481, 37], + "SaP1": [8.44444, 37] + }, + "vertices": ["SaP1", "6Rn5", "qFyh", "KK9l"], + "texture": 9 + }, + "zT8H7d85": { + "uv": { + "qFyh": [8, 38], + "7Lkb": [7, 38], + "hzda": [7.18519, 37], + "6Rn5": [7.81481, 37] + }, + "vertices": ["6Rn5", "hzda", "7Lkb", "qFyh"], + "texture": 9 + }, + "chDXs2hw": { + "uv": { + "DQAm": [7.85, 20], + "NTOm": [7.425, 20], + "v4FA": [7, 20] + }, + "vertices": ["v4FA", "NTOm", "DQAm"], + "texture": 9 + }, + "UgShs0ZG": { + "uv": { + "NTOm": [7.18519, 37], + "DQAm": [7.81481, 37], + "Twz4": [8, 38], + "HEb7": [7, 38] + }, + "vertices": ["HEb7", "Twz4", "DQAm", "NTOm"], + "texture": 9 + }, + "OfOkta8P": { + "uv": { + "hwtv": [8.425, 22], + "DQAm": [7.85, 20], + "NTOm": [7.425, 20] + }, + "vertices": ["NTOm", "DQAm", "hwtv"], + "texture": 9 + }, + "E1pKqcMx": { + "uv": { + "baM3": [5.49999, 38.9999], + "vH8B": [6, 38], + "J35x": [6, 40] + }, + "vertices": ["J35x", "vH8B", "baM3"], + "texture": 9 + }, + "pZyasg7y": { + "uv": { + "baM3": [5.49999, 38.9999], + "h470": [5, 38], + "vH8B": [6, 38] + }, + "vertices": ["vH8B", "h470", "baM3"], + "texture": 9 + }, + "FgHaoPIT": { + "uv": { + "baM3": [7, 40], + "AS4N": [6, 40], + "h470": [7, 38] + }, + "vertices": ["h470", "AS4N", "baM3"], + "texture": 9 + }, + "pJDXjDXs": { + "uv": { + "baM3": [7, 34], + "J35x": [8, 34], + "AS4N": [8, 35] + }, + "vertices": ["AS4N", "J35x", "baM3"], + "texture": 9 + }, + "ncUiQvb7": { + "uv": { + "qdRn": [8, 37], + "jizT": [8, 35], + "JchO": [7, 37], + "AhYD": [7, 35] + }, + "vertices": ["AhYD", "JchO", "jizT", "qdRn"], + "texture": 9 + }, + "hgyNhvtP": { + "uv": { + "l43A": [7, 35], + "8RZE": [7, 34], + "jizT": [8, 34], + "AhYD": [8, 35] + }, + "vertices": ["AhYD", "jizT", "8RZE", "l43A"], + "texture": 9 + }, + "XfraWsWn": { + "uv": { + "RBuO": [7, 37], + "l43A": [7, 35], + "AhYD": [8, 35], + "JchO": [8, 37] + }, + "vertices": ["JchO", "AhYD", "l43A", "RBuO"], + "texture": 9 + }, + "FRB6ZcyW": { + "uv": { + "4r1K": [8, 36], + "RBuO": [8, 35], + "JchO": [9, 35], + "qdRn": [9, 36] + }, + "vertices": ["qdRn", "JchO", "RBuO", "4r1K"], + "texture": 9 + }, + "3rYUB9Ii": { + "uv": { + "8RZE": [8, 35], + "4r1K": [8, 37], + "qdRn": [7, 37], + "jizT": [7, 35] + }, + "vertices": ["jizT", "qdRn", "4r1K", "8RZE"], + "texture": 9 + }, + "ewN9rZIU": { + "uv": { + "ysV9": [8, 44], + "4xjY": [7, 44], + "YfWn": [7, 40], + "z2De": [8, 40] + }, + "vertices": ["z2De", "YfWn", "4xjY", "ysV9"], + "texture": 9 + }, + "ZnGvA9ol": { + "uv": { + "OEiu": [7, 35], + "ysV9": [7, 34], + "z2De": [8, 34], + "nhav": [8, 35] + }, + "vertices": ["nhav", "z2De", "ysV9", "OEiu"], + "texture": 9 + }, + "LJPkLCrV": { + "uv": { + "xLlC": [7, 40], + "OEiu": [8, 40], + "nhav": [8, 44], + "E4yt": [7, 44] + }, + "vertices": ["E4yt", "nhav", "OEiu", "xLlC"], + "texture": 9 + }, + "VPtBmmMF": { + "uv": { + "4xjY": [7, 35], + "xLlC": [7, 34], + "E4yt": [8, 34], + "YfWn": [8, 35] + }, + "vertices": ["YfWn", "E4yt", "xLlC", "4xjY"], + "texture": 9 + }, + "EfJOoi4v": { + "uv": { + "x8Ka": [6, 36], + "KdFN": [7, 20], + "MrKc": [6, 20], + "whqz": [7, 36] + }, + "vertices": ["whqz", "MrKc", "KdFN", "x8Ka"], + "texture": 9 + }, + "ufng06Uj": { + "uv": { + "whqz": [7, 36], + "jgz2": [7.25, 20], + "KdFN": [7, 20], + "yOxX": [7.25, 36] + }, + "vertices": ["yOxX", "KdFN", "jgz2", "whqz"], + "texture": 9 + }, + "xNq0BQtv": { + "uv": { + "97I5": [8, 36], + "sO8h": [9, 20], + "Kmzj": [8, 20], + "Omja": [9, 36] + }, + "vertices": ["Omja", "Kmzj", "sO8h", "97I5"], + "texture": 9 + }, + "UxelpdUq": { + "uv": { + "LVkI": [7.75, 36], + "MrKc": [8, 20], + "k8pS": [7.75, 20], + "x8Ka": [8, 36] + }, + "vertices": ["x8Ka", "k8pS", "MrKc", "LVkI"], + "texture": 9 + }, + "F0DoSv1x": { + "uv": { + "Omja": [7, 36], + "CTNP": [7.25, 20], + "sO8h": [7, 20], + "omTk": [7.25, 36] + }, + "vertices": ["omTk", "sO8h", "CTNP", "Omja"], + "texture": 9 + }, + "w16vR4Oa": { + "uv": { + "omTk": [6.5, 11], + "k8pS": [7.5, 8], + "CTNP": [6.5, 8], + "LVkI": [7.5, 11] + }, + "vertices": ["LVkI", "CTNP", "k8pS", "omTk"], + "texture": 9 + }, + "rnmBVqMn": { + "uv": { + "LrXm": [7.75, 36], + "Kmzj": [8, 20], + "YHNn": [7.75, 20], + "97I5": [8, 36] + }, + "vertices": ["97I5", "YHNn", "Kmzj", "LrXm"], + "texture": 9 + }, + "i9QWf78f": { + "uv": { + "yOxX": [6.5, 11], + "YHNn": [7.5, 8], + "jgz2": [6.5, 8], + "LrXm": [7.5, 11] + }, + "vertices": ["LrXm", "jgz2", "YHNn", "yOxX"], + "texture": 9 + }, + "L8EdjpKY": { + "uv": { + "dUmO": [7, 4], + "KdFN": [7, 20], + "MrKc": [6, 20], + "S90S": [6, 4] + }, + "vertices": ["S90S", "MrKc", "KdFN", "dUmO"], + "texture": 9 + }, + "axsJrmtt": { + "uv": { + "jgz2": [7.25, 20], + "KdFN": [7, 20], + "dUmO": [7, 4] + }, + "vertices": ["dUmO", "KdFN", "jgz2"], + "texture": 9 + }, + "iHnAYB92": { + "uv": { + "dUmO": [6.95, 4], + "YHNn": [7.25, 7.5], + "jgz2": [6.75, 7.5] + }, + "vertices": ["jgz2", "YHNn", "dUmO"], + "texture": 9 + }, + "rguPvCKq": { + "uv": { + "dUmO": [8, 4], + "Kmzj": [8, 20], + "YHNn": [7.75, 20] + }, + "vertices": ["YHNn", "Kmzj", "dUmO"], + "texture": 9 + }, + "c8cR9ogq": { + "uv": { + "S90S": [9, 4], + "sO8h": [9, 20], + "Kmzj": [8, 20], + "dUmO": [8, 4] + }, + "vertices": ["dUmO", "Kmzj", "sO8h", "S90S"], + "texture": 9 + }, + "v8wOIisd": { + "uv": { + "CTNP": [7.25, 20], + "sO8h": [7, 20], + "S90S": [7, 4] + }, + "vertices": ["S90S", "sO8h", "CTNP"], + "texture": 9 + }, + "mE46TIZW": { + "uv": { + "k8pS": [7.25, 7.5], + "CTNP": [6.75, 7.5], + "S90S": [6.95, 4] + }, + "vertices": ["S90S", "CTNP", "k8pS"], + "texture": 9 + }, + "zVeOiUM6": { + "uv": { + "S90S": [8, 4], + "MrKc": [8, 20], + "k8pS": [7.75, 20] + }, + "vertices": ["k8pS", "MrKc", "S90S"], + "texture": 9 + }, + "qzLQw2y4": { + "uv": { + "3PVE": [7, 35], + "idto": [7, 34], + "GgE6": [8, 34], + "8xZn": [8, 35] + }, + "vertices": ["8xZn", "GgE6", "idto", "3PVE"], + "texture": 9 + }, + "9mcHE0ag": { + "uv": { + "eaDD": [7, 35], + "ZYxD": [7, 34], + "8xZn": [8, 34], + "GgE6": [8, 35] + }, + "vertices": ["GgE6", "8xZn", "ZYxD", "eaDD"], + "texture": 9 + }, + "101JWkm4": { + "uv": { + "8DN7": [9, 45], + "eaDD": [8, 45], + "GgE6": [8, 44], + "idto": [9, 44] + }, + "vertices": ["idto", "GgE6", "eaDD", "8DN7"], + "texture": 9 + }, + "2WrwqWHk": { + "uv": { + "S5Ch": [7, 35], + "8DN7": [7, 34], + "idto": [8, 34], + "3PVE": [8, 35] + }, + "vertices": ["3PVE", "idto", "8DN7", "S5Ch"], + "texture": 9 + }, + "uRMTSPsN": { + "uv": { + "ZYxD": [8, 46], + "S5Ch": [7, 46], + "3PVE": [7, 45], + "8xZn": [8, 45] + }, + "vertices": ["8xZn", "3PVE", "S5Ch", "ZYxD"], + "texture": 9 + }, + "sUkbC0IS": { + "uv": { + "YfWn": [7, 35], + "E4yt": [7, 34], + "8DN7": [8, 34], + "S5Ch": [8, 35] + }, + "vertices": ["S5Ch", "8DN7", "E4yt", "YfWn"], + "texture": 9 + }, + "5Vs8g6lP": { + "uv": { + "E4yt": [8.3536, 46], + "nhav": [9.2536, 46], + "eaDD": [9.6071, 46.3536], + "8DN7": [8, 46.3536] + }, + "vertices": ["8DN7", "eaDD", "nhav", "E4yt"], + "texture": 9 + }, + "RYyPY93A": { + "uv": { + "nhav": [7, 35], + "z2De": [7, 34], + "ZYxD": [8, 34], + "eaDD": [8, 35] + }, + "vertices": ["eaDD", "ZYxD", "z2De", "nhav"], + "texture": 9 + }, + "xxRzDgcK": { + "uv": { + "z2De": [8.2536, 46.3535], + "YfWn": [7.3536, 46.3535], + "S5Ch": [7, 46], + "ZYxD": [8.6071, 46] + }, + "vertices": ["ZYxD", "S5Ch", "YfWn", "z2De"], + "texture": 9 + } + }, + "type": "mesh", + "uuid": "7cb50623-ba66-d366-b484-d07c84a26131" + }, + { + "name": "cylinder", + "color": 4, + "origin": [0, 0, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "Syg9": [0, 0, 0], + "5L4x": [0, 30, 0], + "vMl8": [0.82843, 0, 2], + "KBQr": [0.82843, 30, 2], + "WTHu": [2, 0, 0.82843], + "U0jU": [2, 30, 0.82843], + "9y8l": [2, 0, -0.82843], + "JuHm": [2, 30, -0.82843], + "wlNY": [0.82843, 0, -2], + "5qhL": [0.82843, 30, -2], + "nHPO": [-0.82843, 0, -2], + "OTJT": [-0.82843, 30, -2], + "vTqs": [-2, 0, -0.82843], + "V1A8": [-2, 30, -0.82843], + "AK5h": [-2, 0, 0.82843], + "znUA": [-2, 30, 0.82843], + "7PHz": [-0.82843, 0, 2], + "f14k": [-0.82843, 30, 2] + }, + "faces": { + "47jFdP9x": { + "uv": { + "Syg9": [2.98247, 12.94655], + "vMl8": [1.74709, 9.89311], + "WTHu": [0, 11.68177] + }, + "vertices": ["WTHu", "vMl8", "Syg9"], + "texture": 10 + }, + "auaFtT31": { + "uv": { + "KBQr": [5, 0], + "U0jU": [7.2, 0], + "WTHu": [7.2, 16], + "vMl8": [5, 16] + }, + "vertices": ["vMl8", "WTHu", "U0jU", "KBQr"], + "texture": 10 + }, + "KWDAWh3z": { + "uv": { + "5L4x": [2.98247, 12.94655], + "U0jU": [0, 11.68177], + "KBQr": [1.74709, 9.89311] + }, + "vertices": ["KBQr", "U0jU", "5L4x"], + "texture": 10 + }, + "fWglIXih": { + "uv": { + "Syg9": [2.98247, 12.94655], + "WTHu": [0, 11.68177], + "9y8l": [0, 14.21133] + }, + "vertices": ["9y8l", "WTHu", "Syg9"], + "texture": 10 + }, + "WDWTbsYY": { + "uv": { + "U0jU": [7.2, 0], + "JuHm": [9.4, 0], + "9y8l": [9.4, 16], + "WTHu": [7.2, 16] + }, + "vertices": ["WTHu", "9y8l", "JuHm", "U0jU"], + "texture": 10 + }, + "yDGzCejv": { + "uv": { + "5L4x": [2.98247, 12.94655], + "JuHm": [0, 14.21133], + "U0jU": [0, 11.68177] + }, + "vertices": ["U0jU", "JuHm", "5L4x"], + "texture": 10 + }, + "NftA25Ll": { + "uv": { + "Syg9": [2.98247, 12.94655], + "9y8l": [0, 14.21133], + "wlNY": [1.74709, 16] + }, + "vertices": ["wlNY", "9y8l", "Syg9"], + "texture": 10 + }, + "GNBu50Wy": { + "uv": { + "JuHm": [9.4, 0], + "5qhL": [11.6, 0], + "wlNY": [11.6, 16], + "9y8l": [9.4, 16] + }, + "vertices": ["9y8l", "wlNY", "5qhL", "JuHm"], + "texture": 10 + }, + "7q7LBC8k": { + "uv": { + "5L4x": [2.98247, 12.94655], + "5qhL": [1.74709, 16], + "JuHm": [0, 14.21133] + }, + "vertices": ["JuHm", "5qhL", "5L4x"], + "texture": 10 + }, + "nLWLmp41": { + "uv": { + "Syg9": [2.98247, 12.94655], + "wlNY": [1.74709, 16], + "nHPO": [4.21786, 16] + }, + "vertices": ["nHPO", "wlNY", "Syg9"], + "texture": 10 + }, + "ekMCB1ct": { + "uv": { + "5qhL": [5, 0], + "OTJT": [7.2, 0], + "nHPO": [7.2, 16], + "wlNY": [5, 16] + }, + "vertices": ["wlNY", "nHPO", "OTJT", "5qhL"], + "texture": 10 + }, + "Ixk3K9Do": { + "uv": { + "5L4x": [2.98247, 12.94655], + "OTJT": [4.21786, 16], + "5qhL": [1.74709, 16] + }, + "vertices": ["5qhL", "OTJT", "5L4x"], + "texture": 10 + }, + "SzwuCwIQ": { + "uv": { + "Syg9": [2.98247, 12.94655], + "nHPO": [4.21786, 16], + "vTqs": [5.96495, 14.21133] + }, + "vertices": ["vTqs", "nHPO", "Syg9"], + "texture": 10 + }, + "gyPkfYqn": { + "uv": { + "OTJT": [7.2, 0], + "V1A8": [9.4, 0], + "vTqs": [9.4, 16], + "nHPO": [7.2, 16] + }, + "vertices": ["nHPO", "vTqs", "V1A8", "OTJT"], + "texture": 10 + }, + "a3iLNbWD": { + "uv": { + "5L4x": [2.98247, 12.94655], + "V1A8": [5.96495, 14.21133], + "OTJT": [4.21786, 16] + }, + "vertices": ["OTJT", "V1A8", "5L4x"], + "texture": 10 + }, + "PPe96f5C": { + "uv": { + "Syg9": [2.98247, 12.94655], + "vTqs": [5.96495, 14.21133], + "AK5h": [5.96495, 11.68177] + }, + "vertices": ["AK5h", "vTqs", "Syg9"], + "texture": 10 + }, + "8OvwtJu5": { + "uv": { + "V1A8": [13.8, 0], + "znUA": [16, 0], + "AK5h": [16, 16], + "vTqs": [13.8, 16] + }, + "vertices": ["vTqs", "AK5h", "znUA", "V1A8"], + "texture": 10 + }, + "aFQRLPC7": { + "uv": { + "5L4x": [2.98247, 12.94655], + "znUA": [5.96495, 11.68177], + "V1A8": [5.96495, 14.21133] + }, + "vertices": ["V1A8", "znUA", "5L4x"], + "texture": 10 + }, + "buMxxshu": { + "uv": { + "Syg9": [2.98247, 12.94655], + "AK5h": [5.96495, 11.68177], + "7PHz": [4.21786, 9.89311] + }, + "vertices": ["7PHz", "AK5h", "Syg9"], + "texture": 10 + }, + "imkdwPZw": { + "uv": { + "znUA": [11.6, 0], + "f14k": [13.8, 0], + "7PHz": [13.8, 16], + "AK5h": [11.6, 16] + }, + "vertices": ["AK5h", "7PHz", "f14k", "znUA"], + "texture": 10 + }, + "k8nu5H6F": { + "uv": { + "5L4x": [2.98247, 12.94655], + "f14k": [4.21786, 9.89311], + "znUA": [5.96495, 11.68177] + }, + "vertices": ["znUA", "f14k", "5L4x"], + "texture": 10 + }, + "DZPuyzEl": { + "uv": { + "Syg9": [2.98247, 12.94655], + "7PHz": [4.21786, 9.89311], + "vMl8": [1.74709, 9.89311] + }, + "vertices": ["vMl8", "7PHz", "Syg9"], + "texture": 10 + }, + "XLpjEnxi": { + "uv": { + "f14k": [13.8, 0], + "KBQr": [16, 0], + "vMl8": [16, 16], + "7PHz": [13.8, 16] + }, + "vertices": ["7PHz", "vMl8", "KBQr", "f14k"], + "texture": 10 + }, + "gyMGsv9U": { + "uv": { + "5L4x": [2.98247, 12.94655], + "KBQr": [1.74709, 9.89311], + "f14k": [4.21786, 9.89311] + }, + "vertices": ["f14k", "KBQr", "5L4x"], + "texture": 10 + } + }, + "type": "mesh", + "uuid": "c1a191fa-bda9-da93-b666-4ee63af908b3" + }, + { + "name": "LeftElytra", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-4.4, 1.9, 1.9], + "to": [4.4, 19.7, 1.7], + "autouv": 0, + "color": 1, + "visibility": false, + "inflate": 1, + "origin": [-4.5, 19.8, 0.9], + "faces": { + "north": { + "uv": [24, 2, 34, 22], + "texture": 11 + }, + "east": { + "uv": [22, 2, 24, 22], + "texture": 11 + }, + "south": { + "uv": [36, 2, 46, 22], + "texture": 11 + }, + "west": { + "uv": [34, 2, 36, 22], + "texture": 11 + }, + "up": { + "uv": [34, 2, 24, 0], + "texture": 11 + }, + "down": { + "uv": [44, 0, 34, 2], + "texture": 11 + } + }, + "type": "cube", + "uuid": "9d5d4d0c-3741-bd02-c98e-a172432aa02f" + }, + { + "name": "RightElytra", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-4.4, 1.9, 0.1], + "to": [4.4, 19.7, 1.7], + "autouv": 0, + "color": 4, + "visibility": false, + "inflate": 1, + "origin": [4.5, 19.8, 0], + "faces": { + "north": { + "uv": [34, 2, 24, 22], + "texture": 11 + }, + "east": { + "uv": [24, 2, 22, 22], + "texture": 11 + }, + "south": { + "uv": [46, 2, 36, 22], + "texture": 11 + }, + "west": { + "uv": [36, 2, 34, 22], + "texture": 11 + }, + "up": { + "uv": [24, 2, 34, 0], + "texture": 11 + }, + "down": { + "uv": [34, 0, 44, 2], + "texture": 11 + } + }, + "type": "cube", + "uuid": "96a3cb8c-5a5d-c76f-8090-446b052c4253" + }, + { + "name": "cube_selection", + "color": 0, + "origin": [6.525, 11.7, 0.36], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "SG2C": [0.225, -0.24539, 1.35], + "aXfG": [0.225, -0.24547, -0.77023], + "gYNL": [-0.7695, -0.24539, 1.35], + "qm42": [-0.6525, -0.24547, -0.86023], + "yyqQ": [-0.7695, -0.24547, -0.20407], + "rsTD": [-0.7695, -0.24547, 0.31396], + "EgMs": [-0.7695, -0.24547, 0.83198], + "Cp8M": [0.225, -0.24547, -0.20407], + "6QYx": [0.225, -0.24547, 0.31396], + "Tmp9": [0.225, -0.24547, 0.83198], + "2XG6": [-0.828, -1.96367, 1.28093], + "0NfC": [-0.40289, -1.96368, 0.90104], + "ktsA": [-0.828, -1.96368, 0.90104], + "gl6I": [-0.40289, -1.96367, 1.28093], + "wmh0": [-0.40289, -2.13553, 0.38302], + "bBD0": [-0.40289, -2.13551, 0.7629], + "bLzn": [-0.828, -2.13551, 0.7629], + "5Oea": [-0.828, -2.13553, 0.38302], + "B3xb": [-0.40289, -2.2501, -0.135], + "7f4f": [-0.40289, -2.25008, 0.24488], + "VxRo": [-0.828, -2.25008, 0.24488], + "QZyX": [-0.828, -2.2501, -0.135], + "zUtn": [-0.40289, -2.0783, -0.65302], + "nAyf": [-0.40289, -2.07829, -0.27314], + "c9bo": [-0.828, -2.07829, -0.27314], + "ZvZ2": [-0.711, -2.0783, -0.65302], + "jyuv": [-0.0675, 0.9, 1.35], + "BcrG": [-0.0675, 0.9, -0.7221], + "SmHE": [-0.945, 0.9, 1.35], + "16LN": [-0.945, 0.9, -0.7221], + "rkTD": [-0.945, 0.9, -1.41279], + "5bB4": [-0.0675, 0.9, -1.41279], + "gsUF": [-0.7695, -0.24547, -1.55093], + "3ZE3": [-0.0675, -0.24547, -1.55093], + "DLfR": [-0.828, -1.10457, -1.62], + "aOPa": [-0.243, -1.10457, -1.62], + "ZHsx": [-0.243, -1.10457, -1.06744], + "U3G7": [-0.828, -1.10457, -1.06744] + }, + "faces": { + "m0tfQVEw": { + "uv": { + "gl6I": [2.5, 9], + "ktsA": [1, 9.75], + "0NfC": [2.5, 9.75], + "2XG6": [1, 9] + }, + "vertices": ["2XG6", "0NfC", "ktsA", "gl6I"], + "texture": 0 + }, + "IiwdQUx2": { + "uv": { + "ZvZ2": [1, 12], + "c9bo": [1, 11.25], + "nAyf": [2.5, 11.25], + "zUtn": [2.5, 12] + }, + "vertices": ["zUtn", "nAyf", "c9bo", "ZvZ2"], + "texture": 0 + }, + "Ul4tOyFB": { + "uv": { + "QZyX": [1, 11.25], + "VxRo": [1, 10.5], + "7f4f": [2.5, 10.5], + "B3xb": [2.5, 11.25] + }, + "vertices": ["B3xb", "7f4f", "VxRo", "QZyX"], + "texture": 0 + }, + "xHcIDvFc": { + "uv": { + "5Oea": [1, 10.5], + "bLzn": [1, 9.75], + "bBD0": [2.5, 9.75], + "wmh0": [2.5, 10.5] + }, + "vertices": ["wmh0", "bBD0", "bLzn", "5Oea"], + "texture": 0 + }, + "FvcWTee2": { + "uv": { + "EgMs": [0, 6], + "gYNL": [0.75, 6], + "2XG6": [0.75, 7], + "ktsA": [0, 7] + }, + "vertices": ["ktsA", "2XG6", "gYNL", "EgMs"], + "texture": 0 + }, + "YD42q4Vm": { + "uv": { + "Tmp9": [1.5, 1.4], + "EgMs": [0, 1.4], + "ktsA": [0, 3.4], + "0NfC": [1.5, 3.4] + }, + "vertices": ["0NfC", "ktsA", "EgMs", "Tmp9"], + "texture": 0 + }, + "DcHaX5tj": { + "uv": { + "SG2C": [6, 11.00031], + "Tmp9": [7, 11], + "0NfC": [7, 12.74996], + "gl6I": [6, 12.75003] + }, + "vertices": ["gl6I", "0NfC", "Tmp9", "SG2C"], + "texture": 0 + }, + "KFuNt2na": { + "uv": { + "gYNL": [1, 5], + "SG2C": [2.5, 5], + "gl6I": [2.5, 6], + "2XG6": [1, 6] + }, + "vertices": ["2XG6", "gl6I", "SG2C", "gYNL"], + "texture": 0 + }, + "UEt7qrj2": { + "uv": { + "Tmp9": [6, 11.00031], + "6QYx": [7, 11], + "wmh0": [7, 12.74996], + "bBD0": [6, 12.75003] + }, + "vertices": ["bBD0", "wmh0", "6QYx", "Tmp9"], + "texture": 0 + }, + "KB0DkmzM": { + "uv": { + "EgMs": [1.5, 1.4], + "Tmp9": [0, 1.4], + "bBD0": [0, 3.4], + "bLzn": [1.5, 3.4] + }, + "vertices": ["bLzn", "bBD0", "Tmp9", "EgMs"], + "texture": 0 + }, + "Ccf24YWf": { + "uv": { + "rsTD": [0.00003, 7], + "EgMs": [0.75003, 7], + "bLzn": [0.7499, 8], + "5Oea": [0, 8] + }, + "vertices": ["5Oea", "bLzn", "EgMs", "rsTD"], + "texture": 0 + }, + "KU7QLZrc": { + "uv": { + "6QYx": [1.5, 1.4], + "rsTD": [0, 1.4], + "5Oea": [0, 3.4], + "wmh0": [1.5, 3.4] + }, + "vertices": ["wmh0", "5Oea", "rsTD", "6QYx"], + "texture": 0 + }, + "GiNazZC5": { + "uv": { + "6QYx": [6, 11.00031], + "Cp8M": [7, 11], + "B3xb": [7, 12.74996], + "7f4f": [6, 12.75003] + }, + "vertices": ["7f4f", "B3xb", "Cp8M", "6QYx"], + "texture": 0 + }, + "Z8JMQhKI": { + "uv": { + "rsTD": [1.5, 1.4], + "6QYx": [0, 1.4], + "7f4f": [0, 3.4], + "VxRo": [1.5, 3.4] + }, + "vertices": ["VxRo", "7f4f", "6QYx", "rsTD"], + "texture": 0 + }, + "S5lPFrVF": { + "uv": { + "yyqQ": [0, 7], + "rsTD": [0.75, 7], + "VxRo": [0.7501, 8], + "QZyX": [0.0001, 8] + }, + "vertices": ["QZyX", "VxRo", "rsTD", "yyqQ"], + "texture": 0 + }, + "xUtPJcWj": { + "uv": { + "Cp8M": [1.5, 1.4], + "yyqQ": [0, 1.4], + "QZyX": [0, 3.4], + "B3xb": [1.5, 3.4] + }, + "vertices": ["B3xb", "QZyX", "yyqQ", "Cp8M"], + "texture": 0 + }, + "3N0qXU4V": { + "uv": { + "Cp8M": [6, 11.00031], + "aXfG": [7, 11], + "zUtn": [7, 12.74996], + "nAyf": [6, 12.75003] + }, + "vertices": ["nAyf", "zUtn", "aXfG", "Cp8M"], + "texture": 0 + }, + "SR3ZmE4w": { + "uv": { + "yyqQ": [1.5, 1.4], + "Cp8M": [0, 1.4], + "nAyf": [0, 3.4], + "c9bo": [1.5, 3.4] + }, + "vertices": ["c9bo", "nAyf", "Cp8M", "yyqQ"], + "texture": 0 + }, + "pJR6Btzm": { + "uv": { + "qm42": [0, 7], + "yyqQ": [0.75, 7], + "c9bo": [0.7501, 8], + "ZvZ2": [0.0001, 8] + }, + "vertices": ["ZvZ2", "c9bo", "yyqQ", "qm42"], + "texture": 0 + }, + "aR8MHDcQ": { + "uv": { + "aXfG": [1.5, 1.4], + "qm42": [0, 1.4], + "ZvZ2": [0, 3.4], + "zUtn": [1.5, 3.4] + }, + "vertices": ["zUtn", "ZvZ2", "qm42", "aXfG"], + "texture": 0 + }, + "vvIAs6ec": { + "uv": { + "SG2C": [0, 7], + "aXfG": [3, 7], + "jyuv": [0, 5], + "BcrG": [3, 5] + }, + "vertices": ["BcrG", "jyuv", "aXfG", "SG2C"], + "texture": 0 + }, + "CkMjBEUr": { + "uv": { + "SmHE": [1, 12], + "jyuv": [2.5, 12], + "16LN": [1, 9], + "BcrG": [2.5, 9] + }, + "vertices": ["BcrG", "16LN", "jyuv", "SmHE"], + "texture": 0 + }, + "uo43jn6G": { + "uv": { + "gYNL": [1, 11], + "SG2C": [2.5, 11], + "SmHE": [1, 9], + "jyuv": [2.5, 9] + }, + "vertices": ["jyuv", "SmHE", "SG2C", "gYNL"], + "texture": 0 + }, + "5U9xU0dD": { + "uv": { + "3ZE3": [1, 11], + "gsUF": [2.5, 11], + "5bB4": [1, 9], + "rkTD": [2.5, 9] + }, + "vertices": ["rkTD", "5bB4", "gsUF", "3ZE3"], + "texture": 0 + }, + "PMT6iALM": { + "uv": { + "16LN": [2, 6], + "qm42": [2, 8], + "gsUF": [1, 8], + "rkTD": [1, 6] + }, + "vertices": ["rkTD", "gsUF", "qm42", "16LN"], + "texture": 0 + }, + "laujVFTj": { + "uv": { + "BcrG": [2.5, 8], + "16LN": [1, 8], + "rkTD": [1, 7], + "5bB4": [2.5, 7] + }, + "vertices": ["5bB4", "rkTD", "16LN", "BcrG"], + "texture": 0 + }, + "8H3cL8dN": { + "uv": { + "aXfG": [0, 9], + "BcrG": [0, 7], + "5bB4": [1, 7], + "3ZE3": [1, 9] + }, + "vertices": ["3ZE3", "5bB4", "BcrG", "aXfG"], + "texture": 0 + }, + "qTTfHe64": { + "uv": { + "U3G7": [2.5, 8.00004], + "ZHsx": [1.00001, 7.99996], + "aOPa": [1, 7], + "DLfR": [2.50005, 7] + }, + "vertices": ["DLfR", "aOPa", "ZHsx", "U3G7"], + "texture": 0 + }, + "G08WUC3f": { + "uv": { + "3ZE3": [1, 5], + "gsUF": [2.5, 5], + "DLfR": [2.5, 6], + "aOPa": [1, 6] + }, + "vertices": ["aOPa", "DLfR", "gsUF", "3ZE3"], + "texture": 0 + }, + "pHmNi5fh": { + "uv": { + "aXfG": [6, 11.00031], + "3ZE3": [7, 11], + "aOPa": [7, 12.74996], + "ZHsx": [6, 12.75003] + }, + "vertices": ["ZHsx", "aOPa", "3ZE3", "aXfG"], + "texture": 0 + }, + "cuft3msr": { + "uv": { + "qm42": [1, 5], + "aXfG": [2.5, 5], + "ZHsx": [2.5, 6], + "U3G7": [1, 6] + }, + "vertices": ["U3G7", "ZHsx", "aXfG", "qm42"], + "texture": 0 + }, + "azGhehvz": { + "uv": { + "gsUF": [1, 5], + "qm42": [2, 5], + "U3G7": [2, 6], + "DLfR": [1, 6] + }, + "vertices": ["DLfR", "U3G7", "qm42", "gsUF"], + "texture": 0 + }, + "udheygIe": { + "uv": { + "qm42": [0, 7], + "gYNL": [3, 7], + "16LN": [0, 5], + "SmHE": [3, 5] + }, + "vertices": ["SmHE", "16LN", "gYNL", "qm42"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "87c7237b-f5b2-6534-e9bd-e1cb4eceaeda" + }, + { + "name": "cube_selection", + "color": 0, + "origin": [-6.525, 11.7, 0.36], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "SG2C": [-0.225, -0.24539, 1.35], + "aXfG": [-0.225, -0.24547, -0.77023], + "gYNL": [0.7695, -0.24539, 1.35], + "qm42": [0.6525, -0.24547, -0.86023], + "yyqQ": [0.7695, -0.24547, -0.20407], + "rsTD": [0.7695, -0.24547, 0.31396], + "EgMs": [0.7695, -0.24547, 0.83198], + "Cp8M": [-0.225, -0.24547, -0.20407], + "6QYx": [-0.225, -0.24547, 0.31396], + "Tmp9": [-0.225, -0.24547, 0.83198], + "2XG6": [0.828, -1.96367, 1.28093], + "0NfC": [0.40289, -1.96368, 0.90104], + "ktsA": [0.828, -1.96368, 0.90104], + "gl6I": [0.40289, -1.96367, 1.28093], + "wmh0": [0.40289, -2.13553, 0.38302], + "bBD0": [0.40289, -2.13551, 0.7629], + "bLzn": [0.828, -2.13551, 0.7629], + "5Oea": [0.828, -2.13553, 0.38302], + "B3xb": [0.40289, -2.2501, -0.135], + "7f4f": [0.40289, -2.25008, 0.24488], + "VxRo": [0.828, -2.25008, 0.24488], + "QZyX": [0.828, -2.2501, -0.135], + "zUtn": [0.40289, -2.0783, -0.65302], + "nAyf": [0.40289, -2.07829, -0.27314], + "c9bo": [0.828, -2.07829, -0.27314], + "ZvZ2": [0.711, -2.0783, -0.65302], + "jyuv": [0.0675, 0.9, 1.35], + "BcrG": [0.0675, 0.9, -0.7221], + "SmHE": [0.945, 0.9, 1.35], + "16LN": [0.945, 0.9, -0.7221], + "rkTD": [0.945, 0.9, -1.41279], + "5bB4": [0.0675, 0.9, -1.41279], + "gsUF": [0.7695, -0.24547, -1.55093], + "3ZE3": [0.0675, -0.24547, -1.55093], + "DLfR": [0.828, -1.10457, -1.62], + "aOPa": [0.243, -1.10457, -1.62], + "ZHsx": [0.243, -1.10457, -1.06744], + "U3G7": [0.828, -1.10457, -1.06744] + }, + "faces": { + "m0tfQVEw": { + "uv": { + "gl6I": [2.5, 9], + "ktsA": [1, 9.75], + "2XG6": [1, 9], + "0NfC": [2.5, 9.75] + }, + "vertices": ["0NfC", "2XG6", "ktsA", "gl6I"], + "texture": 0 + }, + "IiwdQUx2": { + "uv": { + "ZvZ2": [1, 12], + "c9bo": [1, 11.25], + "zUtn": [2.5, 12], + "nAyf": [2.5, 11.25] + }, + "vertices": ["nAyf", "zUtn", "c9bo", "ZvZ2"], + "texture": 0 + }, + "Ul4tOyFB": { + "uv": { + "QZyX": [1, 11.25], + "VxRo": [1, 10.5], + "B3xb": [2.5, 11.25], + "7f4f": [2.5, 10.5] + }, + "vertices": ["7f4f", "B3xb", "VxRo", "QZyX"], + "texture": 0 + }, + "xHcIDvFc": { + "uv": { + "5Oea": [1, 10.5], + "bLzn": [1, 9.75], + "wmh0": [2.5, 10.5], + "bBD0": [2.5, 9.75] + }, + "vertices": ["bBD0", "wmh0", "bLzn", "5Oea"], + "texture": 0 + }, + "FvcWTee2": { + "uv": { + "EgMs": [0, 6], + "gYNL": [0.75, 6], + "ktsA": [0, 7], + "2XG6": [0.75, 7] + }, + "vertices": ["2XG6", "ktsA", "gYNL", "EgMs"], + "texture": 0 + }, + "YD42q4Vm": { + "uv": { + "Tmp9": [1.5, 1.4], + "EgMs": [0, 1.4], + "0NfC": [1.5, 3.4], + "ktsA": [0, 3.4] + }, + "vertices": ["ktsA", "0NfC", "EgMs", "Tmp9"], + "texture": 0 + }, + "DcHaX5tj": { + "uv": { + "SG2C": [6, 11.00031], + "Tmp9": [7, 11], + "gl6I": [6, 12.75003], + "0NfC": [7, 12.74996] + }, + "vertices": ["0NfC", "gl6I", "Tmp9", "SG2C"], + "texture": 0 + }, + "KFuNt2na": { + "uv": { + "gYNL": [1, 5], + "SG2C": [2.5, 5], + "2XG6": [1, 6], + "gl6I": [2.5, 6] + }, + "vertices": ["gl6I", "2XG6", "SG2C", "gYNL"], + "texture": 0 + }, + "UEt7qrj2": { + "uv": { + "Tmp9": [6, 11.00031], + "6QYx": [7, 11], + "bBD0": [6, 12.75003], + "wmh0": [7, 12.74996] + }, + "vertices": ["wmh0", "bBD0", "6QYx", "Tmp9"], + "texture": 0 + }, + "KB0DkmzM": { + "uv": { + "EgMs": [1.5, 1.4], + "Tmp9": [0, 1.4], + "bLzn": [1.5, 3.4], + "bBD0": [0, 3.4] + }, + "vertices": ["bBD0", "bLzn", "Tmp9", "EgMs"], + "texture": 0 + }, + "Ccf24YWf": { + "uv": { + "rsTD": [0.00003, 7], + "EgMs": [0.75003, 7], + "5Oea": [0, 8], + "bLzn": [0.7499, 8] + }, + "vertices": ["bLzn", "5Oea", "EgMs", "rsTD"], + "texture": 0 + }, + "KU7QLZrc": { + "uv": { + "6QYx": [1.5, 1.4], + "rsTD": [0, 1.4], + "wmh0": [1.5, 3.4], + "5Oea": [0, 3.4] + }, + "vertices": ["5Oea", "wmh0", "rsTD", "6QYx"], + "texture": 0 + }, + "GiNazZC5": { + "uv": { + "6QYx": [6, 11.00031], + "Cp8M": [7, 11], + "7f4f": [6, 12.75003], + "B3xb": [7, 12.74996] + }, + "vertices": ["B3xb", "7f4f", "Cp8M", "6QYx"], + "texture": 0 + }, + "Z8JMQhKI": { + "uv": { + "rsTD": [1.5, 1.4], + "6QYx": [0, 1.4], + "VxRo": [1.5, 3.4], + "7f4f": [0, 3.4] + }, + "vertices": ["7f4f", "VxRo", "6QYx", "rsTD"], + "texture": 0 + }, + "S5lPFrVF": { + "uv": { + "yyqQ": [0, 7], + "rsTD": [0.75, 7], + "QZyX": [0.0001, 8], + "VxRo": [0.7501, 8] + }, + "vertices": ["VxRo", "QZyX", "rsTD", "yyqQ"], + "texture": 0 + }, + "xUtPJcWj": { + "uv": { + "Cp8M": [1.5, 1.4], + "yyqQ": [0, 1.4], + "B3xb": [1.5, 3.4], + "QZyX": [0, 3.4] + }, + "vertices": ["QZyX", "B3xb", "yyqQ", "Cp8M"], + "texture": 0 + }, + "3N0qXU4V": { + "uv": { + "Cp8M": [6, 11.00031], + "aXfG": [7, 11], + "nAyf": [6, 12.75003], + "zUtn": [7, 12.74996] + }, + "vertices": ["zUtn", "nAyf", "aXfG", "Cp8M"], + "texture": 0 + }, + "SR3ZmE4w": { + "uv": { + "yyqQ": [1.5, 1.4], + "Cp8M": [0, 1.4], + "c9bo": [1.5, 3.4], + "nAyf": [0, 3.4] + }, + "vertices": ["nAyf", "c9bo", "Cp8M", "yyqQ"], + "texture": 0 + }, + "pJR6Btzm": { + "uv": { + "qm42": [0, 7], + "yyqQ": [0.75, 7], + "ZvZ2": [0.0001, 8], + "c9bo": [0.7501, 8] + }, + "vertices": ["c9bo", "ZvZ2", "yyqQ", "qm42"], + "texture": 0 + }, + "aR8MHDcQ": { + "uv": { + "aXfG": [1.5, 1.4], + "qm42": [0, 1.4], + "zUtn": [1.5, 3.4], + "ZvZ2": [0, 3.4] + }, + "vertices": ["ZvZ2", "zUtn", "qm42", "aXfG"], + "texture": 0 + }, + "vvIAs6ec": { + "uv": { + "SG2C": [0, 7], + "aXfG": [3, 7], + "BcrG": [3, 5], + "jyuv": [0, 5] + }, + "vertices": ["jyuv", "BcrG", "aXfG", "SG2C"], + "texture": 0 + }, + "CkMjBEUr": { + "uv": { + "SmHE": [1, 12], + "jyuv": [2.5, 12], + "BcrG": [2.5, 9], + "16LN": [1, 9] + }, + "vertices": ["16LN", "BcrG", "jyuv", "SmHE"], + "texture": 0 + }, + "uo43jn6G": { + "uv": { + "gYNL": [1, 11], + "SG2C": [2.5, 11], + "jyuv": [2.5, 9], + "SmHE": [1, 9] + }, + "vertices": ["SmHE", "jyuv", "SG2C", "gYNL"], + "texture": 0 + }, + "5U9xU0dD": { + "uv": { + "3ZE3": [1, 11], + "gsUF": [2.5, 11], + "rkTD": [2.5, 9], + "5bB4": [1, 9] + }, + "vertices": ["5bB4", "rkTD", "gsUF", "3ZE3"], + "texture": 0 + }, + "PMT6iALM": { + "uv": { + "16LN": [2, 6], + "qm42": [2, 8], + "rkTD": [1, 6], + "gsUF": [1, 8] + }, + "vertices": ["gsUF", "rkTD", "qm42", "16LN"], + "texture": 0 + }, + "laujVFTj": { + "uv": { + "BcrG": [2.5, 8], + "16LN": [1, 8], + "5bB4": [2.5, 7], + "rkTD": [1, 7] + }, + "vertices": ["rkTD", "5bB4", "16LN", "BcrG"], + "texture": 0 + }, + "8H3cL8dN": { + "uv": { + "aXfG": [0, 9], + "BcrG": [0, 7], + "3ZE3": [1, 9], + "5bB4": [1, 7] + }, + "vertices": ["5bB4", "3ZE3", "BcrG", "aXfG"], + "texture": 0 + }, + "qTTfHe64": { + "uv": { + "U3G7": [2.5, 8.00004], + "ZHsx": [1.00001, 7.99996], + "DLfR": [2.50005, 7], + "aOPa": [1, 7] + }, + "vertices": ["aOPa", "DLfR", "ZHsx", "U3G7"], + "texture": 0 + }, + "G08WUC3f": { + "uv": { + "3ZE3": [1, 5], + "gsUF": [2.5, 5], + "aOPa": [1, 6], + "DLfR": [2.5, 6] + }, + "vertices": ["DLfR", "aOPa", "gsUF", "3ZE3"], + "texture": 0 + }, + "pHmNi5fh": { + "uv": { + "aXfG": [6, 11.00031], + "3ZE3": [7, 11], + "ZHsx": [6, 12.75003], + "aOPa": [7, 12.74996] + }, + "vertices": ["aOPa", "ZHsx", "3ZE3", "aXfG"], + "texture": 0 + }, + "cuft3msr": { + "uv": { + "qm42": [1, 5], + "aXfG": [2.5, 5], + "U3G7": [1, 6], + "ZHsx": [2.5, 6] + }, + "vertices": ["ZHsx", "U3G7", "aXfG", "qm42"], + "texture": 0 + }, + "azGhehvz": { + "uv": { + "gsUF": [1, 5], + "qm42": [2, 5], + "DLfR": [1, 6], + "U3G7": [2, 6] + }, + "vertices": ["U3G7", "DLfR", "qm42", "gsUF"], + "texture": 0 + }, + "udheygIe": { + "uv": { + "qm42": [0, 7], + "gYNL": [3, 7], + "SmHE": [3, 5], + "16LN": [0, 5] + }, + "vertices": ["16LN", "SmHE", "gYNL", "qm42"], + "texture": 0 + } + }, + "type": "mesh", + "uuid": "3ff463ae-9682-6417-285e-b19d1b2220eb" + } + ], + "outliner": [ + { + "name": "root", + "origin": [0, 0, 0], + "color": 0, + "uuid": "8ca6699e-74b1-10dc-5d18-29f7e8345ef5", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + { + "name": "Head", + "origin": [0, 22.5, 0], + "color": 0, + "uuid": "9b1cdac1-623c-a07f-13cf-50b4cba2d280", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "8cf37dda-a1f4-41c9-00ea-784d1ef19a8d", + "7564b320-32ad-f191-5c63-fdfa5abfafd5", + "f2ee2225-6cf0-0d4a-cde5-856d38b66daa", + { + "name": "Eyes", + "origin": [0, 25.245, -3.78], + "color": 0, + "uuid": "a1dd5a7e-241b-749a-81e9-19c48e29f67d", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["8dee770f-2330-9d98-92fa-7c0c3210c4fd"] + }, + "13b888c6-ccc6-3eba-eac8-25aa02e3ae0a", + "d10a4c76-5e2b-18bf-de9f-e3dc84e195ec", + "6ee6c485-55e3-677f-8a8a-6437317da917", + { + "name": "HelmetPivot", + "origin": [0, 21.6, 0], + "color": 0, + "uuid": "95e8d8bb-c005-1f2b-4ff0-56a7861dac90", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [] + }, + { + "name": "HelmetItemPivot", + "origin": [0, 21.6, 0], + "color": 0, + "uuid": "895f5668-c8b7-aeb4-0085-2a456ba3451a", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [] + }, + { + "name": "LeftSpyglassPivot", + "origin": [-1.8, 26.1, -3.6], + "color": 0, + "uuid": "652f5f01-1c60-78ed-cfd0-b0f7a02f265c", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [] + }, + { + "name": "RightSpyglassPivot", + "origin": [1.8, 26.1, -3.6], + "color": 0, + "uuid": "37b6d76a-b922-bdc1-c509-f5907127af15", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [] + } + ] + }, + { + "name": "Body", + "origin": [0, 21.6, 0], + "color": 0, + "uuid": "3a163167-946a-9709-bfaa-60c63fb36d88", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "9b7ace10-f4a4-74b2-a33d-8dc435a7d04c", + { + "name": "Soul", + "origin": [0, 9.9, 0], + "color": 0, + "uuid": "b33cae38-ac70-cdf3-afad-6ac181356290", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["ca491d2b-d46d-f1b3-8cf1-309423ed2497"] + }, + "4aaa3c6a-3bda-cbba-c5b6-8ea6c46c0453", + { + "name": "Skirt", + "origin": [0, 14.4, 0], + "color": 0, + "uuid": "d9627f7e-c2cc-0b7d-f0e3-267976830e09", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["46e46f49-fca6-eb7f-d115-7473d8719233"] + }, + { + "name": "RightParrotPivot", + "origin": [5.4, 21.6, 0], + "color": 0, + "uuid": "631e98c5-9485-a328-a01e-92a96e0240ad", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [] + }, + { + "name": "LeftParrotPivot", + "origin": [-5.4, 21.6, 0], + "color": 0, + "uuid": "3439f3f1-52a6-6cb0-fe3b-0ce070dc05dc", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [] + }, + { + "name": "Elytra", + "origin": [0, 19.8, 0], + "rotation": [-10, 0, 0], + "color": 0, + "uuid": "c56023b1-aaaf-4adf-71e3-0e8ffb7a0893", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": [ + { + "name": "LeftElytra", + "origin": [-4.5, 19.8, 0.9], + "color": 0, + "uuid": "b203159a-d56c-966f-1094-04ea3db06a88", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["9d5d4d0c-3741-bd02-c98e-a172432aa02f"] + }, + { + "name": "RightElytra", + "origin": [4.5, 19.8, 0], + "color": 0, + "uuid": "5a9f667b-4ce8-7e3d-384d-dc7bba759a87", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["96a3cb8c-5a5d-c76f-8090-446b052c4253"] + } + ] + } + ] + }, + { + "name": "LeftArm", + "origin": [-4.05, 20.7, 0.135], + "color": 0, + "uuid": "4532a408-8267-4ac1-f89b-9c02843401c5", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "b4aa1095-c834-139c-8b5f-93abfd983a84", + { + "name": "LeftForeArm", + "origin": [-5.04, 16.74, 0], + "color": 0, + "uuid": "39b8f506-2d25-9ffc-4844-a483667159b6", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "fcd91531-57f5-3dad-6808-1c446c0006ae", + "db44415d-1faa-cca8-069a-d3e7cf83a414", + { + "name": "LeftHand", + "origin": [-4.95, 12.6, -0.09], + "color": 0, + "uuid": "97179e6c-ca07-eedf-6655-10644ba0253b", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "3ff463ae-9682-6417-285e-b19d1b2220eb", + { + "name": "LeftItemPivot", + "origin": [-4.95, 10.8, -0.99], + "color": 0, + "uuid": "9df644d4-b183-5aa8-8c3e-e33b2353ed95", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [] + } + ] + } + ] + } + ] + }, + { + "name": "RightArm", + "origin": [4.05, 20.7, 0.135], + "color": 0, + "uuid": "703b9bfd-bdc6-385a-89b3-b900d1de58f5", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "5b436543-2419-e70e-86f7-2277ab9225f9", + { + "name": "RightForeArm", + "origin": [5.04, 16.74, 0], + "color": 0, + "uuid": "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "1671bdb4-27ee-e3a7-78c8-f18091c01495", + "3772a39b-fac7-715e-f228-1ac66979af34", + { + "name": "RightHand", + "origin": [4.95, 12.6, -0.09], + "color": 0, + "uuid": "0fe9582e-afee-9945-c051-79e1996ab231", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "87c7237b-f5b2-6534-e9bd-e1cb4eceaeda", + { + "name": "RightCamera", + "origin": [3.73333, 13.44444, 0], + "color": 0, + "uuid": "cfaeacce-4968-d72b-9a37-e2f0fb4255e8", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": [ + "28edf6c3-9e51-9aa6-e986-06718e224cf4", + "6f8d85c8-d224-3d60-439e-e6026a8bb67a", + "bb3d788f-0b96-faf1-c93e-ec31a94c8ac5", + "fcf1645a-dea9-04d1-2e0d-fe655d4bafcc", + "8999e835-8300-56d0-e735-274e3f8c42a3", + "9b51edf7-90e0-226b-2ced-771b9667b3c6", + "a1daae99-e186-4045-047f-33a8f6ec8b68", + "5640faf0-69c0-0cca-307d-37e784b29730", + "a85c0339-e7a5-65d2-88a1-21b5f2347100" + ] + }, + { + "name": "RightItemPivot", + "origin": [4.95, 10.8, -0.99], + "color": 0, + "uuid": "d5c28e0c-2ec5-296a-42c7-59967676aebe", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [] + } + ] + } + ] + } + ] + }, + { + "name": "RightArmPivot", + "origin": [3.6, 20.7, 0], + "color": 0, + "uuid": "c875d215-80f4-5cda-951f-10027c6965b5", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [] + }, + { + "name": "RightLeg", + "origin": [1.8, 10.8, 0], + "color": 0, + "uuid": "02123f94-db06-5dae-758f-a4b6191791e5", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "952d1c26-5c46-044f-47a3-1bbb6da6bc21", + { + "name": "RightForeLeg", + "origin": [1.78633, 7.2, 0.74376], + "color": 0, + "uuid": "9d530b83-521c-52ff-34ec-05833bb4753c", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "02c1d309-dc14-6511-c2fa-60a9333aff71", + "03a7b0ca-adbc-e921-e466-02042f51f0fb", + { + "name": "RightShoe", + "origin": [1.78633, 0, 0.74372], + "rotation": [0, -10, 0], + "color": 0, + "uuid": "ee63e079-5cf9-5d1f-d8a3-5114116d8c24", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["841507ff-09dc-0d69-b367-522f44abd3cd"] + } + ] + } + ] + }, + { + "name": "LeftLeg", + "origin": [-1.8, 10.8, 0], + "color": 0, + "uuid": "4ef21934-9598-a1cc-d2cb-2a978ecab20f", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "bfdad83a-2e41-be24-903c-5ebd81b969b3", + { + "name": "LeftForeLeg", + "origin": [-1.78633, 7.2, 0.74372], + "color": 0, + "uuid": "80ca9439-0183-c534-a9eb-ada28e85b1ec", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "fa408760-0e21-5c7c-f5f2-34ce3493f337", + "8cdada64-4e60-bfe3-2585-54e6850be9c4", + { + "name": "LeftShoe", + "origin": [-1.78632, 0, 0.74376], + "rotation": [0, 10, 0], + "color": 0, + "uuid": "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["88ccf0b1-c887-5a42-45aa-2a7eb359c98b"] + } + ] + } + ] + } + ] + }, + { + "name": "tauntfx", + "origin": [0, 17, 8], + "color": 0, + "uuid": "f54dd531-dc13-462e-aea3-bf2d6416fae6", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": [ + { + "name": "BILLBOARD", + "origin": [0, 17, 8], + "color": 0, + "uuid": "30bd9725-0e69-e05e-3f77-7d0d549067b2", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["dfc0856f-b7a6-f459-fca5-ee1e02e12260"] + } + ] + }, + { + "name": "ItemRapier", + "origin": [-0.11135, -0.36238, 0.35379], + "rotation": [0, 90, 0], + "color": 0, + "uuid": "75a5d04b-35c1-0375-d9d2-2259afee73cd", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["7cb50623-ba66-d366-b484-d07c84a26131"] + }, + { + "name": "ItemNoodle", + "origin": [0, 0, 0], + "color": 0, + "uuid": "04969ffd-f6c4-a9dc-6979-b17da8176de3", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["c1a191fa-bda9-da93-b666-4ee63af908b3"] + }, + "58a66c62-16cb-55b7-2195-1e1a1280b174" + ], + "textures": [ + { + "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/akiracombined_v4.png", + "name": "akiracombined_v4.png", + "folder": "", + "namespace": "", + "id": "0", + "group": "", + "width": 36, + "height": 60, + "uv_width": 36, + "uv_height": 60, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "52081aa1-5867-5eef-7a66-414d06fb2d1a", + "relative_path": "akiracombined_v4.png" + }, + { + "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/camera.png", + "name": "camera.png", + "folder": "", + "namespace": "", + "id": "11", + "group": "", + "width": 32, + "height": 32, + "uv_width": 32, + "uv_height": 32, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "double", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "bdf66bbf-25dc-ec31-2ce8-7208db05773d", + "relative_path": "camera.png" + }, + { + "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/akiracombined_happy.png", + "name": "akiracombined_happy.png", + "folder": "", + "namespace": "", + "id": "2", + "group": "", + "width": 36, + "height": 60, + "uv_width": 36, + "uv_height": 60, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "b5355e7f-d38e-c607-c3ee-656e49a085cf", + "relative_path": "akiracombined_happy.png" + }, + { + "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/akiracombined_angry.png", + "name": "akiracombined_angry.png", + "folder": "", + "namespace": "", + "id": "3", + "group": "", + "width": 36, + "height": 60, + "uv_width": 36, + "uv_height": 60, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "6b8a8767-a86c-34b9-aa8b-5f4b7309a54b", + "relative_path": "akiracombined_angry.png" + }, + { + "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/akiracombined_fear.png", + "name": "akiracombined_fear.png", + "folder": "", + "namespace": "", + "id": "10", + "group": "", + "width": 36, + "height": 60, + "uv_width": 36, + "uv_height": 20, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "ffee4cdd-91a0-124d-3400-77ff9eb61339", + "relative_path": "akiracombined_fear.png" + }, + { + "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/akiracombined_glad.png", + "name": "akiracombined_glad.png", + "folder": "", + "namespace": "", + "id": "12", + "group": "", + "width": 36, + "height": 60, + "uv_width": 36, + "uv_height": 60, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "3f69d676-b711-fe59-54e8-4b8265529c0f", + "relative_path": "akiracombined_glad.png" + }, + { + "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/akiracombined_sleep.png", + "name": "akiracombined_sleep.png", + "folder": "", + "namespace": "", + "id": "16", + "group": "", + "width": 36, + "height": 60, + "uv_width": 36, + "uv_height": 60, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "db6f1fca-abee-6441-3dff-ca1dddde8398", + "relative_path": "akiracombined_sleep.png" + }, + { + "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/taunt3.png", + "name": "taunt3.png", + "folder": "", + "namespace": "", + "id": "7", + "group": "", + "width": 134, + "height": 139, + "uv_width": 134, + "uv_height": 139, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "emissive", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "ccc1942d-32f3-f6af-250b-556c6ae9ebd9", + "relative_path": "taunt3.png" + }, + { + "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/rose_gold_rapier_handheld.png", + "name": "rose_gold_rapier_handheld.png", + "folder": "", + "namespace": "", + "id": "13", + "group": "", + "width": 32, + "height": 32, + "uv_width": 32, + "uv_height": 32, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "6629243c-2f5d-9495-7332-75c6226f0a17", + "relative_path": "rose_gold_rapier_handheld.png" + }, + { + "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/rose_gold_rapier_upright.png", + "name": "rose_gold_rapier_upright.png", + "folder": "", + "namespace": "", + "id": "15", + "group": "", + "width": 16, + "height": 48, + "uv_width": 16, + "uv_height": 48, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "e3a315de-2418-ffdb-3473-6efe647b17f7", + "relative_path": "rose_gold_rapier_upright.png" + }, + { + "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/pool_noodle.png", + "name": "pool_noodle.png", + "folder": "", + "namespace": "", + "id": "17", + "group": "", + "width": 16, + "height": 16, + "uv_width": 16, + "uv_height": 16, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "508eff81-d8fb-f577-2a5d-b544765c0d6f", + "relative_path": "pool_noodle.png" + }, + { + "path": "/home/akirapink/Documents/made-in-akira/3d_models/akira/model 4.13/elytra.png", + "name": "elytra.png", + "folder": "", + "namespace": "", + "id": "18", + "group": "", + "width": 64, + "height": 32, + "uv_width": 64, + "uv_height": 32, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "90877fad-1768-1aa0-9198-8f4a69765cbb", + "relative_path": "elytra.png" + } + ], + "animations": [ + { + "uuid": "dfe4e14e-e510-f422-0338-7a0576138b7a", + "name": "animation2", + "loop": "once", + "override": false, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-40", + "z": "0" + } + ], + "uuid": "4df13930-1a09-0cec-34ab-5c92d36cd608", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-30" + } + ], + "uuid": "3417a133-d05f-7ea3-d757-817ef87e7082", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "75" + } + ], + "uuid": "f4776505-8831-b7b0-d30c-e64276d61e17", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "d1172a47-17e3-21a6-b75e-3285e2e625ef", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-47.5" + } + ], + "uuid": "5fa3ffb5-1f63-b52f-ea84-38edffd1afc1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "25", + "z": "0" + } + ], + "uuid": "6f84f80e-cd15-7971-25ac-f2308b68ce01", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "45", + "y": "0", + "z": "0" + } + ], + "uuid": "41f639b6-4636-a0f8-6b97-9bd17a22654c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "2a415bfe-b8e6-9601-ed92-a5cdf8d7ff08", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "47e21b4e-026e-ef62-4622-0f7934bb2d24", + "name": "walk", + "loop": "loop", + "override": true, + "length": 1, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "6bb137e5-c326-85ea-0852-2f8b99ecdb3d", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "c755c55a-3a92-b28b-563a-874730bf3f4f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca4ae983-67b3-318d-b9f0-ccda30bd3089", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "628b8198-fffb-2f7f-7368-fdf47d5c7aa9", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "190b3330-6bbf-7089-c591-4ae34720d875", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "4fae9932-bad9-cf68-9971-72d26308ac2a", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "0" + } + ], + "uuid": "372a08ff-f23a-20bd-bafb-b1ef4f2bf94b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "3375dbc8-24dc-27d4-f061-e008bd9835bc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "0" + } + ], + "uuid": "5717fe2b-6bb4-86e5-daea-ba0845e2e53d", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-15", + "y": "0", + "z": "0" + } + ], + "uuid": "08228c7a-4dce-5911-305f-f8e2961290ea", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "71e11e12-8913-8071-3783-e18ab9ffc129", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15", + "y": "0", + "z": "0" + } + ], + "uuid": "cc9b0825-f5c1-c4d3-36f7-d5d22bc87209", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "525d1bb3-e43b-15a5-d353-5fc77cf44f99", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "816f120d-9bf2-dc5c-ff19-9ce7f1b012f2", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4a45e73e-064f-991f-6d29-491421b99451", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "3991e535-9280-9dfc-72eb-30060d875118", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "a98386cd-3b15-4db8-7e06-8616d7ffdba8", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "63fda6e2-d812-8cdb-097b-4794ee19bea8", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "dec6a01b-8225-c331-d365-bb5933b68213", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c73383b-fd4e-dcd8-f095-ef4efd52a3f7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a4d7abf4-7577-df51-7390-05d9ad7502f0", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5414a5e5-7e6e-b538-51f0-f731df81a97d", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9e9e2992-2ad7-6f9d-f278-ded34f103699", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a0f34ebc-9b99-5370-e6ce-25847fceff0f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "813a0c59-8976-b6a5-755f-3a1e8c2da857", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "557be9d2-12ee-95e1-af76-b8b0ba34704d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "d728b8cd-3d6e-1d00-4ade-b87ff5fd9ad3", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "213efa5e-2c7f-3e6b-7ed4-f1a4b9dfa86a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "59dbacab-42ef-14e8-7897-c117881f9182", + "time": 0.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "71314692-8827-878f-449c-b94ea0222155", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c9ecd96d-522b-1157-66fe-bd98b610bb63", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0782d3a1-605f-3c57-c98c-2284141dffd0", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "05253eca-4880-4ca1-d18c-117b923a179f", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7ec5e551-ff87-554b-096f-e7104363f7d0", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "f96154fc-75ea-8796-9f8b-0e917bc11c6a", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "55da1b6c-85f1-b4ba-62c3-da2c023862ae", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-15", + "y": "0", + "z": "0" + } + ], + "uuid": "a95673a2-04f3-8a65-a8d4-08a1e4eb9fc0", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15", + "y": "0", + "z": "0" + } + ], + "uuid": "a9fb05f2-21cb-9bc0-952a-dd1c304b1faf", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "bbd0f890-7a9c-fe21-3e78-393e68f82584", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "62fc40de-555b-8232-c7aa-d02a10a28735", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3fcabf74-e3bb-11a8-391a-7b714f257cd2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4d59c77f-8606-d85c-0e44-76d4dd1bcdb6", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-1" + } + ], + "uuid": "13c2e9bb-0631-03e8-8213-7fdf91e93347", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dca8bc08-bd8c-ed8b-28fe-2ac894e6b207", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7070fe4e-97df-4eb7-fd3a-87bc374f0801", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1.2" + } + ], + "uuid": "6670dabe-a487-5009-e0cc-3c93a2a30df5", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "67b30998-0198-783e-b780-224d73aa257e", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "59ba4472-d621-3439-a089-223559f3280f", + "time": 1, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "c95741d7-4e3a-89ee-2c1e-4d4e4eb0fea1", + "name": "sprint", + "loop": "loop", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "markers": [ + { + "color": 0, + "time": 0.75 + } + ], + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "5ad4b02d-adab-5aa4-3e7f-579327b646f2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca4ae983-67b3-318d-b9f0-ccda30bd3089", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "190b3330-6bbf-7089-c591-4ae34720d875", + "time": 0.33333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "7018513a-94cc-4abe-9378-e15d33b9391c", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "ade18367-6bd7-fd0d-3bdd-f4fd47296dd7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "2ea88e7f-a48b-d737-cb84-89c071fcfe05", + "time": 0.45833, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c5b2c5d9-148b-08bc-d190-c76ba90dc96f", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "12.5" + } + ], + "uuid": "1566a452-3604-1937-9f85-181e69473d04", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "12.5" + } + ], + "uuid": "80b7c133-f9b6-1b66-1880-9e96f78f9e6f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-82.5", + "y": "0", + "z": "12.5" + } + ], + "uuid": "0b0d4ac1-5bb3-b9e0-9826-50726cb6482f", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-60", + "y": "0", + "z": "12.5" + } + ], + "uuid": "698b468d-bea0-834f-29b7-dac5070fc10d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-60", + "y": "0", + "z": "12.5" + } + ], + "uuid": "15428192-6bdb-b36f-1a7d-9d72c24882a2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-75", + "y": "0", + "z": "0" + } + ], + "uuid": "525d1bb3-e43b-15a5-d353-5fc77cf44f99", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4a45e73e-064f-991f-6d29-491421b99451", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "816f120d-9bf2-dc5c-ff19-9ce7f1b012f2", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "c6c6ba99-8621-204b-eed5-7ca34c9335c9", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "10bb9ccd-3d42-6029-4a9e-b41a94ed000f", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "f02420e5-9975-31d2-b0c9-fb3a7ac03eaf", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "53a0b4fb-2094-54f8-8e58-3b054257ec5a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "1fc4d470-4fa0-150b-9cf7-735333d46ac2", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "3991e535-9280-9dfc-72eb-30060d875118", + "time": 0.45833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "a98386cd-3b15-4db8-7e06-8616d7ffdba8", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "63fda6e2-d812-8cdb-097b-4794ee19bea8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "54.78", + "y": "0", + "z": "0" + } + ], + "uuid": "cbc1a7cb-2376-30e7-0f3d-8daa2ca39804", + "time": 0.33333, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9e9e2992-2ad7-6f9d-f278-ded34f103699", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-75", + "y": "0", + "z": "0" + } + ], + "uuid": "38615f94-ed54-acfd-0092-d3355ed400e2", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "813a0c59-8976-b6a5-755f-3a1e8c2da857", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "b097f599-9634-da25-2a0b-cc8ea6301ea7", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "5fb1b451-651a-475c-f308-c7db4eed1dda", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "829e21d7-be40-b7b6-90af-a578292c2cd5", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "265c3ca5-e561-3e07-af2f-3caa6b339978", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "9ddc607d-2529-38c4-e179-589f31d15a96", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "557be9d2-12ee-95e1-af76-b8b0ba34704d", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "d728b8cd-3d6e-1d00-4ade-b87ff5fd9ad3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "213efa5e-2c7f-3e6b-7ed4-f1a4b9dfa86a", + "time": 0.45833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "54.78", + "y": "0", + "z": "0" + } + ], + "uuid": "138d035e-7915-8e29-7b9c-3b832a84672c", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "10", + "y": "0", + "z": "0" + } + ], + "uuid": "23815ee1-c736-d5d3-1d1f-fd884841d66b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "111674c6-f4c5-eb59-654e-83725ceebc85", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "0e638bfb-11c8-bc83-a40e-842f47fabf6b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "-12.5" + } + ], + "uuid": "dbce26c8-4f58-75f2-e924-9cb92b58e28a", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-82.5", + "y": "0", + "z": "12.5" + } + ], + "uuid": "e9652221-9854-1e2b-964d-f9585186e51c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "-12.5" + } + ], + "uuid": "d981fb0c-9367-86e0-c9d0-69df7700d116", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-82.5", + "y": "0", + "z": "12.5" + } + ], + "uuid": "00ddadf9-52ca-8ea9-84c2-5f066f1846d1", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-10", + "y": "0", + "z": "0" + } + ], + "uuid": "646a46c7-7e09-ac6f-181e-cae74c45cfa7", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-1" + } + ], + "uuid": "ed65ca71-19a5-3802-3294-be36a6cfce96", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "0.7", + "z": "1.5" + } + ], + "uuid": "6939c9a1-6b52-aa11-b864-5361fb41de01", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "57529a98-2fa6-3d9e-0d4a-906e82c0e931", + "name": "sprint_older", + "loop": "loop", + "override": true, + "length": 0.79167, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "markers": [ + { + "color": 0, + "time": 0.75 + } + ], + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "5ad4b02d-adab-5aa4-3e7f-579327b646f2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca4ae983-67b3-318d-b9f0-ccda30bd3089", + "time": 0.20833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "190b3330-6bbf-7089-c591-4ae34720d875", + "time": 0.58333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "7018513a-94cc-4abe-9378-e15d33b9391c", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "ade18367-6bd7-fd0d-3bdd-f4fd47296dd7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "2ea88e7f-a48b-d737-cb84-89c071fcfe05", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-80" + } + ], + "uuid": "79bd6a5e-7c72-3634-c04d-1a5504482dff", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-87.5" + } + ], + "uuid": "0c25b4d5-093b-1b64-0cb7-36a5c44bd079", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-80" + } + ], + "uuid": "b6724395-2832-b072-e4f7-58cd774f86e3", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2.5" + } + ], + "uuid": "c299a195-4337-8eba-a578-ff4d1d9dd276", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8e4917db-c17f-c350-d4f9-7df6b5485525", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "13390083-32bb-13fb-0642-3bde4b064c49", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-75", + "y": "0", + "z": "0" + } + ], + "uuid": "525d1bb3-e43b-15a5-d353-5fc77cf44f99", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4a45e73e-064f-991f-6d29-491421b99451", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "816f120d-9bf2-dc5c-ff19-9ce7f1b012f2", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "c6c6ba99-8621-204b-eed5-7ca34c9335c9", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "10bb9ccd-3d42-6029-4a9e-b41a94ed000f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "f02420e5-9975-31d2-b0c9-fb3a7ac03eaf", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "53a0b4fb-2094-54f8-8e58-3b054257ec5a", + "time": 0.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "1fc4d470-4fa0-150b-9cf7-735333d46ac2", + "time": 0.20833, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "3991e535-9280-9dfc-72eb-30060d875118", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "a98386cd-3b15-4db8-7e06-8616d7ffdba8", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "63fda6e2-d812-8cdb-097b-4794ee19bea8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "54.78", + "y": "0", + "z": "0" + } + ], + "uuid": "cbc1a7cb-2376-30e7-0f3d-8daa2ca39804", + "time": 0.58333, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9e9e2992-2ad7-6f9d-f278-ded34f103699", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-75", + "y": "0", + "z": "0" + } + ], + "uuid": "38615f94-ed54-acfd-0092-d3355ed400e2", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "813a0c59-8976-b6a5-755f-3a1e8c2da857", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "b097f599-9634-da25-2a0b-cc8ea6301ea7", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "5fb1b451-651a-475c-f308-c7db4eed1dda", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "829e21d7-be40-b7b6-90af-a578292c2cd5", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "265c3ca5-e561-3e07-af2f-3caa6b339978", + "time": 0.20833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "9ddc607d-2529-38c4-e179-589f31d15a96", + "time": 0.625, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "557be9d2-12ee-95e1-af76-b8b0ba34704d", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "d728b8cd-3d6e-1d00-4ade-b87ff5fd9ad3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "213efa5e-2c7f-3e6b-7ed4-f1a4b9dfa86a", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "54.78", + "y": "0", + "z": "0" + } + ], + "uuid": "138d035e-7915-8e29-7b9c-3b832a84672c", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-15" + } + ], + "uuid": "456a10c7-91bc-d007-d954-1b1b18d06ba5", + "time": 0.20833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-35" + } + ], + "uuid": "045f4f5d-e490-af8d-cba9-51b7f4724cb5", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-40" + } + ], + "uuid": "4c533678-4796-34d0-1550-f8c817f2cbf8", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-40" + } + ], + "uuid": "84a56d9e-03be-2a3c-5f8c-72260d7c6f06", + "time": 0.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-40" + } + ], + "uuid": "fb594db7-55ef-ff08-f9c1-4809831b7972", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "80" + } + ], + "uuid": "450dcaae-ffb8-a414-3906-bc927aa2246c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "87.5" + } + ], + "uuid": "7ccb1c34-892d-e4de-03ef-87b4c642c420", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "80" + } + ], + "uuid": "846820d6-8e8b-d638-1e88-00472d784eff", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2.5" + } + ], + "uuid": "f415c654-77b6-82c1-7628-76f4b2b4c4c6", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ef5d0f67-d1ea-efca-a879-67e2ef3663e3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f96d91f6-4f0b-3f8e-ff1c-2e8111620d29", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + } + ] + } + } + }, + { + "uuid": "3c072359-f9ba-f341-d4ed-c926bec0c1f7", + "name": "sit", + "loop": "loop", + "override": true, + "length": 2, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "45b60604-826c-127d-6b64-3e56dc19068c", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c049f0f3-aeb5-9dd3-9419-5ce02ecf8e21", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a82826d2-326f-3049-4711-5565e8e7fe56", + "time": 2, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "899f45ee-fab5-6c78-bc2c-6381441324e6", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84c0b993-f6f5-6a18-a9e5-485e81037672", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "e211a5ac-8df6-3e30-148c-01a291c206a5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "-2" + } + ], + "uuid": "dcf6cc37-0eee-03ab-8695-abbc39ac5aa2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-160.27126444785472", + "y": "68.69403741183623", + "z": "-71.446979487112" + } + ], + "uuid": "fb78b4be-1d39-e6d2-5c3e-e8da24f405b7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "-1", + "z": "-1" + } + ], + "uuid": "a96d7180-61bd-62c4-b92e-4ba84f2fe1e3", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-135", + "y": "0", + "z": "0" + } + ], + "uuid": "8de9690b-63d0-e56f-4a69-72e0162c29ad", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "-3" + } + ], + "uuid": "fd826736-1b28-fb58-f1d5-9a409a09b780", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "107.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3411dcc8-c5f0-b933-3cb5-c02d3e903446", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "6a371a42-64c4-2c76-0106-17f76271eed4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-135", + "y": "0", + "z": "0" + } + ], + "uuid": "e83d9aed-8c8e-93c9-a5bc-fdd162a5c6a6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "-3" + } + ], + "uuid": "6739ba2b-9750-6ebc-6601-1a980b4e5003", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "107.5", + "y": "0", + "z": "0" + } + ], + "uuid": "d1a64128-1062-a381-6c51-365ca96cb95f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1.3000000000000003" + } + ], + "uuid": "f06382c5-821a-5c99-95d7-d8473c8e7166", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-65", + "y": "0", + "z": "0" + } + ], + "uuid": "c64a5219-dc7f-f756-717a-2f3873df21e3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "-1" + } + ], + "uuid": "2a6fb0f1-4f1d-3e87-60ce-c4a4409de468", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-160.32641", + "y": "-77.97514", + "z": "129.07584" + } + ], + "uuid": "3a36d8c3-1be8-15c7-d5ae-f3cd205bb2e3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1" + } + ], + "uuid": "cf6b1508-16de-a71b-5d1c-a226865d54b8", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-87.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c5cb83b1-0ca9-c843-f8f5-b0260b111862", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "9f409726-8ed9-d1f7-abda-5e5b2e5f8370", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "0fe9582e-afee-9945-c051-79e1996ab231": { + "name": "RightHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "21.9999000983", + "y": "46.5056567762", + "z": "-18.4888924123" + } + ], + "uuid": "89f12832-3160-c7cc-64fd-0f50c1cfedd5", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0.5" + } + ], + "uuid": "7af52b44-a326-2864-849c-985c230a3d0c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "f95e7de6-0331-4c7f-88de-901a3d3aafb7", + "name": "sit_emote", + "loop": "loop", + "override": false, + "length": 4, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "45b60604-826c-127d-6b64-3e56dc19068c", + "time": 2.45833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c049f0f3-aeb5-9dd3-9419-5ce02ecf8e21", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a82826d2-326f-3049-4711-5565e8e7fe56", + "time": 4.45833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-11", + "z": "0" + } + ], + "uuid": "3949d09a-29e1-3053-98f0-06208647ebd1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "682ffc0f-a5e7-482a-b8c5-8f569d918f5f", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84c0b993-f6f5-6a18-a9e5-485e81037672", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "e211a5ac-8df6-3e30-148c-01a291c206a5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dcf6cc37-0eee-03ab-8695-abbc39ac5aa2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fb78b4be-1d39-e6d2-5c3e-e8da24f405b7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-96.60139441617054", + "y": "5.426770158390573", + "z": "-7.540367186791209" + } + ], + "uuid": "47a9dc69-b9f3-a7d0-4f7a-8a25192a6762", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "2", + "z": "-1" + } + ], + "uuid": "0c21aa35-fa40-1768-fd7d-d047cee061c9", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "27.673889233549673", + "y": "21.915455570267696", + "z": "-96.60562441079342" + } + ], + "uuid": "704122b0-7f7b-4f57-5a89-fe668927f094", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "b78a9441-1f2a-8e92-13e7-b572c4a98585", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-86.10943275837872", + "y": "-33.854937900673576", + "z": "5.682570018300794" + } + ], + "uuid": "ab6d4c05-8eb9-55c0-6f59-6910e2f76f50", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "-2" + } + ], + "uuid": "9c000610-3b2c-faf8-3fe3-5da8a7127f1d", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "143.68712264787146", + "y": "-14.087419469977103", + "z": "-51.94712911146026" + } + ], + "uuid": "1e4dcef5-46be-8431-c57a-367e5baff27a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1.3" + } + ], + "uuid": "e5515ae6-7ccf-7129-65a7-01a2f6ece4d6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "-32.5" + } + ], + "uuid": "00665345-46b1-7d26-38a6-1c6b61db0c93", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "115", + "y": "60", + "z": "0" + } + ], + "uuid": "09c4f59c-9073-320f-e8f0-ad5c0b081934", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "180.00000000000227", + "y": "82.5", + "z": "90.00000000000364" + } + ], + "uuid": "d7fb0cf1-df61-462a-5a82-a6659bf8557c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c64a5219-dc7f-f756-717a-2f3873df21e3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2a6fb0f1-4f1d-3e87-60ce-c4a4409de468", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d09adcb9-bab5-8c18-9b26-f972dfc98653", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-60", + "y": "0", + "z": "0" + } + ], + "uuid": "63ff61de-e0f2-6ff5-3975-2839cd32621a", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "8f2a012f-1706-1f0f-b0e3-a7bf06200152", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.3000000000000003", + "y": "1", + "z": "1.1" + } + ], + "uuid": "c227c293-82a4-9f0e-0121-5c67067fdc3d", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "f3c6ff59-57f3-486b-d4e3-796f773b3d5d", + "name": "sit_emote2", + "loop": "hold", + "override": false, + "length": 1, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-7", + "z": "0" + } + ], + "uuid": "3949d09a-29e1-3053-98f0-06208647ebd1", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-12", + "z": "0" + } + ], + "uuid": "18cdebb9-8aaf-29b5-922f-4fbd801b17c9", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-9", + "z": "0" + } + ], + "uuid": "4bf7e122-0910-b4b6-5a75-fc84149bd36c", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-10", + "z": "0" + } + ], + "uuid": "da59f1ad-b9ac-a18e-7a7c-fc23338e5f6f", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-10", + "z": "0" + } + ], + "uuid": "2b6edfcb-ea3c-3049-216c-12e4c32886f8", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-17", + "z": "0" + } + ], + "uuid": "5e4fc510-9501-05e9-335c-95ce608b72e7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.6000000000000003", + "y": "0.7", + "z": "1" + } + ], + "uuid": "ba29ca86-2c69-1839-a973-07ff3136036e", + "time": 0.08333, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.25", + "z": "1" + } + ], + "uuid": "f29c01c3-eade-2f64-fcbe-987bf1b8b641", + "time": 0.16667, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.3000000000000003", + "y": "0.9", + "z": "1" + } + ], + "uuid": "fdbbf9aa-d4ba-0a44-684b-cc769ba626aa", + "time": 0.25, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1\n", + "z": "1" + } + ], + "uuid": "1c784972-3f64-c2d9-4db8-b0967c07891b", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.1", + "z": "1" + } + ], + "uuid": "5c4a563e-f048-7c75-428f-5be11251a7ac", + "time": 0.375, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.5500000000000003", + "z": "1" + } + ], + "uuid": "46227ed3-05bc-c304-bf87-e6161b08ec69", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84c0b993-f6f5-6a18-a9e5-485e81037672", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "e211a5ac-8df6-3e30-148c-01a291c206a5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dcf6cc37-0eee-03ab-8695-abbc39ac5aa2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fb78b4be-1d39-e6d2-5c3e-e8da24f405b7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-96.60139441617054", + "y": "5.426770158390573", + "z": "-7.540367186791209" + } + ], + "uuid": "47a9dc69-b9f3-a7d0-4f7a-8a25192a6762", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "2", + "z": "-1" + } + ], + "uuid": "0c21aa35-fa40-1768-fd7d-d047cee061c9", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "27.673889233549673", + "y": "21.915455570267696", + "z": "-96.60562441079342" + } + ], + "uuid": "704122b0-7f7b-4f57-5a89-fe668927f094", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "b78a9441-1f2a-8e92-13e7-b572c4a98585", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-86.10943275837872", + "y": "-33.854937900673576", + "z": "5.682570018300794" + } + ], + "uuid": "ab6d4c05-8eb9-55c0-6f59-6910e2f76f50", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "-2" + } + ], + "uuid": "9c000610-3b2c-faf8-3fe3-5da8a7127f1d", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "143.68712264787146", + "y": "-14.087419469977103", + "z": "-51.94712911146026" + } + ], + "uuid": "1e4dcef5-46be-8431-c57a-367e5baff27a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1.3" + } + ], + "uuid": "e5515ae6-7ccf-7129-65a7-01a2f6ece4d6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "-32.5" + } + ], + "uuid": "00665345-46b1-7d26-38a6-1c6b61db0c93", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "115", + "y": "60", + "z": "0" + } + ], + "uuid": "09c4f59c-9073-320f-e8f0-ad5c0b081934", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "180.00000000000227", + "y": "82.5", + "z": "90.00000000000364" + } + ], + "uuid": "d7fb0cf1-df61-462a-5a82-a6659bf8557c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c64a5219-dc7f-f756-717a-2f3873df21e3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2a6fb0f1-4f1d-3e87-60ce-c4a4409de468", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d09adcb9-bab5-8c18-9b26-f972dfc98653", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + } + } + }, + { + "uuid": "f99872e7-f2bd-e73b-4f83-082c1623d28b", + "name": "followMe", + "loop": "once", + "override": false, + "length": 1.375, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9887f18d-8d35-6cf1-7e2f-004a182ed804", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0.7340404134620258", + "y": "24.874691603068186", + "z": "0.46394336388129886" + } + ], + "uuid": "a301e9b0-bd77-f7aa-69aa-12b45109bb2e", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0.7340404134620258", + "y": "24.874691603068186", + "z": "0.46394336388129886" + } + ], + "uuid": "86494bd4-7bf3-dd74-e4de-fbe10b2f4ccc", + "time": 0.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7e177ca-90a1-003a-26ac-3c9045a57cc5", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fd11d9d5-1bf1-e60a-4653-5723e7b64e60", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "12d5d418-e4ae-a422-f62a-e40539931954", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "c9639672-905c-99d3-1a7c-77f2c45ba3b3", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "c04b8863-b977-afdb-b3fe-6359ecc5c567", + "time": 0.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "82360ee6-bd9c-a3a2-7bcb-b38adf942506", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7e74412c-c6a0-968d-4185-f48aead2da70", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "3602a1be-1956-0578-3e2a-f4295a97a960", + "time": 0.375, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73537b14-ba1a-8945-763c-1b1acc5c70c6", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.139296625613042", + "y": "40.79237202269042", + "z": "1.366426829135773" + } + ], + "uuid": "3c01d642-23de-db77-55b0-6f7b9acde257", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5d72c177-a7db-d56d-a96f-88d01cb4b5de", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "b3bb1bfa-40a9-8bd9-a35a-8aa4b5ea8969", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.139296625613042", + "y": "40.79237202269042", + "z": "1.366426829135773" + } + ], + "uuid": "9bb51ae4-35d8-d622-2d10-a0b4780e3c7d", + "time": 1.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c66e9215-c99a-1c72-b3fb-c556fc523865", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5\n", + "z": "-3" + } + ], + "uuid": "03750fe2-3cb7-acd5-8172-bc16f0dfbdc7", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b94d417e-1e40-5063-695a-8c2b7900f837", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "2.5" + } + ], + "uuid": "2fefd0fd-8f00-3c1f-9d80-324dbbb4baa0", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "031ec465-a678-6aa3-a9d7-74ca0b4d6b36", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "2.5" + } + ], + "uuid": "cc36ea97-9657-6587-7458-779dd372be5b", + "time": 1.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5\n", + "z": "-3" + } + ], + "uuid": "1bdb1338-35c9-0b0f-804a-cb529ce10693", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "348ee9c0-cc61-f6c6-510d-6a76ebf3598e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f72330bc-8125-b922-1fe1-c8d2c4d799f9", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-197.90654906124183", + "y": "67.58109425245863", + "z": "-117.15317596551813" + } + ], + "uuid": "394f8bfd-ad27-5c9a-3e9d-f767aecaf941", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-197.90654906124183", + "y": "67.58109425245863", + "z": "-117.15317596551813" + } + ], + "uuid": "8ef5b0e8-2c51-ed8c-e1e3-a427d6d88f7c", + "time": 0.79167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-120.70533623040757", + "y": "33.15221974766706", + "z": "20.488613927605456" + } + ], + "uuid": "a1be318f-e8cc-95c8-aa31-ad94345c26e2", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-197.90654906124183", + "y": "67.58109425245863", + "z": "-117.15317596551813" + } + ], + "uuid": "7a23199d-ba66-827e-9140-2a86faae3c52", + "time": 0.66667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-214.08915231876986", + "y": "72.05925312606412", + "z": "-134.5891257222278" + } + ], + "uuid": "f80b279e-5624-07c4-8aa9-d023e4a59224", + "time": 0.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-74.56834248387258", + "y": "-9.935578431269278", + "z": "-5.267040957668087" + } + ], + "uuid": "87bb9ffc-84f7-8f3b-4850-0eafd866272c", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-74.56834248387258", + "y": "-9.935578431269278", + "z": "-5.267040957668087" + } + ], + "uuid": "5bf5c788-e523-f564-fa4b-55a2e11785fc", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "23444864-78a8-958a-6067-77cce11ed1cd", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4b900c7f-97c2-5d28-4e90-7ca809243ce4", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "1", + "z": "-3" + } + ], + "uuid": "cd9cb512-72a4-6c3d-b26a-a731727c42b4", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "-1" + } + ], + "uuid": "ed0ea3bd-52ec-7ed5-334b-5934920cc468", + "time": 0.66667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "019b9018-b03f-328d-aeba-b34849091478", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "baa5fabe-a082-5797-c4eb-99bab945f2a6", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "-1" + } + ], + "uuid": "3413a02e-75f0-9d40-c2bd-61c545d86e20", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c6b981f9-34ff-efcb-56b5-035a8a27895f", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "27.5" + } + ], + "uuid": "276e3817-fce1-f03d-c446-c0848a02fc30", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "27.5" + } + ], + "uuid": "eddb6f0c-4617-085e-e706-de951368d386", + "time": 0.625, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "27.5" + } + ], + "uuid": "9a1d21a9-a7b6-9520-e723-7d26afbda307", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "35", + "y": "0", + "z": "0" + } + ], + "uuid": "be3f2767-f830-7138-8c13-2c52b9cd56c4", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e3701295-2bef-3486-5627-f1093df46512", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "35", + "y": "0", + "z": "0" + } + ], + "uuid": "8cce4ab1-df91-00c3-7658-070a91fef1c0", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "37cae762-0256-6c8a-99f3-bf6aa74e332f", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b6cfe578-17a1-9e58-721c-c40669a7355e", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "2c632e65-449e-92cc-26cc-d89dbee36156", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "49553c7d-e181-7aae-3054-36f3b6665957", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2cbf1a5b-f7d5-adb5-bc9d-9f97996fe194", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "8f00bcee-faf3-23a6-9e64-83e9fae97625", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "83f76423-e8df-4b7a-9480-466812dfecbe", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1.75" + } + ], + "uuid": "6c4c7063-57e5-e235-71ee-51bbb7fb54ae", + "time": 1, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "62209f28-238b-7531-a2b4-419c65adab32", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0648fe03-ecac-ea4b-7415-a71929be5ccb", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "5e4b4f54-6f22-0adb-41b8-95315a39ea31", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "152840cc-d193-9370-3c0f-e803e8f05b0e", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "ba42dc85-cc69-9ce3-88b1-c34bca6169f3", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "b4e0eba7-9c7f-58f2-1b33-7cff567e13b2", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "60448a49-11dd-32bc-2a26-2200e6b11eac", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1f38b79d-a16f-29be-4d11-f991549f8ad2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "8631caa9-ed85-284a-c798-9458d296e893", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3783524-f952-58c0-3ad7-59f26c59e83b", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "bf5ec198-c16b-2171-661f-aa80fce74376", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "ddd535ff-404d-115e-3e62-47039f69a819", + "time": 1, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "74138584-550c-acf3-7418-f44444a13e97", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "c6d7784c-15bd-6596-c27c-4b7c80804ab4", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "23c920ce-e9f2-3ad7-5769-4d5ddea625f7", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15.54376576204426", + "y": "43.2517878454892", + "z": "0.762357985920171" + } + ], + "uuid": "77a62a19-88cd-1843-5e53-40545e247b79", + "time": 0.83333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "83a7c14b-e28e-d108-bd14-eeca060ca57d", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15.54376576204426", + "y": "43.2517878454892", + "z": "0.762357985920171" + } + ], + "uuid": "9bdb6c46-1df5-0a81-5788-d5d33f2e9e8c", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15.001975664013571", + "y": "51.05934394980068", + "z": "-2.1762636138515745" + } + ], + "uuid": "b3644f7a-5de1-79ff-4e3b-b8e718eaf680", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "41020bdb-9ffa-222f-1fec-5768a68bad7c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5\n", + "z": "-2.5" + } + ], + "uuid": "ac978271-fa68-2077-7ef7-e237148a253a", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5\n", + "z": "-2.5" + } + ], + "uuid": "6d3d5627-f8d3-a155-a8b3-d94743d40e0b", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "02f405d5-4085-ef63-9628-3a364458fe0a", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "0", + "z": "5.5" + } + ], + "uuid": "1b7ae221-c820-b462-a759-4dda1d4f4ed3", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "0", + "z": "5.5" + } + ], + "uuid": "b853c2f1-9021-4616-3536-a827bbdeec7e", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a68d313a-5342-3a2e-fdab-800924c64c12", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "55", + "y": "0", + "z": "0" + } + ], + "uuid": "570854d0-67c7-2a29-10f0-32e59861be19", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "77af74be-76e1-0502-aec3-f00d1f1e9a71", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "e41b49a5-9f00-2f3c-aa97-7080ac552946", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "eefce315-639f-0b97-ac0a-c870a8f2ec7f", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "55", + "y": "0", + "z": "0" + } + ], + "uuid": "ae4869c1-f4d6-e1ff-fea0-18e3ecfeffe5", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9b1a1557-7f58-7c7d-3d86-737c1f30da5c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3acff622-10ed-1a85-3714-8e34e256890f", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "db6281b2-f2c9-de3c-791a-b87493c57139", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "98b956bc-7609-8acc-dcc3-8eb998fba242", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "7adff1fc-3e1a-5755-741b-2d757c2e3082", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "fcf40e36-99ac-6f66-f16e-50979388f006", + "time": 1, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "34b030fe-7f4b-f5a2-03a2-c0152dc3cc65", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "882a27c2-5cf1-db1d-df8d-23b55438c53a", + "time": 1.375, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "943a50b7-947d-ae8f-6741-bc3fd5c1dcec", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ef36528e-da27-d092-e377-82e996061766", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "e162f8f2-f64a-1cd8-771e-4c4178cba7fb", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "0a8729a6-ff9b-f8ab-cd72-522cf53ddc35", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "16a1181a-45f2-5201-d591-721a8d9aae8c", + "time": 1, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7ef186c9-b6a2-da3b-1169-990c0ab8ff0f", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "616dea91-4707-2e0f-acbc-c3b4990364da", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "a5850138-894b-e2e4-c2d2-458868e06a5b", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3d06af5f-5f5a-5e4c-7a11-54c33d1d3309", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fe3322a6-f350-6fa6-d6d6-d36c3c7305e7", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "bfb1f2a3-40b7-8363-c8c9-df3eb392d8d4", + "time": 1, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "2f08abdb-8345-b201-0dc4-4d954c194f5e", + "name": "clap", + "loop": "once", + "override": true, + "length": 2.53333, + "snapping": 60, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f78104f5-827f-1cfc-5dc3-6d529cf6282b", + "time": 0.18333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.19132", + "y": "31.94715", + "z": "6.31274" + } + ], + "uuid": "695eeaec-4ea3-219b-f55a-7fc02a8e6149", + "time": 0.43333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1900d0a4-26a6-f3f5-5e5c-4e5c04468ecb", + "time": 2.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.19132", + "y": "31.94715", + "z": "6.31274" + } + ], + "uuid": "b3bd1e0e-33d6-6ef6-da85-d6389d0312ce", + "time": 0.63333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.19132", + "y": "31.94715", + "z": "6.31274" + } + ], + "uuid": "0dd46afb-b028-c740-7213-ff04a4152d39", + "time": 0.83333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.19132", + "y": "31.94715", + "z": "6.31274" + } + ], + "uuid": "db2e0314-4bd1-abca-35b6-adab26afac3e", + "time": 1.03333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.19132", + "y": "31.94715", + "z": "6.31274" + } + ], + "uuid": "fe72dec6-d02f-9ba7-5c7e-59f564cb47aa", + "time": 1.23333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.19132", + "y": "31.94715", + "z": "6.31274" + } + ], + "uuid": "8f1b16cd-62c7-313c-afe7-743ce0b6f405", + "time": 1.43333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.19132", + "y": "31.94715", + "z": "6.31274" + } + ], + "uuid": "e3595c95-49da-86e6-e2e6-579fd9545469", + "time": 1.63333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.19132", + "y": "31.94715", + "z": "6.31274" + } + ], + "uuid": "c87242f8-87dd-4c1a-5896-8e6ef7474b5d", + "time": 1.83333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.19132", + "y": "31.94715", + "z": "6.31274" + } + ], + "uuid": "ae52c019-305b-48f7-67cf-bd7b917b6a8b", + "time": 2.03333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "5.35798", + "z": "-5.00284" + } + ], + "uuid": "4e176262-47c6-4026-9f98-a2a298540e63", + "time": 0.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "5.35798", + "z": "-5.00284" + } + ], + "uuid": "ff9b5f0a-4724-aed2-d007-ce0c4668f20c", + "time": 0.73333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "5.35798", + "z": "-5.00284" + } + ], + "uuid": "fa9def47-85d8-98c3-47da-dba7365e39ef", + "time": 0.93333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "5.35798", + "z": "-5.00284" + } + ], + "uuid": "ebc092df-3ad0-1d51-27b3-c06123982f45", + "time": 1.13333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "5.35798", + "z": "-5.00284" + } + ], + "uuid": "97282ede-816d-d88c-b2f5-e0069698b0ef", + "time": 1.33333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "5.35798", + "z": "-5.00284" + } + ], + "uuid": "fbf99c80-dbc5-72a0-5c6e-b0ab35d92ac9", + "time": 1.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "5.35798", + "z": "-5.00284" + } + ], + "uuid": "0401e06d-dd32-6626-1bc8-45646d87764f", + "time": 1.73333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "5.35798", + "z": "-5.00284" + } + ], + "uuid": "bb5dabfa-7bcc-5153-746f-1bae15d2d0e1", + "time": 1.93333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "5.35798", + "z": "-5.00284" + } + ], + "uuid": "13f8a05c-622c-d91e-a76e-4eddc47e3cf4", + "time": 2.13333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e54fab22-bbd7-f84e-02c3-091bba0c607d", + "time": 0.43333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5a0ad8d0-ac33-a5d1-cda9-7cdd9efc679a", + "time": 0.63333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1728225a-c76d-0578-00eb-25066f4c9ee6", + "time": 0.83333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f9bb99aa-79d8-026b-8ffc-69a464b5d6b5", + "time": 1.03333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "df98b001-7b92-f831-3d92-be4507b7e26a", + "time": 1.23333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "22500e70-b7dd-2c8a-9589-9180c0ab366b", + "time": 1.43333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bf95953d-b36d-91bf-3f6b-8820033ff065", + "time": 1.63333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f5e7652b-37d3-6113-0c91-175e6f69dca5", + "time": 1.83333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0619d8de-15a1-3284-d542-9bddff9db47f", + "time": 2.03333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1a991faa-16b9-1608-0294-98b3b6c56688", + "time": 2.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "75c3d9eb-e469-fe08-0852-13143cd4ef40", + "time": 0.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "59d07490-64dd-40af-ce0d-07a463379e42", + "time": 0.73333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "d0e6ac53-af6d-ac7e-846c-f03489be0e9b", + "time": 0.93333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "aeade8d4-d07e-cd51-195a-1578fe28041c", + "time": 1.13333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "2c21bb99-f9e2-71e9-1e58-e6869ebb2715", + "time": 1.33333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "1e5fb9f9-1631-b66e-346c-c87ebe8706e5", + "time": 1.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "99ced2ed-3cc7-7719-1d89-ff9151769524", + "time": 1.73333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "0443085b-6a70-0291-0eed-78673e6dce18", + "time": 1.93333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "6e625e84-3758-b12c-6a83-8d9cdb04aaac", + "time": 2.13333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "77d488d1-9458-58c6-e241-75599906ba19", + "time": 0.18333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80", + "y": "-35", + "z": "0" + } + ], + "uuid": "82bbdf59-bb08-0e30-adb3-7b60cda04bdd", + "time": 0.43333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8aeb6d8b-7275-cc98-8b08-40f2afbc4a41", + "time": 2.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80", + "y": "-35", + "z": "0" + } + ], + "uuid": "8cdeb588-8a6a-9c22-bb3b-bc622658bb53", + "time": 0.63333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80", + "y": "-35", + "z": "0" + } + ], + "uuid": "d360cf51-fff2-c80a-7bd0-897fc4fa36d9", + "time": 0.83333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80", + "y": "-35", + "z": "0" + } + ], + "uuid": "7393f14f-adf1-5ea6-cabc-b432212699c4", + "time": 1.03333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80", + "y": "-35", + "z": "0" + } + ], + "uuid": "0174391b-5142-927b-c2bd-1d62656b73c4", + "time": 1.23333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80", + "y": "-35", + "z": "0" + } + ], + "uuid": "0d43ae72-7b98-9431-50e1-5f420928454b", + "time": 1.43333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80", + "y": "-35", + "z": "0" + } + ], + "uuid": "0fcf716e-aee1-73d0-f93c-957cde63188b", + "time": 1.63333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80", + "y": "-35", + "z": "0" + } + ], + "uuid": "e5585907-f80f-9bd1-5ebe-a6cabfe27988", + "time": 1.83333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80", + "y": "-35", + "z": "0" + } + ], + "uuid": "f503e8c9-06a0-d249-7d58-2d79bbfc0507", + "time": 2.03333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "-5.35798", + "z": "5.00284" + } + ], + "uuid": "98a38b33-7197-b6c4-241d-88dc1507b869", + "time": 0.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "-5.35798", + "z": "5.00284" + } + ], + "uuid": "4038b1c3-cad6-a5c4-617f-9cf0d0b40e19", + "time": 0.73333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "-5.35798", + "z": "5.00284" + } + ], + "uuid": "af253282-94a5-9ccb-8dc1-f39a9e94ebb1", + "time": 0.93333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "-5.35798", + "z": "5.00284" + } + ], + "uuid": "bf7eaa6a-c061-d687-1995-ddbc09552b20", + "time": 1.13333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "-5.35798", + "z": "5.00284" + } + ], + "uuid": "b09a5354-7473-0347-e845-b73f624008fa", + "time": 1.33333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "-5.35798", + "z": "5.00284" + } + ], + "uuid": "1c50fcdf-b344-d762-3a83-6f4be3a05dea", + "time": 1.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "-5.35798", + "z": "5.00284" + } + ], + "uuid": "a69da435-e001-c02f-7666-31018d660adf", + "time": 1.73333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "-5.35798", + "z": "5.00284" + } + ], + "uuid": "8d9bb6e6-aa4c-adfa-624c-6f76ee7287f5", + "time": 1.93333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "-5.35798", + "z": "5.00284" + } + ], + "uuid": "94a14c23-ba20-6e41-851f-89e5b9eedb19", + "time": 2.13333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3eb12c22-3350-ea40-82f8-591b7bdac147", + "time": 0.43333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0d88a6bf-3412-4531-6cd4-11738a55699d", + "time": 0.63333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fd5351df-736c-0900-c37e-0baa3d807699", + "time": 0.83333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "25ab2be7-b89a-2ab5-4fc5-2aba9f02a025", + "time": 1.03333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2a43d3ce-e77e-ba8c-d9e8-5eae00a6cd04", + "time": 1.23333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "56c8c5c6-7ec2-4e2f-c300-95ff358e95b0", + "time": 1.43333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "422b63e0-7339-251d-6b44-298391be90b6", + "time": 1.63333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cbd3889d-c0d1-0403-1cba-1ae2c5bc0a16", + "time": 1.83333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9aa24d7b-d139-3184-ca95-f5ea809f4b07", + "time": 2.03333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "29985837-27c6-dd85-0945-19d95b5a4d57", + "time": 2.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-20" + } + ], + "uuid": "e42959e4-22dc-e91b-236d-be3c6c449f88", + "time": 0.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-20" + } + ], + "uuid": "0620e6e0-9701-6bf0-9261-37e29e0ecf9b", + "time": 0.73333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-20" + } + ], + "uuid": "a33bcb5c-434c-1ce8-b368-f21f8bdb886d", + "time": 0.93333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-20" + } + ], + "uuid": "d6aa8a54-46b7-d816-d42f-bd96a7d59eac", + "time": 1.13333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-20" + } + ], + "uuid": "184e8bea-9f43-c8f0-606a-8e675b253ea9", + "time": 1.33333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-20" + } + ], + "uuid": "60126251-891a-0147-20d5-0fd57330972f", + "time": 1.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-20" + } + ], + "uuid": "b4d01b35-02e9-553e-3377-bbbf347c6b97", + "time": 1.73333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-20" + } + ], + "uuid": "53e4df5b-1ed0-f18b-951b-f3aa83cdd656", + "time": 1.93333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-20" + } + ], + "uuid": "d0be5f3a-b960-8212-5285-ed912a8f09d9", + "time": 2.13333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + } + } + }, + { + "uuid": "a744e70f-1914-3caf-f9f2-2a837bbbeda4", + "name": "wave", + "loop": "once", + "override": false, + "length": 1.79167, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-7.5" + } + ], + "uuid": "fbf9bb0c-ca98-b7c4-dd2d-62b2508f2d65", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7c49791f-30aa-3980-ae97-7c674489c16b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8dba4889-5451-0f9a-14aa-c19b994f9798", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-7.5" + } + ], + "uuid": "72178732-c646-78cd-77f2-d160f8ecaf36", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "0" + } + ], + "uuid": "4dcd1858-4b7e-195a-6ce8-2c0287bb39f5", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "95ee3234-13ad-bed7-51c5-362c09f52d68", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c1ed3963-107d-6b31-ae28-45618a3bba09", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "0" + } + ], + "uuid": "1ea437d7-7f58-c3a3-e13e-554c9a493ef8", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-5" + } + ], + "uuid": "146e5194-74ad-5691-25e5-3f66e9648927", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "00ba43c2-0c33-8511-ee34-2c5c843bbb36", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bb6db12c-33a1-03b7-5c78-5e2c00609e08", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-5" + } + ], + "uuid": "4fc9fcfa-b266-94c9-cd3d-0853c4d2b817", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "ea91c4db-3a89-20ec-89d8-52c5ad1a5423", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "26bc77fc-9318-359e-5b09-72fa3946804c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9af0934a-8a39-5295-6f9a-3c38af15ff44", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "d7cdea44-6104-431e-a07f-b1a3afdbb035", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "f81dc3c7-77dc-3a00-af08-10607e7bc843", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115" + } + ], + "uuid": "fb0cf5f8-8850-120f-9208-a28d121b0716", + "time": 0.29167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d8102de7-586c-2345-680d-784b2f4363ed", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "382fc072-1206-bcd1-5cab-a0cd6543432a", + "time": 0.66667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115\n" + } + ], + "uuid": "d4fda29f-d347-ebf7-90a5-edc78ca36e8e", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "c89e9b58-2084-cdca-c606-9dcffe382396", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115\n" + } + ], + "uuid": "26bcf4f9-9583-f211-a21f-af500968f238", + "time": 0.54167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9254c77c-28ee-0efc-d0cf-42985284d7b2", + "time": 1.66667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "bb261ab3-cbd9-bcef-1f72-3b8b81d5ed00", + "time": 0.91667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115\n" + } + ], + "uuid": "35292b51-de25-61a9-41a1-06cf2e0da61f", + "time": 1.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "30adc32b-0bcd-df2f-d072-0bb16f14197d", + "time": 1.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115\n" + } + ], + "uuid": "79c2edb9-386e-de4d-2529-b96e2c08f056", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115\n" + } + ], + "uuid": "7d713123-a19e-78c0-b868-a58dc9a2a0e6", + "time": 1.29167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "65cbf914-8b60-b758-9096-bade2c1ffc14", + "time": 1.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2", + "z": "0" + } + ], + "uuid": "f26813fd-4d51-2b38-9362-7dd6a90c5c8e", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4a14476e-3a87-9399-7433-71ba342c3fa7", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "aa041bd6-eedd-cedc-1e15-af3032cff0cb", + "time": 1.66667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2", + "z": "0" + } + ], + "uuid": "530164e4-7f6f-e1a8-5c89-8add456c773b", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "aa33bd55-e6c1-875a-6ef7-72d08dbe3c4e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "954ac53c-1b5e-1b20-bffa-962dd8cc6492", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0\n\n", + "z": "0" + } + ], + "uuid": "31cfdbc1-3975-c4ee-820d-5c3f5fc1873f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0\n", + "y": "0", + "z": "0" + } + ], + "uuid": "5fcfc295-d3ca-ddbd-b055-9a6b65ea5661", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0\n", + "y": "0", + "z": "0" + } + ], + "uuid": "e41a5bc7-f55d-53a3-7ebd-bcb31c34d26d", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0\n", + "z": "0" + } + ], + "uuid": "083ebb2c-b339-196c-7609-c8576d39927a", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0\n", + "z": "0" + } + ], + "uuid": "85f601b8-b74a-25a0-24b7-9d93f15f26f5", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "544a47ef-3151-3c19-8551-8f54c38f902f", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "95a03ee5-c52b-9f66-30c3-734f37d0ba46", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2.5\n" + } + ], + "uuid": "90d33293-fe43-3edc-623e-f46f3d0df698", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2.5\n" + } + ], + "uuid": "45cf7d7f-255f-a390-368d-23ff6c6ede98", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3178b6d3-2042-0802-c607-1befb5d9e09f", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cffd18b1-0e36-85a4-32c0-ffa2bc97c75a", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "-1", + "z": "0" + } + ], + "uuid": "30053a7c-e691-5849-ba43-8add2c8b0153", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "-1", + "z": "0" + } + ], + "uuid": "e4bda781-7786-0b9c-b962-5c94d0861efc", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "c70d65ff-0518-8da8-ff84-1179c183d4ef", + "name": "elytra", + "loop": "loop", + "override": true, + "length": 0.54167, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "676f73ba-7120-ba5f-b1f6-96da235316ac": { + "name": "RightArmLower", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "1089e166-f458-a8d7-0105-15b904d2e0a6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.929896064562854", + "y": "-1.7081840554196788", + "z": "-4.699856911810457" + } + ], + "uuid": "a298f9b0-f55b-ae1f-e6f8-bef92266c6c7", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "b1602645-bd60-af43-75f0-36b41c96b6d6", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.929896064562854", + "y": "-1.7081840554196788", + "z": "-4.699856911810457" + } + ], + "uuid": "e8ef99f2-5e21-5df8-9105-c9cda71e371a", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "707ed181-3b32-0882-b413-e80fac5a29cb", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "08b1889c-f605-17bb-c427-cb3c97b0d7d6": { + "name": "LeftArmLower", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "651021d1-4a85-0501-ef67-55d9b5f737d4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.929896064562854", + "y": "1.7081840554196788", + "z": "4.699856911810457" + } + ], + "uuid": "785fabc9-c478-7d42-df89-eaab9dea98c8", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "1daa91fc-19ff-9589-1c8d-1c692ad9e4bd", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "cd3741de-807a-6f11-4a74-33b8e1942f99", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "c15b36c1-20bf-940d-62b2-cff67b5329ef": { + "name": "LLL", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3d103cc1-d42d-017e-5b13-819322a05ab1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "157615d3-1412-db1c-85ef-cd259943d5f6", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "-85", + "z": "-20" + } + ], + "uuid": "f03646c9-8407-830d-63e3-cbbfee0fb77e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-90", + "z": "-110" + } + ], + "uuid": "f986bb28-1972-9d37-c5c9-9b831a885235", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "-85", + "z": "-20" + } + ], + "uuid": "01dfa058-2e65-faca-0b62-c2fddb50b903", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "0" + } + ], + "uuid": "a2b728c3-1cf6-437a-c1f5-f46ca575e725", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "37eda337-5d97-3288-1fef-dcfb75e37d80", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4fe77a49-9c15-6919-0c98-a58d65ea3765", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "9236a4e0-cfcd-0901-bf6d-22da353e2452", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "6d01fbb0-015a-3585-818d-5307e80dfb70", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9c3dfefb-c145-0726-6f2f-05a5a04f9f0c", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "d6cddb9b-7427-cf0f-9782-4875d0845d0e", + "time": 0.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "10.78", + "y": "0", + "z": "0" + } + ], + "uuid": "7bfb4fe9-0013-defb-76c0-0f9de15e47fc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "10.78", + "y": "0", + "z": "0" + } + ], + "uuid": "c4f0a7a4-b5ef-3ac7-8b4d-376dbb742d95", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "2.5", + "z": "0" + } + ], + "uuid": "b7606192-0d27-974c-360f-577b83d4f9d1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-2.5", + "z": "0" + } + ], + "uuid": "52a7ff92-652f-3ee5-aad1-343451ef51d6", + "time": 0.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "2.5", + "z": "0" + } + ], + "uuid": "bfed4ebd-3eae-3d71-9953-3d8cc4db994c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "85", + "z": "20" + } + ], + "uuid": "9135accd-0077-6738-9c33-0c14c061e288", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "90", + "z": "110" + } + ], + "uuid": "23ee2180-b567-a958-1f26-75b235510122", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "85", + "z": "20" + } + ], + "uuid": "1c792fdb-b66a-0d8d-cc01-2417dfaa6ad1", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "3a11a8e8-3f94-5a20-6a68-52137a18af0a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + } + } + }, + { + "uuid": "ca5d1fd6-c676-6f79-9532-a0ca36899738", + "name": "elytradown", + "loop": "loop", + "override": true, + "length": 0.25, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "676f73ba-7120-ba5f-b1f6-96da235316ac": { + "name": "RightArmLower", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "1089e166-f458-a8d7-0105-15b904d2e0a6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.929896064562854", + "y": "-1.7081840554196788", + "z": "-4.699856911810457" + } + ], + "uuid": "a298f9b0-f55b-ae1f-e6f8-bef92266c6c7", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "b1602645-bd60-af43-75f0-36b41c96b6d6", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "707ed181-3b32-0882-b413-e80fac5a29cb", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "08b1889c-f605-17bb-c427-cb3c97b0d7d6": { + "name": "LeftArmLower", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "651021d1-4a85-0501-ef67-55d9b5f737d4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.929896064562854", + "y": "1.7081840554196788", + "z": "4.699856911810457" + } + ], + "uuid": "785fabc9-c478-7d42-df89-eaab9dea98c8", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "1daa91fc-19ff-9589-1c8d-1c692ad9e4bd", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "cd3741de-807a-6f11-4a74-33b8e1942f99", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "5cba2b77-6bed-3ec1-60a1-9f361cd7c418": { + "name": "RRL", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9213920a-c6e9-c3dc-823d-8dcbe146ee63", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "d9b5b5fe-d976-6ac4-8428-fb30a50b61ef", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "c15b36c1-20bf-940d-62b2-cff67b5329ef": { + "name": "LLL", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3d103cc1-d42d-017e-5b13-819322a05ab1", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "157615d3-1412-db1c-85ef-cd259943d5f6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "1.7139436140287216", + "y": "4.697763659989505", + "z": "0.07030897931554136" + } + ], + "uuid": "f03646c9-8407-830d-63e3-cbbfee0fb77e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "1.7139436140287216", + "y": "4.697763659989505", + "z": "0.07030897931554136" + } + ], + "uuid": "194c2fe2-8ad5-cad6-5bd7-a0a4e4b9c91b", + "time": 0.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "1.5070097180978337", + "y": "4.768035963348666", + "z": "-2.4372550646980926" + } + ], + "uuid": "32185d45-95e8-7b04-61c8-bba21e604cd1", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "4.171539289556604", + "y": "4.7121636670044245", + "z": "-0.44353414376741057" + } + ], + "uuid": "27c752e9-a7ec-73d6-6af8-a968aad5b4c5", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "0" + } + ], + "uuid": "a2b728c3-1cf6-437a-c1f5-f46ca575e725", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "16\n", + "y": "0", + "z": "0" + } + ], + "uuid": "37eda337-5d97-3288-1fef-dcfb75e37d80", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "14", + "y": "0", + "z": "0" + } + ], + "uuid": "5ffdef7b-2332-058c-6784-5fa7878eef7e", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "16", + "y": "0", + "z": "0" + } + ], + "uuid": "e2157d09-afa5-cd37-edfe-4845c585bbc1", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "16\n", + "y": "0", + "z": "0" + } + ], + "uuid": "a7c1e886-6dc5-2e6d-ccad-d648d146d41b", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "14", + "y": "0", + "z": "0" + } + ], + "uuid": "d9ca9c36-bb36-d2d4-10dd-d548579d845e", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "16", + "y": "0", + "z": "0" + } + ], + "uuid": "ae10e99f-1acb-c0a5-1a72-edd087025ee6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "b7606192-0d27-974c-360f-577b83d4f9d1", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "52a7ff92-652f-3ee5-aad1-343451ef51d6", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "bfed4ebd-3eae-3d71-9953-3d8cc4db994c", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-358.0824266447744", + "y": "-4.618537953409941", + "z": "-362.57733562522526" + } + ], + "uuid": "9135accd-0077-6738-9c33-0c14c061e288", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-358.0824266447744", + "y": "-4.618537953409941", + "z": "-362.57733562522526" + } + ], + "uuid": "81f95a84-2fdd-edcb-31f0-0878782368ac", + "time": 0.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-358.2860559702208", + "y": "-4.697764794083923", + "z": "-360.07030901336475" + } + ], + "uuid": "eb2d9cad-23ff-78ee-2626-bb1ea08e1e28", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-360.62415380575715", + "y": "-4.6347728995687065", + "z": "-362.06360263126004" + } + ], + "uuid": "fd33e3fd-a00b-7771-5b63-31e7d5ce9822", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "3a11a8e8-3f94-5a20-6a68-52137a18af0a", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "e6e30e03-879e-b600-df0a-80f85cc8ac1c", + "name": "jumpup", + "loop": "hold", + "override": true, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "13.802858297169948", + "y": "-10.547935953487286", + "z": "-14.04397327585233" + } + ], + "uuid": "2ce88a47-e760-d023-f435-fee15a942e01", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5.001415129035649", + "y": "-21.469023519779256", + "z": "13.124268122792381" + } + ], + "uuid": "57bd311c-c651-cb95-d7e8-00b3ddc080f1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7b14a130-b86f-c7b6-acaf-391e3615e38c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "c4bee500-dfc3-288e-e5be-f1abcb841f50", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "6d2f6d31-a7a4-97b4-9a64-3f0daf236c3b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "331a6bfb-9c77-3901-1736-91a8522d3e70", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "79d43228-ea3b-a486-b935-03a3b8b95e5c", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "13.802858297169948", + "y": "10.547935953487286", + "z": "14.04397327585233" + } + ], + "uuid": "99e5ad07-48b6-b8ac-9153-2dfc358f5f46", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5.001415129035649", + "y": "21.469023519779256", + "z": "-13.124268122792381" + } + ], + "uuid": "d300bf2c-7f4c-5b80-7be9-b0f4df223e1b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "9dcf4fa5-5f02-bf18-4da5-baf3e1853a15", + "name": "jumpdown", + "loop": "hold", + "override": true, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "24.66569435017618", + "y": "-4.208542519128969", + "z": "-23.420532526717125" + } + ], + "uuid": "b40dc0a0-efb9-9f8c-fd76-8538f1d6151e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.50141512903565", + "y": "21.469023519779057", + "z": "13.124268122792273" + } + ], + "uuid": "ebade1bc-8d9b-7452-656f-c651843ad881", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "1080d370-979f-afd0-1990-df7136997d28", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "95", + "y": "0", + "z": "0" + } + ], + "uuid": "2afc1367-c16d-0bc7-c13c-41b0556b534e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "9a87c967-985b-57c4-92d9-8ffe83c78122", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a728401b-c01f-1b6d-1de3-bf6ff7a33eaf", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "70", + "y": "0", + "z": "0" + } + ], + "uuid": "7b335476-00b3-7443-15a4-076d16f1a5fe", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.721658181035764", + "y": "-0.9658317366702249", + "z": "13.738468230615126" + } + ], + "uuid": "8075c8e1-0ef5-49d4-e14c-baf6cde73d84", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.5", + "y": "0", + "z": "-27.5" + } + ], + "uuid": "ffda97cd-4f5d-df11-e7ab-14464d7a742f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "00ff7364-0308-06c2-58f5-ac544767e0ec", + "name": "walkjumpup", + "loop": "hold", + "override": true, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "13.802858297169948", + "y": "-10.547935953487286", + "z": "-14.04397327585233" + } + ], + "uuid": "2ce88a47-e760-d023-f435-fee15a942e01", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5.001415129035649", + "y": "-21.469023519779256", + "z": "13.124268122792381" + } + ], + "uuid": "57bd311c-c651-cb95-d7e8-00b3ddc080f1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7b14a130-b86f-c7b6-acaf-391e3615e38c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "c4bee500-dfc3-288e-e5be-f1abcb841f50", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "6d2f6d31-a7a4-97b4-9a64-3f0daf236c3b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "331a6bfb-9c77-3901-1736-91a8522d3e70", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "79d43228-ea3b-a486-b935-03a3b8b95e5c", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "13.802858297169948", + "y": "10.547935953487286", + "z": "14.04397327585233" + } + ], + "uuid": "99e5ad07-48b6-b8ac-9153-2dfc358f5f46", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5.001415129035649", + "y": "21.469023519779256", + "z": "-13.124268122792381" + } + ], + "uuid": "d300bf2c-7f4c-5b80-7be9-b0f4df223e1b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "560f42bd-c89e-2397-0435-1df56a6c0423", + "name": "walkjumpdown", + "loop": "hold", + "override": true, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "24.66569435017618", + "y": "-4.208542519128969", + "z": "-23.420532526717125" + } + ], + "uuid": "b40dc0a0-efb9-9f8c-fd76-8538f1d6151e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.50141512903565", + "y": "21.469023519779057", + "z": "13.124268122792273" + } + ], + "uuid": "ebade1bc-8d9b-7452-656f-c651843ad881", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "1080d370-979f-afd0-1990-df7136997d28", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "95", + "y": "0", + "z": "0" + } + ], + "uuid": "2afc1367-c16d-0bc7-c13c-41b0556b534e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "9a87c967-985b-57c4-92d9-8ffe83c78122", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a728401b-c01f-1b6d-1de3-bf6ff7a33eaf", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "70", + "y": "0", + "z": "0" + } + ], + "uuid": "7b335476-00b3-7443-15a4-076d16f1a5fe", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.721658181035764", + "y": "-0.9658317366702249", + "z": "13.738468230615126" + } + ], + "uuid": "8075c8e1-0ef5-49d4-e14c-baf6cde73d84", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.5", + "y": "0", + "z": "-27.5" + } + ], + "uuid": "ffda97cd-4f5d-df11-e7ab-14464d7a742f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "77066a60-fda8-8b84-a0e9-5a4f71ca5138", + "name": "sprintjumpup", + "loop": "hold", + "override": true, + "length": 0.125, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "24.66569435017618", + "y": "-4.208542519128969", + "z": "-23.420532526717125" + } + ], + "uuid": "8cc15b94-f5fb-11c8-2021-1aa81459686b", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "13.802858297169948", + "y": "-10.547935953487286", + "z": "-14.04397327585233" + } + ], + "uuid": "2ce88a47-e760-d023-f435-fee15a942e01", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.50141512903565", + "y": "21.469023519779057", + "z": "13.124268122792273" + } + ], + "uuid": "33cbf45a-a330-0e48-08bb-5fc52f9cf3e4", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "5.001415129035649", + "y": "-21.469023519779256", + "z": "13.124268122792381" + } + ], + "uuid": "57bd311c-c651-cb95-d7e8-00b3ddc080f1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "ab9a172f-64ce-599a-2323-b583f1ec1ab7", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7b14a130-b86f-c7b6-acaf-391e3615e38c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "95", + "y": "0", + "z": "0" + } + ], + "uuid": "7ceb5601-93ac-b15c-8d3f-1b89244e71a5", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "c4bee500-dfc3-288e-e5be-f1abcb841f50", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "40e6845f-0f1b-fbd2-14f9-def847e3bf2d", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "6d2f6d31-a7a4-97b4-9a64-3f0daf236c3b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "33a14844-1e2d-f8b8-60a4-07b859b55d3f", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "331a6bfb-9c77-3901-1736-91a8522d3e70", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "70", + "y": "0", + "z": "0" + } + ], + "uuid": "92750794-713d-7646-aca2-67ac972f8b5a", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "79d43228-ea3b-a486-b935-03a3b8b95e5c", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.721658181035764", + "y": "-0.9658317366702249", + "z": "13.738468230615126" + } + ], + "uuid": "9b2c2034-98fa-42c8-f7bd-e7cd6adbf5af", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "13.802858297169948", + "y": "10.547935953487286", + "z": "14.04397327585233" + } + ], + "uuid": "99e5ad07-48b6-b8ac-9153-2dfc358f5f46", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.5", + "y": "0", + "z": "-27.5" + } + ], + "uuid": "28740c2c-e4a2-bfd8-4058-0ac4c1213372", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "5.001415129035649", + "y": "21.469023519779256", + "z": "-13.124268122792381" + } + ], + "uuid": "d300bf2c-7f4c-5b80-7be9-b0f4df223e1b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "bf6dcac1-b395-d956-47c7-4ceab6652f18", + "name": "sprintjumpdown", + "loop": "hold", + "override": true, + "length": 0.125, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "3.8127287490247355", + "y": "0.6361567838706286", + "z": "-119.31164662559311" + } + ], + "uuid": "813e4c9e-18c6-8c70-9d9d-c24d7c79502d", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "0" + } + ], + "uuid": "3ee8ea06-e880-4a74-dc17-3aab7f3fb417", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.022554035987469", + "y": "-18.96262467773522", + "z": "-25.027422340612247" + } + ], + "uuid": "c495a61e-d4a9-6af7-2ac3-a69714ae71e6", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-54.53", + "y": "-4.27", + "z": "-6.19" + } + ], + "uuid": "bbb61508-3a9c-c319-eaf4-634a726db49f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "6ecb351a-4131-44ff-5aad-cf1d40550d10", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "40e6845f-0f1b-fbd2-14f9-def847e3bf2d", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-29.53", + "y": "4.27", + "z": "6.19" + } + ], + "uuid": "b5bb7c64-4ad7-b2d3-cf3e-98355b795405", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "475d3f28-89d3-aac3-fa64-f7bb61f3a94e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "3.8127287490247355", + "y": "-0.6361567838706286", + "z": "119.31164662559311" + } + ], + "uuid": "e5c8e2be-02c2-fae5-3a1f-5c7afa8f6595", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "49343306-3155-5106-2124-a19916469d00", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.022554035987469", + "y": "18.96262467773522", + "z": "25.027422340612247" + } + ], + "uuid": "8d73697d-9369-3831-e6bb-e325ebb14849", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "-0.5" + } + ], + "uuid": "7ac34beb-3fc7-0dd9-fc2f-ef37c29e695f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "0fe9582e-afee-9945-c051-79e1996ab231": { + "name": "RightHand", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "-0.5" + } + ], + "uuid": "0aade466-b4e4-af33-2c53-30c9db4ae4a4", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "bda332b6-1719-7432-6b65-f5327eb80c3a", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "93e93f98-3606-59fe-6804-809edd0ba99d", + "name": "sprintjumpdown-normal", + "loop": "hold", + "override": true, + "length": 0.125, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "33.04", + "y": "-7.66", + "z": "-106.78" + } + ], + "uuid": "9b2a3d76-e697-ac99-6138-647c4423af39", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-28.75", + "y": "0", + "z": "13.75" + } + ], + "uuid": "729197d1-4aa9-3e64-4d81-1ab685ff4a04", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-54.53", + "y": "-4.27", + "z": "-6.19" + } + ], + "uuid": "bbb61508-3a9c-c319-eaf4-634a726db49f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "6ecb351a-4131-44ff-5aad-cf1d40550d10", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "40e6845f-0f1b-fbd2-14f9-def847e3bf2d", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-29.53", + "y": "4.27", + "z": "6.19" + } + ], + "uuid": "b5bb7c64-4ad7-b2d3-cf3e-98355b795405", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "475d3f28-89d3-aac3-fa64-f7bb61f3a94e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "33.04", + "y": "7.66", + "z": "106.78" + } + ], + "uuid": "c42b9ee2-0927-dd7b-b6f1-c91947adb3e4", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-28.75", + "y": "0", + "z": "-13.75" + } + ], + "uuid": "8d73697d-9369-3831-e6bb-e325ebb14849", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "5f3ca93c-a7f8-6686-07d3-b89d0dbf8124", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "716cda05-671d-49f2-62b3-c3f82648c23a", + "name": "climbdown", + "loop": "loop", + "override": true, + "length": 1, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-63.150945046339075", + "y": "0", + "z": "0" + } + ], + "uuid": "c32562a2-294a-8a4a-6526-7d298fa217c4", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "9911e52c-d821-8da7-10b5-414932ecf3d4", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1.05" + } + ], + "uuid": "1521282a-7af4-927b-b881-b7723733ba93", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-124", + "y": "0", + "z": "0" + } + ], + "uuid": "d13bd5ac-ee7f-77b5-4a7d-b8510f1cdc36", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "9283c5aa-d1b0-38ab-f0ba-30e819ee9355", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-124", + "y": "0", + "z": "0" + } + ], + "uuid": "abbb2f20-ae15-27d1-2252-f453c10417d1", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "0793a453-8795-1c57-0280-ccbf27d7f6e9", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-43.5", + "y": "0", + "z": "0" + } + ], + "uuid": "81df479c-37af-5ba3-b0c0-0cb72454f694", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2.5", + "z": "-2" + } + ], + "uuid": "8ac44326-d7d0-0661-39a2-6100831e7603", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0bd87b3e-b076-d3cf-b8a6-468b492cc14a", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "64577bb7-5591-f74e-4efe-c55931257854", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-43.5", + "y": "0", + "z": "0" + } + ], + "uuid": "2c2cc988-fb97-885e-00cd-9b0e5f009953", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2.5", + "z": "-2" + } + ], + "uuid": "88c2085c-a84c-afd7-af3c-cd2e8ed5bf39", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "34e7ff8a-dfdf-ec81-0889-74f0e405b5e1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5794fd30-12ae-e30e-9cae-823fe1a9d5c5", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "6" + } + ], + "uuid": "78a4e81b-8537-25e7-3147-9ea82f19f1c5", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "1c9fffc8-3a44-a8fc-7673-9e5faf0323ac", + "name": "crouch", + "loop": "hold", + "override": false, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "-3" + } + ], + "uuid": "4b569acd-c608-df6f-3da2-c4b862fe959d", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "1c3f7051-7cc7-623f-2941-1eabe1167044", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-2" + } + ], + "uuid": "0e1e279a-b0e6-73d2-715a-7b7dad4dea51", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-2" + } + ], + "uuid": "e1f281e2-be01-69a5-d61a-1e0ca773e590", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "20cb3517-cb5f-13f6-3824-2f4d84ada274", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "2336055b-9af8-8092-a33c-1efbc7e4ae22", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "5aafa2a5-f030-6650-9770-0f0dbff165b7", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "acae99d5-af76-d05f-e411-3637afb3c46b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "1" + } + ], + "uuid": "86f279b7-9445-ecb8-45ef-e0c82f00b202", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "85efa497-707f-7cf5-537c-59e0e81c49a1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-2" + } + ], + "uuid": "a519eb49-f6b7-32ba-98ad-dcb9e3d553ce", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-15", + "y": "0", + "z": "0" + } + ], + "uuid": "581a775e-fd06-c77b-aeff-87d0628fa5b2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-1" + } + ], + "uuid": "1dfd9a1d-3f74-5153-a3c8-d9d0a0e6e46b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "0.9", + "z": "1.2" + } + ], + "uuid": "3ff919fe-36b7-e88e-b82c-8154e9a344b3", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "fffbc67c-31aa-79be-859e-fbf0e08fe395", + "name": "taunt_01", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d67ee13a-82ec-d373-0580-b508bc4a1cc9", + "time": 0.5, + "color": -1, + "interpolation": "step" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-90" + } + ], + "uuid": "9c9dede5-5352-c6dd-af20-cb44653a942c", + "time": 0, + "color": -1, + "interpolation": "step" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "90" + } + ], + "uuid": "b4afdef1-26ad-5336-07b9-a8a1ffb8699d", + "time": 0, + "color": -1, + "interpolation": "step" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f06aec1c-da33-c2b4-696c-baef4b1a9448", + "time": 0.5, + "color": -1, + "interpolation": "step" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"01_whiphard\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "0a759990-4b4a-8568-1592-19ceaa9a366c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "eac464eb-5e04-8a69-4daf-652bac173e5d", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "28b54a84-efa5-cca9-b35e-822782450099", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "48312170-72b2-b235-3306-6571a332876c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b1213fd4-78a2-5728-2fdd-1a5756374769", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b1b6e005-f476-3be6-511f-82f55101bd8f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6858d788-d497-7794-09cd-c60ec31d2b1e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "542beea5-23b5-8f93-403c-80894374e4a7", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "20dcabb9-ad25-b967-9f66-94dc2ce3aec5", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cb91806b-f77e-ef26-58d6-53808a718d05", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c6845a72-cce2-43c7-d77f-20fb53c8b413", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d5de15f2-87af-4a3b-9ce0-9322085f927e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5d310e25-e14b-594b-86cb-e67915237cf3", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "357a46c0-7efb-d633-28f7-0aa66c605622", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2319240d-bf0f-e392-f720-cd4e8b02b1e0", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3d504884-325f-2267-001c-38013f784064", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "f54dd531-dc13-462e-aea3-bf2d6416fae6": { + "name": "tauntfx", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "30fcf5cc-70d4-2176-b1cf-68eefd8860be", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4884befd-d4a1-386a-e34a-83cc547edbd3", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "c27bde55-3cdc-a8ac-5a7b-d6e6e13c3bba", + "name": "taunt_02", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-0.40718", + "y": "14.64954", + "z": "10.16335" + } + ], + "uuid": "938e11a7-7087-81a3-c6e6-fb4ed651c344", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-0.40718226894477993", + "y": "14.649537871770917", + "z": "10.16334723213322" + } + ], + "uuid": "6c50af10-cbb2-b485-1ebe-048b5d867676", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6c6d5c53-b990-e878-ca20-26b31873ed2b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-158.92117", + "y": "76.62619", + "z": "-170.9567" + } + ], + "uuid": "db167eda-ae34-a1fb-f6e4-0c2223fc14be", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-158.92117000079134", + "y": "76.62618546362955", + "z": "-170.95670462344424" + } + ], + "uuid": "94d37b5f-6da8-0337-bd1b-4205f3f50c52", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9fe7a425-e376-e8df-44b7-c72c9a5a8026", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-35" + } + ], + "uuid": "fe17f80f-6c4f-ddaf-4ff1-f0ada8ad5710", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-35" + } + ], + "uuid": "02cc904b-e92b-2efa-28b6-8c0383ded3d0", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4bd78b48-d0a5-3fb6-bc15-bc065250a06b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-32.5" + } + ], + "uuid": "a7dc2fc6-4cb8-7670-ea81-375fde747748", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-32.5" + } + ], + "uuid": "1fae4ddc-33bc-90b8-373b-5d9336d5c6c3", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "02b3ad46-a6a0-4719-222a-194f24b3c860", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-77.48114", + "y": "70.6043", + "z": "-13.08622" + } + ], + "uuid": "1a319ba8-b278-f7c8-7c2e-1b2b2b98e673", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-77.48113951676123", + "y": "70.60430463832517", + "z": "-13.086220609780867" + } + ], + "uuid": "8470b71c-a880-db09-c070-a8c4042c58ad", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fb17a0a2-1ded-e717-e7fd-3c4f4410a698", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.56806", + "y": "0.72488", + "z": "-1.46692" + } + ], + "uuid": "853e1fbe-7712-08aa-58ce-f98f1ff2a72e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.5680627290992987", + "y": "0.7248831681849013", + "z": "-1.4669182418561957" + } + ], + "uuid": "3d35855c-8924-b647-4e88-8bb5c3660584", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5908b6b9-e5c4-108e-8fb1-3147ea5a51b8", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-113.26676", + "y": "1.08541", + "z": "26.006" + } + ], + "uuid": "cf063e6b-50b4-245a-9193-b537c324398d", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-113.26676365351477", + "y": "1.085405588168669", + "z": "26.00599521131562" + } + ], + "uuid": "d55a8422-6a39-1690-fc94-275feba14246", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ee4a7e98-7a84-f93e-2d4a-227e51965e96", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "26.16179", + "y": "10.10288", + "z": "-8.92254" + } + ], + "uuid": "7f19a75e-fba1-9a8b-0f61-876bd5025279", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "26.161787849433495", + "y": "10.102883306288277", + "z": "-8.922543491028591" + } + ], + "uuid": "4fd3353a-4b4a-906a-f952-e3bbee617a8b", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e9c702f6-c241-2d77-0844-aab03b18cf94", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.08681", + "y": "-3.21132", + "z": "-14.65993" + } + ], + "uuid": "ca4fa4d9-d434-af1a-ea01-082cda536d22", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.086807439427048", + "y": "-3.2113158158967963", + "z": "-14.659929312859731" + } + ], + "uuid": "29cba6dd-d673-2c87-30ae-c88e2e307818", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bb1390c3-a4fe-b935-4093-5abdb8dcdd1f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-26.16179", + "y": "10.10288", + "z": "8.92254" + } + ], + "uuid": "02bb750a-cb73-6ddb-13e6-e8fc17531f58", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-26.161787849433495", + "y": "10.102883306288277", + "z": "8.922543491028591" + } + ], + "uuid": "1265ed6e-2dc4-c338-1316-0c1d415d90da", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c7c549ce-a180-0062-3ca6-66b8147283f0", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7d9d33a5-88bc-5e32-ef81-928c03e6679f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c7c087c2-6fb4-4dcb-0876-3c66db4b93fa", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ee0ea64e-dc6a-45cc-d936-fe0b0edc1b40", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"02_swing\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "c4f0d970-7eca-69ec-f25d-bbe901dc81b6", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "a20898ff-9c74-eb8a-cc42-5f4343d0be09", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "17eaee90-00c2-207d-0019-00cc2be9a775", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "77eaf050-fd4f-5647-0a73-80fae0984089", + "name": "taunt_03", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-10", + "y": "0", + "z": "0" + } + ], + "uuid": "bfe95a9e-6595-17ca-ea26-2b3ea7ab383f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66845e4d-ed2c-2ad1-d13a-be03d961a83b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10", + "y": "0", + "z": "0" + } + ], + "uuid": "5976c269-fa38-2803-c74e-6bc95b1df300", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.8822", + "z": "-2.24221" + } + ], + "uuid": "ed773946-911a-5c0b-6c64-94dc7dba1d62", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "88e0be3f-c10f-3ad5-108b-29ded8f589c8", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.8822013886853135", + "z": "-2.242207558424727" + } + ], + "uuid": "47d867b5-d694-8af0-658d-c08342ba979e", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-40.78035852152243", + "y": "-59.884716682026465", + "z": "4.775119455341155" + } + ], + "uuid": "22937713-0d1e-d240-1eab-ced2c2e3e01f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "aa83ab60-c979-50f8-38b4-5f88ac5e1ee2", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-40.78035852152243", + "y": "-59.884716682026465", + "z": "4.775119455341155" + } + ], + "uuid": "f3805411-601e-144e-5864-18f152629829", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "180332d0-47bc-881b-8f9e-9144bd6007b6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "aeb341c5-18f0-cdc4-6973-1cd3d53a745d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "8c0bb6b1-cc3d-49fc-4ccd-c97a44d10a42", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-65.55184511312063", + "y": "1.9735060013249495", + "z": "47.67257456579728" + } + ], + "uuid": "6adb419a-df0b-5291-66e1-9fb9f07a3e59", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cd510693-fe65-c11c-302e-6857162a7520", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-65.55184511312063", + "y": "1.9735060013249495", + "z": "47.67257456579728" + } + ], + "uuid": "22d25147-ae19-6787-cfeb-27fe36961057", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3375b54d-d202-21e9-5984-45b1e619b79f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "232bc670-17ae-cf95-4547-5e78fa074e15", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5f884917-cb06-fa33-a194-e1a6ac52afae", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-33.45915645934019", + "y": "62.90951801648089", + "z": "3.5575079776940584" + } + ], + "uuid": "40914255-247c-72b0-fbab-b48418746b89", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "98c34e6d-aa18-f91d-f462-2c6df23bf99f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-33.45915645934019", + "y": "62.90951801648089", + "z": "3.5575079776940584" + } + ], + "uuid": "0fb3af24-8c6a-bcab-6803-77decb93acde", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4c6e63b7-44f8-0d5f-93be-4e35b14e7693", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "51ba4766-cef7-650e-da1d-209ae5af89fa", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "98ee2d59-8dec-2847-dcde-5f549b7544fa", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-65.55184511312063", + "y": "-1.9735060013249495", + "z": "-47.67257456579728" + } + ], + "uuid": "bd8a8727-7a29-627c-4b71-d806f8d978bc", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "54659bef-9a34-4a46-d28a-8cb2ed9581df", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-65.55184511312063", + "y": "-1.9735060013249495", + "z": "-47.67257456579728" + } + ], + "uuid": "f2a0c4c2-3986-ae74-b99b-c1ee8fd906f1", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "12.43167", + "y": "-15.67862", + "z": "1.35033" + } + ], + "uuid": "fd2168c4-91e8-11ad-2c76-8501503eb26f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "515d4e6f-fc75-f54b-9a4f-bd3dd59f5b1f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "12.431669935921182", + "y": "-15.678617244982796", + "z": "1.3503260156117722" + } + ], + "uuid": "b738e7be-692c-16d6-8a9e-54fc3c82f4b0", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.31389", + "y": "0.03358", + "z": "-0.94886" + } + ], + "uuid": "b4178bd9-dab7-992d-ad55-83c87be0a137", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.3138907440624811", + "y": "0.03358330416529601", + "z": "-0.9488649864302315" + } + ], + "uuid": "b642639b-474f-0c59-eadf-97a53bd187a6", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f2da94f4-4727-92cb-4f8e-19aca478b65d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "7.47235", + "y": "7.97856", + "z": "10.73326" + } + ], + "uuid": "2c826d33-9e68-ec16-04ac-4b9128559f00", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1ec224d4-9d95-4ef0-b034-a4f85fd93040", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.472345186297844", + "y": "7.97856022096812", + "z": "10.733255307695345" + } + ], + "uuid": "741cf3b2-abd5-40dd-367d-62dbfde556cc", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "-32.5" + } + ], + "uuid": "0415fdd1-a4cd-0eb7-5b2e-2cf659f43128", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "798258b9-6d07-1e32-9f3d-dfd8cbb93af6", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "-32.5" + } + ], + "uuid": "c0f0fc26-a1de-35b4-1953-962b64de9d00", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "92.5", + "y": "0", + "z": "0" + } + ], + "uuid": "b9ee0bec-97c0-451b-1b84-cd405d1cbdc2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a87073ce-b4b6-0ade-befb-33a5bfe5566f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "92.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a795d5ff-ce80-a69b-359b-aa8961b49ecd", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "9808ab8a-3ecd-5eee-ed86-85cc825caaff", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "516719d6-ea5a-126b-cb35-10664c7ab1a1", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "89665146-821c-a86c-9047-a830c1bbf4d1", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.36155", + "z": "-3.14154" + } + ], + "uuid": "44837f5d-cc47-e12a-3205-785417c2164f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.3615469981854483", + "z": "-3.1415416228506494" + } + ], + "uuid": "f90d1624-f6a1-16c8-1414-00ab4f2efb90", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9f9ce6ff-ee02-fdc1-730c-fc978b007c4d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "8bbaca34-5738-6b41-01e7-a022307e05fc", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "525c0f8d-2064-9bcc-534e-8c2ddb6fd04c", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e23403e3-48b3-4fd6-8fa4-b2a4a713af69", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "14e581f0-40d0-5215-b817-23d26ac5543a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "1ae2ed68-907d-71ee-204b-726dea241d1f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ecd8a56a-25cb-b0a3-a5de-8ce54a808fcc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"03_punchspin\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "8542f7c0-362a-4199-739c-0b26c5412540", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "d90f3239-a653-2775-287e-261f4f66178e", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "ec6b96e4-250e-4e65-a285-41f8c39f9f5c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "5ba22f9d-de10-1e01-2950-180be69d8959", + "name": "taunt_04", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "3.23124", + "y": "37.12192", + "z": "16.73357" + } + ], + "uuid": "a2c1529c-1609-6d0b-e518-dd1aca854649", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "3.231235661361552", + "y": "37.121918440150694", + "z": "16.73357452867458" + } + ], + "uuid": "de36e352-5ad8-4db2-2b1a-105764f40c4e", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c133651f-8345-d685-57f8-aaaa0987c34c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1.69191", + "y": "-1.54459", + "z": "0.6492" + } + ], + "uuid": "56138f60-316b-cf7b-28a9-45005d754488", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1.6919082809336152", + "y": "-1.5445857551215307", + "z": "0.6491950545813154" + } + ], + "uuid": "9eecb923-917a-8141-8e60-664cf9814e95", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fe98ef04-6f8e-a00b-d8b5-0b2e7ec01745", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "60.76984", + "y": "51.55735", + "z": "142.18089" + } + ], + "uuid": "b68ce4ef-d785-55f2-5c03-806cda6c492b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "60.76983509096908", + "y": "51.557345763810645", + "z": "142.180885464742" + } + ], + "uuid": "aafdb5ac-b9d8-50f8-b2c9-2d48133852de", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "deca67fb-ee2f-fd69-d9ca-c921bed1321a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-5", + "y": "-0.58", + "z": "-4.06" + } + ], + "uuid": "c73b4435-9c46-0d51-d758-a771ed4b2919", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-5", + "y": "-0.58", + "z": "-4.06" + } + ], + "uuid": "4c1c5788-e863-6a6a-5db3-b2b2cc566eb7", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a58509fb-e734-5f57-79d7-86d943705a3f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-46.52796", + "y": "28.46857", + "z": "59.9369" + } + ], + "uuid": "0ff13a9f-67d5-04d5-05d2-15d84e69f182", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-46.52795567823114", + "y": "28.46856533631535", + "z": "59.93690486825244" + } + ], + "uuid": "7819481d-0d1c-2fc3-1f78-0180b35292c8", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6295cdf3-bb3e-1926-8e2b-b127e8c59992", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.72464", + "y": "-1.51439", + "z": "-1.19707" + } + ], + "uuid": "2896f0ee-4c35-62e6-4a71-6048eb23d74f", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.7246399285040697", + "y": "-1.5143944338956068", + "z": "-1.1970666938743035" + } + ], + "uuid": "c34cbebb-d071-e514-acfb-7ef793b76aa0", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d6b8fc6f-045d-e581-2064-d05ab54135cc", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "35", + "y": "0", + "z": "45" + } + ], + "uuid": "c24f6de4-772e-1a80-6dc3-8275a64eda67", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "35", + "y": "0", + "z": "45" + } + ], + "uuid": "2c8292f2-a041-a2aa-b123-c81e4fbed08f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b94ac9a5-0d86-1174-3444-b942bc83fe41", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.72", + "y": "1.06", + "z": "0.7" + } + ], + "uuid": "a08d42dc-ec3b-6f10-0fc0-337a8252bc61", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e5de860b-9220-fb34-effa-1298d15e8bda", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.72", + "y": "1.06", + "z": "0.7000000000000002" + } + ], + "uuid": "0f2274de-769c-deda-0da5-47b645bc4a34", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-30.44729231315887", + "y": "23.035681366224708", + "z": "-56.34819461704137" + } + ], + "uuid": "ef27c70f-513b-734d-c27c-4c7b2bc292a7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-30.44729231315887", + "y": "23.035681366224708", + "z": "-56.34819461704137" + } + ], + "uuid": "17d7f2e2-e8d9-8f93-1ce0-a5c514bce96e", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f79268a4-22ee-ce50-833a-bda9bda6666e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "6.444904403094814", + "y": "-0.6427876096865379", + "z": "4.891666962570148" + } + ], + "uuid": "9ec0244c-526d-611c-6c94-3f3d4ff90cac", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "6.444904403094814", + "y": "-0.6427876096865379", + "z": "4.891666962570148" + } + ], + "uuid": "ee1ef654-bd81-3fd0-3349-6788ed801ca0", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "edb2d3a8-350d-cc9f-08b0-8ec59b1a779a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "e255cf1f-3f41-d09f-f2cd-af98b5bc7af3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "06314a80-3e74-bd8a-1403-aed94c3cdb38", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ab4390ae-f39a-8003-d14f-9e48899f8306", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.59117", + "z": "-0.12326" + } + ], + "uuid": "90015d83-6841-17ad-1e92-c1058436ba01", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.5911679471944826", + "z": "-0.12325683343243876" + } + ], + "uuid": "c10dd60b-4c99-076b-3033-67c69aabfcf1", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "479f7b70-ff2d-22f0-d681-69f4c6331667", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "82.49999999999636", + "y": "70.00000000000091", + "z": "89.99999999999727" + } + ], + "uuid": "0f71a84a-f363-3a3e-0ae1-dc9855f716f0", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "82.49999999999636", + "y": "70.00000000000091", + "z": "89.99999999999727" + } + ], + "uuid": "f06f1f9e-a3f0-fdbe-4af4-9bd527803014", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5197e81c-fe06-fa45-a361-e251d231fd23", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "-2", + "z": "-1" + } + ], + "uuid": "6deffdfa-f0b8-d87e-ec2e-869fac5c7aa9", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "-2", + "z": "-1" + } + ], + "uuid": "d2fd453e-10fe-b5e5-fa15-3829d26dc731", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "35bd3225-b9df-713c-d71c-df45eda775cc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "56394390-ade4-9a53-7ebc-554342e4d709", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "7effff3a-20b3-e901-c2b3-cd04b70630de", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "923dea88-0975-758a-9d39-a173a907f026", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-18.44937", + "y": "65.06363", + "z": "2.5801" + } + ], + "uuid": "791f4493-fcc1-b6bb-8058-7a2efc14418a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-18.449366771983478", + "y": "65.06362839848543", + "z": "2.5800951631508724" + } + ], + "uuid": "d723b23e-f598-8e8f-b1ef-4ac0ec23c73b", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f2e889c0-0e6f-b860-0ca0-b42d0ecc8915", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.57585", + "y": "0.03496", + "z": "-1.63876" + } + ], + "uuid": "b6eee6ec-bac9-3064-6079-0b853c6ed7b9", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.5758493092037753", + "y": "0.03496397882806679", + "z": "-1.6387629073566519" + } + ], + "uuid": "8b236d2b-353f-b514-2012-1af41058e1fe", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "58c4bae3-0ad9-f577-ef80-b8b42267f698", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "27a02ce9-e9bd-e61f-30cb-fb74d4a089e0", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "21a0eb2f-6319-a421-d6ee-c0fef0281335", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "49f8fd6f-602e-7241-648f-09b5c004224b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-22.5", + "y": "67.5", + "z": "0" + } + ], + "uuid": "d9d54721-ca57-1242-cfcd-3cc209159976", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-22.5", + "y": "67.5", + "z": "0" + } + ], + "uuid": "34834fe1-3fd6-917c-1bc5-d2ff6fb4aa05", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6319bb16-e444-cc84-c21f-2e276c1359ed", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1.3912385709912793", + "y": "-1", + "z": "0.20664665970876483" + } + ], + "uuid": "39b83e2b-d42e-5f63-01cb-94a07c2dfc6a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1.3912385709912793", + "y": "-1", + "z": "0.20664665970876483" + } + ], + "uuid": "19bd9868-6e36-f462-cf53-5533c7be30a7", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d7fd4103-3c0e-ba5d-cba5-eca505eec534", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "744b2432-9978-f890-ac4a-21d061b72776", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "5d05fcad-aba5-acf1-5847-7056cee104a9", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c1bb2bf-1d21-cf8d-65e5-ebc8b27b8546", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b724b5fc-7b7f-5926-9084-9a689e7a77b1", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ecd8a56a-25cb-b0a3-a5de-8ce54a808fcc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"04_coin\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "8542f7c0-362a-4199-739c-0b26c5412540", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "9d02dae3-a84d-5b59-240a-f7a294a64e1b", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "e4d54c48-e6f2-d745-ae14-2dd78281b580", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0.5", + "y": "0", + "z": "0" + } + ], + "uuid": "ef900b7a-e102-5de4-4251-e82a6b356e7e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.4999999999999999", + "y": "0", + "z": "0" + } + ], + "uuid": "1a6a598e-7c30-b9d6-3d92-d2e6bd5555c6", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0845fc7b-ef2b-ded6-ff8b-4e5e23c908e3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "3ce30010-7854-b968-24ab-4052b2f705ee", + "name": "taunt_05", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c133651f-8345-d685-57f8-aaaa0987c34c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "5f071e87-ae82-d5a0-b388-9232970c8b23", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7fb52abd-41a1-98aa-5fdd-518468949a46", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fe98ef04-6f8e-a00b-d8b5-0b2e7ec01745", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-4.3663", + "z": "-3.04504" + } + ], + "uuid": "4f257409-ab9c-f92a-ced2-e9e84a5c4565", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-4.366296471811529", + "z": "-3.0450415319180357" + } + ], + "uuid": "676851fb-78c8-5220-231c-30156ffe85d6", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "deca67fb-ee2f-fd69-d9ca-c921bed1321a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "de7b8cee-924d-bdf7-2c0b-a31c85f05f4e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "bce1e587-18a8-35e0-caf4-b7f367239837", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a58509fb-e734-5f57-79d7-86d943705a3f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.60876", + "z": "-0.79335" + } + ], + "uuid": "52973355-f663-d124-d377-c2461a9c967f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.6087614290087205", + "z": "-0.7933533402912352" + } + ], + "uuid": "ed3bdd1b-fb44-c0b4-6667-6a23e538b54f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6295cdf3-bb3e-1926-8e2b-b127e8c59992", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "42.5" + } + ], + "uuid": "d7a8e43c-6ea7-8f82-b1ef-b7486824d74b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "42.5" + } + ], + "uuid": "8c6e6171-790f-d248-1f2c-0c3f02239326", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-6.87500000000011", + "y": "0", + "z": "46.48437" + } + ], + "uuid": "b58bc7c5-4439-fef5-6e34-87a1279b9802", + "time": 0.33333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-6.84909", + "y": "-0.59777", + "z": "41.52015" + } + ], + "uuid": "2f43219e-768a-8541-3dc6-825cb6700021", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "af3805ba-39e5-2ba7-298b-a3544743527d", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d6b8fc6f-045d-e581-2064-d05ab54135cc", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b94ac9a5-0d86-1174-3444-b942bc83fe41", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-37.5", + "z": "0" + } + ], + "uuid": "1428324a-a377-7f6f-c2db-0738440e3c68", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-37.5", + "z": "0" + } + ], + "uuid": "0370c24a-4b71-7bba-2ee9-9fe776de1e08", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f4e4263b-7ab7-e98b-bd69-dd7769c7ca3b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e5de860b-9220-fb34-effa-1298d15e8bda", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f79268a4-22ee-ce50-833a-bda9bda6666e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "dc37c357-03ed-2f68-b8bb-a6872e32f535", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7f42ac6f-96c8-33b1-1049-f0adbec9e0a2", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "edb2d3a8-350d-cc9f-08b0-8ec59b1a779a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.60876", + "z": "-0.79335" + } + ], + "uuid": "760cdd7b-fc66-70b1-06e0-786aa1f13e2c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.6087614290087205", + "z": "-0.7933533402912352" + } + ], + "uuid": "4c0073f7-be28-7c90-d0a5-d046ea1ff959", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ab4390ae-f39a-8003-d14f-9e48899f8306", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "-42.5" + } + ], + "uuid": "e6105ba6-9c48-ff35-eea3-124143071341", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "-42.5" + } + ], + "uuid": "e698f343-d4c3-3b0b-1e06-300702c7e2a8", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-6.875", + "y": "0", + "z": "-46.48437" + } + ], + "uuid": "fc22d178-c198-de8b-615c-8ef6099d0cdf", + "time": 0.33333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-6.84909", + "y": "0.59777", + "z": "-41.52015" + } + ], + "uuid": "92ddd376-ef6f-9dc6-cc43-d6000d3bddd0", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2980157e-92ab-186c-483b-50bd6aab8d37", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "479f7b70-ff2d-22f0-d681-69f4c6331667", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5197e81c-fe06-fa45-a361-e251d231fd23", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "-57.5", + "z": "0" + } + ], + "uuid": "8790e957-425f-115e-d7ef-cbc728f1f85d", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "-57.5", + "z": "0" + } + ], + "uuid": "fe1fbcc8-ee4a-7481-3447-31e1ce6d5565", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "35bd3225-b9df-713c-d71c-df45eda775cc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.83058", + "y": "-0.17365", + "z": "0.52914" + } + ], + "uuid": "69d797ef-ec3e-2624-309d-97c0e9b84c35", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.8305784346607055", + "y": "-0.17364817766693036", + "z": "0.529136819990375" + } + ], + "uuid": "1ce4870a-209e-8d07-4f72-ee2aa9d1b92a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "923dea88-0975-758a-9d39-a173a907f026", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "6769a3c8-b04c-efc7-620e-1d535ed885e7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "df0327fe-c184-bb8c-c968-7dc87a9ee6fe", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f2e889c0-0e6f-b860-0ca0-b42d0ecc8915", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "57.5", + "z": "0" + } + ], + "uuid": "3a47c590-d939-6272-d2e7-374350f4eea8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "57.5", + "z": "0" + } + ], + "uuid": "23b3f735-2f00-cab4-af89-1dad8297e2f0", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "58c4bae3-0ad9-f577-ef80-b8b42267f698", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.83058", + "y": "-0.17365", + "z": "0.52914" + } + ], + "uuid": "07e4c97b-2b18-025b-ec3a-76b2e9cf5d5c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.8305784346607055", + "y": "-0.17364817766693036", + "z": "0.529136819990375" + } + ], + "uuid": "5aeced99-a547-294d-0060-28cde6e8c4a5", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "49f8fd6f-602e-7241-648f-09b5c004224b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "0ae00ec7-a12d-f0b6-1ccb-679707f36a9b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "effe1b80-4e4b-6683-805c-92b233f4d056", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6319bb16-e444-cc84-c21f-2e276c1359ed", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "574dbf2d-df7f-5d2e-dfa9-dad553f8a7b8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "f144c8cc-4a5f-862d-a6a5-33dffc919241", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d7fd4103-3c0e-ba5d-cba5-eca505eec534", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.5", + "z": "-2.59808" + } + ], + "uuid": "a9be3091-5ffb-41a6-ea0f-95be3d283a92", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.4999999999999998", + "z": "-2.598076211353316" + } + ], + "uuid": "5878b327-b76c-0c59-eb83-05818df3a904", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c1bb2bf-1d21-cf8d-65e5-ebc8b27b8546", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-45", + "y": "0", + "z": "0" + } + ], + "uuid": "8efd112f-ce35-7ddc-30ca-42654dcc90c5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-45", + "y": "0", + "z": "0" + } + ], + "uuid": "0d3ebb1b-019b-528c-6c08-5fed17984af7", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0.3" + } + ], + "uuid": "e8e271d8-4958-a30c-e3d3-1a5e4f4443eb", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0.30000000000000027" + } + ], + "uuid": "ab71160c-88a6-80ef-34d5-924df7127cf7", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a03b7dc1-e5c3-2bad-dca2-29f1e402331d", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "1", + "z": "1.2000000000000002" + } + ], + "uuid": "c2de6f75-3b71-e875-471f-b1e413c5b668", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "1", + "z": "1.2000000000000002" + } + ], + "uuid": "7e490f24-3192-adc9-784a-3f8c199eb0d0", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b2526763-01b6-427b-1b92-de1189fd76f9", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ecd8a56a-25cb-b0a3-a5de-8ce54a808fcc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "7fcf9afc-3bfe-7c49-7dde-bf627c34a8af", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "6efd1b6d-6882-354e-94dc-3a6ac6af4201", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.35626", + "y": "-0.8893", + "z": "-2.02045" + } + ], + "uuid": "c845788f-9ab6-557c-991b-195f9f31be02", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.3562600156573883", + "y": "-0.8893012765514173", + "z": "-2.0204509498544674" + } + ], + "uuid": "356205df-a1d6-a493-ce61-7e2089d80dae", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_fear\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"05_grab\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "046d7559-ed81-9558-321e-e5f318664af2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "bfba185f-3a58-0370-fab0-10dfaa9d6517", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "29ad1997-3485-4883-3685-7c0b86dcd2fd", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "56ce3dec-f6b0-7756-b95b-40fd1ba2c9c8", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0845fc7b-ef2b-ded6-ff8b-4e5e23c908e3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "e6d43835-a542-625c-c4c5-2b4e99902c1e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "ad50111f-3e72-cd94-32a7-141b63681667", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.35626", + "y": "-0.8893", + "z": "-2.02045" + } + ], + "uuid": "e19d6566-99c0-9936-2435-6b1109be4e93", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.3562600156573883", + "y": "-0.8893012765514173", + "z": "-2.0204509498544674" + } + ], + "uuid": "13e5311f-a4a6-3b6d-77d8-b7ba1b4209c6", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "ad6f2d93-7592-0c6c-0b0b-951c2c72ba92", + "name": "taunt_06", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ec18fbf9-aaf5-508c-a8dd-69f013b6bd05", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-45" + } + ], + "uuid": "934e67f3-a643-8afb-bec1-f3a4246fee91", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-45" + } + ], + "uuid": "3071dc66-b597-4a24-7d16-5b2936f8e531", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1b87a533-b4d0-eebc-1efc-9fe1057af7ea", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.9063077870366498", + "y": "-3.251045386486889", + "z": "0" + } + ], + "uuid": "61a55f07-8ef6-7434-a342-3a0bd80b4b38", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.9063077870366498", + "y": "-3.251045386486889", + "z": "0" + } + ], + "uuid": "f3d32844-978c-b2c8-1b20-653206bd02d8", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "97c80102-b79e-90ab-d23a-05c825da05db", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "92.42075240220265", + "y": "78.2545984554713", + "z": "-26.70205794591584" + } + ], + "uuid": "d6ecf6dc-0fe1-82dc-44ed-c323d0009943", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "92.42075240220265", + "y": "78.2545984554713", + "z": "-26.70205794591584" + } + ], + "uuid": "3f345725-f670-1fc5-fda5-b5d0d8e57a1c", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73c0d2bf-0eee-1df6-a16d-276dca8cd1fc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.55039750273341", + "y": "-1.7479518639240812", + "z": "-3.6698382142891255" + } + ], + "uuid": "285dd041-419b-f45b-ec22-2297a40882db", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.55039750273341", + "y": "-1.7479518639240812", + "z": "-3.6698382142891255" + } + ], + "uuid": "788145de-50b7-0677-a85f-d79040dd0661", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2897905c-001c-4aee-2939-93bec37e6e29", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "52b1d1f7-fcac-4bd2-50fa-999a7486e407", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "dcc82062-af29-3a53-126a-b1cf83676d3d", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "33db609d-34fa-0df0-49b2-a1a36b20dff6", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "745e072f-4fcf-e3af-0b3d-24ffbe2dc4b0", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c4a5e2e5-106b-c8d9-6df4-24093fd8a942", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2ee0730f-3e9c-c0e0-a792-e2e2fea0d72e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-137.5", + "z": "0" + } + ], + "uuid": "ce6f711d-3f25-83ba-e582-1f356a87bdb0", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-137.5", + "z": "0" + } + ], + "uuid": "aa4f6f8a-b9df-a8a1-8e61-0eddf21175fb", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6259b0a6-1869-4126-c25f-eb5b2e482bc2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6d47908a-0659-c4c7-2b9d-834c31628845", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "87d5c995-1423-839b-7793-aa8c6a74db90", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b8297c91-6f04-cd07-2d95-dd84a551e19f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-5.9999", + "y": "26.74612", + "z": "-36.22626" + } + ], + "uuid": "95098cac-7854-3965-e1d2-e945d039cf6c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-5.999901378061622", + "y": "26.746116009672278", + "z": "-36.22626192240341" + } + ], + "uuid": "669440ab-2748-336c-080c-3fab847d4860", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c92e0cd-037b-73bf-8d00-ed37303c8a10", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.8755996952517124", + "y": "-4.146263187639438", + "z": "3.8913747875785405" + } + ], + "uuid": "c0444313-2aaf-4077-97c2-dd68fe6f2367", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.8755996952517124", + "y": "-4.146263187639438", + "z": "3.8913747875785405" + } + ], + "uuid": "f17bb6bc-274a-d2e4-fe11-6e270ce1800a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c1385604-8011-b280-e2ed-c61fd473c5ee", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-47.703723333499056", + "y": "25.230977910745423", + "z": "21.197478164293898" + } + ], + "uuid": "7f688028-ac25-456e-c5de-38c1ff42d0f4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-47.703723333499056", + "y": "25.230977910745423", + "z": "21.197478164293898" + } + ], + "uuid": "0cb4b9aa-238a-b25c-4003-cf255c9d0082", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7fe1966-347d-b492-e086-d70e25322102", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1.074599216693647", + "y": "-1.0268483635335866", + "z": "-1.338214841417399" + } + ], + "uuid": "e2a0a7be-5aeb-fc73-7aa1-cc6f392b71ab", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1.074599216693647", + "y": "-1.0268483635335866", + "z": "-1.338214841417399" + } + ], + "uuid": "3d53d454-ee70-8bb1-21ca-cb46340b796a", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8382de98-2b7e-ec42-461a-6913ade62eba", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-31.329834089688575", + "y": "87.25982814300642", + "z": "64.88382775687023" + } + ], + "uuid": "0c8a311d-a782-0c53-28e3-987af47ae8a5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-31.329834089688575", + "y": "87.25982814300642", + "z": "64.88382775687023" + } + ], + "uuid": "b193adba-7533-6394-c91c-e8e8b24f6164", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "33462968-2cb9-a24a-abdc-afa71f09228c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ea587e0b-af4a-2ff8-da47-18ef26a68ba4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0999aac7-7c65-8b9b-2819-12714dc7f28f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b3d4cd72-b84f-96f5-12b2-405485abdb17", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "47.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a5e48a18-7285-4f69-e02c-a87b5eb0d6cd", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "47.5", + "y": "0", + "z": "0" + } + ], + "uuid": "885c1591-14bc-53f5-1a98-57f4e583465a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6064caf3-14e2-bb0e-868f-acdb70de1955", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25.81373192803585", + "y": "65.57867803922", + "z": "-37.05786528372573" + } + ], + "uuid": "10c2525a-63dd-3bde-8770-71da24029ce2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25.81373192803585", + "y": "65.57867803922", + "z": "-37.05786528372573" + } + ], + "uuid": "70a357e8-3f58-d1ad-105f-deee2ee80564", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e4fd6d55-9de3-cd4b-29a1-e696c5ccffe4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9199ff8f-2139-cf28-06c3-86179c71a5f5", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fa6486dd-2f9d-bd6d-9e5b-308460165ceb", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ecaa4225-8bd9-8f1e-4218-2bbcf27d9729", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "72.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a7fdc75e-a85e-ac5d-016a-3ae9f111b37b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "72.5", + "y": "0", + "z": "0" + } + ], + "uuid": "20fc982a-c594-eddf-4c94-6a1a258122ed", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c81f1fd-6144-cded-f0b3-cdd141721b4e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "32.5", + "y": "55", + "z": "0" + } + ], + "uuid": "8e71da76-ecd8-faeb-4211-d10849af4cc8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "32.5", + "y": "55", + "z": "0" + } + ], + "uuid": "aaf58252-2bfd-6060-cdef-5e50f4b275b6", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a641ffb4-91ea-9394-66cd-84a782d7786b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.5014715088009969", + "y": "-2.7613821083194194", + "z": "-0.3511341306598551" + } + ], + "uuid": "feb897aa-9050-9ae9-0230-c6706d39950a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.5014715088009969", + "y": "-2.7613821083194194", + "z": "-0.3511341306598551" + } + ], + "uuid": "c3e7d757-29a6-b577-bf23-df35c42e751f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f8c747a8-f43c-6194-bfef-4ed613b97380", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "0.9", + "z": "1" + } + ], + "uuid": "42deadbd-2da0-b871-7152-901bff522293", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "0.9", + "z": "1" + } + ], + "uuid": "e0849e04-d87f-9556-ae5a-1ed77fd5d760", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4fc65f28-83bc-ded9-e796-ddcb4723e757", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-72.5", + "y": "0", + "z": "0" + } + ], + "uuid": "e4b5a728-c996-5475-93b0-987c04b929c7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-72.5", + "y": "0", + "z": "0" + } + ], + "uuid": "d523aac4-728c-a315-d3ab-f4aa36471364", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a0b6f7a9-1a1e-6068-6dee-277845b42554", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "39a5aa9d-09ca-411b-95f8-6f8fde35d2be", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "a029eeab-d9fc-a24f-82bc-97313e5482d0", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1.2000000000000002" + } + ], + "uuid": "6c058406-a82e-d483-ce1d-3f824d56e97a", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1.2000000000000002" + } + ], + "uuid": "bb7c2a12-776f-38c1-5777-52befa0a443b", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9835a4a0-d116-c2e3-0bd7-0ec2f991971b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "0" + } + ], + "uuid": "a92a3296-dc0d-0c61-da9e-2b2fdbc7769a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "0" + } + ], + "uuid": "2f825337-fae4-ed39-307e-d9371eb3f37f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "987befe9-00b9-a7cc-e987-b01852b33de9", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.15737869562426265", + "y": "0.42261826174069944", + "z": "-0.89253893528903" + } + ], + "uuid": "0a41c75f-1a5d-3e47-0e7e-ced5dc438c8d", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.15737869562426265", + "y": "0.42261826174069944", + "z": "-0.89253893528903" + } + ], + "uuid": "ef41f59f-ceb9-f20d-9f75-b914efb83c34", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"06_bookspin\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "d226ac99-9c40-96a3-cfe8-78327feef74c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "57a8024a-6e58-35fb-b976-e34847e65636", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "47febe45-2e8f-c430-5ffd-efc3665ace13", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66b88688-8e4d-7b13-0ca3-df91d690716a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c6b32aa4-4ea7-5431-9be0-816bcebd4ef1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dfc372ff-cbdf-0292-27a6-8214d12e2886", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1bd1bbe3-6c84-2cdb-2758-b18107bde80b", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e1531181-c477-0636-e9e1-212ac3bdf790", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "56039745-30d8-12b1-1428-558a4d02f7cd", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "30131b5a-2d21-75ad-a3af-067474cf3599", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "38fd6f3a-7050-2ad3-d2e2-e8c4bd30712e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "87391f1e-29fa-56d5-3a23-3a3c574a0cbb", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "ec2caf93-9e6a-15ff-fffb-987386daeaef", + "name": "taunt_07", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ec18fbf9-aaf5-508c-a8dd-69f013b6bd05", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "24.73157", + "y": "29.24226", + "z": "-12.56901" + } + ], + "uuid": "66624447-9ee2-97f0-a6b7-bf36addc1ef8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "24.73156993209568", + "y": "29.242257042411893", + "z": "-12.569010189898108" + } + ], + "uuid": "a2381439-ab87-2d4a-2384-2afb5b962c30", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1b87a533-b4d0-eebc-1efc-9fe1057af7ea", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.42129", + "y": "-2.58786", + "z": "-2.31851" + } + ], + "uuid": "acf299c4-fccb-d2cf-f8b8-8071d4265deb", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.42128720261281466", + "y": "-2.5878600003099947", + "z": "-2.3185119606571414" + } + ], + "uuid": "ce94c25f-873b-8728-7a1c-2e66914ec52d", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "97c80102-b79e-90ab-d23a-05c825da05db", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-43.5811", + "y": "-2.02261", + "z": "26.26467" + } + ], + "uuid": "adaaa93c-93a0-5e8a-9dec-3e2a3cbd07fd", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-43.58110022812889", + "y": "-2.0226135468883513", + "z": "26.264667945072688" + } + ], + "uuid": "c71d82ca-4e30-bca4-fdf0-86c598d5e083", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73c0d2bf-0eee-1df6-a16d-276dca8cd1fc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1.19494", + "y": "-0.21814", + "z": "-0.72425" + } + ], + "uuid": "020d9f09-4604-b177-988e-1cbc7a14ce34", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1.194941698836523", + "y": "-0.21813625824086447", + "z": "-0.7242450615795452" + } + ], + "uuid": "fb824f61-6127-fb5c-b985-ea97b1221a73", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2897905c-001c-4aee-2939-93bec37e6e29", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-8.03415", + "y": "-2.33179", + "z": "76.22888" + } + ], + "uuid": "3b3f2a71-a58b-8ab6-76ca-606b6fe30248", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-8.034150465810548", + "y": "-2.331788034927507", + "z": "76.22887637178242" + } + ], + "uuid": "502b87d9-cce8-ade3-641e-e618e5ebbaca", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "33db609d-34fa-0df0-49b2-a1a36b20dff6", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84d0ce30-a7f2-9f6e-aa52-5d7d37a6beae", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2ee0730f-3e9c-c0e0-a792-e2e2fea0d72e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "-50" + } + ], + "uuid": "4f70cb47-8d34-e8e5-bd26-51d41927139e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "-50" + } + ], + "uuid": "71c6e597-3585-c9c2-3d72-59eb93a47707", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6259b0a6-1869-4126-c25f-eb5b2e482bc2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "fb8fabec-b830-3f22-11af-eabcaf7435b6", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "191877b6-a113-3b6c-023a-d90b14d9ec1c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b8297c91-6f04-cd07-2d95-dd84a551e19f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.18944", + "y": "20.25437", + "z": "-14.97401" + } + ], + "uuid": "fc0bef5b-122e-b7ee-01c1-bb3eba258292", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.189442401430824", + "y": "20.254370018410555", + "z": "-14.974010652715606" + } + ], + "uuid": "bab8e9d5-8bac-4a34-40ec-e2928930a58f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c92e0cd-037b-73bf-8d00-ed37303c8a10", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dc3fc571-072d-0c37-0e2a-5bdc568b7440", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c1385604-8011-b280-e2ed-c61fd473c5ee", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-82.5" + } + ], + "uuid": "d4d9ffcb-e762-1f55-e41d-030b46481636", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-82.5" + } + ], + "uuid": "6706caa3-f0e5-5a25-fd78-12b9a80cf2ca", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7fe1966-347d-b492-e086-d70e25322102", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fac44d1a-102e-f1a8-dd13-2429074625d5", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8382de98-2b7e-ec42-461a-6913ade62eba", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-107.79024", + "y": "-31.96184", + "z": "23.81841" + } + ], + "uuid": "13c853a3-05be-4435-9c24-3c789eacc86f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-107.79023814347875", + "y": "-31.961838472937416", + "z": "23.818407330724767" + } + ], + "uuid": "60fcfca3-eab7-4129-83cd-d05c32d9010c", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "33462968-2cb9-a24a-abdc-afa71f09228c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "89d7b31e-f52a-0ab4-998f-4ad5ad377c60", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b3d4cd72-b84f-96f5-12b2-405485abdb17", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "120", + "y": "0", + "z": "0" + } + ], + "uuid": "c4ac6e25-3cdc-b89f-442f-5d63e8886048", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "120", + "y": "0", + "z": "0" + } + ], + "uuid": "decf2f6b-a785-1d36-f314-dbc2288abd21", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c8e78545-2aae-288a-6b0a-dcc0d23aa9c1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0e48ef73-7a10-ad35-6cb7-e6f460ca1dd7", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6064caf3-14e2-bb0e-868f-acdb70de1955", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-7.5" + } + ], + "uuid": "01409e87-5135-75a1-7c31-f5062dbf4bd6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-7.5" + } + ], + "uuid": "ef30f010-bc86-b322-ea34-ecb5ed476f2b", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e4fd6d55-9de3-cd4b-29a1-e696c5ccffe4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.95372", + "y": "-0.30071", + "z": "0" + } + ], + "uuid": "df0017ec-5ca0-432c-7dc5-e2477480b5ad", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.9537169507482268", + "y": "-0.30070579950427306", + "z": "0" + } + ], + "uuid": "ba5222cc-7a6f-25bf-a805-2c971d35acf6", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ecaa4225-8bd9-8f1e-4218-2bbcf27d9729", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ef495fc7-2d4b-966d-14be-89f31c257833", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "94b84d4e-24eb-1a23-4525-6e22a9d57d09", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c81f1fd-6144-cded-f0b3-cdd141721b4e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "40", + "y": "0", + "z": "0" + } + ], + "uuid": "1c35e06b-cc9f-3b18-217b-65b1cc650983", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "40", + "y": "0", + "z": "0" + } + ], + "uuid": "992a85ba-d6ad-761f-eb9f-f265ce0836b1", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a641ffb4-91ea-9394-66cd-84a782d7786b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.16232", + "z": "-2.94092" + } + ], + "uuid": "7a8c1108-c41b-b562-da98-394f52ef68f2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.16231838594064", + "z": "-2.940920939043474" + } + ], + "uuid": "a8295186-431f-597b-ffd0-4545be7cb7aa", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f8c747a8-f43c-6194-bfef-4ed613b97380", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "6a937d65-11c9-7e7e-01bb-e91cf3959cad", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4fc65f28-83bc-ded9-e796-ddcb4723e757", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-105", + "y": "0", + "z": "0" + } + ], + "uuid": "a11a9740-cd3d-8854-5219-0037786591dd", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-105", + "y": "0", + "z": "0" + } + ], + "uuid": "54759e61-d028-5362-cc04-7f296c098033", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.41662", + "z": "-1.24709" + } + ], + "uuid": "0a98a2a7-e09a-6974-d015-d50e257cd260", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.4166193600193162", + "z": "-1.247090270839863" + } + ], + "uuid": "92f915d2-3738-2fa6-472a-732b51b111e3", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "a029eeab-d9fc-a24f-82bc-97313e5482d0", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f55fd3b4-8f4f-00f6-e833-47f9311a3c79", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "9d0fae41-b1ac-d295-1b97-70a84f7a1f98", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9835a4a0-d116-c2e3-0bd7-0ec2f991971b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bc7bb7d5-b346-93b0-9adf-6904f097c9b5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "987befe9-00b9-a7cc-e987-b01852b33de9", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "da925ed9-821d-183e-6e0c-41eb27c29302", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_fear\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"07_magnifyclose\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "d226ac99-9c40-96a3-cfe8-78327feef74c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "0251ce0a-791f-a850-9933-d096a8bf3909", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "51b50cdb-301c-2183-2dd3-39c835e55bb8", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66b88688-8e4d-7b13-0ca3-df91d690716a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0fe7cbd8-8ac5-aa60-2ca2-e9b7b1499276", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1bd1bbe3-6c84-2cdb-2758-b18107bde80b", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6cb18883-16ee-779f-7006-ea2b9a83e9c2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "30131b5a-2d21-75ad-a3af-067474cf3599", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9a68304a-0e06-1aba-ce12-2469c0560c9d", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "e9f03085-f4ee-b062-948c-d30d7c44ba51", + "name": "taunt_08", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ec18fbf9-aaf5-508c-a8dd-69f013b6bd05", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "82.5", + "y": "0", + "z": "0" + } + ], + "uuid": "5ce694bb-305e-a9c6-ec27-9fd32b12c461", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "82.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7d820818-5936-ef06-2b24-63c68d61fa41", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1b87a533-b4d0-eebc-1efc-9fe1057af7ea", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-5" + } + ], + "uuid": "c6331e3b-d58c-02e7-f60a-8908f9fc61d5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-5" + } + ], + "uuid": "d1df0a9b-ad40-3d31-d8c9-7971bd8c3274", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "97c80102-b79e-90ab-d23a-05c825da05db", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "16.73957752738761", + "y": "-58.52505111081473", + "z": "-104.425400140683" + } + ], + "uuid": "7628d063-3f8f-d3df-f86b-42c985bd54db", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "16.73957752738761", + "y": "-58.52505111081473", + "z": "-104.425400140683" + } + ], + "uuid": "b79b9027-0a60-7e11-9dd8-086853daa947", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73c0d2bf-0eee-1df6-a16d-276dca8cd1fc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-4" + } + ], + "uuid": "1e3bffe6-3c98-6bcd-3f91-8639176864d6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-4" + } + ], + "uuid": "a10ddfa5-d8b7-0501-0d76-4f82a411fe4f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2897905c-001c-4aee-2939-93bec37e6e29", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-22.5", + "z": "0" + } + ], + "uuid": "4fe71507-63a2-7d24-177c-78f41e88d36b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-22.5", + "z": "0" + } + ], + "uuid": "b08ab2ef-1962-605b-c8ce-a48ac77eff88", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "33db609d-34fa-0df0-49b2-a1a36b20dff6", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84d0ce30-a7f2-9f6e-aa52-5d7d37a6beae", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2ee0730f-3e9c-c0e0-a792-e2e2fea0d72e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-30", + "z": "0" + } + ], + "uuid": "6114b1c4-09df-f456-fbb0-9e91d30af755", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-30", + "z": "0" + } + ], + "uuid": "6b8ba97d-d254-8dc6-ffd1-a9fcfaff5422", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6259b0a6-1869-4126-c25f-eb5b2e482bc2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3d47b6fb-347b-b218-4ca8-0097ef279fbd", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b8297c91-6f04-cd07-2d95-dd84a551e19f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "596e952f-c693-0c5d-359a-2406e819b0f4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c810292f-cbd3-a5f8-e407-0734cfa9cb6b", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c92e0cd-037b-73bf-8d00-ed37303c8a10", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-4" + } + ], + "uuid": "d3f447bb-1210-5ee4-c1d7-15e19fff12a7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-4" + } + ], + "uuid": "344883fc-52e7-af09-565d-0b5e901f8188", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c1385604-8011-b280-e2ed-c61fd473c5ee", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-102.5" + } + ], + "uuid": "4d8874ed-316a-d870-d6e3-5f96dd23741c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-102.5" + } + ], + "uuid": "00a8a0e8-5272-247f-5da9-55930828cdad", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7fe1966-347d-b492-e086-d70e25322102", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "-1", + "z": "0" + } + ], + "uuid": "31b79165-fc1f-11db-90cf-16c57a3a6f3f", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "-1", + "z": "0" + } + ], + "uuid": "c9aa1ff1-2395-3f5d-f7bc-940fa5d05eb2", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8382de98-2b7e-ec42-461a-6913ade62eba", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.46207", + "y": "-0.43399", + "z": "-9.99067" + } + ], + "uuid": "8b94f974-0386-b093-2c8b-8afbb141e6e8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.4620664797216705", + "y": "-0.4339868564493372", + "z": "-9.990674059621597" + } + ], + "uuid": "a9504162-d2df-e1f6-d2ad-95cb77ee9ef0", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "33462968-2cb9-a24a-abdc-afa71f09228c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "89d7b31e-f52a-0ab4-998f-4ad5ad377c60", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b3d4cd72-b84f-96f5-12b2-405485abdb17", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "43.3833", + "y": "21.63168", + "z": "-21.30838" + } + ], + "uuid": "79379fc4-010f-1168-3720-619388a32577", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "43.38329582234837", + "y": "21.631684913565095", + "z": "-21.308378976236327" + } + ], + "uuid": "b33d9d28-6371-8124-8cec-07365d31baaf", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8866ea2c-861c-7bce-18c7-a509101d4337", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6064caf3-14e2-bb0e-868f-acdb70de1955", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.89341", + "y": "14.2906", + "z": "18.07779" + } + ], + "uuid": "dfef10e7-a8e6-6f46-e09f-c5287d815783", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.893408651529171", + "y": "14.290604655088828", + "z": "18.077786856120838" + } + ], + "uuid": "f8998019-b2fb-25cc-3f80-20b09d941378", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e4fd6d55-9de3-cd4b-29a1-e696c5ccffe4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "355d3621-36a3-37bf-0c3b-304b421449bc", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ecaa4225-8bd9-8f1e-4218-2bbcf27d9729", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.47178", + "y": "0.65182", + "z": "-14.95744" + } + ], + "uuid": "15291a19-e79b-192d-aa1f-98eef75a1399", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.4717833073355", + "y": "0.6518169913756537", + "z": "-14.957438388617902" + } + ], + "uuid": "e67b8a7f-3110-9bc1-74fa-1fa5a61f908e", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "ff4a4fbb-3b5c-0cc2-f360-536834c0b995", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "1ee2c1b2-9618-e855-4b3c-3cd448558076", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c81f1fd-6144-cded-f0b3-cdd141721b4e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "a09ae656-ea62-863c-d79d-e540ffc7c2cc", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "3595c819-353b-633f-cd60-4ee0ab95ff30", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a641ffb4-91ea-9394-66cd-84a782d7786b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-5" + } + ], + "uuid": "2d146899-9480-0c6f-8a44-42f61d660558", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-5" + } + ], + "uuid": "65b91499-ed91-47e3-faa7-57c2803ae01b", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f8c747a8-f43c-6194-bfef-4ed613b97380", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "6a937d65-11c9-7e7e-01bb-e91cf3959cad", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4fc65f28-83bc-ded9-e796-ddcb4723e757", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "0" + } + ], + "uuid": "1fda9388-dd28-5804-a7f3-bb1629de2217", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "0" + } + ], + "uuid": "40e6179a-55a1-05c0-0b40-bd63b43b1f82", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "993ab6be-41c8-5434-6a79-d9b853b4907c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "a029eeab-d9fc-a24f-82bc-97313e5482d0", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b5cd954c-c6a5-1653-f38d-6c151a37e550", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9835a4a0-d116-c2e3-0bd7-0ec2f991971b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bc7bb7d5-b346-93b0-9adf-6904f097c9b5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "987befe9-00b9-a7cc-e987-b01852b33de9", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "da925ed9-821d-183e-6e0c-41eb27c29302", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"08_menudecision\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "fba26c63-6cf1-46af-eaf4-a86c3d805575", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "9cbc023e-59ad-51c0-4bbf-177727cbe9d0", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "2031ceba-7404-69fc-2c99-882c72549e19", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66b88688-8e4d-7b13-0ca3-df91d690716a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0fe7cbd8-8ac5-aa60-2ca2-e9b7b1499276", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1bd1bbe3-6c84-2cdb-2758-b18107bde80b", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6cb18883-16ee-779f-7006-ea2b9a83e9c2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "30131b5a-2d21-75ad-a3af-067474cf3599", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9a68304a-0e06-1aba-ce12-2469c0560c9d", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "c4396fec-a3d9-5b40-c24c-838e23ab2db4", + "name": "taunt_09", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "45" + } + ], + "uuid": "d4f89ecf-3bcd-bc3e-b769-ce78976fcbff", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "45" + } + ], + "uuid": "b91da01f-a11e-26ef-880f-8b4740bac840", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bab6a6db-87e3-e13b-c3e8-70ec65acc9e3", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "3", + "y": "-1", + "z": "-0.30000000000000004" + } + ], + "uuid": "9fa8e855-2b2b-f097-6be0-d1c0bef46010", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "3", + "y": "-1", + "z": "-0.30000000000000004" + } + ], + "uuid": "e4ef9c27-19a5-bffb-f9f7-43b5dc06be00", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "44fcb25a-921e-d13c-abcf-5f2a9b824c6f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.880447015797927", + "y": "9.961558098090336", + "z": "-5.076733016569506" + } + ], + "uuid": "61f1528d-407d-11da-436e-77a0068604a8", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.880447015797927", + "y": "9.961558098090336", + "z": "-5.076733016569506" + } + ], + "uuid": "be8fc9a3-bfb3-e4ff-bb6c-b9d35d888b9b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0e43ba8f-5f26-b1ab-888b-5a70bb9a85dd", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "c0d0f289-878b-c532-aed8-57f4f7b18792", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "4275f489-5352-f8bd-6c33-92d14a2b9996", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "661fbf1e-89d9-f316-df35-1149b0c8680e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.3000000000000003", + "z": "1" + } + ], + "uuid": "5e44700a-8183-0ec5-3bcc-d4c1c54f356e", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.3000000000000003", + "z": "1" + } + ], + "uuid": "36e3e945-a60b-d37b-11c6-06bebe7a923a", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "2d90ba58-8f07-21fb-a25c-4e4b57a396b9", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "15" + } + ], + "uuid": "ada124d7-0ca4-b740-ee4c-9a894ee9f15b", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "15" + } + ], + "uuid": "f8cec802-1dc2-1455-76e8-b750af0e9c83", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c7c0f613-623b-b621-3ae3-9641a3450bf1", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1.068216004938062", + "y": "-0.910363046914318", + "z": "-0.17364817766692967" + } + ], + "uuid": "196509a0-f0f6-5177-94a9-220c2b83e226", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1.068216004938062", + "y": "-0.910363046914318", + "z": "-0.17364817766692967" + } + ], + "uuid": "5e9c1f19-45dc-d93e-d8da-11dec38cb838", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d450e099-fc2d-f389-8f30-c5bf575db5c5", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "0.7000000000000001", + "z": "1" + } + ], + "uuid": "e7021ad8-1f29-927c-8c13-85e297ce6c8e", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "0.7000000000000001", + "z": "1" + } + ], + "uuid": "5f3f1264-6fe9-2903-b8cd-e4acfd48a97b", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "bdfa0ce0-5bd9-f900-41b2-f6db9563ce8d", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2ee0730f-3e9c-c0e0-a792-e2e2fea0d72e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-30", + "z": "0" + } + ], + "uuid": "6114b1c4-09df-f456-fbb0-9e91d30af755", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-30", + "z": "0" + } + ], + "uuid": "6b8ba97d-d254-8dc6-ffd1-a9fcfaff5422", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6259b0a6-1869-4126-c25f-eb5b2e482bc2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3d47b6fb-347b-b218-4ca8-0097ef279fbd", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "95" + } + ], + "uuid": "527659a4-6204-ad75-9999-2e1718cff02a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "95" + } + ], + "uuid": "a2f30d4f-72d8-c553-a4a0-87989cf7b188", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bdda1c4c-fde8-f67e-dfbf-a36c83599a37", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "4", + "y": "2", + "z": "-1" + } + ], + "uuid": "028871c3-26a7-ecc0-4416-1011343c9513", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "4", + "y": "2", + "z": "-1" + } + ], + "uuid": "52f30450-8f4b-ce07-7be1-49af9ffe4b72", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8b746961-d7fd-2fd9-66f0-46cb202a698e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-15" + } + ], + "uuid": "7cc68821-6f9c-c87b-2759-3755f3481336", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-15" + } + ], + "uuid": "9b72d2fb-9a8a-3fa5-a638-570dc646677f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e2336a75-44a1-77db-8303-a9548d42ed9c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "952f9648-d784-36cf-e5e5-fabb1215e109", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "13417853-e063-e6d0-5cf0-e348dbc068c0", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dcb4678d-2e7e-71b3-adfa-257a4391c969", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-47.5", + "y": "-70", + "z": "0" + } + ], + "uuid": "974b63d4-5316-d383-396b-02bbd9080de0", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-47.5", + "y": "-70", + "z": "0" + } + ], + "uuid": "3e19deb6-985d-0a94-6cca-91fc5fd5d63d", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ed491dd2-0ddc-7224-6d37-4917cc1f9977", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "0", + "z": "0" + } + ], + "uuid": "c3f28917-e1cc-08bb-2dd5-c59a1b4df687", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "0", + "z": "0" + } + ], + "uuid": "a22909c3-0495-812f-4701-c86fe0269008", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "07b8b8df-78f0-ee26-99be-91e024dd2527", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "60", + "y": "0", + "z": "0" + } + ], + "uuid": "a35faeed-2354-d7d8-89e8-d8dd96a52c2d", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "60", + "y": "0", + "z": "0" + } + ], + "uuid": "f9e8dc62-255f-4025-2757-b5dccbc1934f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "82b036ff-97b9-ef9e-e151-296bf40adbf0", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "87235d4d-0908-733e-ebe9-ed636967d323", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f98a83bc-708f-427b-e132-a20f1bb48867", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f3e16a94-7ad0-26a3-2e84-5a4f0febc090", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-32.5", + "y": "-87.50000000000136", + "z": "0" + } + ], + "uuid": "cabf64b5-b8bd-f304-2055-119faef345b6", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-32.5", + "y": "-87.50000000000136", + "z": "0" + } + ], + "uuid": "ee41db3c-46fe-bb8c-d31a-73d08a965cc8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "29bc02c9-8bcd-2561-fa71-4cdc91d3301d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "1" + } + ], + "uuid": "48e9e824-83c6-9860-fb71-5395140df674", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "1" + } + ], + "uuid": "1df2b0af-9d2e-62f9-8929-b5726d031aca", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bd27f2ff-2bcd-311f-27f7-ba70e4dcf09d", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "95", + "y": "0", + "z": "0" + } + ], + "uuid": "20a6ddc2-df50-8a24-332a-96943422aa7d", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "95", + "y": "0", + "z": "0" + } + ], + "uuid": "20fd2c85-547d-e5cd-2de4-1077eee5a8dc", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c075f4d9-2a30-cd77-5327-766b378907f3", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.9396926207859086", + "z": "0.3420201433256687" + } + ], + "uuid": "a183cc8d-e9f9-ef83-6272-2e29c19e93c8", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.9396926207859086", + "z": "0.3420201433256687" + } + ], + "uuid": "3e7591b1-2617-fd52-d690-185b983b95ca", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "29cc5049-c771-5942-4e4d-66131ad8e74a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15.287219665766315", + "y": "-33.64240951068314", + "z": "10.131585896556317" + } + ], + "uuid": "0957ba5c-566c-2186-c45e-dd7f94117b00", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15.287219665766315", + "y": "-33.64240951068314", + "z": "10.131585896556317" + } + ], + "uuid": "38cd3d8d-98b9-0808-0434-b4270c03c1ac", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "133bc9e7-9548-4d9c-5f09-af901ecc86fb", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "3", + "y": "0", + "z": "-1" + } + ], + "uuid": "19644b2d-e643-e5b8-1106-9f02dfa9c522", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "3", + "y": "0", + "z": "-1" + } + ], + "uuid": "5e344e7b-5110-2b2c-d70d-5d03e958bdb1", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "da6f028d-4b13-5259-49a8-7b56781ab61c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "6843f76a-1992-5f3b-38f8-b4c67c00c7fc", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "c9e2c673-52ca-89af-4060-d4bb689b3f91", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "0f52767e-e34e-bfb1-05fc-6e17a577dd45", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-30", + "y": "0", + "z": "0" + } + ], + "uuid": "a44173be-a261-8df0-1011-e21cfbf139f7", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-30", + "y": "0", + "z": "0" + } + ], + "uuid": "ec1d0f96-0b7e-8af5-24db-d042edad1916", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a7e6a2fc-c19a-4fe1-d327-26f46f228470", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "db4d4739-4ec1-70b4-f892-615dc4860363", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9f30e619-881a-161f-0914-d8ae35b6b144", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a5f78ab7-02ed-bba4-f43d-84c6adcdcd6a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "344e292f-408f-7a2c-1b9c-141af8160737", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "710dcd72-3875-324f-4ace-77d91d621425", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "4fde1142-2f6b-cfaa-5ef5-94f328861622", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "0b92e786-1a89-0d66-598e-a467c7aee52a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "77365f50-1ef2-9225-e826-e3ef9bf74462", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ad4935d9-5131-21de-3797-e0ba2935e730", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "dd95b2b6-e7bb-bf7c-e12c-b07b90f7222a", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "925ac5bb-5736-99e6-cd50-8f32bac6d586", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bf10f00f-5363-3358-c329-881aaba2589e", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"01_whiphard\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "1c644343-ae80-a7f3-7b77-39bba97863d9", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "4b698b7a-d1a7-5739-6584-3b5b6b096632", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "756d7905-2682-6857-40cf-f46d35b18e8a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "-0.5", + "y": "0", + "z": "0" + } + ], + "uuid": "0f1d638f-c7be-e933-4b54-263904cfad99", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.5", + "y": "0", + "z": "0" + } + ], + "uuid": "db613322-6a5c-b119-b17a-ac46591d029e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f9de4c88-f547-3f32-84a5-621aaed48653", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "03b751d2-67a3-de42-e4bb-14680b3f1c0e", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e46c0ce2-956a-9493-9da3-2e443fe2ac22", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ecb0661c-3a3d-cb65-c0df-0673bbac27e7", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "cc35afdc-8445-a920-e90a-1c843868dc4c", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "6a808952-3371-6248-593b-d3d697a33cb1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "93fd1e62-51f3-0171-2529-efaf53c30adb", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "6f6140aa-785f-c26c-beea-c8cdf2c2b91f", + "name": "taunt_10", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-30.36119", + "y": "40.78947", + "z": "-20.94102" + } + ], + "uuid": "942a2230-3711-f4cd-7618-d5752d5c3604", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "41bec06d-9680-80fe-b1f9-ec75603abe77", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-30.36119340482128", + "y": "40.78947094092564", + "z": "-20.941020472243054" + } + ], + "uuid": "cf4e99c4-f9bc-7c3d-ab91-36de55fdaf4f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.62359", + "z": "3.91969" + } + ], + "uuid": "3918dbeb-3d8e-ebe4-2cf3-8b757434e1d3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "80c2b44c-2713-8a91-b71e-741bd6b0741c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.6236", + "z": "3.9197" + } + ], + "uuid": "9b93838f-0215-fc58-9130-b5e50038ef77", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-212.12362", + "y": "-44.221", + "z": "130.98797" + } + ], + "uuid": "03faac9a-0543-974f-953e-a88a39cc4185", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ea280803-08b4-bac8-4b68-bdece334f0da", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-212.12361811589108", + "y": "-44.220998921801765", + "z": "130.98797101662421" + } + ], + "uuid": "5f1431f1-a364-46e0-9def-a94b4c57cf44", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.61416", + "y": "-2.68202", + "z": "3.52556" + } + ], + "uuid": "1a423e5f-c492-b4ce-44e5-e7de3a36f8af", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8ccf6d19-9d80-4000-28a4-b70d5c7b209b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.6141573275002972", + "y": "-2.6820230589023533", + "z": "3.5255585498745807" + } + ], + "uuid": "46036843-90bb-db3a-6a8b-994fcdad7d5f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-10", + "y": "0", + "z": "125" + } + ], + "uuid": "794b8721-f540-516d-f907-9bc74ccc3eef", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca86a6f6-6558-5484-b677-e9f0ef277a06", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10", + "y": "0", + "z": "125" + } + ], + "uuid": "e7db2588-d3be-a05b-8011-430c65d45919", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84d0ce30-a7f2-9f6e-aa52-5d7d37a6beae", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0a27ccde-7ee7-2c9a-b83d-0a20a988eb94", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9cc4f6aa-ebd5-2a89-39e2-e33dc6ac08a0", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73fcdb54-8786-6049-421d-f68b080ec275", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8fe5eb94-0dcb-11ca-81a3-746a37db9c8a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "64c52ea0-40b7-d679-7fec-0d3837f7a43d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3d47b6fb-347b-b218-4ca8-0097ef279fbd", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "45db5aa3-ea0e-80ec-b93e-4a8229d375bc", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "79b36ad7-0116-731b-8327-804057f339ed", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-120.89216", + "y": "32.29068", + "z": "9.27906" + } + ], + "uuid": "95ecf5b9-0a04-b6e4-c64f-0e20922b0730", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ad1cc7a2-fd04-fa9a-659a-33323707625d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-120.89215950355856", + "y": "32.290678097244836", + "z": "9.279057565341645" + } + ], + "uuid": "8f3a05ca-968d-7d5c-b5b0-c691d0893c97", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dc3fc571-072d-0c37-0e2a-5bdc568b7440", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7aa1d257-3ec1-487e-2c9b-8c4bc89d0da4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1ac26d7f-bb51-c0da-3f25-a321e81ef050", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0b26c13a-bba3-bb52-e932-5e39af892d59", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "12aa8f1b-de7b-d057-bc45-3a121783bbce", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "372a699a-b3be-cab6-ff78-cc6169dc154c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fac44d1a-102e-f1a8-dd13-2429074625d5", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "48d23818-a08d-1837-89e5-16103f9183c2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6913dc75-8503-ef31-8974-0ce1c29d871e", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-88.54702", + "y": "27.39522", + "z": "-13.50909" + } + ], + "uuid": "4bbd04ec-9925-5a2c-b923-5158d86544ed", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3e4685c-93e1-245f-6857-ead77aa319e9", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-88.54701779646666", + "y": "27.395215597256538", + "z": "-13.509091040289604" + } + ], + "uuid": "e575f48f-01a4-0b96-cc4f-e02e21ad6f30", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "89d7b31e-f52a-0ab4-998f-4ad5ad377c60", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f624f767-b5f9-501d-9a9f-e7d2f317a9ff", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e5417df9-329a-3d11-367b-53bc1b1cb4ac", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7ff45b74-99d4-3ead-c810-c0e4b8254566", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66877b8c-2a8a-f600-74d2-55332245b2f4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "70660f51-d1df-47e5-470f-adbe6c78dd6e", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2.90312", + "z": "0.55522" + } + ], + "uuid": "c7381c02-6c93-bd8f-fe8e-8d57dc531f78", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2075332d-31eb-d8ca-20ad-32e9cce035a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2.903120076873177", + "z": "0.5552242233796888" + } + ], + "uuid": "5ea71ea3-aaae-4132-8924-65037d0e73d0", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "47.37353", + "y": "23.33702", + "z": "23.28697" + } + ], + "uuid": "b1a5547f-604b-4d45-fa3b-45c5025f35f1", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "99c6da90-e985-6780-b081-6359f8f60a68", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "47.37352617775423", + "y": "23.337018562383037", + "z": "23.286968075155073" + } + ], + "uuid": "d52e9279-605d-cdd5-8c84-62581a77e63d", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "355d3621-36a3-37bf-0c3b-304b421449bc", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5f511d99-da81-a68d-e286-c1f9f74d8987", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b555ce55-1574-a715-bae1-6d1040ac2238", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "35", + "y": "0", + "z": "0" + } + ], + "uuid": "ab10e105-6b9c-adcf-9c9e-d7f1daa7b299", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7b066be-e63a-4645-5259-87a3fe6eae92", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "35", + "y": "0", + "z": "0" + } + ], + "uuid": "70adec03-36a7-26e4-3af4-099695b03544", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "22fc8739-db87-20af-005c-30a1ad59bb78", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27fdc3bf-865e-cf54-bc33-4a062815e98c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6080078f-2db1-ff8f-8473-9e1958173e3a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "94d4ea80-b213-b34b-1f2a-5f984a249cc8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "25a5f160-773b-a451-c010-e3ab9c484e53", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "375339db-1fcc-5da6-5260-ec5b00168de2", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.55406", + "z": "2.53293" + } + ], + "uuid": "dcee0dfe-d9b2-c51a-9846-1aa9e0912c1e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8405f81c-1273-b3dd-bc63-2d1edcb2cb54", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.5540558194295588", + "z": "2.532934484244752" + } + ], + "uuid": "9b701346-7010-b4cc-12b4-c2264500d9f3", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "6a937d65-11c9-7e7e-01bb-e91cf3959cad", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "824ae08d-7766-9978-f030-e0f1afb5be53", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "a15a8605-9a60-109d-f32d-883333118e1a", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "6cbcc4a8-4214-97a1-dafc-1ffb6e8af566", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "67f08c91-2c7f-ebcc-6bed-ed654d3f4a87", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "be5456bf-b1d1-e56d-39e7-f9abbbc33701", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2.08513", + "z": "-0.55331" + } + ], + "uuid": "221ec0f3-2849-385e-bc7d-35c2b1186198", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27491c6a-8e07-2d89-2b1a-81e9d1c4b9a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2.085129830728699", + "z": "-0.5533103598706802" + } + ], + "uuid": "47643561-f57c-1d61-7bbc-53f62470b5a1", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "0.8", + "z": "1.2" + } + ], + "uuid": "cf6ba49f-44cc-6a9c-4773-77e8fe47da12", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f0e3f2c7-b9f8-2a2e-da5c-729ea2c8c7a5", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "0.7999999999999999", + "z": "1.2000000000000002" + } + ], + "uuid": "4ae67a95-f5c3-0ca7-7159-8451d191e828", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "32.5", + "y": "0", + "z": "0" + } + ], + "uuid": "329b57a6-03ea-af2d-3080-ad1d736b0f49", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3b43f3d-fde2-81da-bbb2-773bc07f742a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "32.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4893ecbb-5092-7301-6ada-22dfffcc8a9e", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.0933", + "y": "0.84339", + "z": "-0.52914" + } + ], + "uuid": "a9e7519e-da4d-65ea-19b3-c0d4ae935fe9", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bbbb90e9-f728-b57b-afe7-98210354a38c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.09330109785058135", + "y": "0.8433914458128857", + "z": "-0.5291368199903751" + } + ], + "uuid": "e0af8d43-f463-cfcd-5823-8cafc0412c44", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "77967132-a36c-ae84-7af1-57675ea37ef4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"02_swing\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "d934d154-75cb-2512-0222-f8978460de73", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "b937bf57-9702-e4bb-d4f1-5eef33b72610", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "80451365-bbc4-f38e-2f5b-736fe60aecdd", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0fe7cbd8-8ac5-aa60-2ca2-e9b7b1499276", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e4803eb9-d16b-3b8d-c5d7-44dd672d1d72", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9297dfb1-97b0-b0a9-23fa-8d048e252309", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "5a4b8e86-a37f-20d6-a0e1-fec1ba47ea7b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c2aab87e-923b-a032-9183-ed1717ce6045", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "2419e1ba-a4f5-6205-acbd-017b010e5ca1", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.54923", + "y": "1.73092", + "z": "3.11484" + } + ], + "uuid": "e8bdec12-1db3-1302-ea6c-f292b5351c37", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6fd8ec7d-0f61-1c2a-3339-876816078aa1", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.5492310535779457", + "y": "1.730922167940515", + "z": "3.114844088926083" + } + ], + "uuid": "c58f5c19-ea91-ad92-bfc2-e061e79ac993", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-135", + "z": "0" + } + ], + "uuid": "1f800817-ff44-0d06-ff4e-ec8773af0846", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-135", + "z": "0" + } + ], + "uuid": "0720c789-6058-9676-c6ae-8935e08af9ad", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d773b4a5-6e83-678e-47e2-95b1ee70dcd4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "-4" + } + ], + "uuid": "1cb7fb10-9b9e-2bcf-b60e-9e340d1fee09", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "1fced0a9-2439-fe7c-688e-e5ffef3f2bad", + "name": "taunt_11", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0cfc60e9-de84-b123-035b-a35df7b0ac72", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "41bec06d-9680-80fe-b1f9-ec75603abe77", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "f57ffe52-47cd-7f14-d9fe-7e4b642238c0", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "bbc16ba6-c293-a1e0-b40f-424ad825933f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c053e6aa-9a12-3a66-3bb1-2e7f05405c72", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "80c2b44c-2713-8a91-b71e-741bd6b0741c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cf42347c-f25a-83d1-fbe1-246ec9c9289b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ea280803-08b4-bac8-4b68-bdece334f0da", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15.45672062917447", + "y": "16.152640041761515", + "z": "-28.35638330254642" + } + ], + "uuid": "a5b51832-022f-99a6-2ed3-4097c47f9550", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15.45672062917447", + "y": "16.152640041761515", + "z": "-28.35638330254642" + } + ], + "uuid": "18b03a65-c698-0d6f-584e-c82111677859", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7c2c3a14-b8c0-875c-821f-60abeba44208", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8ccf6d19-9d80-4000-28a4-b70d5c7b209b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6ed58450-4574-cabb-9ab2-ab77cae1e079", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca86a6f6-6558-5484-b677-e9f0ef277a06", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "-61.95323556855146", + "z": "97.80643428638405" + } + ], + "uuid": "194ecb76-1c2d-3c91-8860-c0ee2a41d7d8", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "-61.95323556855146", + "z": "97.80643428638405" + } + ], + "uuid": "ae92aa89-ceeb-0dc8-551e-c43ee5450247", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84d0ce30-a7f2-9f6e-aa52-5d7d37a6beae", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0a27ccde-7ee7-2c9a-b83d-0a20a988eb94", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9cc4f6aa-ebd5-2a89-39e2-e33dc6ac08a0", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "10b6252b-074f-0ebe-8d76-a6a75ab705a9", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "90ab77a7-25b4-a6a1-1ca8-d0b60821be7f", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73fcdb54-8786-6049-421d-f68b080ec275", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8fe5eb94-0dcb-11ca-81a3-746a37db9c8a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "64c52ea0-40b7-d679-7fec-0d3837f7a43d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3d47b6fb-347b-b218-4ca8-0097ef279fbd", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "45db5aa3-ea0e-80ec-b93e-4a8229d375bc", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "79b36ad7-0116-731b-8327-804057f339ed", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9ada7589-3da5-02d4-9be2-ed19cbcaef5e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ad1cc7a2-fd04-fa9a-659a-33323707625d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15.45672062917447", + "y": "-16.152640041761515", + "z": "28.35638330254642" + } + ], + "uuid": "3020ae28-1a3d-917a-9e75-897b0c7cdb15", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15.45672062917447", + "y": "-16.152640041761515", + "z": "28.35638330254642" + } + ], + "uuid": "2d7076f4-51ba-89e4-5dd4-693439d5f1dd", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dc3fc571-072d-0c37-0e2a-5bdc568b7440", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7aa1d257-3ec1-487e-2c9b-8c4bc89d0da4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1ac26d7f-bb51-c0da-3f25-a321e81ef050", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0b26c13a-bba3-bb52-e932-5e39af892d59", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "12aa8f1b-de7b-d057-bc45-3a121783bbce", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "372a699a-b3be-cab6-ff78-cc6169dc154c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "61.95323556855146", + "z": "-97.80643428638405" + } + ], + "uuid": "665b0964-7c89-a3f5-6233-38f3d0f03159", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "61.95323556855146", + "z": "-97.80643428638405" + } + ], + "uuid": "b73e77a8-492e-253e-79f0-966152b85cfb", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fac44d1a-102e-f1a8-dd13-2429074625d5", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "48d23818-a08d-1837-89e5-16103f9183c2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6913dc75-8503-ef31-8974-0ce1c29d871e", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "cb42be35-bec9-e574-ec7f-d11740e816e1", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "d8c4c82f-a9af-5a51-6146-f32c4878ecd6", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3761481e-a7e8-3183-42ef-b8744fc45551", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3e4685c-93e1-245f-6857-ead77aa319e9", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "35", + "z": "0" + } + ], + "uuid": "e78a68bb-7a46-3ab5-f8b7-ae09aa815514", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "35", + "z": "0" + } + ], + "uuid": "c6a5bffc-8abe-6abe-bc87-a17774a3b0af", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "89d7b31e-f52a-0ab4-998f-4ad5ad377c60", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f624f767-b5f9-501d-9a9f-e7d2f317a9ff", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e5417df9-329a-3d11-367b-53bc1b1cb4ac", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "505e8d1c-debd-3d96-eeb9-2426d2d45f9f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66877b8c-2a8a-f600-74d2-55332245b2f4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8866ea2c-861c-7bce-18c7-a509101d4337", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2075332d-31eb-d8ca-20ad-32e9cce035a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4d43debc-b170-940a-b9ff-bb35ecdbf608", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "99c6da90-e985-6780-b081-6359f8f60a68", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-35\n", + "z": "0" + } + ], + "uuid": "a1c5bc72-17ec-ad42-cd55-45f8e912e151", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-35\n", + "z": "0" + } + ], + "uuid": "af2cf313-fa2c-9b4c-dd99-6b7f77a4851c", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "355d3621-36a3-37bf-0c3b-304b421449bc", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5f511d99-da81-a68d-e286-c1f9f74d8987", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b555ce55-1574-a715-bae1-6d1040ac2238", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9beafc7f-599c-443c-be4a-1120bc288444", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7b066be-e63a-4645-5259-87a3fe6eae92", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "22fc8739-db87-20af-005c-30a1ad59bb78", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27fdc3bf-865e-cf54-bc33-4a062815e98c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6080078f-2db1-ff8f-8473-9e1958173e3a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ee96a3c0-6a1a-0ff8-8227-ae99dc84a97b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "25a5f160-773b-a451-c010-e3ab9c484e53", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "d59ae665-6a97-b3ef-bd15-b5ba2f604892", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "26288ea9-fb02-7bcd-a186-9c4e61b58407", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5cf8bd28-3f33-987c-24fe-20d9463c24d8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8405f81c-1273-b3dd-bc63-2d1edcb2cb54", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "6a937d65-11c9-7e7e-01bb-e91cf3959cad", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "824ae08d-7766-9978-f030-e0f1afb5be53", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "a15a8605-9a60-109d-f32d-883333118e1a", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "71779ff6-2459-0614-0fbc-b468550591c4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "67f08c91-2c7f-ebcc-6bed-ed654d3f4a87", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "22bd6b39-ad43-22e1-973e-364bd0fd0560", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "5c956304-94b8-f6c2-82f4-6e634c0f307a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "993ab6be-41c8-5434-6a79-d9b853b4907c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27491c6a-8e07-2d89-2b1a-81e9d1c4b9a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b5cd954c-c6a5-1653-f38d-6c151a37e550", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f0e3f2c7-b9f8-2a2e-da5c-729ea2c8c7a5", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bc7bb7d5-b346-93b0-9adf-6904f097c9b5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3b43f3d-fde2-81da-bbb2-773bc07f742a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "da925ed9-821d-183e-6e0c-41eb27c29302", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bbbb90e9-f728-b57b-afe7-98210354a38c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "77967132-a36c-ae84-7af1-57675ea37ef4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"03_punchspin\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "f641076f-277c-b356-1193-6683b5598534", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "443b3bee-c258-42f5-9475-3a9f735dcf55", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "a0765b3f-de7d-045c-bbd5-a2574cf8616e", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0fe7cbd8-8ac5-aa60-2ca2-e9b7b1499276", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e4803eb9-d16b-3b8d-c5d7-44dd672d1d72", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9297dfb1-97b0-b0a9-23fa-8d048e252309", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b3289893-5a86-7124-e2cc-b4633b872a26", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6cb18883-16ee-779f-7006-ea2b9a83e9c2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c2aab87e-923b-a032-9183-ed1717ce6045", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9a68304a-0e06-1aba-ce12-2469c0560c9d", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6fd8ec7d-0f61-1c2a-3339-876816078aa1", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-180", + "y": "15", + "z": "-180" + } + ], + "uuid": "2c8a5278-d47a-2614-d56b-b7d62ff4274d", + "time": 0, + "color": -1, + "interpolation": "step" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d773b4a5-6e83-678e-47e2-95b1ee70dcd4", + "time": 0.5, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bead5c35-910c-abf2-2a14-306fc4dc5040", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "0fe9582e-afee-9945-c051-79e1996ab231": { + "name": "RightHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "614fea28-c5d5-996d-7c13-434e513e00ea", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3c13eff-724a-652d-bda5-49f135d25e57", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "afd09ef8-5340-6135-f75f-ada3f02705a8", + "name": "taunt_12", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "41bec06d-9680-80fe-b1f9-ec75603abe77", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "10" + } + ], + "uuid": "856f62bd-f44e-322c-5a99-8ece57117c8b", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "10" + } + ], + "uuid": "6fd14044-3ce7-6c95-d735-d7ca3da5c5fd", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "80c2b44c-2713-8a91-b71e-741bd6b0741c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ea280803-08b4-bac8-4b68-bdece334f0da", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-175.77995", + "y": "-2.68407", + "z": "32.40109" + } + ], + "uuid": "0cba33ff-1dd3-2a92-9409-bc758dbb117c", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-175.77995307005267", + "y": "-2.6840711386680596", + "z": "32.40109132255475" + } + ], + "uuid": "e59448a2-a5ac-f86d-545f-76837acf97f3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8ccf6d19-9d80-4000-28a4-b70d5c7b209b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2", + "z": "0" + } + ], + "uuid": "69ef6b23-ae16-5344-55b2-0592f1d57034", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2", + "z": "0" + } + ], + "uuid": "4480cd3a-daaa-64c5-70ce-80f08e5ba330", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.3000000000000003", + "z": "1" + } + ], + "uuid": "d969d661-c9e1-c04b-f97e-477941c52ef4", + "time": 0.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.3000000000000003", + "z": "1" + } + ], + "uuid": "9b783cee-e2cb-9a02-291f-6b09ef5dc8d7", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca86a6f6-6558-5484-b677-e9f0ef277a06", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "82.5" + } + ], + "uuid": "b5f85955-877f-a507-d909-41f9a5201baa", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "82.5" + } + ], + "uuid": "4e919804-0abe-7fce-c340-f60c68810d73", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0a27ccde-7ee7-2c9a-b83d-0a20a988eb94", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9cc4f6aa-ebd5-2a89-39e2-e33dc6ac08a0", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "-1", + "z": "0" + } + ], + "uuid": "4592ba17-fbd5-4a8b-9a54-36c34c9b3a4a", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "-1", + "z": "0" + } + ], + "uuid": "e82e42a0-40f8-1fe4-61bc-c6e0843410ab", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.7000000000000001", + "y": "0.9", + "z": "1" + } + ], + "uuid": "312eed81-0edb-5b54-a08b-1ea74921ad2a", + "time": 0.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.7000000000000001", + "y": "0.9", + "z": "1" + } + ], + "uuid": "66f2724f-2f6a-ff62-aef4-219b7477c4ca", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8fe5eb94-0dcb-11ca-81a3-746a37db9c8a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "64c52ea0-40b7-d679-7fec-0d3837f7a43d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "45db5aa3-ea0e-80ec-b93e-4a8229d375bc", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "79b36ad7-0116-731b-8327-804057f339ed", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ad1cc7a2-fd04-fa9a-659a-33323707625d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-175.11794022903405", + "y": "1.08088913633037", + "z": "-12.45392054358581" + } + ], + "uuid": "951e05e0-d5ce-58e9-815d-d3b67fcc70ed", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-175.11794022903405", + "y": "1.08088913633037", + "z": "-12.45392054358581" + } + ], + "uuid": "b141accc-a162-f527-3ff1-2ce27b5563f2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7aa1d257-3ec1-487e-2c9b-8c4bc89d0da4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1ac26d7f-bb51-c0da-3f25-a321e81ef050", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "0" + } + ], + "uuid": "c5ab6a48-2c0f-05c7-a752-bc538e644897", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "0" + } + ], + "uuid": "b5b36abe-72f0-d2b2-251b-971a5d2a69f3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.3", + "z": "1" + } + ], + "uuid": "6f14ca84-9781-8260-25c3-3dc8c64fb7fe", + "time": 0.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.3000000000000003", + "z": "1" + } + ], + "uuid": "837e2183-0887-05d2-c584-afcdab422166", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "12aa8f1b-de7b-d057-bc45-3a121783bbce", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "372a699a-b3be-cab6-ff78-cc6169dc154c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-80" + } + ], + "uuid": "be762eef-ef99-872b-242c-5c98c711ce61", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-80" + } + ], + "uuid": "d388e6a7-2f72-7cd0-df78-19b837892210", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "48d23818-a08d-1837-89e5-16103f9183c2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6913dc75-8503-ef31-8974-0ce1c29d871e", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "-1", + "z": "0" + } + ], + "uuid": "0bd0875e-e5a6-3437-e837-040fb2885891", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "-1", + "z": "0" + } + ], + "uuid": "e89af55f-8482-dda8-f20e-07cf21ff69f9", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.7", + "y": "0.9", + "z": "1" + } + ], + "uuid": "a84e9517-5885-45d0-7f1e-4cdcb00bd7de", + "time": 0.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.7000000000000001", + "y": "0.9", + "z": "1" + } + ], + "uuid": "d68ebf30-9ed8-d3d5-6eee-ca9062a0f287", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3e4685c-93e1-245f-6857-ead77aa319e9", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-11.20818489887506", + "y": "67.79329975317705", + "z": "-20.023124829469452" + } + ], + "uuid": "22cf52e1-6176-8775-7215-99edc9825610", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-11.20818489887506", + "y": "67.79329975317705", + "z": "-20.023124829469452" + } + ], + "uuid": "b73d8799-1b36-c3b6-2d4c-cc68f9546e78", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f624f767-b5f9-501d-9a9f-e7d2f317a9ff", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e5417df9-329a-3d11-367b-53bc1b1cb4ac", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.5", + "y": "0", + "z": "-0.5" + } + ], + "uuid": "95d33788-6edb-85ff-89f8-f27111b94d8e", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.5", + "y": "0", + "z": "-0.5" + } + ], + "uuid": "cfd7911f-7bea-057d-ddc2-5383e66ae1a6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66877b8c-2a8a-f600-74d2-55332245b2f4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2075332d-31eb-d8ca-20ad-32e9cce035a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "99c6da90-e985-6780-b081-6359f8f60a68", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-68.61942717052762", + "y": "-85.24628360378938", + "z": "42.08753857630609" + } + ], + "uuid": "1bba6498-3ac5-69d4-043f-3e608c629c2f", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-68.61942717052762", + "y": "-85.24628360378938", + "z": "42.08753857630609" + } + ], + "uuid": "1e791a6c-074c-05a7-58df-86f445fae9b8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5f511d99-da81-a68d-e286-c1f9f74d8987", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b555ce55-1574-a715-bae1-6d1040ac2238", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "42317071-3045-6044-12b0-e03c5aaed79d", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "4a66e883-489b-a808-962b-dfe8143003d3", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7b066be-e63a-4645-5259-87a3fe6eae92", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27fdc3bf-865e-cf54-bc33-4a062815e98c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6080078f-2db1-ff8f-8473-9e1958173e3a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "25a5f160-773b-a451-c010-e3ab9c484e53", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "15" + } + ], + "uuid": "ee7e677c-cdab-5515-4dd1-8b2748896e85", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "15" + } + ], + "uuid": "0c8e97e0-a740-0aae-b4b9-6cdb7a83c89c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8405f81c-1273-b3dd-bc63-2d1edcb2cb54", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ed42e178-0e1d-a432-de5c-0a9f0856ca39", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b4a475c1-1285-e77d-f315-a6f592f0086b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "824ae08d-7766-9978-f030-e0f1afb5be53", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "a15a8605-9a60-109d-f32d-883333118e1a", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "67f08c91-2c7f-ebcc-6bed-ed654d3f4a87", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-0.5808401430422236", + "y": "1.064039915441299", + "z": "-17.356306958215555" + } + ], + "uuid": "510db19c-693c-4791-d76a-40357614374c", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-0.5808401430422236", + "y": "1.064039915441299", + "z": "-17.356306958215555" + } + ], + "uuid": "63f23bb5-baec-f3f9-8c92-cefef9e699a0", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27491c6a-8e07-2d89-2b1a-81e9d1c4b9a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f0e3f2c7-b9f8-2a2e-da5c-729ea2c8c7a5", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3b43f3d-fde2-81da-bbb2-773bc07f742a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-5", + "y": "0", + "z": "0" + } + ], + "uuid": "fcfa1b3a-d50d-f2bd-ef52-34831f1d0374", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-5", + "y": "0", + "z": "0" + } + ], + "uuid": "18c055ed-d919-7354-adb6-d549b0d424ea", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bbbb90e9-f728-b57b-afe7-98210354a38c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "77967132-a36c-ae84-7af1-57675ea37ef4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"04_coin\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "aa8995b9-60af-bb4d-a4b4-12f9b2c2c102", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "7c9dd473-0d27-16b0-0581-aa7ba9435226", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "a957079d-6f9f-b464-797c-c64b7ac372ed", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e4803eb9-d16b-3b8d-c5d7-44dd672d1d72", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9297dfb1-97b0-b0a9-23fa-8d048e252309", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c2aab87e-923b-a032-9183-ed1717ce6045", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6fd8ec7d-0f61-1c2a-3339-876816078aa1", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d773b4a5-6e83-678e-47e2-95b1ee70dcd4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "db399086-5797-9e0e-ba8e-1ef16894e749", + "name": "taunt_13", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "41bec06d-9680-80fe-b1f9-ec75603abe77", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "80c2b44c-2713-8a91-b71e-741bd6b0741c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ea280803-08b4-bac8-4b68-bdece334f0da", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8ccf6d19-9d80-4000-28a4-b70d5c7b209b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca86a6f6-6558-5484-b677-e9f0ef277a06", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0a27ccde-7ee7-2c9a-b83d-0a20a988eb94", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9cc4f6aa-ebd5-2a89-39e2-e33dc6ac08a0", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8fe5eb94-0dcb-11ca-81a3-746a37db9c8a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "64c52ea0-40b7-d679-7fec-0d3837f7a43d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "45db5aa3-ea0e-80ec-b93e-4a8229d375bc", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "79b36ad7-0116-731b-8327-804057f339ed", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ad1cc7a2-fd04-fa9a-659a-33323707625d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7aa1d257-3ec1-487e-2c9b-8c4bc89d0da4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1ac26d7f-bb51-c0da-3f25-a321e81ef050", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "12aa8f1b-de7b-d057-bc45-3a121783bbce", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "372a699a-b3be-cab6-ff78-cc6169dc154c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "48d23818-a08d-1837-89e5-16103f9183c2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6913dc75-8503-ef31-8974-0ce1c29d871e", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3e4685c-93e1-245f-6857-ead77aa319e9", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f624f767-b5f9-501d-9a9f-e7d2f317a9ff", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e5417df9-329a-3d11-367b-53bc1b1cb4ac", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66877b8c-2a8a-f600-74d2-55332245b2f4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2075332d-31eb-d8ca-20ad-32e9cce035a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "99c6da90-e985-6780-b081-6359f8f60a68", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5f511d99-da81-a68d-e286-c1f9f74d8987", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b555ce55-1574-a715-bae1-6d1040ac2238", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7b066be-e63a-4645-5259-87a3fe6eae92", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27fdc3bf-865e-cf54-bc33-4a062815e98c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6080078f-2db1-ff8f-8473-9e1958173e3a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "25a5f160-773b-a451-c010-e3ab9c484e53", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8405f81c-1273-b3dd-bc63-2d1edcb2cb54", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "824ae08d-7766-9978-f030-e0f1afb5be53", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "a15a8605-9a60-109d-f32d-883333118e1a", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "67f08c91-2c7f-ebcc-6bed-ed654d3f4a87", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27491c6a-8e07-2d89-2b1a-81e9d1c4b9a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f0e3f2c7-b9f8-2a2e-da5c-729ea2c8c7a5", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3b43f3d-fde2-81da-bbb2-773bc07f742a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bbbb90e9-f728-b57b-afe7-98210354a38c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "77967132-a36c-ae84-7af1-57675ea37ef4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\n1sounds[\"04_coin\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play() \n" + } + ], + "uuid": "aa8995b9-60af-bb4d-a4b4-12f9b2c2c102", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "7c9dd473-0d27-16b0-0581-aa7ba9435226", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "a957079d-6f9f-b464-797c-c64b7ac372ed", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e4803eb9-d16b-3b8d-c5d7-44dd672d1d72", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9297dfb1-97b0-b0a9-23fa-8d048e252309", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c2aab87e-923b-a032-9183-ed1717ce6045", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6fd8ec7d-0f61-1c2a-3339-876816078aa1", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d773b4a5-6e83-678e-47e2-95b1ee70dcd4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "549faa5f-1940-6330-30ce-aa8d7a03ae15", + "name": "taunt_unused", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ec18fbf9-aaf5-508c-a8dd-69f013b6bd05", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0cfc60e9-de84-b123-035b-a35df7b0ac72", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "3.616441573003158", + "y": "-19.68349807941331", + "z": "-10.627584138330803" + } + ], + "uuid": "3453e10f-0e90-dda2-fadd-a05afd9ca63c", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "3.616441573003158", + "y": "-19.68349807941331", + "z": "-10.627584138330803" + } + ], + "uuid": "80c75381-451f-54e7-2f78-b0a8735ad38e", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1b87a533-b4d0-eebc-1efc-9fe1057af7ea", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c053e6aa-9a12-3a66-3bb1-2e7f05405c72", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-3", + "z": "-4" + } + ], + "uuid": "b166415b-7386-eeb8-16e9-b3cae153cd99", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-3", + "z": "-4" + } + ], + "uuid": "a18538d4-4b3e-a385-e037-81b638980bc8", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "97c80102-b79e-90ab-d23a-05c825da05db", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cf42347c-f25a-83d1-fbe1-246ec9c9289b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-46.15734", + "y": "11.55763", + "z": "-46.77247" + } + ], + "uuid": "5c289a91-ade4-07b0-2267-f61e5232bb6e", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-46.1573372899702", + "y": "11.557633730890757", + "z": "-46.7724707940788" + } + ], + "uuid": "6186200d-0acd-b252-dcbb-5ee40fb17bd6", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73c0d2bf-0eee-1df6-a16d-276dca8cd1fc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7c2c3a14-b8c0-875c-821f-60abeba44208", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "5208766b-346e-884e-669d-40ec7b591b8b", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "ba83dccb-4bbc-aa04-dcbd-4a65b224f274", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2897905c-001c-4aee-2939-93bec37e6e29", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6ed58450-4574-cabb-9ab2-ab77cae1e079", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-34.00238", + "y": "21.07593", + "z": "-8.0634" + } + ], + "uuid": "d1e0e290-f839-3176-30f4-b1e85bdbf0dc", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-34.002384070967764", + "y": "21.075927274087007", + "z": "-8.063398680195405" + } + ], + "uuid": "656fc737-aa9e-1912-febb-5480fd3196ef", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "33db609d-34fa-0df0-49b2-a1a36b20dff6", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84d0ce30-a7f2-9f6e-aa52-5d7d37a6beae", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2ee0730f-3e9c-c0e0-a792-e2e2fea0d72e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73fcdb54-8786-6049-421d-f68b080ec275", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-75" + } + ], + "uuid": "4b691dbe-daae-cc66-8e1f-ee1a1db3c91f", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-75" + } + ], + "uuid": "d951160f-fcc7-6fd4-a0a7-54ea8cd8af97", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6259b0a6-1869-4126-c25f-eb5b2e482bc2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3d47b6fb-347b-b218-4ca8-0097ef279fbd", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b8297c91-6f04-cd07-2d95-dd84a551e19f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9ada7589-3da5-02d4-9be2-ed19cbcaef5e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-1059.43709", + "y": "51.65173", + "z": "-1008.2091" + } + ], + "uuid": "4e443233-ee09-761f-a935-2eb9392dc85b", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-1059.4370921230334", + "y": "51.6517320537223", + "z": "-1008.2091049559085" + } + ], + "uuid": "1542d6ca-9a3d-ae58-6d40-cc4db5c206c2", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c92e0cd-037b-73bf-8d00-ed37303c8a10", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dc3fc571-072d-0c37-0e2a-5bdc568b7440", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.36922", + "y": "-1.99839", + "z": "-1.63484" + } + ], + "uuid": "d3382c22-e22a-a66b-4f73-0052ca9b6218", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.36922211981623476", + "y": "-1.9983896090633304", + "z": "-1.634836115010569" + } + ], + "uuid": "413a3816-5afc-b4db-ebc4-f3af5916a7b1", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c1385604-8011-b280-e2ed-c61fd473c5ee", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0b26c13a-bba3-bb52-e932-5e39af892d59", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7fe1966-347d-b492-e086-d70e25322102", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fac44d1a-102e-f1a8-dd13-2429074625d5", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.60764", + "y": "-0.75721", + "z": "-0.23961" + } + ], + "uuid": "ea0ec284-f93e-fbab-4a4e-34a738b9eb99", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.607637279404815", + "y": "-0.7572070767186294", + "z": "-0.2396129788737299" + } + ], + "uuid": "41c14d9e-2eb7-acc4-c395-121fb6654527", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8382de98-2b7e-ec42-461a-6913ade62eba", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3761481e-a7e8-3183-42ef-b8744fc45551", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-49.88818", + "y": "61.28939", + "z": "-5.46983" + } + ], + "uuid": "e0d1b53a-3bbe-70bb-0911-166da12b8275", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-49.888181189105126", + "y": "61.289388395929564", + "z": "-5.469834773929506" + } + ], + "uuid": "3308f4b1-374c-f7f1-9a2e-e23ddd490e2a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "33462968-2cb9-a24a-abdc-afa71f09228c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "89d7b31e-f52a-0ab4-998f-4ad5ad377c60", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b3d4cd72-b84f-96f5-12b2-405485abdb17", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "505e8d1c-debd-3d96-eeb9-2426d2d45f9f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "8417fb34-1f2c-5f80-f48c-93f115ba1e30", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3fb41a49-5ee6-66d3-a502-30a12ab1f0cd", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8866ea2c-861c-7bce-18c7-a509101d4337", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "b2c9f182-1904-e80e-49ce-c5fa0086ce77", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "bd911d6b-554b-58ad-f564-705284e8786f", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6064caf3-14e2-bb0e-868f-acdb70de1955", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4d43debc-b170-940a-b9ff-bb35ecdbf608", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15", + "y": "-17.5", + "z": "-10" + } + ], + "uuid": "b5e6790f-0380-85e4-764b-53861d9ed421", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15", + "y": "-17.5", + "z": "-10" + } + ], + "uuid": "67787163-76c6-2b76-151f-92457ef447b8", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e4fd6d55-9de3-cd4b-29a1-e696c5ccffe4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "355d3621-36a3-37bf-0c3b-304b421449bc", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.14891", + "y": "-0.62172", + "z": "-0.1925" + } + ], + "uuid": "8d10997d-1650-8630-8cc3-9ecc07f0d272", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.14890617635233186", + "y": "-0.6217200897058953", + "z": "-0.19249763551343724" + } + ], + "uuid": "d52e358d-2630-d3dd-7a81-50183e3eabb2", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ecaa4225-8bd9-8f1e-4218-2bbcf27d9729", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9beafc7f-599c-443c-be4a-1120bc288444", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "9.91615", + "y": "1.29876", + "z": "2.61267" + } + ], + "uuid": "db0e7ad1-6ed8-5909-8974-afd6417833ed", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "9.91615385274099", + "y": "1.2987564674722307", + "z": "2.6126737486461025" + } + ], + "uuid": "52789cff-cf95-f21e-c83c-4751119964c4", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "22fc8739-db87-20af-005c-30a1ad59bb78", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b2576839-785b-b390-49ed-55aae9a6bf62", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ac2e63c5-c8e8-757d-fd59-aeafba5782e7", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c81f1fd-6144-cded-f0b3-cdd141721b4e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ee96a3c0-6a1a-0ff8-8227-ae99dc84a97b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "37.21256", + "y": "-0.61762", + "z": "1.52784" + } + ], + "uuid": "adce7c1d-6d1a-3dfa-06b9-b37adfc63ddf", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "37.21255675607199", + "y": "-0.6176160868731131", + "z": "1.5278418018233424" + } + ], + "uuid": "e1d8b348-d14f-48e6-b01a-bb0946c25f78", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a641ffb4-91ea-9394-66cd-84a782d7786b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5cf8bd28-3f33-987c-24fe-20d9463c24d8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.03017", + "y": "-2.41915", + "z": "-3.1854" + } + ], + "uuid": "38e91e9c-8ab4-ecc4-3294-29c5f774bc83", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.030173638149666133", + "y": "-2.4191501899255123", + "z": "-3.1854045127964783" + } + ], + "uuid": "8a2a8d97-2ae2-1d33-3d2b-60535bcf501e", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f8c747a8-f43c-6194-bfef-4ed613b97380", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "6a937d65-11c9-7e7e-01bb-e91cf3959cad", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4fc65f28-83bc-ded9-e796-ddcb4723e757", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "71779ff6-2459-0614-0fbc-b468550591c4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-69.84126", + "y": "7.04533", + "z": "2.57816" + } + ], + "uuid": "b0159f15-2e27-d0f3-0694-95382750c529", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-69.84126256694617", + "y": "7.045326183131692", + "z": "2.578161780461869" + } + ], + "uuid": "026fb184-0531-006d-4938-5933b28531d2", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "993ab6be-41c8-5434-6a79-d9b853b4907c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.28171", + "z": "-0.59767" + } + ], + "uuid": "732bf336-2799-1222-78f0-fe67e53c9a02", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.2817127641115769", + "z": "-0.5976724774602395" + } + ], + "uuid": "dceb9b81-4123-b8c0-502f-23ac379959ab", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "a029eeab-d9fc-a24f-82bc-97313e5482d0", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b5cd954c-c6a5-1653-f38d-6c151a37e550", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9835a4a0-d116-c2e3-0bd7-0ec2f991971b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bc7bb7d5-b346-93b0-9adf-6904f097c9b5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "10", + "y": "0", + "z": "0" + } + ], + "uuid": "28917871-7030-9543-2423-c16ad5bf0ac8", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "10", + "y": "0", + "z": "0" + } + ], + "uuid": "badd2040-0370-fa1e-2966-8ef5a8c0ddca", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "987befe9-00b9-a7cc-e987-b01852b33de9", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "da925ed9-821d-183e-6e0c-41eb27c29302", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])" + } + ], + "uuid": "4202a2ca-aa07-9b6a-4514-348e37be30ce", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "" + } + ], + "uuid": "d226ac99-9c40-96a3-cfe8-78327feef74c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66b88688-8e4d-7b13-0ca3-df91d690716a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0fe7cbd8-8ac5-aa60-2ca2-e9b7b1499276", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.5", + "y": "0", + "z": "0" + } + ], + "uuid": "74994db2-1e51-ac47-4df5-8597be2b941e", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3c13863e-e4b8-1a14-cf27-4709b919f329", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1bd1bbe3-6c84-2cdb-2758-b18107bde80b", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6cb18883-16ee-779f-7006-ea2b9a83e9c2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10", + "y": "0", + "z": "0" + } + ], + "uuid": "9cfea522-d70c-c5ac-0213-14e8f0b0c876", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10", + "y": "0", + "z": "0" + } + ], + "uuid": "9de23aff-e7c1-c158-b7f9-f3194cdc7424", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "30131b5a-2d21-75ad-a3af-067474cf3599", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9a68304a-0e06-1aba-ce12-2469c0560c9d", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.17101", + "y": "0.17365", + "z": "-0.96985" + } + ], + "uuid": "12a6a2de-6686-0f10-6141-8bd72d72bff9", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.17101007166283436", + "y": "0.17364817766693033", + "z": "-0.9698463103929542" + } + ], + "uuid": "0fbc4eee-28db-00c8-a9ba-91889862b4c1", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "97e65169-0cd2-7aaf-dd0b-44d4a1a5fe55", + "name": "taunt_unused2", + "loop": "once", + "override": true, + "length": 0.75, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0cfc60e9-de84-b123-035b-a35df7b0ac72", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "41bec06d-9680-80fe-b1f9-ec75603abe77", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-6.503710829625106", + "y": "5.903162520769911", + "z": "19.14314484150009" + } + ], + "uuid": "18cd39f6-2b23-ab64-1ea2-03bcd28bf459", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-8.767196229572164", + "y": "0.3646791660262352", + "z": "-20.54911708885038" + } + ], + "uuid": "e66ed6c2-1848-bfb0-d59a-322e8ea31c9d", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c053e6aa-9a12-3a66-3bb1-2e7f05405c72", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "80c2b44c-2713-8a91-b71e-741bd6b0741c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.8190778623577284", + "y": "-0.9785712245610795", + "z": "-0.30854232193591413" + } + ], + "uuid": "b08fd3cf-2b31-accb-99cc-f0e85e3c6ed3", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.8190778623577284", + "y": "-0.9785712245610795", + "z": "-0.30854232193591413" + } + ], + "uuid": "a33d3ce1-249c-e1eb-3c71-c615e85d02ee", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cf42347c-f25a-83d1-fbe1-246ec9c9289b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ea280803-08b4-bac8-4b68-bdece334f0da", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "19.931269891290867", + "y": "10.012689784736722", + "z": "-8.799142093730097" + } + ], + "uuid": "4abf35ac-c2c0-a659-9a24-a6a5bb0e77f9", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "8.925891025992769", + "y": "20.424543137769433", + "z": "-48.951660903395805" + } + ], + "uuid": "00c4232f-6151-b27f-8485-db8687003613", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7c2c3a14-b8c0-875c-821f-60abeba44208", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8ccf6d19-9d80-4000-28a4-b70d5c7b209b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.241737923276973", + "y": "-1.9005442636140621", + "z": "-0.6021150931387865" + } + ], + "uuid": "7b0968e6-346c-5820-1ab9-0b28e9ec8b64", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-3.1874872599181128", + "y": "0.022016954287080504", + "z": "-1.241893613929629" + } + ], + "uuid": "f3cc2325-0055-20e9-dfae-f76cfa50383a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6ed58450-4574-cabb-9ab2-ab77cae1e079", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca86a6f6-6558-5484-b677-e9f0ef277a06", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "-61.95323556855146", + "z": "97.80643428638405" + } + ], + "uuid": "4cb3a021-7624-72a0-007a-19a955f743fc", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "-61.95323556855146", + "z": "97.80643428638405" + } + ], + "uuid": "786b3187-8758-025e-49fa-8d4c48438245", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84d0ce30-a7f2-9f6e-aa52-5d7d37a6beae", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0a27ccde-7ee7-2c9a-b83d-0a20a988eb94", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "f90cb53b-725c-67ce-14b1-c49097667ea9", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "98951b2d-6997-f573-8f59-45581e215fdd", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9cc4f6aa-ebd5-2a89-39e2-e33dc6ac08a0", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73fcdb54-8786-6049-421d-f68b080ec275", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8fe5eb94-0dcb-11ca-81a3-746a37db9c8a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "64c52ea0-40b7-d679-7fec-0d3837f7a43d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3d47b6fb-347b-b218-4ca8-0097ef279fbd", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "45db5aa3-ea0e-80ec-b93e-4a8229d375bc", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "79b36ad7-0116-731b-8327-804057f339ed", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9ada7589-3da5-02d4-9be2-ed19cbcaef5e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ad1cc7a2-fd04-fa9a-659a-33323707625d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "8.925891025992769", + "y": "-20.424543137769433", + "z": "48.951660903395805" + } + ], + "uuid": "5269579d-41b1-5a70-dec7-62bd25e54bbb", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "19.931269891290867", + "y": "-10.012689784736722", + "z": "8.799142093730097" + } + ], + "uuid": "d448e8ae-b987-52f9-b925-b50eeac6bc5a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dc3fc571-072d-0c37-0e2a-5bdc568b7440", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7aa1d257-3ec1-487e-2c9b-8c4bc89d0da4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.1765708946258147", + "y": "0.5090732430708135", + "z": "0.058168495400380826" + } + ], + "uuid": "618f9c39-8794-5799-a6ad-6241f6017fcb", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.9860932630105697", + "y": "-3.1708119367770733", + "z": "1.400971011863849" + } + ], + "uuid": "e5048d75-c4cf-bff2-0955-e2da144a552d", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1ac26d7f-bb51-c0da-3f25-a321e81ef050", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0b26c13a-bba3-bb52-e932-5e39af892d59", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "12aa8f1b-de7b-d057-bc45-3a121783bbce", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "61.95323556855146", + "z": "-97.80643428638405" + } + ], + "uuid": "3ca85fb4-cab2-77fc-8af2-e7235879636a", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "61.95323556855146", + "z": "-97.80643428638405" + } + ], + "uuid": "e87d134c-a50d-e859-e3e3-48d4a5ce31e4", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "372a699a-b3be-cab6-ff78-cc6169dc154c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fac44d1a-102e-f1a8-dd13-2429074625d5", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "48d23818-a08d-1837-89e5-16103f9183c2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "3af66629-2b55-7cfb-2fe3-b9b8970e441c", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "15ae3505-518c-537e-061b-db23dbe98847", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6913dc75-8503-ef31-8974-0ce1c29d871e", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3761481e-a7e8-3183-42ef-b8744fc45551", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3e4685c-93e1-245f-6857-ead77aa319e9", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "35", + "z": "0" + } + ], + "uuid": "dc313edd-2ca3-00b7-87e0-6ba253df6233", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "35", + "z": "0" + } + ], + "uuid": "de399624-9a77-fc76-7415-fd51ea8018ba", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "89d7b31e-f52a-0ab4-998f-4ad5ad377c60", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f624f767-b5f9-501d-9a9f-e7d2f317a9ff", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e5417df9-329a-3d11-367b-53bc1b1cb4ac", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "505e8d1c-debd-3d96-eeb9-2426d2d45f9f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66877b8c-2a8a-f600-74d2-55332245b2f4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8866ea2c-861c-7bce-18c7-a509101d4337", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2075332d-31eb-d8ca-20ad-32e9cce035a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4d43debc-b170-940a-b9ff-bb35ecdbf608", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "99c6da90-e985-6780-b081-6359f8f60a68", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-35\n", + "z": "0" + } + ], + "uuid": "1ebf4684-02bb-421e-ce54-78dee1a5baaf", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-35\n", + "z": "0" + } + ], + "uuid": "82a85213-b784-7c77-184a-c732d407348d", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "355d3621-36a3-37bf-0c3b-304b421449bc", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5f511d99-da81-a68d-e286-c1f9f74d8987", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b555ce55-1574-a715-bae1-6d1040ac2238", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9beafc7f-599c-443c-be4a-1120bc288444", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7b066be-e63a-4645-5259-87a3fe6eae92", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "22fc8739-db87-20af-005c-30a1ad59bb78", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27fdc3bf-865e-cf54-bc33-4a062815e98c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6080078f-2db1-ff8f-8473-9e1958173e3a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ee96a3c0-6a1a-0ff8-8227-ae99dc84a97b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "25a5f160-773b-a451-c010-e3ab9c484e53", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "4e84b597-d07b-6c03-b07f-b131a84cc2aa", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-20" + } + ], + "uuid": "94d919dc-4270-57ec-7eda-4d3bee35dd74", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5cf8bd28-3f33-987c-24fe-20d9463c24d8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8405f81c-1273-b3dd-bc63-2d1edcb2cb54", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.819077862357725", + "y": "-1.026060429977006", + "z": "0" + } + ], + "uuid": "8ce345c3-265d-78e1-0ea6-9e0c7a0bdc34", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.819077862357725", + "y": "-1.026060429977006", + "z": "0" + } + ], + "uuid": "929911dd-be30-e780-3b54-bfb872287744", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "6a937d65-11c9-7e7e-01bb-e91cf3959cad", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "824ae08d-7766-9978-f030-e0f1afb5be53", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "a15a8605-9a60-109d-f32d-883333118e1a", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "71779ff6-2459-0614-0fbc-b468550591c4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "67f08c91-2c7f-ebcc-6bed-ed654d3f4a87", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-20" + } + ], + "uuid": "792e9281-bc52-c18a-a2aa-693bbcfb77e3", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "61ff89dc-ead4-66dd-59e6-29215361d9bf", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "993ab6be-41c8-5434-6a79-d9b853b4907c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27491c6a-8e07-2d89-2b1a-81e9d1c4b9a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b5cd954c-c6a5-1653-f38d-6c151a37e550", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f0e3f2c7-b9f8-2a2e-da5c-729ea2c8c7a5", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bc7bb7d5-b346-93b0-9adf-6904f097c9b5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3b43f3d-fde2-81da-bbb2-773bc07f742a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "da925ed9-821d-183e-6e0c-41eb27c29302", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bbbb90e9-f728-b57b-afe7-98210354a38c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])" + } + ], + "uuid": "d226ac99-9c40-96a3-cfe8-78327feef74c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "" + } + ], + "uuid": "f9250ffb-950c-70f9-0a00-601ee68ce649", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "77967132-a36c-ae84-7af1-57675ea37ef4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0fe7cbd8-8ac5-aa60-2ca2-e9b7b1499276", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e4803eb9-d16b-3b8d-c5d7-44dd672d1d72", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9297dfb1-97b0-b0a9-23fa-8d048e252309", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b3289893-5a86-7124-e2cc-b4633b872a26", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6cb18883-16ee-779f-7006-ea2b9a83e9c2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c2aab87e-923b-a032-9183-ed1717ce6045", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9a68304a-0e06-1aba-ce12-2469c0560c9d", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6fd8ec7d-0f61-1c2a-3339-876816078aa1", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2c8a5278-d47a-2614-d56b-b7d62ff4274d", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d773b4a5-6e83-678e-47e2-95b1ee70dcd4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bead5c35-910c-abf2-2a14-306fc4dc5040", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "0fe9582e-afee-9945-c051-79e1996ab231": { + "name": "RightHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "614fea28-c5d5-996d-7c13-434e513e00ea", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3c13eff-724a-652d-bda5-49f135d25e57", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "5de81ff7-d5db-82f2-dff9-414b2c8d3dc1", + "name": "taunt_unused3", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ec18fbf9-aaf5-508c-a8dd-69f013b6bd05", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0cfc60e9-de84-b123-035b-a35df7b0ac72", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2df6d062-43f1-c350-b40a-0acaea9785ea", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "10" + } + ], + "uuid": "6c09b2c8-7f33-b2ba-ac3a-a2e7896e7942", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "10" + } + ], + "uuid": "4c3d48b8-b546-3808-66f5-cf7e95148150", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c053e6aa-9a12-3a66-3bb1-2e7f05405c72", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "3", + "y": "-5", + "z": "-5" + } + ], + "uuid": "d84d65d3-31c8-865d-cc73-35d290d2ca77", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "51c6cf6a-43b5-37ca-37e8-926dd1c763c4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "3", + "y": "-5", + "z": "-5" + } + ], + "uuid": "6b9f9bdd-0680-eac1-09df-06ca54e7f2b4", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cf42347c-f25a-83d1-fbe1-246ec9c9289b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "-90" + } + ], + "uuid": "c9cd50f6-5894-7a4a-a920-45ed5a498f5f", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "46b2a561-b926-cabe-1612-c5904e130227", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "-90" + } + ], + "uuid": "089ff2d1-75a2-4c8c-bb2e-b4ab30123706", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7c2c3a14-b8c0-875c-821f-60abeba44208", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.43288", + "y": "-3.95259", + "z": "-4" + } + ], + "uuid": "be3c52ba-84cb-248a-b527-e69605d57f2e", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c83cca21-7e87-0622-e730-95bde20b2e8b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.432879227876205", + "y": "-3.9525920142398663", + "z": "-4" + } + ], + "uuid": "d929be32-a619-415b-9942-fdd7828ea7b8", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6ed58450-4574-cabb-9ab2-ab77cae1e079", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-143.20667", + "y": "-7.35559", + "z": "47.06283" + } + ], + "uuid": "2fab4ec8-4259-927c-ae67-3cbba957ed85", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b224992b-bfa6-956f-b11b-5d77a628da7d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-143.20666616339167", + "y": "-7.35558728703154", + "z": "47.062828526646626" + } + ], + "uuid": "a06cd4f5-508f-2765-1849-793961cf376a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84d0ce30-a7f2-9f6e-aa52-5d7d37a6beae", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1.14715", + "y": "-1.61341", + "z": "0.28449" + } + ], + "uuid": "e6e07171-f651-3dbc-0fc6-2e83c8a3cfcb", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "39140889-429c-e28b-38d2-2a897e2d18fb", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1.1471528727020983", + "y": "-1.6134145682231948", + "z": "0.28448851944583664" + } + ], + "uuid": "9184acd8-6ccc-a6dd-4d50-f5d9d037124e", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73fcdb54-8786-6049-421d-f68b080ec275", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.45208", + "y": "-30.66101", + "z": "-10.44153" + } + ], + "uuid": "1694e766-072a-d586-3a83-2a02ada4728c", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6c472d2e-34b4-e3d2-9af0-74d61a59745a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.4520765883030435", + "y": "-30.66101201830452", + "z": "-10.441532675924464" + } + ], + "uuid": "e13f97f4-8242-9634-3daa-c0e4af4709b7", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6259b0a6-1869-4126-c25f-eb5b2e482bc2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3d47b6fb-347b-b218-4ca8-0097ef279fbd", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fa1ef393-2290-1fd8-b588-25da736ce170", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9ada7589-3da5-02d4-9be2-ed19cbcaef5e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "62.5" + } + ], + "uuid": "6425f828-3442-5d06-79a6-09435918b138", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9f1463ef-cba0-1153-676f-2dc54e655d90", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "62.5" + } + ], + "uuid": "5a5d41bd-bf71-1fb3-1b5e-6c7b9c5b3dfb", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dc3fc571-072d-0c37-0e2a-5bdc568b7440", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.30874", + "y": "-4.43505", + "z": "-2" + } + ], + "uuid": "880139a4-aea6-a71b-9715-599b078c0b36", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5364610f-f280-7570-dff7-6f64677e5c53", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.30874306617517", + "y": "-4.435054165891108", + "z": "-2" + } + ], + "uuid": "c737f16c-6ea9-8367-11c4-1b53cd29a120", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c1385604-8011-b280-e2ed-c61fd473c5ee", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0b26c13a-bba3-bb52-e932-5e39af892d59", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "16bfd6f3-1cc6-546e-5b1f-5ab9f134de82", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7fe1966-347d-b492-e086-d70e25322102", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fac44d1a-102e-f1a8-dd13-2429074625d5", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "87866e2d-2606-bd13-a059-ee59e48fc479", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3761481e-a7e8-3183-42ef-b8744fc45551", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "67.5", + "z": "0" + } + ], + "uuid": "793e0ad3-1f12-e9a1-0968-ccb4fad1c7e1", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e717633a-94d7-7484-be2e-82faafa6f701", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "67.5", + "z": "0" + } + ], + "uuid": "74e33563-511e-bd8b-e211-61ee67785d1c", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "33462968-2cb9-a24a-abdc-afa71f09228c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "89d7b31e-f52a-0ab4-998f-4ad5ad377c60", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "33e67b41-ca62-b06e-3456-55275d675452", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "505e8d1c-debd-3d96-eeb9-2426d2d45f9f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "908e711d-a361-6858-46c5-b01b74254149", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1951fd7c-91d1-7d3a-d06f-30316b010238", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9d3e9ee0-2386-d747-2cf3-163b7d8ef909", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8866ea2c-861c-7bce-18c7-a509101d4337", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.36603", + "z": "-0.36603" + } + ], + "uuid": "ff4bb965-c3b8-dea5-7554-2c214ef84a98", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f02ea2d1-7c59-f3f5-381e-6e5b07917e31", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.3660254037844386", + "z": "-0.36602540378443876" + } + ], + "uuid": "4aa5f310-9bc5-5133-b2b0-de8c4e2d5a50", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4d43debc-b170-940a-b9ff-bb35ecdbf608", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "-70", + "z": "0" + } + ], + "uuid": "501e1730-2d7e-8a44-a634-bf48035a2cd0", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1d4b2292-7513-9f0e-9829-30037391641b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "-70", + "z": "0" + } + ], + "uuid": "fcde3d97-cb45-e539-673c-1f533c2f447b", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e4fd6d55-9de3-cd4b-29a1-e696c5ccffe4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "355d3621-36a3-37bf-0c3b-304b421449bc", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1080d942-e9aa-dcb0-bbd2-9fc85333bb38", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9beafc7f-599c-443c-be4a-1120bc288444", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "90", + "y": "0", + "z": "0" + } + ], + "uuid": "38395a99-a1ae-524b-4f46-392e4a5eef0d", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fbab0569-3456-36b6-a0d7-2424b1824014", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "90", + "y": "0", + "z": "0" + } + ], + "uuid": "6b192be6-42cc-eeb4-0523-b9f97c11dc16", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "22fc8739-db87-20af-005c-30a1ad59bb78", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b76c3938-b03a-0e39-9b1b-bd6b7dcabc14", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ee96a3c0-6a1a-0ff8-8227-ae99dc84a97b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "32.44548", + "y": "1.29256", + "z": "15.16955" + } + ], + "uuid": "01d0016b-fa6a-00ec-44f7-c99e76a3c9a9", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "99dae464-dc63-ec17-4fb7-1f6e6d247b1b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "32.44547918394119", + "y": "1.292562968951188", + "z": "15.169550609715316" + } + ], + "uuid": "3c8fffa4-bbd3-925f-0584-2b3310bf7c59", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5cf8bd28-3f33-987c-24fe-20d9463c24d8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "3.2642", + "y": "-2.88014", + "z": "-3.61923" + } + ], + "uuid": "1c535a01-4dd4-3b79-c9f6-bd9887e3df5c", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "17c8355c-8f41-8b52-f089-0fbd17c67c15", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "3.2642046858350464", + "y": "-2.8801444529444797", + "z": "-3.619226865229767" + } + ], + "uuid": "8a53d04a-4dfe-577b-0854-06a43e989776", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f8c747a8-f43c-6194-bfef-4ed613b97380", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "6a937d65-11c9-7e7e-01bb-e91cf3959cad", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "fa8e0ad6-29de-6db7-5e28-dc7bdbd1bf70", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "71779ff6-2459-0614-0fbc-b468550591c4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-33.410302834881804", + "y": "-5.808792307250769", + "z": "-10.135383704886863" + } + ], + "uuid": "a217ce2e-69ba-3ef3-06ce-d40df6703042", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "925b29c9-b741-e516-34b6-6e8372dbadca", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-33.410302834881804", + "y": "-5.808792307250769", + "z": "-10.135383704886863" + } + ], + "uuid": "caf8bce5-98d0-7f95-bd59-e0f983b277e5", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "993ab6be-41c8-5434-6a79-d9b853b4907c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.66615", + "y": "0.89845", + "z": "0.03775" + } + ], + "uuid": "1a3aa9cd-12e0-2d4b-31f2-982a89cec9f8", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f2509d33-a4bc-c071-3dd5-d0b77aa037eb", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.6661491891061698", + "y": "0.8984540043125622", + "z": "0.037750366584156536" + } + ], + "uuid": "04912577-ce6a-6359-23b0-de4df06fb0be", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b5cd954c-c6a5-1653-f38d-6c151a37e550", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "0.8999999999999999", + "z": "1.1" + } + ], + "uuid": "cce98ed2-0208-f6e4-becd-dcebb90d3a2b", + "time": 0.08333, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "1949b320-7a0e-f85d-163c-60bbe54bdb5d", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "0.8999999999999999", + "z": "1.1" + } + ], + "uuid": "0bf73bb1-e77c-2d06-e078-78462fd2ebe7", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9835a4a0-d116-c2e3-0bd7-0ec2f991971b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bc7bb7d5-b346-93b0-9adf-6904f097c9b5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b09953ce-3c70-6e73-8e61-b59cebf05c22", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "987befe9-00b9-a7cc-e987-b01852b33de9", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "da925ed9-821d-183e-6e0c-41eb27c29302", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d17f2510-ba69-5dc1-2e9b-01a4d706bead", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_glad\"])\n" + } + ], + "uuid": "1f7b11e2-bbc0-aaa8-f4db-09043814cb91", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_glad\"])\nsounds:playSound(\"menu_decision\", player:getPos(), 0.8, 1)\n" + } + ], + "uuid": "ffb0fd4a-c89b-732b-2786-99dec9d10b95", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_glad\"])\n" + } + ], + "uuid": "a4671404-d1a1-3467-fbb8-9653352415f4", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_glad\"])\nsounds:playSound(\"08_menu_decision\", player:getPos(), 0.8, 1)\n" + } + ], + "uuid": "04daf86c-8195-98c6-3f30-5cdda18fc16b", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66b88688-8e4d-7b13-0ca3-df91d690716a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0fe7cbd8-8ac5-aa60-2ca2-e9b7b1499276", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1f690761-d2e7-c9f3-1241-3af176bf267d", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6cb18883-16ee-779f-7006-ea2b9a83e9c2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "84fdfdc3-110a-d60d-74fa-9157c8bb14f1", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "85eb8e9e-25b2-104e-f51e-16818757e1f1", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "07f80571-f214-eb3d-6eb2-d80a160f8056", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9a68304a-0e06-1aba-ce12-2469c0560c9d", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.16043", + "y": "0.38268", + "z": "0.90984" + } + ], + "uuid": "ee36d23d-21be-e40b-ecf1-9d736f396939", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0670d4b9-9c9c-058f-2891-c217882de5b8", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.16042999720436046", + "y": "0.3826834323650897", + "z": "0.9098437264664097" + } + ], + "uuid": "e3c41546-3cd1-6930-a357-f0ffa1fe7ad7", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "f3947557-7523-f316-443c-f020ad15fb5f", + "name": "taunt_unused4", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0cfc60e9-de84-b123-035b-a35df7b0ac72", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "41bec06d-9680-80fe-b1f9-ec75603abe77", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "f57ffe52-47cd-7f14-d9fe-7e4b642238c0", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "bbc16ba6-c293-a1e0-b40f-424ad825933f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c053e6aa-9a12-3a66-3bb1-2e7f05405c72", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "80c2b44c-2713-8a91-b71e-741bd6b0741c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cf42347c-f25a-83d1-fbe1-246ec9c9289b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ea280803-08b4-bac8-4b68-bdece334f0da", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15.45672062917447", + "y": "16.152640041761515", + "z": "-28.35638330254642" + } + ], + "uuid": "a5b51832-022f-99a6-2ed3-4097c47f9550", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15.45672062917447", + "y": "16.152640041761515", + "z": "-28.35638330254642" + } + ], + "uuid": "18b03a65-c698-0d6f-584e-c82111677859", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7c2c3a14-b8c0-875c-821f-60abeba44208", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8ccf6d19-9d80-4000-28a4-b70d5c7b209b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6ed58450-4574-cabb-9ab2-ab77cae1e079", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca86a6f6-6558-5484-b677-e9f0ef277a06", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "-61.95323556855146", + "z": "97.80643428638405" + } + ], + "uuid": "194ecb76-1c2d-3c91-8860-c0ee2a41d7d8", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "-61.95323556855146", + "z": "97.80643428638405" + } + ], + "uuid": "ae92aa89-ceeb-0dc8-551e-c43ee5450247", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84d0ce30-a7f2-9f6e-aa52-5d7d37a6beae", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0a27ccde-7ee7-2c9a-b83d-0a20a988eb94", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9cc4f6aa-ebd5-2a89-39e2-e33dc6ac08a0", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "10b6252b-074f-0ebe-8d76-a6a75ab705a9", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "90ab77a7-25b4-a6a1-1ca8-d0b60821be7f", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73fcdb54-8786-6049-421d-f68b080ec275", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8fe5eb94-0dcb-11ca-81a3-746a37db9c8a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "64c52ea0-40b7-d679-7fec-0d3837f7a43d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3d47b6fb-347b-b218-4ca8-0097ef279fbd", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "45db5aa3-ea0e-80ec-b93e-4a8229d375bc", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "79b36ad7-0116-731b-8327-804057f339ed", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9ada7589-3da5-02d4-9be2-ed19cbcaef5e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ad1cc7a2-fd04-fa9a-659a-33323707625d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15.45672062917447", + "y": "-16.152640041761515", + "z": "28.35638330254642" + } + ], + "uuid": "3020ae28-1a3d-917a-9e75-897b0c7cdb15", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15.45672062917447", + "y": "-16.152640041761515", + "z": "28.35638330254642" + } + ], + "uuid": "2d7076f4-51ba-89e4-5dd4-693439d5f1dd", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dc3fc571-072d-0c37-0e2a-5bdc568b7440", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7aa1d257-3ec1-487e-2c9b-8c4bc89d0da4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1ac26d7f-bb51-c0da-3f25-a321e81ef050", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0b26c13a-bba3-bb52-e932-5e39af892d59", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "12aa8f1b-de7b-d057-bc45-3a121783bbce", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "372a699a-b3be-cab6-ff78-cc6169dc154c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "61.95323556855146", + "z": "-97.80643428638405" + } + ], + "uuid": "665b0964-7c89-a3f5-6233-38f3d0f03159", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "61.95323556855146", + "z": "-97.80643428638405" + } + ], + "uuid": "b73e77a8-492e-253e-79f0-966152b85cfb", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fac44d1a-102e-f1a8-dd13-2429074625d5", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "48d23818-a08d-1837-89e5-16103f9183c2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6913dc75-8503-ef31-8974-0ce1c29d871e", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "cb42be35-bec9-e574-ec7f-d11740e816e1", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "d8c4c82f-a9af-5a51-6146-f32c4878ecd6", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3761481e-a7e8-3183-42ef-b8744fc45551", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3e4685c-93e1-245f-6857-ead77aa319e9", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "35", + "z": "0" + } + ], + "uuid": "e78a68bb-7a46-3ab5-f8b7-ae09aa815514", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "35", + "z": "0" + } + ], + "uuid": "c6a5bffc-8abe-6abe-bc87-a17774a3b0af", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "89d7b31e-f52a-0ab4-998f-4ad5ad377c60", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f624f767-b5f9-501d-9a9f-e7d2f317a9ff", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e5417df9-329a-3d11-367b-53bc1b1cb4ac", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "505e8d1c-debd-3d96-eeb9-2426d2d45f9f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66877b8c-2a8a-f600-74d2-55332245b2f4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8866ea2c-861c-7bce-18c7-a509101d4337", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2075332d-31eb-d8ca-20ad-32e9cce035a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4d43debc-b170-940a-b9ff-bb35ecdbf608", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "99c6da90-e985-6780-b081-6359f8f60a68", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-35\n", + "z": "0" + } + ], + "uuid": "a1c5bc72-17ec-ad42-cd55-45f8e912e151", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-35\n", + "z": "0" + } + ], + "uuid": "af2cf313-fa2c-9b4c-dd99-6b7f77a4851c", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "355d3621-36a3-37bf-0c3b-304b421449bc", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5f511d99-da81-a68d-e286-c1f9f74d8987", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b555ce55-1574-a715-bae1-6d1040ac2238", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9beafc7f-599c-443c-be4a-1120bc288444", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7b066be-e63a-4645-5259-87a3fe6eae92", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "22fc8739-db87-20af-005c-30a1ad59bb78", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27fdc3bf-865e-cf54-bc33-4a062815e98c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6080078f-2db1-ff8f-8473-9e1958173e3a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ee96a3c0-6a1a-0ff8-8227-ae99dc84a97b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "25a5f160-773b-a451-c010-e3ab9c484e53", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "d59ae665-6a97-b3ef-bd15-b5ba2f604892", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "26288ea9-fb02-7bcd-a186-9c4e61b58407", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5cf8bd28-3f33-987c-24fe-20d9463c24d8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8405f81c-1273-b3dd-bc63-2d1edcb2cb54", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "6a937d65-11c9-7e7e-01bb-e91cf3959cad", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "824ae08d-7766-9978-f030-e0f1afb5be53", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "a15a8605-9a60-109d-f32d-883333118e1a", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "71779ff6-2459-0614-0fbc-b468550591c4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "67f08c91-2c7f-ebcc-6bed-ed654d3f4a87", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "22bd6b39-ad43-22e1-973e-364bd0fd0560", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "5c956304-94b8-f6c2-82f4-6e634c0f307a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "993ab6be-41c8-5434-6a79-d9b853b4907c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27491c6a-8e07-2d89-2b1a-81e9d1c4b9a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b5cd954c-c6a5-1653-f38d-6c151a37e550", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f0e3f2c7-b9f8-2a2e-da5c-729ea2c8c7a5", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bc7bb7d5-b346-93b0-9adf-6904f097c9b5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3b43f3d-fde2-81da-bbb2-773bc07f742a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "da925ed9-821d-183e-6e0c-41eb27c29302", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bbbb90e9-f728-b57b-afe7-98210354a38c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "" + } + ], + "uuid": "f9250ffb-950c-70f9-0a00-601ee68ce649", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "77967132-a36c-ae84-7af1-57675ea37ef4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "9958c336-cf46-decc-0056-cbf7955f075e", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nsounds[\"04_coin\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "aa8995b9-60af-bb4d-a4b4-12f9b2c2c102", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0fe7cbd8-8ac5-aa60-2ca2-e9b7b1499276", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e4803eb9-d16b-3b8d-c5d7-44dd672d1d72", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9297dfb1-97b0-b0a9-23fa-8d048e252309", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b3289893-5a86-7124-e2cc-b4633b872a26", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6cb18883-16ee-779f-7006-ea2b9a83e9c2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c2aab87e-923b-a032-9183-ed1717ce6045", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9a68304a-0e06-1aba-ce12-2469c0560c9d", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6fd8ec7d-0f61-1c2a-3339-876816078aa1", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2c8a5278-d47a-2614-d56b-b7d62ff4274d", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d773b4a5-6e83-678e-47e2-95b1ee70dcd4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bead5c35-910c-abf2-2a14-306fc4dc5040", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "0fe9582e-afee-9945-c051-79e1996ab231": { + "name": "RightHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "614fea28-c5d5-996d-7c13-434e513e00ea", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3c13eff-724a-652d-bda5-49f135d25e57", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "0e70788a-c661-8b5b-0d36-e9e8bf14d836", + "name": "taunt_effect", + "loop": "once", + "override": false, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink.tauntfx:setVisible(true)\nmodels.akira_eiko_olivia_pink.tauntfx:setPrimaryTexture(\"Custom\", textures[\"taunt3\"])\n" + } + ], + "uuid": "020fc7aa-4275-9bc2-94a7-f6b1daf6cd53", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink.tauntfx:setVisible(false)\n" + } + ], + "uuid": "a15a6288-7be1-7cef-ea1a-ff323aa72fb2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink.tauntfx:setVisible(false)\n" + } + ], + "uuid": "0f011f7c-4d72-259b-466d-ff1ec123e891", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink.tauntfx:setVisible(true)\nmodels.akira_eiko_olivia_pink.tauntfx:setPrimaryTexture(\"Custom\", textures[\"taunt3\"])\n" + } + ], + "uuid": "c81b53f4-37c2-837c-fb92-ac23ed0a2672", + "time": 0.04167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink.tauntfx:setVisible(true)\nmodels.akira_eiko_olivia_pink.tauntfx:setPrimaryTexture(\"Custom\", textures[\"taunt3\"])\n" + } + ], + "uuid": "77fca4e3-223a-271c-7875-56cdfa7db054", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + } + ] + }, + "f54dd531-dc13-462e-aea3-bf2d6416fae6": { + "name": "tauntfx", + "type": "bone", + "keyframes": [ + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f49679dd-e8ae-88c4-880c-d4b09ef50379", + "time": 0.125, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.2", + "y": "0.2", + "z": "1" + } + ], + "uuid": "5f380102-ba4f-9b19-c9d3-f70e5c0710b1", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.2", + "y": "0.2", + "z": "1" + } + ], + "uuid": "31be5377-ace4-8da9-377f-0a7738a4fe5a", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.2", + "y": "0.2", + "z": "1" + } + ], + "uuid": "e854fe15-95cf-6e8e-3cfe-01718e298090", + "time": 0.45833, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + } + ] + } + } + }, + { + "uuid": "18404143-4c8c-9460-e8be-e3f672cfb9a1", + "name": "spyglog", + "loop": "hold", + "override": false, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "d2c73f9a-0086-c16e-855d-3ca1f7c220f1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-12.5" + } + ], + "uuid": "3aae9e24-2a13-a944-c001-f2a6dd73c5a3", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.56229743168842", + "y": "-4.2453", + "z": "-11.76782" + } + ], + "uuid": "4d2f793c-2ff0-0057-9d6d-270f01145b07", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "0", + "z": "0" + } + ], + "uuid": "0f2f957f-3751-455b-624f-247a6899fa9b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-32.9338", + "y": "-26.94622", + "z": "-18.89595" + } + ], + "uuid": "03139a11-c655-0481-01ec-32ea3d1d9820", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6b600c6c-e559-3dfb-5396-68a03edef977", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "17059338-787e-3f11-e1a2-ef948c7a4acc", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "458fc697-8c1b-c13d-2f3a-15f61840f187", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.29409", + "y": "-0.99321", + "z": "-1.66786" + } + ], + "uuid": "55ddc88a-24ac-2c5c-a00d-b737b62b9028", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "f402a4bb-e557-5c75-ee75-cb89b7e18ec7", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "39c987af-cf81-e765-293f-d68b7b5455ea", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "cfaeacce-4968-d72b-9a37-e2f0fb4255e8": { + "name": "RightCamera", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "151.51949", + "y": "-0.13264", + "z": "20.07729" + } + ], + "uuid": "bb8e30f9-ce82-d434-7291-3994a3a8e00f", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1.52136", + "y": "-4.17991", + "z": "-0.46241" + } + ], + "uuid": "7d747abb-8645-4f31-8478-086c665262ba", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "7981c3ce-5587-e07c-1403-b1c7046bc35c", + "name": "spyglog2", + "loop": "hold", + "override": true, + "length": 0.25, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "0", + "z": "0" + } + ], + "uuid": "0f2f957f-3751-455b-624f-247a6899fa9b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-32.9338", + "y": "-26.94622", + "z": "-18.89595" + } + ], + "uuid": "03139a11-c655-0481-01ec-32ea3d1d9820", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "cfaeacce-4968-d72b-9a37-e2f0fb4255e8": { + "name": "RightCamera", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "151.51949", + "y": "-0.13264", + "z": "20.07729" + } + ], + "uuid": "bb8e30f9-ce82-d434-7291-3994a3a8e00f", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1.52136", + "y": "-4.17991", + "z": "-0.46241" + } + ], + "uuid": "7d747abb-8645-4f31-8478-086c665262ba", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\n" + } + ], + "uuid": "1a61804c-f734-5ad5-b2c3-b418ab59e5ca", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\n" + } + ], + "uuid": "69cb741c-2302-e207-0691-8444a583a3b6", + "time": 0.04167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\n" + } + ], + "uuid": "55bfc805-c5ed-cfe8-1eaf-5c83a801913f", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\n" + } + ], + "uuid": "38fe1d76-d089-3544-bc4f-e97263cee5d1", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\n" + } + ], + "uuid": "397dda3d-7ef4-61d4-156a-5bcc2de38b29", + "time": 0.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\n" + } + ], + "uuid": "30ff8bc8-00b3-345e-ac7f-f60bc2b8eaa0", + "time": 0.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\n" + } + ], + "uuid": "0c7736e5-ae39-75ee-7b62-c802068d05d8", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + } + ] + }, + "0fe9582e-afee-9945-c051-79e1996ab231": { + "name": "RightHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-23.83613", + "y": "3.9733", + "z": "11.42727" + } + ], + "uuid": "c32bfbed-44fa-9d43-1f37-b383cc70160e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "dc69535f-8097-c7c6-74a8-b01e5f0624c1", + "name": "spyglassL", + "loop": "hold", + "override": false, + "length": 0.04167, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "31a2b9d8-e17c-0510-66c2-52b79bf002d4", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-32.93379627566355", + "y": "26.94622", + "z": "18.89595" + } + ], + "uuid": "7a684547-8f19-6a03-32f4-f2c63cef18d9", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.56229743168842", + "y": "-4.245301306521469", + "z": "-11.76782246222956" + } + ], + "uuid": "4d2f793c-2ff0-0057-9d6d-270f01145b07", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9638ea0a-6e1c-f5c6-6168-089ca9a797f5", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "12.5" + } + ], + "uuid": "c0499526-9c8f-c956-c16d-8ecd4c4f6e6e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "6290eb75-48e0-25fc-444b-5cf7fb54d01d", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "4dcf7f0d-5259-3432-ca1e-6109b4984fb2", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f40d0485-8070-7481-cd1f-39f3b3085c7f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "e2631d6c-a355-ec07-9490-2d7fee83faf5", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "ab9b46fd-b880-726c-69b8-adf7a51b1b9c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.29409", + "y": "-0.9932127269163483", + "z": "-1.66786495129749" + } + ], + "uuid": "39a804c5-c626-f3a4-9e12-0260ffa29e50", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "23f3c5ec-42a7-b084-4f7a-541e0d2a8b18", + "name": "attackR", + "loop": "once", + "override": true, + "length": 0.25, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9f8036e9-3072-e455-2672-09c4400623cc", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "fe94a616-9042-9316-dc7e-c01aa0b4c5b4", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "0e74b196-b406-ed39-d8d0-56f12d3dd758", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "023cbade-d0ad-470b-65c8-2140169e2f43", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "deedeaf5-d8aa-9434-d4d2-baf0d736e4d9", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "89564cbf-71ee-e468-9006-0718fe7a8a28", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "47.5", + "y": "0", + "z": "0" + } + ], + "uuid": "b4794697-6085-e0d2-0ae7-015f0d533d9c", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "47.5", + "y": "0", + "z": "0" + } + ], + "uuid": "0c19f845-725e-d6de-e0fc-e9c7c099d229", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "b4a52734-c287-4dbf-f8d3-af10bb00bc9a", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "0073bd25-e00a-50f0-569a-1bd5f3e38da7", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "0" + } + ], + "uuid": "b768c63d-f82f-8474-ae9e-ab8e661b5680", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "0" + } + ], + "uuid": "0b96796a-3d5b-0c4d-2928-7fed2c66f03a", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "85e097ab-c6a2-39aa-359b-7c41d8fe2ad7", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "dc4e891f-e038-b25e-5fbd-9495f2dfd50b", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1" + } + ], + "uuid": "917c9b9f-dc00-d5db-20ad-b569ba56e101", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1" + } + ], + "uuid": "530f3477-2342-5796-58c9-cb5502e51a4a", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "f165209c-8e5b-1fb7-76b2-f0c6f4179fe3", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "8c297b2e-c351-7751-f6c4-505507e63b7f", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "ef3a53d3-8405-0fef-04b9-dd6e1166e983", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "db21c900-0c68-cf64-577b-24480fbbd2d7", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "55", + "y": "0", + "z": "0" + } + ], + "uuid": "885537a1-fa78-cb84-8d6c-1e6548e9621e", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "55", + "y": "0", + "z": "0" + } + ], + "uuid": "c74b5121-4c27-7cec-5535-be590bca2b7b", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1" + } + ], + "uuid": "eef66488-1da4-1e36-0429-142fc3fcd166", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1" + } + ], + "uuid": "449c59c4-57f6-73f5-24c9-306a263f6f44", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "2d6a455b-ea63-0353-7537-98c0325507d8", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a9a0c460-3177-e1f1-a338-6507de4dba40", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "76ffce52-b0d2-51a4-760f-6d82ce5bd489", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "019f77d4-9f63-bdc5-b9b9-120e37a85e3d", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-35", + "y": "0", + "z": "0" + } + ], + "uuid": "e569f9fe-977b-fb76-7ae3-9cec2921484a", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-35", + "y": "0", + "z": "0" + } + ], + "uuid": "557a3427-46d2-ca92-57da-92153efc1a5e", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "aeaae414-bc3a-bac8-63b8-db58153738c4", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "f6b2ab64-ec07-c5cd-aa6d-171acd53beee", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-97.5", + "y": "0", + "z": "0" + } + ], + "uuid": "f906a117-a936-0729-04a3-7e382065be36", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "0" + } + ], + "uuid": "7c304134-63d4-c3bb-5baa-d38544b7df1e", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-5" + } + ], + "uuid": "5088f63e-c25b-f873-d75a-45c6f3806199", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-2" + } + ], + "uuid": "e41a33f0-38ee-04f3-1be9-65f42cda325f", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "4f0974ae-819a-e4c8-a322-fef01114cc7e", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "7396e187-51af-4e83-5d54-aa86ead3b0ca", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "d5c28e0c-2ec5-296a-42c7-59967676aebe": { + "name": "RightItemPivot", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "90", + "y": "0", + "z": "0" + } + ], + "uuid": "13a57209-c8e2-26be-7c73-35053e43403f", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "45", + "y": "0", + "z": "0" + } + ], + "uuid": "a974d441-7a55-7823-68f8-a3a78dd2d7a4", + "time": 0.25, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "f32467b1-8943-0045-2ba3-2307abff9a71", + "name": "attackL", + "loop": "once", + "override": true, + "length": 0.33333, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "bde49d4b-107b-7b8a-fef3-4d44ebc599bf", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "57d87a70-8004-b32e-df10-8f5391e02396", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "cadbf4d2-c951-087f-de93-0e1c9f6aa3c5", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "e8138226-7fc4-3e4e-b42e-094be418177f", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "c6d07754-a192-1811-63ad-1748d3409f69", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "fbde5ee4-2704-25e7-0a3d-1793aafaf398", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-97.5", + "y": "0", + "z": "0" + } + ], + "uuid": "5eb0601e-286f-8714-24bf-0b865e71f7ef", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "0" + } + ], + "uuid": "6208fe43-888f-1979-4f7d-48d2fef47ef8", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-5" + } + ], + "uuid": "782d140e-7bf5-0921-0592-5e3110e8437b", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-2" + } + ], + "uuid": "c17cc431-0711-71d5-ea70-2ead7aa4b95a", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "f702dbc5-d023-4848-b4f4-8e78540c2897", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "0f24299e-b4e9-9f5c-ad13-023760344d52", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "55", + "y": "0", + "z": "0" + } + ], + "uuid": "4d11b5b5-fb78-c704-5380-49f3ee89cfa6", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "55", + "y": "0", + "z": "0" + } + ], + "uuid": "548623b7-7c52-bdda-529c-a904e1b06e8f", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1" + } + ], + "uuid": "8bf0ae45-716e-bc1c-5f87-81e226ce918f", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1" + } + ], + "uuid": "65336a59-fa0e-165d-8b9c-edcd4c4f7f4b", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "731de1ce-93ca-0567-e24c-e207f4e14ccb", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "857e67d2-1945-d172-52d8-fd3516314dcc", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "0" + } + ], + "uuid": "36ad6bb8-620f-1d9c-f91e-199f4c3cc638", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3e755cb9-1a71-224b-2a0c-a03ea13d1289", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "aa840502-d58b-8b25-77ed-89d3022aa5c6", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "f05b54ad-eb21-2168-411d-43a337c4e239", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1" + } + ], + "uuid": "d7db17cb-8ceb-4d0b-fd39-ffce1d5f8b5a", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1" + } + ], + "uuid": "dd6f0266-02dd-fcba-bdc4-c27f0cbec806", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "673be0b4-28bd-fe6e-7b6b-285e48fc5da1", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "3fe8dbae-87c2-0eab-85dc-bdd7ea22b14a", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "46d5658c-65e0-6407-5e03-5b3cf74f06dd", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "01132bb6-eb6b-adf4-cb1c-df7b95339b56", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-35", + "y": "0", + "z": "0" + } + ], + "uuid": "6ea5223e-2a75-aec5-d572-1eeb944f23c8", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-35", + "y": "0", + "z": "0" + } + ], + "uuid": "49ca3314-4fb2-8b85-5a94-01967000d96f", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "643ba79a-cc39-a1c5-c45a-14a98363bd6f", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "a1d8b7d1-d7d5-bbe8-de5d-1fb85670d2b0", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "47.5", + "y": "0", + "z": "0" + } + ], + "uuid": "8d263f8b-0a85-2fbe-3a85-5c8966e22fe2", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "47.5", + "y": "0", + "z": "0" + } + ], + "uuid": "0be4efb0-df10-b663-de7d-11acd7a53755", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "8befb119-b02b-769e-4937-7d04e2334dd4", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "874a6953-c2b5-ad3f-0ba7-1afa717a7fa6", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-35", + "y": "0", + "z": "0" + } + ], + "uuid": "f92126c9-7dff-6020-659d-4a84dfb0b036", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-35", + "y": "0", + "z": "0" + } + ], + "uuid": "e8b03927-50dc-51e5-b394-bb50a67b549e", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "7ee53e66-d838-810f-c946-4d8840c31c31", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "47b662bc-2e8d-2432-4716-e39b21f36787", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bbd0e445-5146-a329-c36c-6a3ceddc7cd5", + "time": 0.33333, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9df644d4-b183-5aa8-8c3e-e33b2353ed95": { + "name": "LeftItemPivot", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1fa045b6-7f3c-4b6f-d11f-c10c6b44dfb4", + "time": 0.33333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "90", + "y": "0", + "z": "0" + } + ], + "uuid": "1ff1aeb1-ec24-ed24-7cb9-7d75a9a1d6d3", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "45", + "y": "0", + "z": "0" + } + ], + "uuid": "9f7bf003-19cd-1e61-0ea8-0a4e29422d2a", + "time": 0.25, + "color": -1, + "interpolation": "linear" + } + ] + }, + "d5c28e0c-2ec5-296a-42c7-59967676aebe": { + "name": "RightItemPivot", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "45", + "y": "0", + "z": "0" + } + ], + "uuid": "7aa1e8ca-1735-2206-7dbd-d79e65bb55ed", + "time": 0.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "90", + "y": "0", + "z": "0" + } + ], + "uuid": "972fd571-894e-4b27-0390-b45dc9e4429b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "0fa2cd06-6240-90b3-1825-6504a833ebdb", + "name": "afk_start", + "loop": "loop", + "override": true, + "length": 2.125, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "90", + "y": "0", + "z": "0" + } + ], + "uuid": "9572f7b0-bc5e-b966-5098-ed7948a59a9b", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "be11dd31-439e-bcc0-0b99-eccd52d5b192", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b4052b5b-d79a-c37d-c159-1a29dd3da9c8", + "time": 1.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "6337b59c-5f92-2e60-e5ea-520273366260", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "14" + } + ], + "uuid": "272e3ff8-9a15-ef73-6611-a51461960f37", + "time": 1.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "19" + } + ], + "uuid": "ea048fc6-ff1c-1b29-e278-8bd801b8f75a", + "time": 1.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "15" + } + ], + "uuid": "37242eca-172c-504f-1378-0200bfca6921", + "time": 1.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "17" + } + ], + "uuid": "9462178a-9039-9b75-db90-00f3c5002a5e", + "time": 1.875, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d265bb37-bed4-71e2-4914-5c2b1ed322ea", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fe47a50a-851f-cd12-af30-08189f5ff782", + "time": 1.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.2", + "y": "1.2", + "z": "0.8" + } + ], + "uuid": "27f9d6d8-8d56-ec4d-1029-d50ba8630bf3", + "time": 1.375, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.8", + "y": "0.8", + "z": "1.2" + } + ], + "uuid": "d812c492-bc63-42b8-750f-4f523cd43111", + "time": 1.5, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "1.1", + "z": "0.9" + } + ], + "uuid": "ea49108a-328a-2a18-bc88-3fa14cfe871b", + "time": 1.625, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.9", + "y": "0.9", + "z": "1.1" + } + ], + "uuid": "9509c290-5316-2439-83ef-368dd39354ab", + "time": 1.75, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "164b7c96-9574-25ee-bea6-af6430bb742c", + "time": 1.875, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "3e4c2146-fab9-8979-b908-89a6b06e32c0", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "3e478c55-9032-088f-3729-77fdb2dc3af0", + "time": 1.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c28c465a-05b2-29bb-b396-30298da1da1b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "25" + } + ], + "uuid": "6ee3a78b-af63-12cf-6c04-a6557bd3ef39", + "time": 1.25, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-449.99998614642845", + "y": "-85", + "z": "339.99999" + } + ], + "uuid": "5e014a81-89fd-2090-c3fe-0bf5f7049ba6", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "eef178b0-2249-6ad2-4b74-66deed1abb98", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "14ffbf64-8ec4-b88d-9f0b-8e2e38a78640", + "time": 1.25, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-449.99999", + "y": "85", + "z": "-339.99999" + } + ], + "uuid": "302b4eb4-29ac-4ab0-b645-df4a2daa5d20", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b651d2b5-0715-b697-7a84-805d2a010423", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27ec4edb-eca9-5e0a-a600-9fdfa65cee5c", + "time": 1.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "17799bb0-8660-5ac3-c6e6-bfdbe5af588c", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5bf0cf55-dc2d-a74f-91a9-3aa5d3314a31", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e0ceb289-c7be-b008-21d9-bc7157e150da", + "time": 1.25, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "17.5" + } + ], + "uuid": "ca203144-0b7d-14b1-48e3-5b5c3cda4cc1", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "62d8b275-061b-3418-ab53-b3bcb2990690", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1ce22c85-8689-170e-4d42-92c957aa7b0b", + "time": 1.25, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-25" + } + ], + "uuid": "c7520bbc-c8fe-e8f9-7de4-e9f8af5c00ef", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "60288599-2edd-34b0-94da-357d510e3b45", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "941d9890-606e-dbfd-a9c4-9e44fb901d68", + "time": 1.25, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_sleep\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nsounds:playSound(\"08_menudecision\", player:getPos(), 0.8, 0.2)" + } + ], + "uuid": "0739da13-ec47-b986-81e1-3a6d441d90e7", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "68f1ec84-a904-2f2f-8acd-06e534371413", + "name": "afk_start_and_loop", + "loop": "loop", + "override": true, + "length": 14, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "60", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "90", + "y": "0", + "z": "0" + } + ], + "uuid": "16167284-b7d3-a5bd-6227-189062d0d9e0", + "time": 2.66667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73a5db2f-6ee3-7175-305d-b08cd07b8529", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "28ec0915-f6d6-9b10-7803-12c35dd5bb53", + "time": 2.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b04bc2f5-0bd1-74c2-a00f-294655fbad78", + "time": 1.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "15" + } + ], + "uuid": "f98921df-c795-498e-92e1-024be9a269ad", + "time": 5.29167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "19" + } + ], + "uuid": "c28e4e6a-6377-6347-679c-60901f5257cc", + "time": 9.66667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "19" + } + ], + "uuid": "ea048fc6-ff1c-1b29-e278-8bd801b8f75a", + "time": 3.29167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "dfb9d7c7-fb7c-25da-5a9b-e6d3d05daef8", + "time": 2.66667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "14" + } + ], + "uuid": "7c0e3733-4beb-6f02-5b06-bdff395e806a", + "time": 2.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "19" + } + ], + "uuid": "12e86de2-049f-07db-0d0e-44789f23f638", + "time": 2.91667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "15" + } + ], + "uuid": "f39de5bc-af2e-b96d-ab1a-e8782d2a8cd3", + "time": 3.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "17" + } + ], + "uuid": "0eebea51-b60b-8984-1f67-2f706bbd01de", + "time": 3.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c4cdcad5-2637-5215-4f54-07ebb3174f96", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "38727e01-fa20-9cee-bbb6-2405c8273f78", + "time": 2.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "15" + } + ], + "uuid": "69c5708b-4889-672c-6002-e2677a480c7c", + "time": 14, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "717a552c-d73c-eff5-c7c4-cdcf7bc45d20", + "time": 1.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.8999999999999999", + "y": "0.8999999999999999", + "z": "1.1" + } + ], + "uuid": "977f5411-606c-c7bc-0644-6aa1aa9699ef", + "time": 5.29167, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "1.1", + "z": "0.9" + } + ], + "uuid": "cdf59c44-0c39-08c5-cf40-e3e682ba0403", + "time": 9.66667, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.8999999999999999", + "y": "0.8999999999999999", + "z": "1.1" + } + ], + "uuid": "84f78604-3b6e-9594-8213-d79ecab79ad7", + "time": 14, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "1.1", + "z": "0.9" + } + ], + "uuid": "ea49108a-328a-2a18-bc88-3fa14cfe871b", + "time": 3.29167, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.2000000000000002", + "y": "1.2000000000000002", + "z": "0.8" + } + ], + "uuid": "3c247ba5-36c3-f258-5c81-dcb7e6198645", + "time": 2.66667, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.7999999999999999", + "y": "0.7999999999999999", + "z": "1.2000000000000002" + } + ], + "uuid": "c2502a7e-79be-ee7c-dc95-d1799adb0aeb", + "time": 2.79167, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "1.1", + "z": "0.9" + } + ], + "uuid": "9fe4557a-8348-5321-b1bb-04d009a2c65a", + "time": 2.91667, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.8999999999999999", + "y": "0.8999999999999999", + "z": "1.1" + } + ], + "uuid": "c7f8f9b3-b777-a652-ff2e-deecf15598c3", + "time": 3.04167, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "741b9066-91e3-9b34-a9cf-267def03542d", + "time": 3.16667, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "1f9d38fe-f257-a637-5723-f3e700ff76df", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "a3b96ba1-cf03-a85e-86da-ca81e0214b29", + "time": 2.45833, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "cfc5947d-44f7-7c7d-a73d-a5c2f75bab1c", + "time": 1.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "759a13eb-f490-c1ec-ddfb-8c20f3518869", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "25" + } + ], + "uuid": "17812e35-8e5f-1620-469f-1290b95f4fcb", + "time": 2.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "25" + } + ], + "uuid": "be6f9c33-2e7b-196b-3a35-ac797f95c88b", + "time": 1.25, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-449.99998614642845", + "y": "-84.99999999999955", + "z": "339.99998619914504" + } + ], + "uuid": "5e014a81-89fd-2090-c3fe-0bf5f7049ba6", + "time": 3.29167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-449.99998614642845", + "y": "-84.99999999999955", + "z": "339.99998619914504" + } + ], + "uuid": "a06abe0f-af4e-2d09-694f-cee786b3403b", + "time": 2.66667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "88a89960-df33-804c-d06b-4b08ea3805b6", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dc2cad15-61c1-1742-f50b-de896f512510", + "time": 2.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "42541515-e9a9-f60f-76ad-189ee204d55c", + "time": 1.25, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-449.99998614642845", + "y": "84.99999999999955", + "z": "-339.99998619914504" + } + ], + "uuid": "302b4eb4-29ac-4ab0-b645-df4a2daa5d20", + "time": 2.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-449.99998614642845", + "y": "84.99999999999955", + "z": "-339.99998619914504" + } + ], + "uuid": "29756cab-e90d-5f4b-1d3f-829da9040d1f", + "time": 2.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "aaaaaa01-1791-6853-e89f-39582fd626d1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a5d49e17-6e57-6f21-4f4d-7faf1d36993c", + "time": 2.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "34c4b10d-fd6c-4c5e-8de5-1d4a23a5cdd6", + "time": 1.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "17799bb0-8660-5ac3-c6e6-bfdbe5af588c", + "time": 2.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "80696928-9a6b-fc20-0f13-8d3a48e892b8", + "time": 2.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2c53ee81-e1e2-7b01-6491-d8fab76e4640", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9debe943-7df2-552d-b8f4-e176e6332847", + "time": 2.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f8792fda-f612-6563-5bef-cd553b58b19e", + "time": 1.25, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "17.5" + } + ], + "uuid": "ca203144-0b7d-14b1-48e3-5b5c3cda4cc1", + "time": 2.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "17.5" + } + ], + "uuid": "c1097064-f1bd-8c67-c29b-ba1a2e43a3fa", + "time": 2.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4c1e66ec-e389-b531-7f8c-b82d1caed417", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8a165d3c-0cf5-f68b-e0b1-b1dd627cfa12", + "time": 2.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "46f1ba3e-df21-ee85-f41f-ead09fabc718", + "time": 1.25, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-25" + } + ], + "uuid": "c7520bbc-c8fe-e8f9-7de4-e9f8af5c00ef", + "time": 2.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-25" + } + ], + "uuid": "ced322e0-4bb0-91de-d30d-03cbe0295ff1", + "time": 2.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f2010956-fe89-a897-34d6-d36e3f5f5c20", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a46ce1a5-8f68-a490-2bf0-0982cb8eba20", + "time": 2.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f4b933ad-c40d-1887-ef67-ec8d97ae0cbb", + "time": 1.25, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_sleep\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nsounds:playSound(\"08_menudecision\", player:getPos(), 0.8, 0.7)" + } + ], + "uuid": "705862ff-adf8-6c1c-691e-12783ed7c8c4", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "f11599b1-1e20-e340-fb35-f3ea946775a1", + "name": "afk_loop", + "loop": "loop", + "override": true, + "length": 6, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "90", + "y": "0", + "z": "0" + } + ], + "uuid": "9572f7b0-bc5e-b966-5098-ed7948a59a9b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "19" + } + ], + "uuid": "ea048fc6-ff1c-1b29-e278-8bd801b8f75a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "15" + } + ], + "uuid": "f98921df-c795-498e-92e1-024be9a269ad", + "time": 2, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "19" + } + ], + "uuid": "c28e4e6a-6377-6347-679c-60901f5257cc", + "time": 4, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "15" + } + ], + "uuid": "5f3db477-f4b4-f07d-1f81-68bf32906814", + "time": 6, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "1.1", + "z": "0.9" + } + ], + "uuid": "ea49108a-328a-2a18-bc88-3fa14cfe871b", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.8999999999999999", + "y": "0.8999999999999999", + "z": "1.1" + } + ], + "uuid": "977f5411-606c-c7bc-0644-6aa1aa9699ef", + "time": 2, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "1.1", + "z": "0.9" + } + ], + "uuid": "cdf59c44-0c39-08c5-cf40-e3e682ba0403", + "time": 4, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.8999999999999999", + "y": "0.8999999999999999", + "z": "1.1" + } + ], + "uuid": "84f78604-3b6e-9594-8213-d79ecab79ad7", + "time": 6, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-449.99998614642845", + "y": "-84.99999999999955", + "z": "339.99998619914504" + } + ], + "uuid": "5e014a81-89fd-2090-c3fe-0bf5f7049ba6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-449.99998614642845", + "y": "84.99999999999955", + "z": "-339.99998619914504" + } + ], + "uuid": "302b4eb4-29ac-4ab0-b645-df4a2daa5d20", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "17799bb0-8660-5ac3-c6e6-bfdbe5af588c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "17.5" + } + ], + "uuid": "ca203144-0b7d-14b1-48e3-5b5c3cda4cc1", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-25" + } + ], + "uuid": "c7520bbc-c8fe-e8f9-7de4-e9f8af5c00ef", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_sleep\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera\n" + } + ], + "uuid": "6d6d759b-819b-eb2e-6a53-91f7e0d26594", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "2b8fd24f-b248-2f4d-87e0-fe0217166595", + "name": "afk_end", + "loop": "once", + "override": true, + "length": 1.25, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "90", + "y": "0", + "z": "0" + } + ], + "uuid": "9572f7b0-bc5e-b966-5098-ed7948a59a9b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "be11dd31-439e-bcc0-0b99-eccd52d5b192", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "6337b59c-5f92-2e60-e5ea-520273366260", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d265bb37-bed4-71e2-4914-5c2b1ed322ea", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.2000000000000002", + "y": "1.2000000000000002", + "z": "0.8" + } + ], + "uuid": "27f9d6d8-8d56-ec4d-1029-d50ba8630bf3", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "3e4c2146-fab9-8979-b908-89a6b06e32c0", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + } + ] + }, + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c28c465a-05b2-29bb-b396-30298da1da1b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-449.99998614642845", + "y": "-84.99999999999955", + "z": "339.99998619914504" + } + ], + "uuid": "5e014a81-89fd-2090-c3fe-0bf5f7049ba6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "eef178b0-2249-6ad2-4b74-66deed1abb98", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-449.99998614642845", + "y": "84.99999999999955", + "z": "-339.99998619914504" + } + ], + "uuid": "302b4eb4-29ac-4ab0-b645-df4a2daa5d20", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b651d2b5-0715-b697-7a84-805d2a010423", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "17799bb0-8660-5ac3-c6e6-bfdbe5af588c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5bf0cf55-dc2d-a74f-91a9-3aa5d3314a31", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "17.5" + } + ], + "uuid": "ca203144-0b7d-14b1-48e3-5b5c3cda4cc1", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "62d8b275-061b-3418-ab53-b3bcb2990690", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-25" + } + ], + "uuid": "c7520bbc-c8fe-e8f9-7de4-e9f8af5c00ef", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "60288599-2edd-34b0-94da-357d510e3b45", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nsounds:playSound(\"08_menudecision\", player:getPos(), 0.8, 0.2)" + } + ], + "uuid": "0739da13-ec47-b986-81e1-3a6d441d90e7", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "4b1b0f07-b041-5b06-fc70-690b8fa887ed", + "name": "offering", + "loop": "hold", + "override": false, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "" + }, + { + "uuid": "1ab10c10-a860-dc7d-21bf-c12abd31aab2", + "name": "explodejump", + "loop": "loop", + "override": false, + "length": 1, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "90", + "y": "0", + "z": "0" + } + ], + "uuid": "1d86405a-b14e-513e-5b2a-a05f3923b334", + "time": 0.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "33e7c3aa-829c-98e6-ba6e-a30a50b8255a", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "180", + "y": "0", + "z": "0" + } + ], + "uuid": "47ccf056-928f-bc0c-1fb0-24c394a18613", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "270", + "y": "0", + "z": "0" + } + ], + "uuid": "e7d859ac-22b5-2fe3-6338-b0595d14fa8e", + "time": 0.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "360", + "y": "0", + "z": "0" + } + ], + "uuid": "fe820170-17a7-3284-a9c2-548927eda0e3", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "16", + "z": "16" + } + ], + "uuid": "22dd15d6-05a2-204a-007c-5b2eff663791", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "aa02f667-12f4-7584-023c-f6175788f0f8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "34", + "z": "0" + } + ], + "uuid": "5568bcbf-7357-817d-4fc8-09d7df334a8a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "575cc2b1-b1b0-c4ba-2384-7551175d2a70", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "5.3", + "z": "12.13" + } + ], + "uuid": "3dff7162-ebda-72d9-8673-75e053f3ea13", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "16", + "z": "-16" + } + ], + "uuid": "b80537a1-4373-9e4e-7b0d-7d11a387fb4e", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "5.3", + "z": "-12.13" + } + ], + "uuid": "97461396-d3aa-2255-ef17-d327e67e0176", + "time": 0.875, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "29.3", + "z": "12.13" + } + ], + "uuid": "92c9469d-27b3-4d17-f4b5-7d5b0ef0ff34", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "29.3", + "z": "-12.13" + } + ], + "uuid": "58e8f813-a79b-f640-ff06-18b59d573bb2", + "time": 0.625, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "ee660ada-94d2-dfab-8698-fa7de9c51061", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.2", + "y": "1", + "z": "1" + } + ], + "uuid": "6a2df7c7-1f52-2bad-e1a7-188e3d2e3889", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-360", + "y": "-90", + "z": "-475" + } + ], + "uuid": "a3fb2c11-fe6c-9a90-a44d-9558ff241f44", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "0" + } + ], + "uuid": "5a21f52a-b1aa-7775-28e6-e803065622e3", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-360", + "y": "90", + "z": "475" + } + ], + "uuid": "ebf1377e-279c-c746-c63f-12fc2a088daf", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "0" + } + ], + "uuid": "b9a5766f-b248-904f-ac04-d547ffd61b9d", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "30" + } + ], + "uuid": "569b6af9-854a-626a-2958-579cbeb1d75e", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "6023fef4-7716-e016-bec5-e31436449e69", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-30" + } + ], + "uuid": "c5e640da-ba20-9a79-eb9c-2e8d5fe6caec", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "46a2af76-77c8-9ac7-14e8-1b932a0d7da8", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_fear\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "227a2a07-8f20-767a-f9a8-7dbb950945cb", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "ec106689-0bec-6cfa-4355-0053637db454", + "name": "climb", + "loop": "loop", + "override": true, + "length": 1, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.73536", + "y": "0", + "z": "0" + } + ], + "uuid": "c32562a2-294a-8a4a-6526-7d298fa217c4", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "9911e52c-d821-8da7-10b5-414932ecf3d4", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1.05" + } + ], + "uuid": "1521282a-7af4-927b-b881-b7723733ba93", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-83.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4bdeffad-de28-c2dd-fd85-dd332284d71c", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-104.5", + "y": "0", + "z": "0" + } + ], + "uuid": "cb29197a-792e-8cfe-4d54-e7b2063dab77", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-124", + "y": "0", + "z": "0" + } + ], + "uuid": "01cc3563-83ed-7c63-ef58-065d4358bae8", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-105.5", + "y": "0", + "z": "0" + } + ], + "uuid": "b763c3e4-7bb6-722b-83f1-05183b987222", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-103.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a6aa97b2-3b50-bd4c-0c1c-264cf6587d4d", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "9283c5aa-d1b0-38ab-f0ba-30e819ee9355", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-83.5", + "y": "0", + "z": "0" + } + ], + "uuid": "111503cc-e77a-b2bc-c2ae-94e8b9dc1309", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-104.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c18c9d43-01f9-ce3f-e3b0-fc0d54567fe9", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-124", + "y": "0", + "z": "0" + } + ], + "uuid": "ac87f4a9-f6ec-5b33-ccf8-7635dfd05583", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-105.5", + "y": "0", + "z": "0" + } + ], + "uuid": "55862b2b-4819-9de0-6e56-f995a64e25ea", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-103.5", + "y": "0", + "z": "0" + } + ], + "uuid": "2292631a-a698-afb2-dfe4-041caa15fad8", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "0793a453-8795-1c57-0280-ccbf27d7f6e9", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-38.5", + "y": "0", + "z": "0" + } + ], + "uuid": "677cd82d-ff1d-51d5-91c9-1edb49586048", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-59.5", + "y": "0", + "z": "0" + } + ], + "uuid": "6b3e1d97-641a-e3f5-9a04-3a3f49010485", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-79", + "y": "0", + "z": "0" + } + ], + "uuid": "79ae5306-015a-a807-a21f-0d1f26a2bcf9", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-60.5", + "y": "0", + "z": "0" + } + ], + "uuid": "28532262-fcdc-3336-d179-c3b4f94451c8", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-58.5", + "y": "0", + "z": "0" + } + ], + "uuid": "d4368c70-0cf2-6cbf-fa65-a848825b90ec", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2", + "z": "-2" + } + ], + "uuid": "8ac44326-d7d0-0661-39a2-6100831e7603", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0bd87b3e-b076-d3cf-b8a6-468b492cc14a", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "64577bb7-5591-f74e-4efe-c55931257854", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-38.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7e99abc6-b54d-27ee-a995-e791a3bcd4ba", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-59.5", + "y": "0", + "z": "0" + } + ], + "uuid": "ef65cf55-29cf-a408-cf2c-6f0c7e2b5e33", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-79", + "y": "0", + "z": "0" + } + ], + "uuid": "6e51ee37-87da-57e2-ad03-07038dc836f8", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-60.5", + "y": "0", + "z": "0" + } + ], + "uuid": "1d39f3a7-74b8-dc2c-a6cc-0c641f962b3b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-58.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4a84e2fa-beb4-347e-eb53-3aa335fd8e71", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2", + "z": "-2" + } + ], + "uuid": "88c2085c-a84c-afd7-af3c-cd2e8ed5bf39", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "34e7ff8a-dfdf-ec81-0889-74f0e405b5e1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5794fd30-12ae-e30e-9cae-823fe1a9d5c5", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "6" + } + ], + "uuid": "aab95858-a41a-26a2-d240-e0b412ca4470", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "793d754e-72f3-c4fe-e5d1-2f333e62d8eb", + "name": "climbcrouch", + "loop": "hold", + "override": true, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "52494f2c-464e-bfb7-6e47-07579d740d15", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-63.150945046339075", + "y": "0", + "z": "0" + } + ], + "uuid": "844cc543-2325-d238-01af-1022d0ce3a2e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "8f7e3bd2-e0c9-bdf0-4c38-3b3fb7f198e8", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1.05" + } + ], + "uuid": "5da1b7f1-ceaf-03a1-2066-15c2da345475", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-124", + "y": "0", + "z": "0" + } + ], + "uuid": "9157119e-1122-fd23-cbbd-2f569c1102db", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "f7dfada2-dba0-11f2-05c9-d7e8342c86a0", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "ad3e5eac-13c5-1120-5513-297fc31f8d0f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-124", + "y": "0", + "z": "0" + } + ], + "uuid": "e1a923d4-2138-18e5-2978-0e577a8a54c1", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "2df8536b-7105-707a-7269-bbaef6f9ef22", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "99542b82-7f5f-e298-c73c-5b9dcaac5df6", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-73.5", + "y": "0", + "z": "0" + } + ], + "uuid": "d073024f-8302-c664-ac48-4fd5fb7e9419", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2.5", + "z": "-2" + } + ], + "uuid": "c2b34df2-e998-9739-96f0-2cf2b3209836", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "97.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a7b93375-1142-462d-06ac-5ab855b90911", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a20611f8-2d7b-fd67-f2de-9ea4262258e0", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-15.22074", + "y": "-0.34406", + "z": "-2.61298" + } + ], + "uuid": "4327da55-4a18-31eb-e66b-37b98230f539", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-1" + } + ], + "uuid": "e417f797-a0cb-ba2d-7a1c-4aca31eb4315", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-73.5", + "y": "0", + "z": "0" + } + ], + "uuid": "bab70ebf-600c-161a-05da-7517ebf08781", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2.5", + "z": "-2" + } + ], + "uuid": "e995b882-9092-e5d0-dd60-cacfdbc26c6f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "97.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a8d0054d-048f-03fc-c5b0-80d3f7bd4a4a", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a33393cc-b9c9-d2f6-d043-bc5551fc1d1b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-15.22074073441172", + "y": "-0.3440641947881886", + "z": "-2.612981902381307" + } + ], + "uuid": "12331ba7-1401-80ee-1602-c783acedd252", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-1" + } + ], + "uuid": "266e891d-f42e-e578-f3eb-16fc11fed091", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "7efbde3c-c3b7-0a94-bae5-3e60303b2e7e", + "name": "eatL", + "loop": "loop", + "override": true, + "length": 0.25, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "0", + "z": "0" + } + ], + "uuid": "8a72b854-27f4-c271-35ae-ebc485e60dee", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "0", + "z": "0" + } + ], + "uuid": "eab4bf33-a2c3-bb55-315c-d327ba4920cc", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-97.5", + "y": "0", + "z": "0" + } + ], + "uuid": "15d05953-781b-37ca-c9f8-0d8ab145ae39", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0ccb3d05-028a-7afb-d385-fec940a4be6e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "10f91eab-0ec5-a2b9-79fd-244c9be02e7b", + "time": 0.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "31bd756a-2e62-f186-b619-a919fc2de3c1", + "time": 0.125, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-21.02704", + "y": "-16.74985", + "z": "72.59498" + } + ], + "uuid": "1fd00897-aad1-745e-91dc-e2432d788d4c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "82cc99fe-70ef-6c01-86d4-69463007ae10", + "name": "eatR", + "loop": "loop", + "override": true, + "length": 0.25, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "0", + "z": "0" + } + ], + "uuid": "0a823825-f0fc-5bbe-f5ff-b4844af6c6cd", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "0", + "z": "0" + } + ], + "uuid": "3db752cc-91cf-20de-4922-08c1d73c9f46", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-97.5", + "y": "0", + "z": "0" + } + ], + "uuid": "bd97558f-253a-52ff-63d9-fe775f2dfed3", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6014fccd-4d1f-afe4-f542-2757f6136d21", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6ffa0100-9dd5-102b-aef1-cde7f5709ccb", + "time": 0.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "af6ea962-9bb6-d16d-41ab-c54e27637793", + "time": 0.125, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "6.686303009", + "y": "0.2309186082", + "z": "-65.0870213194" + } + ], + "uuid": "4572e898-965f-abb8-9f1c-2867d5119fde", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "0fe9582e-afee-9945-c051-79e1996ab231": { + "name": "RightHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "2.5", + "z": "-32.5" + } + ], + "uuid": "42b8c46d-223c-5df7-9968-e50a3aad49b3", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "d5c28e0c-2ec5-296a-42c7-59967676aebe": { + "name": "RightItemPivot", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "41.3419774489", + "y": "13.3179144916", + "z": "-78.5430389209" + } + ], + "uuid": "ab1e0fb7-d7de-50d5-d4fa-75bf71d60eb3", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "2" + } + ], + "uuid": "b3a2371c-1e19-d3c0-0026-7a5ad2068686", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + } + ] +} \ No newline at end of file diff --git a/3d_models/akira/old model backup/akira_eiko_olivia_pink_411.bbmodel b/3d_models/akira/old model backup/akira_eiko_olivia_pink_411.bbmodel new file mode 100644 index 0000000..fd74a54 --- /dev/null +++ b/3d_models/akira/old model backup/akira_eiko_olivia_pink_411.bbmodel @@ -0,0 +1,69111 @@ +{ + "meta": { + "format_version": "4.10", + "model_format": "figura", + "box_uv": false + }, + "visible_box": [1, 1, 0], + "variable_placeholders": "", + "variable_placeholder_buttons": [], + "timeline_setups": [ + { + "name": "Timeline Setup", + "channels": { + "position": true, + "rotation": true, + "scale": true, + "hide_empty": true + }, + "animators": [ + "8ecb49a9-4063-567f-d5d6-13e34c61fda2", + "846f9d7a-ba3e-d736-4c01-93392d16f75d", + "fe5e6be7-280c-dde4-b847-12a2b028e66d", + "7c7e536c-89b4-51d2-510c-fc1007e0df3b", + "4e86d352-c1b0-ba95-6122-3030f58ec345", + "0062d29b-c2f9-6c29-ecdb-744857789699", + "dd3dbc09-2543-5b44-0d51-139155e860e2", + "bb176c22-6ae6-6c8d-3125-6dc4a4b34b04", + "34dfaf06-1387-a2c6-f3e6-99793044e82d", + "8af6dfdb-3ff0-e614-572d-238ed04ce4ef", + "8091a46a-25d6-0558-047c-e2098bb1126c", + "43622244-f03f-dc0d-a522-2d01c2ca50e1", + "cd23c28a-f1a0-ae4e-00cd-c519e5e71ed0", + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5", + "257888ea-540d-c844-892e-76855e5ac593", + "9b1cdac1-623c-a07f-13cf-50b4cba2d280", + "3a163167-946a-9709-bfaa-60c63fb36d88", + "d9627f7e-c2cc-0b7d-f0e3-267976830e09", + "39b8f506-2d25-9ffc-4844-a483667159b6", + "4532a408-8267-4ac1-f89b-9c02843401c5", + "80ca9439-0183-c534-a9eb-ada28e85b1ec", + "4ef21934-9598-a1cc-d2cb-2a978ecab20f", + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687", + "703b9bfd-bdc6-385a-89b3-b900d1de58f5", + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d", + "d5c28e0c-2ec5-296a-42c7-59967676aebe", + "02123f94-db06-5dae-758f-a4b6191791e5", + "9d530b83-521c-52ff-34ec-05833bb4753c", + "e4367907-6cfc-00b5-304f-2ad528647ca3" + ] + } + ], + "unhandled_root_fields": {}, + "resolution": { + "width": 96, + "height": 64 + }, + "elements": [ + { + "name": "cube", + "color": 8, + "origin": [-0.91367, 0, -0.15628], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "BtHE": [3.78, 1.8, 1.8], + "p9SG": [3.78, 1.8, -0.77143], + "dP2U": [3.78, 0, 1.8], + "eok7": [4.5, 0, -0.77143], + "ocfu": [1.62, 1.8, 1.8], + "vUhB": [1.62, 1.8, -0.77143], + "EUsg": [1.62, 0, 1.8], + "oqGO": [0.9, 0, -0.77143], + "LuHl": [1.62, 1.8, -2.7], + "xXtl": [3.78, 1.8, -2.7], + "EDaA": [1.62, 0, -3.6], + "X2US": [3.78, 0, -3.6] + }, + "faces": { + "rLMf7opp": { + "uv": { + "dP2U": [4, 29.9836], + "eok7": [1, 29.9836], + "BtHE": [4, 26.9836], + "p9SG": [1, 26.9836] + }, + "vertices": ["p9SG", "BtHE", "eok7", "dP2U"], + "texture": 1 + }, + "lK1uZ4ZU": { + "uv": { + "oqGO": [4, 29.9836], + "EUsg": [1, 29.9836], + "vUhB": [4, 26.9836], + "ocfu": [1, 26.9836] + }, + "vertices": ["ocfu", "vUhB", "EUsg", "oqGO"], + "texture": 1 + }, + "IOcJK5rY": { + "uv": { + "ocfu": [1, 28.9836], + "BtHE": [1, 24.9836], + "vUhB": [4, 28.9836], + "p9SG": [4, 24.9836] + }, + "vertices": ["p9SG", "vUhB", "BtHE", "ocfu"], + "texture": 1 + }, + "TZD9oDhP": { + "uv": { + "oqGO": [8, 48.9836], + "eok7": [10, 48.9836], + "EUsg": [8, 56.9836], + "dP2U": [10, 56.9836] + }, + "vertices": ["dP2U", "EUsg", "eok7", "oqGO"], + "texture": 1 + }, + "h8ImDcMA": { + "uv": { + "EUsg": [3.25, 29.9836], + "dP2U": [1, 29.9836], + "ocfu": [3.25, 26.9836], + "BtHE": [1, 26.9836] + }, + "vertices": ["BtHE", "ocfu", "dP2U", "EUsg"], + "texture": 1 + }, + "4tbVDhEo": { + "uv": { + "X2US": [3.25, 29.9836], + "EDaA": [1, 29.9836], + "xXtl": [3.25, 26.9836], + "LuHl": [1, 26.9836] + }, + "vertices": ["LuHl", "xXtl", "EDaA", "X2US"], + "texture": 1 + }, + "EtmLgTse": { + "uv": { + "vUhB": [1, 26.9836], + "oqGO": [1, 29.9836], + "EDaA": [3.25, 29.9836], + "LuHl": [3.25, 26.9836] + }, + "vertices": ["LuHl", "EDaA", "oqGO", "vUhB"], + "texture": 1 + }, + "iRHEFw0e": { + "uv": { + "p9SG": [4, 28.9836], + "vUhB": [4, 25.9836], + "LuHl": [1, 25.9836], + "xXtl": [1, 28.9836] + }, + "vertices": ["xXtl", "LuHl", "vUhB", "p9SG"], + "texture": 1 + }, + "5H56KX26": { + "uv": { + "eok7": [3.25, 29.9836], + "p9SG": [3.25, 26.9836], + "xXtl": [1, 26.9836], + "X2US": [1, 29.9836] + }, + "vertices": ["X2US", "xXtl", "p9SG", "eok7"], + "texture": 1 + }, + "YPxuRqB2": { + "uv": { + "oqGO": [8, 56.9836], + "eok7": [10, 56.9836], + "X2US": [10, 48.9836], + "EDaA": [8, 48.9836] + }, + "vertices": ["EDaA", "X2US", "eok7", "oqGO"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "841507ff-09dc-0d69-b367-522f44abd3cd" + }, + { + "name": "Head", + "color": 8, + "origin": [0, 21.6, -0.9], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "ppnZ": [0, 0.9, 1.08194], + "TV9o": [1.14168, 2.05, 1.29973], + "n3UK": [1.30478, 6.95, 1.99986], + "xI8D": [2.75625, 2.05, 0.47689], + "If9H": [3.15, 6.95, 1.05948], + "NlFz": [2.75625, 1.87, -0.90822], + "lH3O": [2.86875, 6.95, -1.33842], + "BlXc": [1.14168, 1.31941, -2.38257], + "j3zU": [1.38199, 6.95, -2.91102], + "8Vaz": [1.30478, 3.18607, -3.35271], + "2fMz": [1.30478, 3.93333, -2.90109], + "DFnu": [2.75625, 3.38666, -1.33842], + "ZKz3": [2.75625, 3.93333, -1.33842], + "9wlZ": [3.15, 3.11666, 1.05948], + "HeA6": [3.15, 4.63334, 1.05948], + "ETfb": [1.30478, 3.11666, 2.7], + "EqZH": [1.30478, 5.33334, 2.7], + "yF3x": [-1.14168, 2.05, 1.29973], + "lXqu": [-1.30477, 6.95, 1.99986], + "C6cU": [-2.75625, 2.05, 0.47689], + "qc0L": [-3.15, 6.95, 1.05948], + "HCVy": [-2.75625, 1.87, -0.81061], + "dgCx": [-2.8, 6.95, -1.25991], + "a6Ti": [-1.14168, 1.31941, -2.38257], + "2NA1": [-1.5098, 6.95, -2.91102], + "5WyA": [-1.30477, 3.18607, -3.35271], + "FBal": [-1.30477, 3.93333, -2.90109], + "XPZQ": [-2.75625, 3.38666, -1.25991], + "tTFb": [-2.75625, 3.93333, -1.25991], + "A49p": [-3.15, 3.11666, 1.05948], + "uuLd": [-3.15, 4.63334, 1.05948], + "Jfz9": [-1.30477, 3.11666, 2.7], + "ZHiN": [-1.30477, 5.33334, 2.7], + "y7s6": [1.00507, 8.27214, -2.22], + "r4hz": [-1.00507, 8.27214, -2.22], + "eD5k": [0, 8.99996, 0.66397], + "AfLN": [-2.13776, 8.27598, -0.85392], + "yYAy": [-2.41141, 8.2805, 0.64749], + "TwUw": [-0.99092, 8.26204, 1.35238], + "jqYQ": [0.99092, 8.26204, 1.35238], + "cR8P": [2.41141, 8.2805, 0.64749], + "Wmhk": [2.13776, 8.27598, -0.94969], + "aBmc": [0, 8.27214, -2.22], + "fLpt": [0, 6.95, -2.91102], + "7lzt": [0, 3.93333, -2.90109], + "TQ4O": [0, 3.18607, -3.35271], + "5haT": [0, 1.31941, -2.38257], + "O2fe": [1.30478, 6.14166, 2.34994], + "2pNO": [3.15, 5.79166, 1.05948], + "zkoC": [2.86875, 5.44166, -1.33842], + "V1kR": [1.38199, 5.44166, -2.90605], + "MHH5": [0, 5.44166, -2.90605], + "vdUT": [-1.5098, 5.44166, -2.90605], + "wxOS": [-2.8, 5.44166, -1.25991], + "1l81": [-3.15, 5.79166, 1.05948], + "yyfa": [-1.30477, 6.14166, 2.34994], + "j7O6": [2.12537, 5.44166, -2.81327], + "haP5": [2.03052, 3.93333, -2.81001], + "ZVaC": [2.03052, 3.28637, -3.10664], + "ONPR": [1.94897, 1.59471, -2.25434], + "qR5g": [2.12537, 6.95, -2.81653], + "xIv9": [1.57142, 8.27406, -2.1683], + "lSbW": [-2.1549, 5.44166, -2.80024], + "LKQZ": [-2.03051, 3.93333, -2.79684], + "N8tQ": [-2.03051, 3.28637, -3.10664], + "sGur": [-1.94896, 1.59471, -2.2165], + "4pYc": [-2.1549, 6.95, -2.80365], + "xuod": [-1.57141, 8.27406, -2.12664] + }, + "faces": { + "SGOtJOVi": { + "uv": { + "ppnZ": [0, 9], + "TV9o": [6, 6], + "xI8D": [8, 9] + }, + "vertices": ["xI8D", "TV9o", "ppnZ"], + "texture": 1 + }, + "qybQHbiM": { + "uv": { + "2pNO": [6, 7], + "O2fe": [0, 7], + "EqZH": [0, 9], + "HeA6": [6, 9] + }, + "vertices": ["HeA6", "O2fe", "2pNO", "EqZH"], + "texture": 1 + }, + "OTX97j14": { + "uv": { + "eD5k": [0, 7], + "cR8P": [6, 10], + "jqYQ": [0, 12] + }, + "vertices": ["jqYQ", "cR8P", "eD5k"], + "texture": 1 + }, + "NeEi2vFZ": { + "uv": { + "ppnZ": [0, 8], + "xI8D": [7, 6], + "NlFz": [7, 10] + }, + "vertices": ["NlFz", "xI8D", "ppnZ"], + "texture": 1 + }, + "WedP020P": { + "uv": { + "zkoC": [6, 7], + "2pNO": [0, 7], + "HeA6": [0, 9], + "ZKz3": [6, 9] + }, + "vertices": ["ZKz3", "2pNO", "zkoC", "HeA6"], + "texture": 1 + }, + "BYsI7aC0": { + "uv": { + "eD5k": [0, 9], + "Wmhk": [7, 7], + "cR8P": [7, 11] + }, + "vertices": ["cR8P", "Wmhk", "eD5k"], + "texture": 1 + }, + "WWTxBVtP": { + "uv": { + "ppnZ": [0, 11], + "NlFz": [0, 11], + "ONPR": [0, 11] + }, + "vertices": ["ppnZ", "ONPR", "NlFz"], + "texture": 1 + }, + "m9E4bexa": { + "uv": { + "zkoC": [0, 6], + "j7O6": [4.5, 6], + "haP5": [4.5, 4], + "ZKz3": [0, 4] + }, + "vertices": ["ZKz3", "j7O6", "haP5", "zkoC"], + "texture": 1 + }, + "1K3IilLx": { + "uv": { + "eD5k": [0, 10], + "y7s6": [6, 7], + "xIv9": [7, 8.5] + }, + "vertices": ["eD5k", "xIv9", "y7s6"], + "texture": 1 + }, + "gkvqNXSk": { + "uv": { + "BlXc": [0, 11], + "5haT": [0, 11], + "ppnZ": [0, 11] + }, + "vertices": ["ppnZ", "5haT", "BlXc"], + "texture": 1 + }, + "WZA3BCX4": { + "uv": { + "MHH5": [0, 6], + "V1kR": [9, 6], + "2fMz": [9, 4], + "7lzt": [0, 4] + }, + "vertices": ["7lzt", "V1kR", "MHH5", "2fMz"], + "texture": 1 + }, + "UfluJ6be": { + "uv": { + "r4hz": [0, 7], + "aBmc": [3, 7], + "eD5k": [3, 11] + }, + "vertices": ["eD5k", "aBmc", "r4hz"], + "texture": 1 + }, + "mCNrpYIj": { + "uv": { + "ppnZ": [3, 10], + "yF3x": [0, 6], + "TV9o": [6, 6] + }, + "vertices": ["TV9o", "yF3x", "ppnZ"], + "texture": 1 + }, + "taIZthpZ": { + "uv": { + "O2fe": [6, 7], + "yyfa": [0, 7], + "ZHiN": [0, 9], + "EqZH": [6, 9] + }, + "vertices": ["EqZH", "yyfa", "O2fe", "ZHiN"], + "texture": 1 + }, + "eHr3thlr": { + "uv": { + "eD5k": [3, 7], + "jqYQ": [6, 11], + "TwUw": [0, 11] + }, + "vertices": ["TwUw", "jqYQ", "eD5k"], + "texture": 1 + }, + "mOGzqJIk": { + "uv": { + "8Vaz": [12, 1], + "5haT": [18, 10], + "TQ4O": [18, 1], + "BlXc": [12, 10] + }, + "vertices": ["BlXc", "TQ4O", "5haT", "8Vaz"], + "texture": 1 + }, + "IspizuX0": { + "uv": { + "2fMz": [0, 11], + "TQ4O": [0, 11], + "7lzt": [0, 11], + "8Vaz": [0, 11] + }, + "vertices": ["8Vaz", "7lzt", "TQ4O", "2fMz"], + "texture": 1 + }, + "4elRqR2m": { + "uv": { + "NlFz": [0, 11], + "DFnu": [0, 11], + "ONPR": [0, 11], + "ZVaC": [0, 11] + }, + "vertices": ["NlFz", "ZVaC", "ONPR", "DFnu"], + "texture": 1 + }, + "Pro0QCF0": { + "uv": { + "DFnu": [0, 11], + "ZKz3": [0, 11], + "ZVaC": [0, 11], + "haP5": [0, 11] + }, + "vertices": ["DFnu", "haP5", "ZVaC", "ZKz3"], + "texture": 1 + }, + "0wLusB14": { + "uv": { + "xI8D": [0, 9], + "9wlZ": [0, 6], + "DFnu": [6, 6], + "NlFz": [6, 9] + }, + "vertices": ["NlFz", "DFnu", "9wlZ", "xI8D"], + "texture": 1 + }, + "wGe6CeFl": { + "uv": { + "9wlZ": [0, 12], + "HeA6": [0, 9], + "ZKz3": [6, 9], + "DFnu": [6, 12] + }, + "vertices": ["DFnu", "ZKz3", "HeA6", "9wlZ"], + "texture": 1 + }, + "ZCt7nfD8": { + "uv": { + "TV9o": [0, 9], + "ETfb": [0, 6], + "9wlZ": [6, 6], + "xI8D": [6, 9] + }, + "vertices": ["xI8D", "9wlZ", "ETfb", "TV9o"], + "texture": 1 + }, + "yq9buZK2": { + "uv": { + "ETfb": [0, 12], + "EqZH": [0, 9], + "HeA6": [6, 9], + "9wlZ": [6, 12] + }, + "vertices": ["9wlZ", "HeA6", "EqZH", "ETfb"], + "texture": 1 + }, + "3RmOj4jX": { + "uv": { + "yF3x": [0, 9], + "Jfz9": [0, 6], + "ETfb": [6, 6], + "TV9o": [6, 9] + }, + "vertices": ["TV9o", "ETfb", "Jfz9", "yF3x"], + "texture": 1 + }, + "5QqsYfQ8": { + "uv": { + "Jfz9": [0, 12], + "ZHiN": [0, 9], + "EqZH": [6, 9], + "ETfb": [6, 12] + }, + "vertices": ["ETfb", "EqZH", "ZHiN", "Jfz9"], + "texture": 1 + }, + "Fg9vJv4N": { + "uv": { + "ppnZ": [0, 9], + "C6cU": [8, 9], + "yF3x": [6, 6] + }, + "vertices": ["yF3x", "C6cU", "ppnZ"], + "texture": 1 + }, + "wfInJ26T": { + "uv": { + "yyfa": [0, 7], + "1l81": [6, 7], + "uuLd": [6, 9], + "ZHiN": [0, 9] + }, + "vertices": ["ZHiN", "1l81", "yyfa", "uuLd"], + "texture": 1 + }, + "eiK1svyY": { + "uv": { + "eD5k": [0, 7], + "TwUw": [0, 12], + "yYAy": [6, 10] + }, + "vertices": ["yYAy", "TwUw", "eD5k"], + "texture": 1 + }, + "ZFEG13AU": { + "uv": { + "ppnZ": [0, 11], + "HCVy": [7, 12], + "C6cU": [7, 10] + }, + "vertices": ["C6cU", "HCVy", "ppnZ"], + "texture": 1 + }, + "BcBa4KR3": { + "uv": { + "1l81": [0, 7], + "wxOS": [6, 7], + "tTFb": [6, 9], + "uuLd": [0, 9] + }, + "vertices": ["uuLd", "wxOS", "1l81", "tTFb"], + "texture": 1 + }, + "ixMgOYvh": { + "uv": { + "eD5k": [0, 9], + "yYAy": [7, 11], + "AfLN": [7, 7] + }, + "vertices": ["AfLN", "yYAy", "eD5k"], + "texture": 1 + }, + "RBqNM3aV": { + "uv": { + "ppnZ": [0, 11], + "a6Ti": [0, 11], + "sGur": [3.5, 11.5] + }, + "vertices": ["ppnZ", "sGur", "a6Ti"], + "texture": 1 + }, + "PbRsxzNF": { + "uv": { + "vdUT": [9, 6], + "FBal": [9, 4], + "LKQZ": [4.5, 4], + "lSbW": [4.5, 6] + }, + "vertices": ["FBal", "lSbW", "LKQZ", "vdUT"], + "texture": 1 + }, + "YLxZHzXa": { + "uv": { + "eD5k": [0, 10], + "AfLN": [8, 10], + "xuod": [7, 8.5] + }, + "vertices": ["eD5k", "xuod", "AfLN"], + "texture": 1 + }, + "j7kPMev4": { + "uv": { + "a6Ti": [0, 11], + "5WyA": [0, 11], + "sGur": [3.5, 11.5], + "N8tQ": [0, 11] + }, + "vertices": ["a6Ti", "N8tQ", "sGur", "5WyA"], + "texture": 1 + }, + "oYEZeJop": { + "uv": { + "5WyA": [0, 11], + "FBal": [0, 11], + "N8tQ": [0, 11], + "LKQZ": [0, 11] + }, + "vertices": ["5WyA", "LKQZ", "N8tQ", "FBal"], + "texture": 1 + }, + "JN2qxV70": { + "uv": { + "C6cU": [7, 10], + "A49p": [0, 11], + "HCVy": [7, 12], + "XPZQ": [0, 11] + }, + "vertices": ["XPZQ", "HCVy", "A49p", "C6cU"], + "texture": 1 + }, + "s7idVvdI": { + "uv": { + "A49p": [0, 12], + "uuLd": [0, 9], + "XPZQ": [6, 12], + "tTFb": [6, 9] + }, + "vertices": ["tTFb", "XPZQ", "uuLd", "A49p"], + "texture": 1 + }, + "3YxMl6ID": { + "uv": { + "yF3x": [0, 9], + "Jfz9": [0, 6], + "C6cU": [6, 9], + "A49p": [6, 6] + }, + "vertices": ["A49p", "C6cU", "Jfz9", "yF3x"], + "texture": 1 + }, + "W7j54Eei": { + "uv": { + "Jfz9": [0, 12], + "ZHiN": [0, 9], + "A49p": [6, 12], + "uuLd": [6, 9] + }, + "vertices": ["uuLd", "A49p", "ZHiN", "Jfz9"], + "texture": 1 + }, + "M8wNGDX4": { + "uv": { + "y7s6": [30, 1], + "fLpt": [24, 0], + "aBmc": [24, 1], + "j3zU": [30, 0] + }, + "vertices": ["j3zU", "aBmc", "fLpt", "y7s6"], + "texture": 1 + }, + "yDqHbo9h": { + "uv": { + "2NA1": [30, 0], + "r4hz": [30, 1], + "4pYc": [33, 0], + "xuod": [33, 1] + }, + "vertices": ["2NA1", "xuod", "4pYc", "r4hz"], + "texture": 1 + }, + "MoW8TQLr": { + "uv": { + "qc0L": [5, 9], + "dgCx": [2, 9], + "AfLN": [2, 8], + "yYAy": [5, 8] + }, + "vertices": ["yYAy", "AfLN", "dgCx", "qc0L"], + "texture": 1 + }, + "0jS0Uy5k": { + "uv": { + "lXqu": [1, 10], + "qc0L": [1, 8], + "yYAy": [2, 8], + "TwUw": [2, 10] + }, + "vertices": ["TwUw", "yYAy", "qc0L", "lXqu"], + "texture": 1 + }, + "LWutpvwP": { + "uv": { + "n3UK": [3, 10], + "lXqu": [0, 10], + "TwUw": [0, 9], + "jqYQ": [3, 9] + }, + "vertices": ["jqYQ", "TwUw", "lXqu", "n3UK"], + "texture": 1 + }, + "jpZwlyIV": { + "uv": { + "If9H": [2, 10], + "n3UK": [0, 10], + "jqYQ": [0, 9], + "cR8P": [2, 9] + }, + "vertices": ["cR8P", "jqYQ", "n3UK", "If9H"], + "texture": 1 + }, + "KFDI8HrX": { + "uv": { + "lH3O": [4, 10], + "If9H": [4, 7], + "cR8P": [5, 7], + "Wmhk": [5, 10] + }, + "vertices": ["Wmhk", "cR8P", "If9H", "lH3O"], + "texture": 1 + }, + "9U6WwQ2l": { + "uv": { + "lH3O": [25, 0], + "Wmhk": [25, 1], + "qR5g": [28, 0], + "xIv9": [28, 1] + }, + "vertices": ["lH3O", "xIv9", "qR5g", "Wmhk"], + "texture": 1 + }, + "v1ehew7P": { + "uv": { + "2NA1": [30, 0], + "fLpt": [24, 0], + "aBmc": [24, 1], + "r4hz": [30, 1] + }, + "vertices": ["r4hz", "aBmc", "fLpt", "2NA1"], + "texture": 1 + }, + "CR7AFEZW": { + "uv": { + "vdUT": [12, 6], + "MHH5": [0, 6], + "7lzt": [0, 4], + "FBal": [12, 4] + }, + "vertices": ["FBal", "MHH5", "vdUT", "7lzt"], + "texture": 1 + }, + "Mm2kvP11": { + "uv": { + "5WyA": [0, 11], + "TQ4O": [0, 11], + "7lzt": [0, 11], + "FBal": [0, 11] + }, + "vertices": ["FBal", "7lzt", "TQ4O", "5WyA"], + "texture": 1 + }, + "4W0EnR3i": { + "uv": { + "a6Ti": [24, 10], + "5haT": [18, 10], + "TQ4O": [18, 1], + "5WyA": [24, 1] + }, + "vertices": ["5WyA", "TQ4O", "5haT", "a6Ti"], + "texture": 1 + }, + "dnGjh5q7": { + "uv": { + "ppnZ": [0, 11], + "5haT": [0, 11], + "a6Ti": [0, 11] + }, + "vertices": ["a6Ti", "5haT", "ppnZ"], + "texture": 1 + }, + "kKJrjpb6": { + "uv": { + "eD5k": [3, 11], + "aBmc": [3, 7], + "y7s6": [6, 7] + }, + "vertices": ["y7s6", "aBmc", "eD5k"], + "texture": 1 + }, + "lYXDWMd3": { + "uv": { + "If9H": [6, 6], + "2pNO": [6, 7], + "O2fe": [0, 7], + "n3UK": [0, 6] + }, + "vertices": ["n3UK", "O2fe", "2pNO", "If9H"], + "texture": 1 + }, + "8e3URcRo": { + "uv": { + "lH3O": [6, 6], + "zkoC": [6, 7], + "2pNO": [0, 7], + "If9H": [0, 6] + }, + "vertices": ["If9H", "2pNO", "zkoC", "lH3O"], + "texture": 1 + }, + "CVAgmYM8": { + "uv": { + "zkoC": [36, 10], + "lH3O": [36, 4], + "j7O6": [33, 10], + "qR5g": [33, 4] + }, + "vertices": ["zkoC", "qR5g", "j7O6", "lH3O"], + "texture": 1 + }, + "t8V2Pqnx": { + "uv": { + "fLpt": [24, 4], + "MHH5": [24, 10], + "V1kR": [30, 10], + "j3zU": [30, 4] + }, + "vertices": ["j3zU", "V1kR", "MHH5", "fLpt"], + "texture": 1 + }, + "260ADKqo": { + "uv": { + "2NA1": [30, 4], + "vdUT": [30, 10], + "MHH5": [24, 10], + "fLpt": [24, 4] + }, + "vertices": ["fLpt", "MHH5", "vdUT", "2NA1"], + "texture": 1 + }, + "yjLgvyYt": { + "uv": { + "vdUT": [30, 10], + "2NA1": [30, 4], + "lSbW": [33, 10], + "4pYc": [33, 4] + }, + "vertices": ["vdUT", "4pYc", "lSbW", "2NA1"], + "texture": 1 + }, + "xEfTTb4g": { + "uv": { + "qc0L": [0, 6], + "1l81": [0, 7], + "wxOS": [6, 7], + "dgCx": [6, 6] + }, + "vertices": ["dgCx", "wxOS", "1l81", "qc0L"], + "texture": 1 + }, + "VUv0d16w": { + "uv": { + "lXqu": [0, 6], + "yyfa": [0, 7], + "1l81": [6, 7], + "qc0L": [6, 6] + }, + "vertices": ["qc0L", "1l81", "yyfa", "lXqu"], + "texture": 1 + }, + "v470CMMW": { + "uv": { + "n3UK": [6, 6], + "O2fe": [6, 7], + "yyfa": [0, 7], + "lXqu": [0, 6] + }, + "vertices": ["lXqu", "yyfa", "O2fe", "n3UK"], + "texture": 1 + }, + "v10EtBdo": { + "uv": { + "V1kR": [9, 6], + "j7O6": [4.5, 6], + "2fMz": [9, 4], + "haP5": [4.5, 4] + }, + "vertices": ["V1kR", "j7O6", "haP5", "2fMz"], + "texture": 1 + }, + "834XtG05": { + "uv": { + "2fMz": [0, 11], + "8Vaz": [0, 11], + "ZVaC": [0, 11], + "haP5": [0, 11] + }, + "vertices": ["2fMz", "haP5", "ZVaC", "8Vaz"], + "texture": 1 + }, + "c3syJs9d": { + "uv": { + "8Vaz": [0, 11], + "BlXc": [0, 11], + "ONPR": [0, 11], + "ZVaC": [0, 11] + }, + "vertices": ["8Vaz", "ZVaC", "ONPR", "BlXc"], + "texture": 1 + }, + "VFBsgULl": { + "uv": { + "ppnZ": [0, 11], + "BlXc": [0, 11], + "ONPR": [0, 11] + }, + "vertices": ["BlXc", "ONPR", "ppnZ"], + "texture": 1 + }, + "2Nmp7vah": { + "uv": { + "j3zU": [30, 4], + "V1kR": [30, 10], + "j7O6": [33, 10], + "qR5g": [33, 4] + }, + "vertices": ["j3zU", "qR5g", "j7O6", "V1kR"], + "texture": 1 + }, + "KUJOEuq1": { + "uv": { + "j3zU": [31, 0], + "y7s6": [31, 1], + "qR5g": [28, 0], + "xIv9": [28, 1] + }, + "vertices": ["y7s6", "xIv9", "qR5g", "j3zU"], + "texture": 1 + }, + "KDuDiaVA": { + "uv": { + "eD5k": [0, 10], + "Wmhk": [8, 10], + "xIv9": [7, 8.5] + }, + "vertices": ["Wmhk", "xIv9", "eD5k"], + "texture": 1 + }, + "dmoRpiOt": { + "uv": { + "wxOS": [0, 6], + "tTFb": [0, 4], + "LKQZ": [4.5, 4], + "lSbW": [4.5, 6] + }, + "vertices": ["wxOS", "lSbW", "LKQZ", "tTFb"], + "texture": 1 + }, + "9CcuQmUQ": { + "uv": { + "XPZQ": [0, 11], + "tTFb": [0, 11], + "N8tQ": [0, 11], + "LKQZ": [0, 11] + }, + "vertices": ["tTFb", "LKQZ", "N8tQ", "XPZQ"], + "texture": 1 + }, + "lGA3uG9t": { + "uv": { + "HCVy": [7, 12], + "XPZQ": [0, 11], + "sGur": [3.5, 11.5], + "N8tQ": [0, 11] + }, + "vertices": ["XPZQ", "N8tQ", "sGur", "HCVy"], + "texture": 1 + }, + "V88miogy": { + "uv": { + "ppnZ": [0, 11], + "HCVy": [7, 12], + "sGur": [3.5, 11.5] + }, + "vertices": ["HCVy", "sGur", "ppnZ"], + "texture": 1 + }, + "jcpdlH88": { + "uv": { + "dgCx": [36, 4], + "wxOS": [36, 10], + "lSbW": [33, 10], + "4pYc": [33, 4] + }, + "vertices": ["dgCx", "4pYc", "lSbW", "wxOS"], + "texture": 1 + }, + "BnmpbmSp": { + "uv": { + "dgCx": [36, 0], + "AfLN": [36, 1], + "4pYc": [33, 0], + "xuod": [33, 1] + }, + "vertices": ["AfLN", "xuod", "4pYc", "dgCx"], + "texture": 1 + }, + "HGAjhTQu": { + "uv": { + "eD5k": [0, 10], + "r4hz": [6, 7], + "xuod": [7, 8.5] + }, + "vertices": ["r4hz", "xuod", "eD5k"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "7564b320-32ad-f191-5c63-fdfa5abfafd5" + }, + { + "name": "sphere", + "color": 8, + "origin": [0, 27, -0.45], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "jKok": [-4.99829, 1.42535, 2.47075], + "FXfo": [-4.36738, -4.70018, 3.6726], + "75IQ": [-4.99829, 1.29867, -2.33264], + "jDJU": [-4.76614, 2.20008, -1.35527], + "vple": [-4.76614, 2.20008, 2.16847], + "HSIv": [-5.59919, -1.34381, -0.4728], + "nHut": [-5.59919, -1.34381, 2.67465], + "LbBY": [-4.88221, -0.42628, -2.21937], + "5AXE": [-3.64969, 0.86428, -2.64685], + "4Aek": [-4.88221, -0.01255, 2.31961], + "nGlq": [-0.85031, -0.11072, -2.15352], + "lIQ3": [-4.36738, -5.67518, 2.68593], + "GFNw": [-4.36738, -5.67518, 1.64702], + "owwU": [3.53433, 3.95017, 1.86617], + "yJdM": [4.99829, 1.42535, 2.47075], + "Vz8M": [4.36738, -4.70018, 3.6726], + "jbYw": [4.99829, 1.29867, -2.33264], + "LInl": [2.21884, 1.90413, -3.77932], + "CEed": [4.76614, 2.20008, -1.35527], + "aAun": [4.76614, 2.20008, 2.16847], + "b8kf": [5.59919, -1.34381, -0.4728], + "kpeJ": [5.59919, -1.34381, 2.67465], + "BHgp": [4.88221, -0.42628, -2.21937], + "NL1s": [3.64969, 0.86428, -2.64685], + "UilW": [4.88221, -0.01255, 2.31961], + "HRTL": [1.13652, 2.38818, -2.94839], + "ytho": [0.85031, -0.11072, -2.15352], + "PCb6": [-3.53433, 3.95017, 1.86617], + "cefY": [-3.53433, 3.95017, -1.05298], + "1Acn": [-2.21884, 1.90413, -3.77932], + "PG6A": [-3.64029, -2.86217, -1.06434], + "YKrh": [-2.07036, 1.42535, 5.38991], + "9Vbx": [-2.46853, -5.67518, 5.73675], + "AETh": [-1.9742, 2.20008, 4.66012], + "B9LH": [-2.60021, -1.34381, 6.46655], + "T24w": [-1.91876, -0.01255, 5.84476], + "0y1E": [0, -6.3, 3.19327], + "7NKt": [0, 4.95, 0.4066], + "9osI": [-1.46397, 3.95017, 3.93033], + "NXb9": [-1.46397, 3.95017, -3.11714], + "wOfP": [-1.46397, -4.70018, 0.76286], + "grtz": [1.46397, 3.95017, 3.93033], + "QrYn": [1.46397, 3.95017, -3.11714], + "AAGn": [1.46397, -4.70018, 0.76286], + "MGSN": [2.07036, 1.42535, 5.38991], + "cVzJ": [2.46853, -5.67518, 5.73675], + "pSuD": [1.9742, 2.20008, 4.66012], + "fvDz": [2.60021, -1.34381, 6.46655], + "EApG": [1.91876, -0.01255, 5.84476], + "TmnP": [4.36738, -5.67518, 2.68593], + "z83N": [3.53433, 3.95017, -1.05298], + "zWCT": [4.36738, -5.67518, 1.64702], + "zBbf": [-1.13652, 1.99818, -3.21839], + "mjln": [3.64029, -2.86217, -1.06434] + }, + "faces": { + "CfZlFLu3": { + "uv": { + "7NKt": [15.35365, 24.2836], + "9osI": [18.30731, 28.92881], + "PCb6": [12.4, 28.92881] + }, + "vertices": ["PCb6", "9osI", "7NKt"], + "texture": 1 + }, + "YMU6twbg": { + "uv": { + "YKrh": [12.4, 28.445], + "vple": [22.42197, 24.86432], + "jKok": [23.2138, 28.445], + "AETh": [13.19183, 24.86432] + }, + "vertices": ["AETh", "jKok", "vple", "YKrh"], + "texture": 1 + }, + "599E21cC": { + "uv": { + "9Vbx": [13.98366, 35.445], + "nHut": [22.42197, 29.8643], + "FXfo": [21.63014, 35.445], + "B9LH": [13.19183, 29.8643] + }, + "vertices": ["B9LH", "FXfo", "nHut", "9Vbx"], + "texture": 1 + }, + "e3aOm5Hl": { + "uv": { + "0y1E": [16.22324, 35.445], + "FXfo": [20.04648, 24.2836], + "9Vbx": [12.4, 24.2836] + }, + "vertices": ["9Vbx", "FXfo", "0y1E"], + "texture": 1 + }, + "R9EdmOeg": { + "uv": { + "7NKt": [15.35365, 24.2836], + "PCb6": [18.30731, 28.92881], + "cefY": [12.4, 28.92881] + }, + "vertices": ["cefY", "PCb6", "7NKt"], + "texture": 1 + }, + "GjEjz7Ro": { + "uv": { + "jKok": [12.4, 28.445], + "jDJU": [22.42197, 24.86432], + "75IQ": [23.2138, 28.445], + "vple": [13.19183, 24.86432] + }, + "vertices": ["vple", "75IQ", "jDJU", "jKok"], + "texture": 1 + }, + "J6qum8Ns": { + "uv": { + "FXfo": [13.98366, 35.445], + "HSIv": [22.42197, 29.8643], + "GFNw": [21.63014, 35.445], + "nHut": [13.19183, 29.8643] + }, + "vertices": ["nHut", "GFNw", "HSIv", "FXfo"], + "texture": 1 + }, + "p7QAgnbw": { + "uv": { + "0y1E": [16.22324, 35.445], + "GFNw": [20.04648, 24.2836], + "FXfo": [12.4, 24.2836] + }, + "vertices": ["FXfo", "GFNw", "0y1E"], + "texture": 1 + }, + "VqJzQYeL": { + "uv": { + "75IQ": [12.4, 28.445], + "1Acn": [22.81789, 26.65466], + "jDJU": [13.19183, 24.86432] + }, + "vertices": ["jDJU", "1Acn", "75IQ"], + "texture": 1 + }, + "rjwxyevX": { + "uv": { + "GFNw": [13.98366, 35.445], + "wOfP": [21.63014, 35.445], + "HSIv": [13.19183, 29.8643] + }, + "vertices": ["HSIv", "wOfP", "GFNw"], + "texture": 1 + }, + "FpGG2OsV": { + "uv": { + "NXb9": [19.11966, 24.2836], + "1Acn": [13.74808, 24.2836], + "cefY": [19.67591, 27.111], + "jDJU": [13.19183, 27.111] + }, + "vertices": ["jDJU", "cefY", "1Acn", "NXb9"], + "texture": 1 + }, + "WVywrfkh": { + "uv": { + "PCb6": [19.11966, 24.2836], + "vple": [13.74808, 24.2836], + "9osI": [19.67591, 27.111], + "AETh": [13.19183, 27.111] + }, + "vertices": ["AETh", "9osI", "vple", "PCb6"], + "texture": 1 + }, + "wjPrqXqq": { + "uv": { + "cefY": [19.11966, 24.2836], + "jDJU": [13.74808, 24.2836], + "PCb6": [19.67591, 27.111], + "vple": [13.19183, 27.111] + }, + "vertices": ["vple", "PCb6", "jDJU", "cefY"], + "texture": 1 + }, + "U2CwdCcf": { + "uv": { + "HSIv": [13.19183, 29.8643], + "5AXE": [22.81788, 27.07395], + "PG6A": [22.42197, 29.8643], + "LbBY": [12.79592, 27.07395] + }, + "vertices": ["LbBY", "PG6A", "5AXE", "HSIv"], + "texture": 1 + }, + "oPupHgRI": { + "uv": { + "B9LH": [13.19183, 29.8643], + "4Aek": [22.81788, 27.07395], + "nHut": [22.42197, 29.8643], + "T24w": [12.79592, 27.07395] + }, + "vertices": ["T24w", "nHut", "4Aek", "B9LH"], + "texture": 1 + }, + "JZ21qe1j": { + "uv": { + "nHut": [13.19183, 29.8643], + "LbBY": [22.81788, 27.07395], + "HSIv": [22.42197, 29.8643], + "4Aek": [12.79592, 27.07395] + }, + "vertices": ["4Aek", "HSIv", "LbBY", "nHut"], + "texture": 1 + }, + "cGzqpGPN": { + "uv": { + "5AXE": [22.81788, 27.07395], + "75IQ": [12.4, 24.2836], + "LbBY": [12.79592, 27.07395] + }, + "vertices": ["LbBY", "75IQ", "5AXE"], + "texture": 1 + }, + "n4JqRr2O": { + "uv": { + "jKok": [23.2138, 24.2836], + "4Aek": [22.81788, 27.07395], + "YKrh": [12.4, 24.2836], + "T24w": [12.79592, 27.07395] + }, + "vertices": ["T24w", "YKrh", "4Aek", "jKok"], + "texture": 1 + }, + "5TE5NA9Q": { + "uv": { + "75IQ": [23.2138, 24.2836], + "LbBY": [22.81788, 27.07395], + "jKok": [12.4, 24.2836], + "4Aek": [12.79592, 27.07395] + }, + "vertices": ["4Aek", "jKok", "LbBY", "75IQ"], + "texture": 1 + }, + "qpAUxEXX": { + "uv": { + "GFNw": [13.98366, 35.445], + "PG6A": [22.42197, 29.8643], + "HSIv": [13.19183, 29.8643] + }, + "vertices": ["HSIv", "PG6A", "GFNw"], + "texture": 1 + }, + "v2wDlkRg": { + "uv": { + "wOfP": [17.44698, 34.61157], + "GFNw": [20.63818, 34.61157], + "PG6A": [19.79468, 32.54355] + }, + "vertices": ["PG6A", "GFNw", "wOfP"], + "texture": 1 + }, + "3OIMqIi2": { + "uv": { + "1Acn": [24, 28], + "5AXE": [23, 31], + "nGlq": [13, 31], + "zBbf": [12, 28] + }, + "vertices": ["zBbf", "nGlq", "5AXE", "1Acn"], + "texture": 1 + }, + "O5x06ylH": { + "uv": { + "7NKt": [15.35365, 24.2836], + "owwU": [12.4, 28.92881], + "grtz": [18.30731, 28.92881] + }, + "vertices": ["grtz", "owwU", "7NKt"], + "texture": 1 + }, + "tIZmB4lc": { + "uv": { + "7NKt": [15.35365, 24.2836], + "z83N": [12.4, 28.92881], + "owwU": [18.30731, 28.92881] + }, + "vertices": ["owwU", "z83N", "7NKt"], + "texture": 1 + }, + "wxE5wvrO": { + "uv": { + "7NKt": [18.09971, 25.20137], + "QrYn": [15.14606, 29.84659], + "z83N": [21.05337, 29.84659] + }, + "vertices": ["z83N", "QrYn", "7NKt"], + "texture": 1 + }, + "ubicc3vF": { + "uv": { + "7NKt": [18.09971, 26.11915], + "grtz": [15.14606, 30.76436], + "9osI": [21.05337, 30.76436] + }, + "vertices": ["9osI", "grtz", "7NKt"], + "texture": 1 + }, + "16KVhNq8": { + "uv": { + "7NKt": [19.93042, 29.84659], + "NXb9": [16.97677, 25.20137], + "QrYn": [22.88407, 25.20137] + }, + "vertices": ["QrYn", "NXb9", "7NKt"], + "texture": 1 + }, + "Tuh4qWWV": { + "uv": { + "wOfP": [13.98366, 35.445], + "mjln": [22.42197, 29.8643], + "AAGn": [21.63014, 35.445], + "PG6A": [13.19183, 29.8643] + }, + "vertices": ["PG6A", "AAGn", "mjln", "wOfP"], + "texture": 1 + }, + "rBoCNANZ": { + "uv": { + "0y1E": [16.22324, 35.445], + "AAGn": [20.04648, 24.2836], + "wOfP": [12.4, 24.2836] + }, + "vertices": ["wOfP", "AAGn", "0y1E"], + "texture": 1 + }, + "NvWxXDXs": { + "uv": { + "cVzJ": [13.98366, 35.445], + "B9LH": [22.42197, 29.8643], + "9Vbx": [21.63014, 35.445], + "fvDz": [13.19183, 29.8643] + }, + "vertices": ["fvDz", "9Vbx", "B9LH", "cVzJ"], + "texture": 1 + }, + "rewAC0ru": { + "uv": { + "0y1E": [16.22324, 35.445], + "9Vbx": [20.04648, 24.2836], + "cVzJ": [12.4, 24.2836] + }, + "vertices": ["cVzJ", "9Vbx", "0y1E"], + "texture": 1 + }, + "TCkvc3xB": { + "uv": { + "0y1E": [16.22324, 35.445], + "lIQ3": [20.04648, 24.2836], + "9Vbx": [12.4, 24.2836] + }, + "vertices": ["9Vbx", "lIQ3", "0y1E"], + "texture": 1 + }, + "7TpoJPYf": { + "uv": { + "0y1E": [16.22324, 35.445], + "GFNw": [20.04648, 24.2836], + "lIQ3": [12.4, 24.2836] + }, + "vertices": ["lIQ3", "GFNw", "0y1E"], + "texture": 1 + }, + "AbcasAJX": { + "uv": { + "7NKt": [15.35365, 28.92881], + "cefY": [12.4, 24.2836], + "NXb9": [18.30731, 24.2836] + }, + "vertices": ["NXb9", "cefY", "7NKt"], + "texture": 1 + }, + "Y4GP8LGk": { + "uv": { + "0y1E": [16.22324, 35.445], + "wOfP": [20.04648, 24.2836], + "GFNw": [12.4, 24.2836] + }, + "vertices": ["GFNw", "wOfP", "0y1E"], + "texture": 1 + }, + "ybqKUDwY": { + "uv": { + "7NKt": [15.35365, 24.2836], + "owwU": [12.4, 28.92881], + "grtz": [18.30731, 28.92881] + }, + "vertices": ["grtz", "owwU", "7NKt"], + "texture": 1 + }, + "YCAiOAhK": { + "uv": { + "MGSN": [12.4, 28.445], + "aAun": [22.42197, 24.86432], + "pSuD": [13.19183, 24.86432], + "yJdM": [23.2138, 28.445] + }, + "vertices": ["yJdM", "pSuD", "aAun", "MGSN"], + "texture": 1 + }, + "2lrSoywG": { + "uv": { + "cVzJ": [13.98366, 35.445], + "kpeJ": [22.42197, 29.8643], + "fvDz": [13.19183, 29.8643], + "Vz8M": [21.63014, 35.445] + }, + "vertices": ["Vz8M", "fvDz", "kpeJ", "cVzJ"], + "texture": 1 + }, + "T0O1Qklz": { + "uv": { + "0y1E": [16.22324, 35.445], + "cVzJ": [12.4, 24.2836], + "Vz8M": [20.04648, 24.2836] + }, + "vertices": ["Vz8M", "cVzJ", "0y1E"], + "texture": 1 + }, + "fxmhnWuI": { + "uv": { + "7NKt": [15.35365, 24.2836], + "z83N": [12.4, 28.92881], + "owwU": [18.30731, 28.92881] + }, + "vertices": ["owwU", "z83N", "7NKt"], + "texture": 1 + }, + "e9g1ZM2R": { + "uv": { + "yJdM": [12.4, 28.445], + "CEed": [22.42197, 24.86432], + "aAun": [13.19183, 24.86432], + "jbYw": [23.2138, 28.445] + }, + "vertices": ["jbYw", "aAun", "CEed", "yJdM"], + "texture": 1 + }, + "hvzCyS3N": { + "uv": { + "Vz8M": [13.98366, 35.445], + "b8kf": [22.42197, 29.8643], + "kpeJ": [13.19183, 29.8643], + "zWCT": [21.63014, 35.445] + }, + "vertices": ["zWCT", "kpeJ", "b8kf", "Vz8M"], + "texture": 1 + }, + "M7w0Y8jw": { + "uv": { + "0y1E": [16.22324, 35.445], + "Vz8M": [12.4, 24.2836], + "zWCT": [20.04648, 24.2836] + }, + "vertices": ["zWCT", "Vz8M", "0y1E"], + "texture": 1 + }, + "QWd7RZLx": { + "uv": { + "jbYw": [12.4, 28.445], + "CEed": [13.19183, 24.86432], + "LInl": [22.81789, 26.65466] + }, + "vertices": ["LInl", "CEed", "jbYw"], + "texture": 1 + }, + "TauxAtoF": { + "uv": { + "zWCT": [13.98366, 35.445], + "b8kf": [13.19183, 29.8643], + "AAGn": [21.63014, 35.445] + }, + "vertices": ["AAGn", "b8kf", "zWCT"], + "texture": 1 + }, + "ZDHBz7cG": { + "uv": { + "QrYn": [19.11966, 24.2836], + "LInl": [13.74808, 24.2836], + "CEed": [13.19183, 27.111], + "z83N": [19.67591, 27.111] + }, + "vertices": ["z83N", "CEed", "LInl", "QrYn"], + "texture": 1 + }, + "Ywlp2A5z": { + "uv": { + "owwU": [19.11966, 24.2836], + "aAun": [13.74808, 24.2836], + "pSuD": [13.19183, 27.111], + "grtz": [19.67591, 27.111] + }, + "vertices": ["grtz", "pSuD", "aAun", "owwU"], + "texture": 1 + }, + "qQ6VpRZe": { + "uv": { + "z83N": [19.11966, 24.2836], + "CEed": [13.74808, 24.2836], + "aAun": [13.19183, 27.111], + "owwU": [19.67591, 27.111] + }, + "vertices": ["owwU", "aAun", "CEed", "z83N"], + "texture": 1 + }, + "9Xmbk06f": { + "uv": { + "b8kf": [13.19183, 29.8643], + "NL1s": [22.81788, 27.07395], + "BHgp": [12.79592, 27.07395], + "mjln": [22.42197, 29.8643] + }, + "vertices": ["mjln", "BHgp", "NL1s", "b8kf"], + "texture": 1 + }, + "90U61sQs": { + "uv": { + "fvDz": [13.19183, 29.8643], + "UilW": [22.81788, 27.07395], + "EApG": [12.79592, 27.07395], + "kpeJ": [22.42197, 29.8643] + }, + "vertices": ["kpeJ", "EApG", "UilW", "fvDz"], + "texture": 1 + }, + "3nAPr5Vb": { + "uv": { + "kpeJ": [13.19183, 29.8643], + "BHgp": [22.81788, 27.07395], + "UilW": [12.79592, 27.07395], + "b8kf": [22.42197, 29.8643] + }, + "vertices": ["b8kf", "UilW", "BHgp", "kpeJ"], + "texture": 1 + }, + "N7gZZzuE": { + "uv": { + "NL1s": [22.81788, 27.07395], + "BHgp": [12.79592, 27.07395], + "jbYw": [12.4, 24.2836] + }, + "vertices": ["jbYw", "BHgp", "NL1s"], + "texture": 1 + }, + "oCsF34PS": { + "uv": { + "yJdM": [23.2138, 24.2836], + "UilW": [22.81788, 27.07395], + "EApG": [12.79592, 27.07395], + "MGSN": [12.4, 24.2836] + }, + "vertices": ["MGSN", "EApG", "UilW", "yJdM"], + "texture": 1 + }, + "7OtzI9CF": { + "uv": { + "jbYw": [23.2138, 24.2836], + "BHgp": [22.81788, 27.07395], + "UilW": [12.79592, 27.07395], + "yJdM": [12.4, 24.2836] + }, + "vertices": ["yJdM", "UilW", "BHgp", "jbYw"], + "texture": 1 + }, + "MHxYSMHA": { + "uv": { + "zWCT": [13.98366, 35.445], + "b8kf": [13.19183, 29.8643], + "mjln": [22.42197, 29.8643] + }, + "vertices": ["mjln", "b8kf", "zWCT"], + "texture": 1 + }, + "e1EGiE0x": { + "uv": { + "AAGn": [17.44698, 34.61157], + "mjln": [19.79468, 32.54355], + "zWCT": [20.63818, 34.61157] + }, + "vertices": ["zWCT", "mjln", "AAGn"], + "texture": 1 + }, + "EnOjasRk": { + "uv": { + "LInl": [24, 28], + "NL1s": [12, 28], + "HRTL": [23, 31], + "ytho": [13, 31] + }, + "vertices": ["ytho", "HRTL", "NL1s", "LInl"], + "texture": 1 + }, + "BnVyjGEr": { + "uv": { + "7NKt": [15.35365, 24.2836], + "9osI": [18.30731, 28.92881], + "PCb6": [12.4, 28.92881] + }, + "vertices": ["PCb6", "9osI", "7NKt"], + "texture": 1 + }, + "1GP5oMXt": { + "uv": { + "7NKt": [15.35365, 24.2836], + "PCb6": [18.30731, 28.92881], + "cefY": [12.4, 28.92881] + }, + "vertices": ["cefY", "PCb6", "7NKt"], + "texture": 1 + }, + "HbmqV6wX": { + "uv": { + "7NKt": [18.09971, 25.20137], + "cefY": [21.05337, 29.84659], + "NXb9": [15.14606, 29.84659] + }, + "vertices": ["NXb9", "cefY", "7NKt"], + "texture": 1 + }, + "TZISD7Ta": { + "uv": { + "7NKt": [18.09971, 26.11915], + "grtz": [21.05337, 30.76436], + "9osI": [15.14606, 30.76436] + }, + "vertices": ["9osI", "grtz", "7NKt"], + "texture": 1 + }, + "jLIOfIVV": { + "uv": { + "grtz": [19.11966, 24.2836], + "pSuD": [19.67591, 27.111], + "AETh": [13.19183, 27.111], + "9osI": [13.74808, 24.2836] + }, + "vertices": ["9osI", "AETh", "pSuD", "grtz"], + "texture": 1 + }, + "EEI5QteS": { + "uv": { + "7NKt": [19.93042, 29.84659], + "NXb9": [22.88407, 25.20137], + "QrYn": [16.97677, 25.20137] + }, + "vertices": ["QrYn", "NXb9", "7NKt"], + "texture": 1 + }, + "DDwjMZN5": { + "uv": { + "NXb9": [19.94808, 27.1836], + "1Acn": [20.67591, 31.011], + "LInl": [12.19183, 31.011], + "QrYn": [12.91966, 27.1836] + }, + "vertices": ["QrYn", "LInl", "1Acn", "NXb9"], + "texture": 1 + }, + "ujSOPSMx": { + "uv": { + "AAGn": [13.98366, 35.445], + "PG6A": [22.42197, 29.8643], + "mjln": [13.19183, 29.8643], + "wOfP": [21.63014, 35.445] + }, + "vertices": ["wOfP", "mjln", "PG6A", "AAGn"], + "texture": 1 + }, + "J8OhjxTG": { + "uv": { + "0y1E": [16.22324, 35.445], + "AAGn": [12.4, 24.2836], + "wOfP": [20.04648, 24.2836] + }, + "vertices": ["wOfP", "AAGn", "0y1E"], + "texture": 1 + }, + "oKAkzerh": { + "uv": { + "YKrh": [12.4, 28.445], + "pSuD": [22.42197, 24.86432], + "AETh": [13.19183, 24.86432], + "MGSN": [23.2138, 28.445] + }, + "vertices": ["MGSN", "AETh", "pSuD", "YKrh"], + "texture": 1 + }, + "74vyrQL4": { + "uv": { + "0y1E": [16.22324, 35.445], + "9Vbx": [12.4, 24.2836], + "cVzJ": [20.04648, 24.2836] + }, + "vertices": ["cVzJ", "9Vbx", "0y1E"], + "texture": 1 + }, + "QwElfzPz": { + "uv": { + "B9LH": [13.19183, 29.8643], + "EApG": [22.81788, 27.07395], + "T24w": [12.79592, 27.07395], + "fvDz": [22.42197, 29.8643] + }, + "vertices": ["fvDz", "T24w", "EApG", "B9LH"], + "texture": 1 + }, + "UAW1iLNx": { + "uv": { + "MGSN": [23.2138, 24.2836], + "EApG": [22.81788, 27.07395], + "T24w": [12.79592, 27.07395], + "YKrh": [12.4, 24.2836] + }, + "vertices": ["YKrh", "T24w", "EApG", "MGSN"], + "texture": 1 + }, + "PqO49L9U": { + "uv": { + "0y1E": [16.22324, 35.445], + "cVzJ": [12.4, 24.2836], + "TmnP": [20.04648, 24.2836] + }, + "vertices": ["TmnP", "cVzJ", "0y1E"], + "texture": 1 + }, + "LktzJ856": { + "uv": { + "0y1E": [16.22324, 35.445], + "TmnP": [12.4, 24.2836], + "zWCT": [20.04648, 24.2836] + }, + "vertices": ["zWCT", "TmnP", "0y1E"], + "texture": 1 + }, + "biSz2U4t": { + "uv": { + "7NKt": [15.35365, 28.92881], + "QrYn": [18.30731, 24.2836], + "z83N": [12.4, 24.2836] + }, + "vertices": ["z83N", "QrYn", "7NKt"], + "texture": 1 + }, + "gFu0yaKG": { + "uv": { + "0y1E": [16.22324, 35.445], + "zWCT": [12.4, 24.2836], + "AAGn": [20.04648, 24.2836] + }, + "vertices": ["AAGn", "zWCT", "0y1E"], + "texture": 1 + }, + "LxyrzKoA": { + "uv": { + "1Acn": [23.2138, 24.2836], + "75IQ": [12.4, 24.2836], + "5AXE": [22.81788, 27.07395] + }, + "vertices": ["5AXE", "75IQ", "1Acn"], + "texture": 1 + }, + "mtdFIh3D": { + "uv": { + "LInl": [23.2138, 24.2836], + "NL1s": [22.81788, 27.07395], + "jbYw": [12.4, 24.2836] + }, + "vertices": ["jbYw", "NL1s", "LInl"], + "texture": 1 + }, + "YVCc997S": { + "uv": { + "1Acn": [12, 29.82347], + "zBbf": [13.3481, 28.22928], + "HRTL": [16.29357, 26.9836], + "LInl": [17.69612, 29.82347] + }, + "vertices": ["LInl", "HRTL", "zBbf", "1Acn"], + "texture": 1 + }, + "7JMKLqjo": { + "uv": { + "zBbf": [16.07105, 32.93739], + "HRTL": [16.04119, 29.9836], + "nGlq": [13.29124, 32.93739], + "ytho": [13, 30.76341] + }, + "vertices": ["ytho", "nGlq", "HRTL", "zBbf"], + "texture": 1 + }, + "s6PlbZph": { + "uv": { + "mjln": [13, 29.77682], + "NL1s": [13, 24.9836], + "ytho": [16.60807, 26.27909] + }, + "vertices": ["ytho", "NL1s", "mjln"], + "texture": 1 + }, + "CxGUwfqa": { + "uv": { + "5AXE": [16.8336, 24.9836], + "PG6A": [15.21383, 29.49484], + "nGlq": [13, 24.9836] + }, + "vertices": ["nGlq", "PG6A", "5AXE"], + "texture": 1 + }, + "o31175XQ": { + "uv": { + "PG6A": [22.3898, 28.4913], + "nGlq": [18.7916, 24.9836], + "mjln": [13, 28.4913], + "ytho": [16.5982, 24.9836] + }, + "vertices": ["ytho", "mjln", "nGlq", "PG6A"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "6ee6c485-55e3-677f-8a8a-6437317da917" + }, + { + "name": "cylinder", + "color": 8, + "origin": [0, 9.9, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "VNps": [-1.30727, 8.95891, -2.72852], + "4ezv": [-1.30727, 6.6678, -2.07689], + "EbdB": [-1.30727, 4.41973, -2.75171], + "qevP": [-1.13569, 1.5107, -1.50442], + "00Kd": [1.13552, 1.5107, -1.50442], + "hnZd": [1.3071, 8.95891, -2.72852], + "La2n": [1.3071, 6.6678, -2.07689], + "6ehA": [1.3071, 4.41973, -2.75171], + "GwxS": [2.27112, 1.5107, -1.50442], + "Hvq1": [-1.08212, 8.93096, -3.1567], + "Rnso": [-1.08212, 7.00051, -2.50503], + "4mSB": [-1.08212, 5.0953, -3.17988], + "7R9u": [-0.94009, 1.54293, -1.87242], + "Kim6": [0.94008, 1.93429, -2.1506], + "ww1k": [2.09242, 1.60496, -1.91364], + "JesZ": [0, 0.90973, 0.04566], + "qbIt": [2.1126, 1.04992, 2.13325], + "Bzop": [2.41688, 11.48408, 2.5296], + "qNY4": [3.80283, 1.03063, 0.09755], + "Atxb": [4.35181, 11.54264, 0.17909], + "iHjd": [-2.09795, 1.6107, -1.91821], + "6Fz4": [-3.81634, 1.03874, 0.09656], + "c1T2": [-4.31956, 11.56334, 0.17531], + "sCtj": [-2.11513, 1.05262, 2.13589], + "jkti": [-2.4018, 11.50927, 2.50811], + "8tqY": [-2.60151, 5.07509, -3.09181], + "2Cy7": [2.59802, 5.07686, -3.09334], + "qtJM": [-2.60594, 6.99078, -2.41519], + "XnvV": [2.6044, 7.00064, -2.41582], + "uyLC": [5.2276, 4.74335, 0.15815], + "D5z6": [4.72564, 6.99477, 0.1737], + "Uxw5": [2.58052, 4.74381, 3.0471], + "8HKl": [2.56314, 7.03158, 2.72793], + "Mwes": [-2.5819, 4.73129, 3.04598], + "YbTn": [-2.56504, 7.05507, 2.72585], + "4Qxs": [-5.22679, 4.72827, 0.15782], + "KUq1": [-4.72535, 7.01081, 0.17525], + "Sx25": [-2.60648, 8.93458, -3.06659], + "8U5W": [-5.22435, 8.98164, 0.1993], + "Dpuc": [-2.53794, 8.97188, 2.73714], + "FVmL": [2.53794, 8.89006, 2.73714], + "tsu4": [5.22435, 8.88029, 0.1993], + "AYR2": [2.60648, 8.92734, -3.06659], + "zojw": [1.08212, 8.93096, -3.1567], + "BQWs": [1.08212, 7.00051, -2.50503], + "OaX5": [1.08212, 5.0953, -3.17988], + "lVHe": [-2.4061, 11.56499, -2.1391], + "95Wr": [-1.08212, 11.64282, -2.06143], + "2hIL": [0.95205, 11.54948, 1.43849], + "u0Gb": [-0.79558, 11.50088, 2.51528], + "dfiu": [-0.34911, 11.55643, 0.17657], + "b69x": [0.81065, 11.49248, 2.52244], + "Qy1i": [0.42634, 11.54954, 0.17783], + "sm1U": [-0.84598, 8.9446, 2.73714], + "wHNi": [0.84597, 8.91733, 2.73714], + "LF0V": [-0.85565, 7.04724, 2.72654], + "rdSk": [0.85374, 7.03941, 2.72723], + "hTCm": [-0.8611, 4.73547, 3.04636], + "LyZP": [0.85971, 4.73963, 3.04673], + "W7og": [-0.70589, 1.05172, 2.13501], + "euyv": [0.70335, 1.05082, 2.13413], + "dL7l": [-0.95205, 11.52698, 0.93849], + "lO3C": [-1.3071, 11.565, -1.80688], + "iF7E": [0.00009, 11.77076, -1.22669], + "qpa3": [1.30727, 11.565, -1.80688], + "mebZ": [2.4061, 11.56499, -2.1391], + "WCsk": [1.08212, 11.64282, -2.06143], + "nOgN": [-1.27902, 12.0281, 1.49963], + "vfKR": [-1.45132, 11.52806, 1.60898], + "c3OB": [1.45132, 11.52806, 1.60898], + "z3lK": [0.95205, 11.52698, 0.93849], + "rN5K": [-1.13411, 12.72132, -2.95922], + "4uEE": [-0.99277, 12.5609, 0.76799], + "AoTh": [0.99277, 12.5609, 0.76799], + "y7CQ": [1.13411, 12.72132, -2.95922], + "V5o8": [-2.4565, 12.64499, -2.13536], + "2YyB": [-1.71994, 12.49646, 1.68307], + "K8mw": [1.71995, 12.49646, 1.68307], + "dNWt": [2.4565, 12.64499, -2.13536] + }, + "faces": { + "n9OF4vTz": { + "uv": { + "qevP": [7, 26], + "EbdB": [6.73205, 22.0836], + "00Kd": [6, 26], + "6ehA": [5.57735, 22.0836] + }, + "vertices": ["6ehA", "00Kd", "EbdB", "qevP"], + "texture": 1 + }, + "qQ6Tj1tt": { + "uv": { + "4ezv": [1.73205, 16.0836], + "VNps": [1.73205, 14.0836], + "La2n": [0.57735, 16.0836], + "hnZd": [0.57735, 14.0836] + }, + "vertices": ["hnZd", "La2n", "VNps", "4ezv"], + "texture": 1 + }, + "UNfAJBLi": { + "uv": { + "EbdB": [1.73205, 19.9836], + "4ezv": [1.73205, 15.9836], + "6ehA": [0.57735, 19.9836], + "La2n": [0.57735, 15.9836] + }, + "vertices": ["La2n", "6ehA", "4ezv", "EbdB"], + "texture": 1 + }, + "PZTHi2NP": { + "uv": { + "JesZ": [2, 25], + "iHjd": [1, 26.66667], + "6Fz4": [0, 25] + }, + "vertices": ["6Fz4", "iHjd", "JesZ"], + "texture": 1 + }, + "o6vR960m": { + "uv": { + "qtJM": [0, 28.33333], + "8U5W": [2, 26.66667], + "Sx25": [0, 26.66667], + "KUq1": [2, 28.33333] + }, + "vertices": ["KUq1", "Sx25", "8U5W", "qtJM"], + "texture": 1 + }, + "Xs4ZXoVL": { + "uv": { + "JesZ": [2, 26.66667], + "6Fz4": [0, 26.66667], + "sCtj": [1, 25] + }, + "vertices": ["sCtj", "6Fz4", "JesZ"], + "texture": 1 + }, + "RsnMytIp": { + "uv": { + "KUq1": [0, 28.33333], + "Dpuc": [2, 26.66667], + "8U5W": [0, 26.66667], + "YbTn": [2, 28.33333] + }, + "vertices": ["YbTn", "8U5W", "Dpuc", "KUq1"], + "texture": 1 + }, + "X1EBn6ci": { + "uv": { + "6Fz4": [0, 35], + "4Qxs": [0, 31.66667], + "Mwes": [2, 31.66667], + "sCtj": [2, 35] + }, + "vertices": ["sCtj", "Mwes", "4Qxs", "6Fz4"], + "texture": 1 + }, + "beE5w2Ye": { + "uv": { + "4Qxs": [0, 31.66667], + "KUq1": [0, 28.33333], + "YbTn": [2, 28.33333], + "Mwes": [2, 31.66667] + }, + "vertices": ["Mwes", "YbTn", "KUq1", "4Qxs"], + "texture": 1 + }, + "ciRZpVSK": { + "uv": { + "iHjd": [0, 35], + "8tqY": [0, 31.66667], + "4Qxs": [2, 31.66667], + "6Fz4": [2, 35] + }, + "vertices": ["6Fz4", "4Qxs", "8tqY", "iHjd"], + "texture": 1 + }, + "TI08wsJr": { + "uv": { + "8tqY": [0, 31.66667], + "qtJM": [0, 28.33333], + "KUq1": [2, 28.33333], + "4Qxs": [2, 31.66667] + }, + "vertices": ["4Qxs", "KUq1", "qtJM", "8tqY"], + "texture": 1 + }, + "OvuFuXq5": { + "uv": { + "c1T2": [2, 25], + "8U5W": [2, 26.66667], + "Sx25": [0, 26.66667], + "lVHe": [0, 25] + }, + "vertices": ["lVHe", "Sx25", "8U5W", "c1T2"], + "texture": 1 + }, + "RDhhyXov": { + "uv": { + "jkti": [2, 25], + "Dpuc": [2, 26.66667], + "8U5W": [0, 26.66667], + "c1T2": [0, 25] + }, + "vertices": ["c1T2", "8U5W", "Dpuc", "jkti"], + "texture": 1 + }, + "VSHmfbTe": { + "uv": { + "qtJM": [25.6, 28.1], + "Rnso": [24.8, 28.1], + "Hvq1": [24.8, 24.1], + "Sx25": [25.6, 24.1] + }, + "vertices": ["Sx25", "Hvq1", "Rnso", "qtJM"], + "texture": 1 + }, + "JvlKDALY": { + "uv": { + "8tqY": [25.6, 28.1], + "4mSB": [24.8, 28.1], + "Rnso": [24.8, 24.1], + "qtJM": [25.6, 24.1] + }, + "vertices": ["qtJM", "Rnso", "4mSB", "8tqY"], + "texture": 1 + }, + "0XD78FeQ": { + "uv": { + "iHjd": [25.6, 24.1], + "7R9u": [24.8, 24.1], + "4mSB": [24.8, 28.1], + "8tqY": [25.6, 28.1] + }, + "vertices": ["8tqY", "4mSB", "7R9u", "iHjd"], + "texture": 1 + }, + "rHp11s5v": { + "uv": { + "JesZ": [26, 28], + "7R9u": [25, 24], + "iHjd": [25, 28] + }, + "vertices": ["iHjd", "7R9u", "JesZ"], + "texture": 1 + }, + "BSrc4Csr": { + "uv": { + "Sx25": [25.6, 28.1], + "Hvq1": [24.8, 28.1], + "95Wr": [24.8, 24.1], + "lVHe": [25.6, 24.1] + }, + "vertices": ["lVHe", "95Wr", "Hvq1", "Sx25"], + "texture": 1 + }, + "SFkdM7Po": { + "uv": { + "ww1k": [2, 26.66667], + "7R9u": [1, 26.66667], + "JesZ": [1, 25] + }, + "vertices": ["JesZ", "7R9u", "ww1k"], + "texture": 1 + }, + "SQsqbOoz": { + "uv": { + "AYR2": [25.6, 28.1], + "BQWs": [24.8, 24.1], + "zojw": [24.8, 28.1], + "XnvV": [25.6, 24.1] + }, + "vertices": ["XnvV", "zojw", "BQWs", "AYR2"], + "texture": 1 + }, + "EKfPkOay": { + "uv": { + "sCtj": [0, 25], + "W7og": [2, 25], + "JesZ": [1, 26.66667] + }, + "vertices": ["JesZ", "W7og", "sCtj"], + "texture": 1 + }, + "6EztQi7p": { + "uv": { + "8HKl": [2, 28.33333], + "wHNi": [2, 26.66667], + "rdSk": [2, 28.33333], + "FVmL": [2, 26.66667] + }, + "vertices": ["FVmL", "rdSk", "wHNi", "8HKl"], + "texture": 1 + }, + "UTGzqFGo": { + "uv": { + "2Cy7": [25.6, 24.1], + "Kim6": [24.8, 28.1], + "OaX5": [24.8, 24.1], + "ww1k": [25.6, 28.1] + }, + "vertices": ["ww1k", "OaX5", "Kim6", "2Cy7"], + "texture": 1 + }, + "93TZ8dyd": { + "uv": { + "XnvV": [25.6, 28.1], + "OaX5": [24.8, 24.1], + "BQWs": [24.8, 28.1], + "2Cy7": [25.6, 24.1] + }, + "vertices": ["2Cy7", "BQWs", "OaX5", "XnvV"], + "texture": 1 + }, + "iTD3Q4X2": { + "uv": { + "qbIt": [2, 35], + "LyZP": [2, 31.66667], + "euyv": [2, 35], + "Uxw5": [2, 31.66667] + }, + "vertices": ["Uxw5", "euyv", "LyZP", "qbIt"], + "texture": 1 + }, + "hApOPGS9": { + "uv": { + "Uxw5": [2, 31.66667], + "rdSk": [2, 28.33333], + "LyZP": [2, 31.66667], + "8HKl": [2, 28.33333] + }, + "vertices": ["8HKl", "LyZP", "rdSk", "Uxw5"], + "texture": 1 + }, + "VNKyi5TO": { + "uv": { + "FVmL": [2, 26.66667], + "b69x": [2, 25], + "wHNi": [2, 26.66667], + "Bzop": [2, 25] + }, + "vertices": ["Bzop", "wHNi", "b69x", "FVmL"], + "texture": 1 + }, + "vK6wJUrn": { + "uv": { + "mebZ": [25.6, 28.1], + "zojw": [24.8, 24.1], + "WCsk": [24.8, 28.1], + "AYR2": [25.6, 24.1] + }, + "vertices": ["AYR2", "WCsk", "zojw", "mebZ"], + "texture": 1 + }, + "OGLt4pyG": { + "uv": { + "JesZ": [0, 26.66667], + "qbIt": [1, 25], + "qNY4": [2, 26.66667] + }, + "vertices": ["qNY4", "qbIt", "JesZ"], + "texture": 1 + }, + "PSHAvkQA": { + "uv": { + "JesZ": [0, 25], + "qNY4": [2, 25], + "ww1k": [1, 26.66667] + }, + "vertices": ["ww1k", "qNY4", "JesZ"], + "texture": 1 + }, + "NU9LV3TF": { + "uv": { + "qNY4": [0, 35], + "uyLC": [0, 31.66667], + "2Cy7": [2, 31.66667], + "ww1k": [2, 35] + }, + "vertices": ["ww1k", "2Cy7", "uyLC", "qNY4"], + "texture": 1 + }, + "eWNLaUh1": { + "uv": { + "qbIt": [0, 35], + "Uxw5": [0, 31.66667], + "uyLC": [2, 31.66667], + "qNY4": [2, 35] + }, + "vertices": ["qNY4", "uyLC", "Uxw5", "qbIt"], + "texture": 1 + }, + "7OpZlenr": { + "uv": { + "8HKl": [0, 28.33333], + "tsu4": [2, 26.66667], + "FVmL": [0, 26.66667], + "D5z6": [2, 28.33333] + }, + "vertices": ["D5z6", "FVmL", "tsu4", "8HKl"], + "texture": 1 + }, + "LMEp0vkq": { + "uv": { + "D5z6": [0, 28.33333], + "AYR2": [2, 26.66667], + "tsu4": [0, 26.66667], + "XnvV": [2, 28.33333] + }, + "vertices": ["XnvV", "tsu4", "AYR2", "D5z6"], + "texture": 1 + }, + "IZhPvWFw": { + "uv": { + "uyLC": [0, 31.66667], + "D5z6": [0, 28.33333], + "XnvV": [2, 28.33333], + "2Cy7": [2, 31.66667] + }, + "vertices": ["2Cy7", "XnvV", "D5z6", "uyLC"], + "texture": 1 + }, + "SbOPjyT9": { + "uv": { + "Uxw5": [0, 31.66667], + "8HKl": [0, 28.33333], + "D5z6": [2, 28.33333], + "uyLC": [2, 31.66667] + }, + "vertices": ["uyLC", "D5z6", "8HKl", "Uxw5"], + "texture": 1 + }, + "JzyyncTS": { + "uv": { + "Atxb": [2, 25], + "tsu4": [2, 26.66667], + "FVmL": [0, 26.66667], + "Bzop": [0, 25] + }, + "vertices": ["Bzop", "FVmL", "tsu4", "Atxb"], + "texture": 1 + }, + "mKnmlKRy": { + "uv": { + "mebZ": [2, 25], + "AYR2": [2, 26.66667], + "tsu4": [0, 26.66667], + "Atxb": [0, 25] + }, + "vertices": ["Atxb", "tsu4", "AYR2", "mebZ"], + "texture": 1 + }, + "cMtrfwQb": { + "uv": { + "4ezv": [24, 28], + "VNps": [24, 24], + "Hvq1": [25, 24], + "Rnso": [25, 28] + }, + "vertices": ["Rnso", "Hvq1", "VNps", "4ezv"], + "texture": 1 + }, + "Y33rUMC7": { + "uv": { + "EbdB": [24, 28], + "4ezv": [24, 24], + "Rnso": [25, 24], + "4mSB": [25, 28] + }, + "vertices": ["4mSB", "Rnso", "4ezv", "EbdB"], + "texture": 1 + }, + "ZzNAHZec": { + "uv": { + "qevP": [25, 24], + "EbdB": [25, 28], + "4mSB": [24, 28], + "7R9u": [24, 24] + }, + "vertices": ["7R9u", "4mSB", "EbdB", "qevP"], + "texture": 1 + }, + "09dBiOBM": { + "uv": { + "VNps": [24, 28], + "lO3C": [24, 24], + "95Wr": [25, 24], + "Hvq1": [25, 28] + }, + "vertices": ["Hvq1", "95Wr", "lO3C", "VNps"], + "texture": 1 + }, + "cRoD6z5f": { + "uv": { + "GwxS": [25, 24], + "qevP": [25, 28], + "7R9u": [24, 28], + "ww1k": [24, 24] + }, + "vertices": ["ww1k", "7R9u", "qevP", "GwxS"], + "texture": 1 + }, + "JI8OZCGa": { + "uv": { + "hnZd": [24, 28], + "La2n": [24, 24], + "BQWs": [25, 24], + "zojw": [25, 28] + }, + "vertices": ["zojw", "BQWs", "La2n", "hnZd"], + "texture": 1 + }, + "JwbEywX4": { + "uv": { + "00Kd": [26, 24], + "GwxS": [25, 24], + "ww1k": [25, 28], + "Kim6": [26, 28] + }, + "vertices": ["Kim6", "ww1k", "GwxS", "00Kd"], + "texture": 1 + }, + "K8KxJUkc": { + "uv": { + "6ehA": [25, 24], + "00Kd": [25, 28], + "Kim6": [24, 28], + "OaX5": [24, 24] + }, + "vertices": ["OaX5", "Kim6", "00Kd", "6ehA"], + "texture": 1 + }, + "hYkNu1Mz": { + "uv": { + "La2n": [24, 28], + "6ehA": [24, 24], + "OaX5": [25, 24], + "BQWs": [25, 28] + }, + "vertices": ["BQWs", "OaX5", "6ehA", "La2n"], + "texture": 1 + }, + "lkuqRz64": { + "uv": { + "qpa3": [24, 28], + "hnZd": [24, 24], + "zojw": [25, 24], + "WCsk": [25, 28] + }, + "vertices": ["WCsk", "zojw", "hnZd", "qpa3"], + "texture": 1 + }, + "0wc8SlE7": { + "uv": { + "VNps": [1.73205, 14.0836], + "lO3C": [1.73205, 12.0836], + "hnZd": [0.57735, 14.0836], + "qpa3": [0.57735, 12.0836] + }, + "vertices": ["qpa3", "hnZd", "lO3C", "VNps"], + "texture": 1 + }, + "POoFRKmF": { + "uv": { + "iF7E": [1.4524, 7.48358], + "qpa3": [0, 7.9836], + "2hIL": [0, 6.9836] + }, + "vertices": ["2hIL", "qpa3", "iF7E"], + "texture": 1 + }, + "AN01rZCN": { + "uv": { + "iF7E": [1.4524, 7.48358], + "lO3C": [2.9048, 7.9836], + "qpa3": [0, 7.9836] + }, + "vertices": ["qpa3", "lO3C", "iF7E"], + "texture": 1 + }, + "dOn85EGy": { + "uv": { + "c1T2": [2, 25], + "lVHe": [0, 25], + "lO3C": [2, 26.66667], + "95Wr": [0, 26.66667] + }, + "vertices": ["95Wr", "lO3C", "lVHe", "c1T2"], + "texture": 1 + }, + "XhqlzGeX": { + "uv": { + "Bzop": [2, 26.66667], + "Qy1i": [2, 25], + "b69x": [2, 26.66667], + "Atxb": [2, 25] + }, + "vertices": ["Atxb", "b69x", "Qy1i", "Bzop"], + "texture": 1 + }, + "exiF1FcH": { + "uv": { + "WCsk": [2, 25], + "qpa3": [0, 25], + "mebZ": [2, 26.66667], + "Atxb": [0, 26.66667] + }, + "vertices": ["Atxb", "mebZ", "qpa3", "WCsk"], + "texture": 1 + }, + "V66n5vfi": { + "uv": { + "c1T2": [0, 25], + "dfiu": [1, 25], + "u0Gb": [1, 26.66667], + "jkti": [0, 26.66667] + }, + "vertices": ["jkti", "u0Gb", "dfiu", "c1T2"], + "texture": 1 + }, + "Gz3BxX0B": { + "uv": { + "dfiu": [1, 25], + "Qy1i": [2, 25], + "b69x": [2, 26.66667], + "u0Gb": [1, 26.66667] + }, + "vertices": ["u0Gb", "b69x", "Qy1i", "dfiu"], + "texture": 1 + }, + "SHp3UP9H": { + "uv": { + "jkti": [0, 25], + "u0Gb": [1, 25], + "sm1U": [1, 26.66667], + "Dpuc": [0, 26.66667] + }, + "vertices": ["Dpuc", "sm1U", "u0Gb", "jkti"], + "texture": 1 + }, + "um736Dq3": { + "uv": { + "u0Gb": [1, 25], + "b69x": [2, 25], + "wHNi": [2, 26.66667], + "sm1U": [1, 26.66667] + }, + "vertices": ["sm1U", "wHNi", "b69x", "u0Gb"], + "texture": 1 + }, + "rWGGdvq2": { + "uv": { + "Dpuc": [0, 26.66667], + "sm1U": [1, 26.66667], + "LF0V": [1, 28.33333], + "YbTn": [0, 28.33333] + }, + "vertices": ["YbTn", "LF0V", "sm1U", "Dpuc"], + "texture": 1 + }, + "e3ukGqpq": { + "uv": { + "sm1U": [1, 26.66667], + "wHNi": [2, 26.66667], + "rdSk": [2, 28.33333], + "LF0V": [1, 28.33333] + }, + "vertices": ["LF0V", "rdSk", "wHNi", "sm1U"], + "texture": 1 + }, + "Z1lWsWgL": { + "uv": { + "YbTn": [0, 28.33333], + "LF0V": [1, 28.33333], + "hTCm": [1, 31.66667], + "Mwes": [0, 31.66667] + }, + "vertices": ["Mwes", "hTCm", "LF0V", "YbTn"], + "texture": 1 + }, + "Rz4sb4QU": { + "uv": { + "LF0V": [1, 28.33333], + "rdSk": [2, 28.33333], + "LyZP": [2, 31.66667], + "hTCm": [1, 31.66667] + }, + "vertices": ["hTCm", "LyZP", "rdSk", "LF0V"], + "texture": 1 + }, + "Y18WdEWz": { + "uv": { + "Mwes": [0, 31.66667], + "hTCm": [1, 31.66667], + "W7og": [1, 35], + "sCtj": [0, 35] + }, + "vertices": ["sCtj", "W7og", "hTCm", "Mwes"], + "texture": 1 + }, + "vilrXqoC": { + "uv": { + "hTCm": [1, 31.66667], + "LyZP": [2, 31.66667], + "euyv": [2, 35], + "W7og": [1, 35] + }, + "vertices": ["W7og", "euyv", "LyZP", "hTCm"], + "texture": 1 + }, + "fdQoRajU": { + "uv": { + "JesZ": [1, 26.66667], + "W7og": [2, 25], + "qbIt": [2, 25] + }, + "vertices": ["qbIt", "W7og", "JesZ"], + "texture": 1 + }, + "DrtiOr4Z": { + "uv": { + "Atxb": [4, 30.83333], + "Qy1i": [2, 27.5], + "qpa3": [4, 27.5] + }, + "vertices": ["qpa3", "Qy1i", "Atxb"], + "texture": 1 + }, + "tjm5pHFW": { + "uv": { + "c1T2": [6, 28.33333], + "dfiu": [2, 29.16667], + "lO3C": [2, 27.5] + }, + "vertices": ["lO3C", "dfiu", "c1T2"], + "texture": 1 + }, + "DOLSY8dr": { + "uv": { + "dfiu": [3, 29.16667], + "Qy1i": [4, 29.16667], + "lO3C": [2, 27.5], + "qpa3": [5, 27.5] + }, + "vertices": ["qpa3", "lO3C", "Qy1i", "dfiu"], + "texture": 1 + }, + "cY6ai2RJ": { + "uv": { + "iF7E": [1.4524, 7.48358], + "dL7l": [0, 6.9836], + "lO3C": [0, 7.9836] + }, + "vertices": ["lO3C", "dL7l", "iF7E"], + "texture": 1 + }, + "eZhAcwzx": { + "uv": { + "iF7E": [1.4524, 7.48358], + "lO3C": [0, 7.9836], + "qpa3": [2.9048, 7.9836] + }, + "vertices": ["qpa3", "lO3C", "iF7E"], + "texture": 1 + }, + "vcbjYQ56": { + "uv": { + "iF7E": [1.0579, 6], + "2hIL": [2.1156, 8.9715], + "dL7l": [0, 8.9715] + }, + "vertices": ["dL7l", "2hIL", "iF7E"], + "texture": 1 + }, + "ytSWBci4": { + "uv": { + "z3lK": [4, 30.90264], + "c3OB": [4.52758, 30.90264], + "vfKR": [4.52758, 28], + "dL7l": [4, 28] + }, + "vertices": ["dL7l", "vfKR", "c3OB", "z3lK"], + "texture": 1 + }, + "J8zAALyf": { + "uv": { + "rN5K": [1, 25], + "95Wr": [0, 25.83333], + "4uEE": [1, 29.16667], + "dL7l": [0, 29.16667] + }, + "vertices": ["dL7l", "4uEE", "95Wr", "rN5K"], + "texture": 1 + }, + "WuCTXwRx": { + "uv": { + "AoTh": [4, 29.9041], + "z3lK": [5.04867, 29.9041], + "dL7l": [5.04867, 28], + "4uEE": [4, 28] + }, + "vertices": ["4uEE", "dL7l", "z3lK", "AoTh"], + "texture": 1 + }, + "q6b9SoOv": { + "uv": { + "y7CQ": [1, 25], + "WCsk": [0, 25.83333], + "z3lK": [0, 29.16667], + "AoTh": [1, 29.16667] + }, + "vertices": ["AoTh", "z3lK", "WCsk", "y7CQ"], + "texture": 1 + }, + "5aIvrcvK": { + "uv": { + "rN5K": [3, 28.33333], + "V5o8": [1, 28.33333], + "2YyB": [0, 27.5], + "4uEE": [2, 27.5] + }, + "vertices": ["4uEE", "2YyB", "V5o8", "rN5K"], + "texture": 1 + }, + "sc700U88": { + "uv": { + "y7CQ": [3, 28.33333], + "dNWt": [1, 28.33333], + "AoTh": [2, 27.5], + "K8mw": [0, 27.5] + }, + "vertices": ["K8mw", "AoTh", "dNWt", "y7CQ"], + "texture": 1 + }, + "ALfg0mRK": { + "uv": { + "K8mw": [4, 29.98554], + "AoTh": [4.83977, 29.98554], + "4uEE": [4.83977, 28], + "2YyB": [4, 28] + }, + "vertices": ["2YyB", "4uEE", "AoTh", "K8mw"], + "texture": 1 + }, + "iSAiDTYc": { + "uv": { + "V5o8": [2, 27.5], + "lVHe": [2, 28.33333], + "vfKR": [0, 27.5], + "2YyB": [0, 26.66667] + }, + "vertices": ["2YyB", "vfKR", "lVHe", "V5o8"], + "texture": 1 + }, + "PwPxBdKQ": { + "uv": { + "V5o8": [3, 27.5], + "lVHe": [3, 28.33333], + "95Wr": [4, 28.33333], + "rN5K": [4, 27.5] + }, + "vertices": ["rN5K", "95Wr", "lVHe", "V5o8"], + "texture": 1 + }, + "RpTXdYE9": { + "uv": { + "dNWt": [2, 27.5], + "mebZ": [2, 28.33333], + "K8mw": [0, 26.66667], + "c3OB": [0, 27.5] + }, + "vertices": ["c3OB", "K8mw", "mebZ", "dNWt"], + "texture": 1 + }, + "zNZXQO0c": { + "uv": { + "dNWt": [3, 27.5], + "mebZ": [3, 28.33333], + "y7CQ": [4, 27.5], + "WCsk": [4, 28.33333] + }, + "vertices": ["WCsk", "y7CQ", "mebZ", "dNWt"], + "texture": 1 + }, + "Yr6Wxd7L": { + "uv": { + "c3OB": [4, 31.43989], + "K8mw": [5.00769, 31.43989], + "2YyB": [5.00769, 28], + "vfKR": [4, 28] + }, + "vertices": ["vfKR", "2YyB", "K8mw", "c3OB"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "9b7ace10-f4a4-74b2-a33d-8dc435a7d04c" + }, + { + "name": "cylinder", + "color": 8, + "origin": [2.23633, 8.67857, -0.15628], + "rotation": [1.72795, 0.14886, -0.15341], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "fXDl": [0.00234, -4.17816, 0.47714], + "769S": [0, 4.82143, 0.45], + "Ngnq": [1.29904, -3.27857, 2.61], + "86iU": [1.10725, 3.08572, 3.15], + "Orqk": [2.59808, -3.27857, 0.45], + "2WPs": [2.21451, 3.08572, 0.45], + "sf20": [1.29904, -3.27857, -1.71], + "JpAB": [1.10725, 3.08572, -2.25], + "uSt3": [-1.29904, -3.27857, -1.71], + "LEG0": [-1.10725, 3.08572, -2.25], + "H1ru": [-2.59807, -3.27857, 0.45], + "GPdT": [-2.21451, 3.08572, 0.45], + "HLm2": [-1.29904, -3.27857, 2.61], + "Ba1X": [-1.10725, 3.08572, 3.15] + }, + "faces": { + "kIuOJ6a5": { + "uv": { + "fXDl": [1.3815, 54.3836], + "Ngnq": [3.37555, 51.9836], + "Orqk": [5.3696, 54.3836] + }, + "vertices": ["Orqk", "Ngnq", "fXDl"], + "texture": 1 + }, + "jwCmvIw0": { + "uv": { + "86iU": [1.3815, 47.9999], + "2WPs": [5.80906, 47.9836], + "Orqk": [6.11257, 58.9896], + "Ngnq": [2.24355, 58.9896] + }, + "vertices": ["Ngnq", "Orqk", "2WPs", "86iU"], + "texture": 1 + }, + "8CBehK8M": { + "uv": { + "769S": [3.18974, 48.9836], + "2WPs": [4.47951, 52.7496], + "86iU": [0, 52.7496] + }, + "vertices": ["86iU", "2WPs", "769S"], + "texture": 1 + }, + "6735bTQz": { + "uv": { + "fXDl": [1.3815, 50.9836], + "Orqk": [5.3696, 50.9836], + "sf20": [3.37555, 53.3836] + }, + "vertices": ["sf20", "Orqk", "fXDl"], + "texture": 1 + }, + "5RuiYjJo": { + "uv": { + "2WPs": [1.68501, 47.9893], + "JpAB": [6.11257, 47.9836], + "sf20": [5.25052, 58.9844], + "Orqk": [1.3815, 58.9844] + }, + "vertices": ["Orqk", "sf20", "JpAB", "2WPs"], + "texture": 1 + }, + "haqmnfWx": { + "uv": { + "769S": [2.67126, 51.9836], + "JpAB": [5.86086, 55.7496], + "2WPs": [1.3815, 55.7496] + }, + "vertices": ["2WPs", "JpAB", "769S"], + "texture": 1 + }, + "LzfYKXZg": { + "uv": { + "fXDl": [3.37555, 52.9836], + "sf20": [5.3696, 55.3836], + "uSt3": [1.3815, 55.3836] + }, + "vertices": ["uSt3", "sf20", "fXDl"], + "texture": 1 + }, + "cdXcnv9J": { + "uv": { + "JpAB": [1.67589, 47.9836], + "LEG0": [5.07521, 47.9836], + "uSt3": [5.3696, 58.9999], + "sf20": [1.3815, 58.9999] + }, + "vertices": ["sf20", "uSt3", "LEG0", "JpAB"], + "texture": 1 + }, + "2Zbo3wUk": { + "uv": { + "769S": [3.08115, 48.9836], + "LEG0": [4.78081, 53.2262], + "JpAB": [1.3815, 53.2262] + }, + "vertices": ["JpAB", "LEG0", "769S"], + "texture": 1 + }, + "7Lb8dPtY": { + "uv": { + "fXDl": [5.36947, 50.9836], + "uSt3": [3.37541, 53.3836], + "H1ru": [1.3815, 50.9836] + }, + "vertices": ["H1ru", "uSt3", "fXDl"], + "texture": 1 + }, + "smP5XAom": { + "uv": { + "LEG0": [0, 47.9999], + "GPdT": [4.42756, 47.9836], + "H1ru": [4.73108, 58.9896], + "uSt3": [0.86205, 58.9896] + }, + "vertices": ["uSt3", "H1ru", "GPdT", "LEG0"], + "texture": 1 + }, + "Jq3zWgIi": { + "uv": { + "769S": [3.1896, 51.9836], + "GPdT": [4.47937, 55.7496], + "LEG0": [0, 55.7496] + }, + "vertices": ["LEG0", "GPdT", "769S"], + "texture": 1 + }, + "Lf6TqTg3": { + "uv": { + "fXDl": [5.36947, 54.3836], + "H1ru": [1.3815, 54.3836], + "HLm2": [3.37541, 51.9836] + }, + "vertices": ["HLm2", "H1ru", "fXDl"], + "texture": 1 + }, + "8RzK1EH5": { + "uv": { + "GPdT": [1.68501, 47.9893], + "Ba1X": [6.11257, 47.9836], + "HLm2": [5.25052, 58.9843], + "H1ru": [1.3815, 58.9843] + }, + "vertices": ["H1ru", "HLm2", "Ba1X", "GPdT"], + "texture": 1 + }, + "BDGVQs73": { + "uv": { + "769S": [4.05276, 48.9836], + "Ba1X": [7.2425, 52.7496], + "GPdT": [2.76299, 52.7496] + }, + "vertices": ["GPdT", "Ba1X", "769S"], + "texture": 1 + }, + "1l3NVOxJ": { + "uv": { + "fXDl": [3.37555, 53.3836], + "HLm2": [1.3815, 50.9836], + "Ngnq": [5.3696, 50.9836] + }, + "vertices": ["Ngnq", "HLm2", "fXDl"], + "texture": 1 + }, + "yIuKEBDF": { + "uv": { + "Ba1X": [1.67589, 47.9836], + "86iU": [5.07521, 47.9836], + "Ngnq": [5.3696, 59], + "HLm2": [1.3815, 59] + }, + "vertices": ["HLm2", "Ngnq", "86iU", "Ba1X"], + "texture": 1 + }, + "ZCMrJe0Y": { + "uv": { + "769S": [3.08115, 51.9836], + "86iU": [4.78081, 56.2262], + "Ba1X": [1.3815, 56.2262] + }, + "vertices": ["Ba1X", "86iU", "769S"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "952d1c26-5c46-044f-47a3-1bbb6da6bc21" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-2.23633, 8.67857, -0.15628], + "rotation": [1.72795, -0.14886, 0.15341], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "fXDl": [-0.00234, -4.17816, 0.47714], + "769S": [0, 4.82143, 0.45], + "Ngnq": [-1.29904, -3.27857, 2.61], + "86iU": [-1.10725, 3.08571, 3.15], + "Orqk": [-2.59807, -3.27857, 0.45], + "2WPs": [-2.21451, 3.08571, 0.45], + "sf20": [-1.29904, -3.27857, -1.71], + "JpAB": [-1.10725, 3.08571, -2.25], + "uSt3": [1.29904, -3.27857, -1.71], + "LEG0": [1.10725, 3.08571, -2.25], + "H1ru": [2.59808, -3.27857, 0.45], + "GPdT": [2.21451, 3.08571, 0.45], + "HLm2": [1.29904, -3.27857, 2.61], + "Ba1X": [1.10725, 3.08571, 3.15] + }, + "faces": { + "kIuOJ6a5": { + "uv": { + "fXDl": [5.3815, 55.3836], + "Orqk": [7.37555, 52.9836], + "Ngnq": [9.3696, 55.3836] + }, + "vertices": ["Ngnq", "Orqk", "fXDl"], + "texture": 1 + }, + "jwCmvIw0": { + "uv": { + "86iU": [9.80906, 48.9836], + "2WPs": [5.3815, 48.9999], + "Ngnq": [10.11257, 59.9896], + "Orqk": [6.24355, 59.9896] + }, + "vertices": ["Orqk", "Ngnq", "2WPs", "86iU"], + "texture": 1 + }, + "8CBehK8M": { + "uv": { + "769S": [7.18974, 49.9836], + "86iU": [8.47951, 53.7496], + "2WPs": [4, 53.7496] + }, + "vertices": ["2WPs", "86iU", "769S"], + "texture": 1 + }, + "6735bTQz": { + "uv": { + "fXDl": [5.3815, 51.9836], + "sf20": [9.3696, 51.9836], + "Orqk": [7.37555, 54.3836] + }, + "vertices": ["Orqk", "sf20", "fXDl"], + "texture": 1 + }, + "5RuiYjJo": { + "uv": { + "2WPs": [10.11257, 48.9836], + "JpAB": [5.68501, 48.9893], + "Orqk": [9.25052, 59.9844], + "sf20": [5.3815, 59.9844] + }, + "vertices": ["sf20", "Orqk", "JpAB", "2WPs"], + "texture": 1 + }, + "haqmnfWx": { + "uv": { + "769S": [6.67126, 52.9836], + "2WPs": [9.86086, 56.7496], + "JpAB": [5.3815, 56.7496] + }, + "vertices": ["JpAB", "2WPs", "769S"], + "texture": 1 + }, + "LzfYKXZg": { + "uv": { + "fXDl": [7.37555, 53.9836], + "uSt3": [9.3696, 56.3836], + "sf20": [5.3815, 56.3836] + }, + "vertices": ["sf20", "uSt3", "fXDl"], + "texture": 1 + }, + "cdXcnv9J": { + "uv": { + "JpAB": [9.07521, 48.9836], + "LEG0": [5.67589, 48.9836], + "sf20": [9.3696, 59.9999], + "uSt3": [5.3815, 59.9999] + }, + "vertices": ["uSt3", "sf20", "LEG0", "JpAB"], + "texture": 1 + }, + "2Zbo3wUk": { + "uv": { + "769S": [7.08115, 49.9836], + "JpAB": [8.78081, 54.2262], + "LEG0": [5.3815, 54.2262] + }, + "vertices": ["LEG0", "JpAB", "769S"], + "texture": 1 + }, + "7Lb8dPtY": { + "uv": { + "fXDl": [9.36947, 51.9836], + "H1ru": [7.37541, 54.3836], + "uSt3": [5.3815, 51.9836] + }, + "vertices": ["uSt3", "H1ru", "fXDl"], + "texture": 1 + }, + "smP5XAom": { + "uv": { + "LEG0": [8.42756, 48.9836], + "GPdT": [4, 48.9999], + "uSt3": [8.73108, 59.9896], + "H1ru": [4.86205, 59.9896] + }, + "vertices": ["H1ru", "uSt3", "GPdT", "LEG0"], + "texture": 1 + }, + "Jq3zWgIi": { + "uv": { + "769S": [7.1896, 52.9836], + "LEG0": [8.47937, 56.7496], + "GPdT": [4, 56.7496] + }, + "vertices": ["GPdT", "LEG0", "769S"], + "texture": 1 + }, + "Lf6TqTg3": { + "uv": { + "fXDl": [9.36947, 55.3836], + "HLm2": [5.3815, 55.3836], + "H1ru": [7.37541, 52.9836] + }, + "vertices": ["H1ru", "HLm2", "fXDl"], + "texture": 1 + }, + "8RzK1EH5": { + "uv": { + "GPdT": [10.11257, 48.9836], + "Ba1X": [5.68501, 48.9893], + "H1ru": [9.25052, 59.9843], + "HLm2": [5.3815, 59.9843] + }, + "vertices": ["HLm2", "H1ru", "Ba1X", "GPdT"], + "texture": 1 + }, + "BDGVQs73": { + "uv": { + "769S": [8.05276, 49.9836], + "GPdT": [11.2425, 53.7496], + "Ba1X": [6.76299, 53.7496] + }, + "vertices": ["Ba1X", "GPdT", "769S"], + "texture": 1 + }, + "1l3NVOxJ": { + "uv": { + "fXDl": [7.37555, 54.3836], + "Ngnq": [5.3815, 51.9836], + "HLm2": [9.3696, 51.9836] + }, + "vertices": ["HLm2", "Ngnq", "fXDl"], + "texture": 1 + }, + "yIuKEBDF": { + "uv": { + "Ba1X": [9.07521, 48.9836], + "86iU": [5.67589, 48.9836], + "HLm2": [9.3696, 60], + "Ngnq": [5.3815, 60] + }, + "vertices": ["Ngnq", "HLm2", "86iU", "Ba1X"], + "texture": 1 + }, + "ZCMrJe0Y": { + "uv": { + "769S": [7.08115, 52.9836], + "Ba1X": [8.78081, 57.2262], + "86iU": [5.3815, 57.2262] + }, + "vertices": ["86iU", "Ba1X", "769S"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "bfdad83a-2e41-be24-903c-5ebd81b969b3" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-2.68633, 5.4, -0.15628], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "hKiQ": [0.675, -4.95, 0.45], + "P9yc": [0.675, 2.7, 0.45], + "1O7X": [1.25111, -3.75652, 1.98], + "AuqO": [1.40234, 2.7, 1.98], + "3QLG": [1.82721, -3.75652, 0.45], + "SQtr": [2.56923, 2.7, 0.45], + "zALn": [1.25111, -3.75652, -1.08], + "XwTk": [1.62212, 2.7, -1.08], + "XrMY": [0.09889, -3.75652, -1.08], + "SxBA": [-0.27211, 2.7, -1.08], + "9bCg": [-0.47721, -3.75652, 0.45], + "xfU2": [-1.21923, 2.7, 0.45], + "YkcP": [0.09889, -3.75652, 1.98], + "5O4d": [-0.05233, 2.7, 1.98], + "H3Hz": [-0.27211, -0.5283, -1.08], + "uVfc": [1.62212, -0.5283, -1.08], + "D3Zi": [2.56923, -0.5283, 0.45], + "S34R": [1.40234, -0.5283, 1.98], + "gPMU": [-0.05233, -0.5283, 1.98], + "JTfr": [-1.21923, -0.5283, 0.45] + }, + "faces": { + "YiBnE33q": { + "uv": { + "hKiQ": [7, 43.9836], + "1O7X": [8.1547, 43.9836], + "3QLG": [7.5774, 42.9836] + }, + "vertices": ["3QLG", "1O7X", "hKiQ"], + "texture": 1 + }, + "amXAQ62A": { + "uv": { + "SQtr": [3.1548, 36.9836], + "S34R": [0, 38.48362], + "D3Zi": [3.1548, 38.48362], + "AuqO": [0, 36.9836] + }, + "vertices": ["AuqO", "D3Zi", "S34R", "SQtr"], + "texture": 1 + }, + "pmtHFukt": { + "uv": { + "P9yc": [5.1547, 35.9836], + "SQtr": [4, 35.9836], + "AuqO": [4.5773, 36.9836] + }, + "vertices": ["AuqO", "SQtr", "P9yc"], + "texture": 1 + }, + "dbwNvdVu": { + "uv": { + "hKiQ": [7, 42.9836], + "3QLG": [7.5774, 43.9836], + "zALn": [8.1547, 42.9836] + }, + "vertices": ["zALn", "3QLG", "hKiQ"], + "texture": 1 + }, + "KLi0aNFD": { + "uv": { + "XwTk": [3.1548, 36.9836], + "D3Zi": [0, 38.48362], + "uVfc": [3.1548, 38.48362], + "SQtr": [0, 36.9836] + }, + "vertices": ["SQtr", "uVfc", "D3Zi", "XwTk"], + "texture": 1 + }, + "1nnlJSX0": { + "uv": { + "P9yc": [5.1547, 35.9836], + "XwTk": [4, 35.9836], + "SQtr": [4.5773, 36.9836] + }, + "vertices": ["SQtr", "XwTk", "P9yc"], + "texture": 1 + }, + "xyppXCm4": { + "uv": { + "hKiQ": [7.5774, 42.9836], + "zALn": [7, 43.9836], + "XrMY": [8.1548, 43.9836] + }, + "vertices": ["XrMY", "zALn", "hKiQ"], + "texture": 1 + }, + "TlijztB8": { + "uv": { + "SxBA": [3.1548, 36.9836], + "uVfc": [0, 38.48362], + "H3Hz": [3.1548, 38.48362], + "XwTk": [0, 36.9836] + }, + "vertices": ["XwTk", "H3Hz", "uVfc", "SxBA"], + "texture": 1 + }, + "iSo9y4Ks": { + "uv": { + "P9yc": [5.1547, 35.9836], + "SxBA": [4, 35.9836], + "XwTk": [4.5773, 36.9836] + }, + "vertices": ["XwTk", "SxBA", "P9yc"], + "texture": 1 + }, + "802o7kue": { + "uv": { + "hKiQ": [8.1547, 42.9836], + "XrMY": [7, 42.9836], + "9bCg": [7.5773, 43.9836] + }, + "vertices": ["9bCg", "XrMY", "hKiQ"], + "texture": 1 + }, + "TZySRbzl": { + "uv": { + "xfU2": [3.1548, 36.9836], + "H3Hz": [0, 38.48362], + "JTfr": [3.1548, 38.48362], + "SxBA": [0, 36.9836] + }, + "vertices": ["SxBA", "JTfr", "H3Hz", "xfU2"], + "texture": 1 + }, + "VqxZUv3r": { + "uv": { + "P9yc": [5.1547, 35.9836], + "xfU2": [4, 35.9836], + "SxBA": [4.5773, 36.9836] + }, + "vertices": ["SxBA", "xfU2", "P9yc"], + "texture": 1 + }, + "VZ0J1wkW": { + "uv": { + "hKiQ": [8.1547, 43.9836], + "9bCg": [7.5773, 42.9836], + "YkcP": [7, 43.9836] + }, + "vertices": ["YkcP", "9bCg", "hKiQ"], + "texture": 1 + }, + "5JhxGbwK": { + "uv": { + "5O4d": [3.1548, 36.9836], + "JTfr": [0, 38.48362], + "gPMU": [3.1548, 38.48362], + "xfU2": [0, 36.9836] + }, + "vertices": ["xfU2", "gPMU", "JTfr", "5O4d"], + "texture": 1 + }, + "fjNguha9": { + "uv": { + "P9yc": [5.1547, 35.9836], + "5O4d": [4, 35.9836], + "xfU2": [4.5773, 36.9836] + }, + "vertices": ["xfU2", "5O4d", "P9yc"], + "texture": 1 + }, + "gmvsrhwQ": { + "uv": { + "hKiQ": [7.5774, 43.9836], + "YkcP": [8.1548, 42.9836], + "1O7X": [7, 42.9836] + }, + "vertices": ["1O7X", "YkcP", "hKiQ"], + "texture": 1 + }, + "vDOAOCtP": { + "uv": { + "AuqO": [3.1548, 36.9836], + "gPMU": [0, 38.48362], + "S34R": [3.1548, 38.48362], + "5O4d": [0, 36.9836] + }, + "vertices": ["5O4d", "S34R", "gPMU", "AuqO"], + "texture": 1 + }, + "dnWXIx0A": { + "uv": { + "P9yc": [5.1547, 35.9836], + "AuqO": [4, 35.9836], + "5O4d": [4.5773, 36.9836] + }, + "vertices": ["5O4d", "AuqO", "P9yc"], + "texture": 1 + }, + "hpoEQbnj": { + "uv": { + "zALn": [8, 43.58358], + "uVfc": [8, 41.9836], + "H3Hz": [7, 41.9836], + "XrMY": [7, 43.58358] + }, + "vertices": ["XrMY", "H3Hz", "uVfc", "zALn"], + "texture": 1 + }, + "KGaXeg2R": { + "uv": { + "3QLG": [8, 43.58358], + "D3Zi": [8, 41.9836], + "uVfc": [7, 41.9836], + "zALn": [7, 43.58358] + }, + "vertices": ["zALn", "uVfc", "D3Zi", "3QLG"], + "texture": 1 + }, + "PZum2TUC": { + "uv": { + "1O7X": [8, 43.58358], + "S34R": [8, 41.9836], + "D3Zi": [7, 41.9836], + "3QLG": [7, 43.58358] + }, + "vertices": ["3QLG", "D3Zi", "S34R", "1O7X"], + "texture": 1 + }, + "Hm45mM5A": { + "uv": { + "YkcP": [8, 43.58358], + "gPMU": [8, 41.9836], + "S34R": [7, 41.9836], + "1O7X": [7, 43.58358] + }, + "vertices": ["1O7X", "S34R", "gPMU", "YkcP"], + "texture": 1 + }, + "gGfMirYG": { + "uv": { + "9bCg": [8, 43.58358], + "JTfr": [8, 41.9836], + "gPMU": [7, 41.9836], + "YkcP": [7, 43.58358] + }, + "vertices": ["YkcP", "gPMU", "JTfr", "9bCg"], + "texture": 1 + }, + "RPPTuXb3": { + "uv": { + "XrMY": [8, 43.58358], + "H3Hz": [8, 41.9836], + "JTfr": [7, 41.9836], + "9bCg": [7, 43.58358] + }, + "vertices": ["9bCg", "JTfr", "H3Hz", "XrMY"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "fa408760-0e21-5c7c-f5f2-34ce3493f337" + }, + { + "name": "cylinder", + "color": 8, + "origin": [2.68633, 5.4, -0.15628], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "hKiQ": [-0.675, -4.95, 0.45], + "P9yc": [-0.675, 2.7, 0.45], + "1O7X": [-1.25111, -3.75652, 2.07], + "AuqO": [-1.40233, 2.7, 2.07], + "3QLG": [-1.82721, -3.75652, 0.45], + "SQtr": [-2.56923, 2.7, 0.45], + "zALn": [-1.25111, -3.75652, -1.17], + "XwTk": [-1.62211, 2.7, -1.17], + "XrMY": [-0.09889, -3.75652, -1.17], + "SxBA": [0.27212, 2.7, -1.17], + "9bCg": [0.47721, -3.75652, 0.45], + "xfU2": [1.21923, 2.7, 0.45], + "YkcP": [-0.09889, -3.75652, 2.07], + "5O4d": [0.05234, 2.7, 2.07], + "H3Hz": [0.27212, -0.5283, -1.17], + "uVfc": [-1.62211, -0.5283, -1.17], + "D3Zi": [-2.56923, -0.5283, 0.45], + "S34R": [-1.40233, -0.5283, 2.07], + "gPMU": [0.05234, -0.5283, 2.07], + "JTfr": [1.21923, -0.5283, 0.45] + }, + "faces": { + "YiBnE33q": { + "uv": { + "hKiQ": [7, 43.9836], + "3QLG": [8.1547, 43.9836], + "1O7X": [7.5774, 42.9836] + }, + "vertices": ["1O7X", "3QLG", "hKiQ"], + "texture": 1 + }, + "amXAQ62A": { + "uv": { + "SQtr": [3.1548, 36.9836], + "S34R": [0, 38.48362], + "AuqO": [0, 36.9836], + "D3Zi": [3.1548, 38.48362] + }, + "vertices": ["D3Zi", "AuqO", "S34R", "SQtr"], + "texture": 1 + }, + "pmtHFukt": { + "uv": { + "P9yc": [5.1547, 35.9836], + "AuqO": [4, 35.9836], + "SQtr": [4.5773, 36.9836] + }, + "vertices": ["SQtr", "AuqO", "P9yc"], + "texture": 1 + }, + "dbwNvdVu": { + "uv": { + "hKiQ": [7, 42.9836], + "zALn": [7.5774, 43.9836], + "3QLG": [8.1547, 42.9836] + }, + "vertices": ["3QLG", "zALn", "hKiQ"], + "texture": 1 + }, + "KLi0aNFD": { + "uv": { + "XwTk": [3.1548, 36.9836], + "D3Zi": [0, 38.48362], + "SQtr": [0, 36.9836], + "uVfc": [3.1548, 38.48362] + }, + "vertices": ["uVfc", "SQtr", "D3Zi", "XwTk"], + "texture": 1 + }, + "1nnlJSX0": { + "uv": { + "P9yc": [5.1547, 35.9836], + "SQtr": [4, 35.9836], + "XwTk": [4.5773, 36.9836] + }, + "vertices": ["XwTk", "SQtr", "P9yc"], + "texture": 1 + }, + "xyppXCm4": { + "uv": { + "hKiQ": [7.5774, 42.9836], + "XrMY": [7, 43.9836], + "zALn": [8.1548, 43.9836] + }, + "vertices": ["zALn", "XrMY", "hKiQ"], + "texture": 1 + }, + "TlijztB8": { + "uv": { + "SxBA": [3.1548, 36.9836], + "uVfc": [0, 38.48362], + "XwTk": [0, 36.9836], + "H3Hz": [3.1548, 38.48362] + }, + "vertices": ["H3Hz", "XwTk", "uVfc", "SxBA"], + "texture": 1 + }, + "iSo9y4Ks": { + "uv": { + "P9yc": [5.1547, 35.9836], + "XwTk": [4, 35.9836], + "SxBA": [4.5773, 36.9836] + }, + "vertices": ["SxBA", "XwTk", "P9yc"], + "texture": 1 + }, + "802o7kue": { + "uv": { + "hKiQ": [8.1547, 42.9836], + "9bCg": [7, 42.9836], + "XrMY": [7.5773, 43.9836] + }, + "vertices": ["XrMY", "9bCg", "hKiQ"], + "texture": 1 + }, + "TZySRbzl": { + "uv": { + "xfU2": [3.1548, 36.9836], + "H3Hz": [0, 38.48362], + "SxBA": [0, 36.9836], + "JTfr": [3.1548, 38.48362] + }, + "vertices": ["JTfr", "SxBA", "H3Hz", "xfU2"], + "texture": 1 + }, + "VqxZUv3r": { + "uv": { + "P9yc": [5.1547, 35.9836], + "SxBA": [4, 35.9836], + "xfU2": [4.5773, 36.9836] + }, + "vertices": ["xfU2", "SxBA", "P9yc"], + "texture": 1 + }, + "VZ0J1wkW": { + "uv": { + "hKiQ": [8.1547, 43.9836], + "YkcP": [7.5773, 42.9836], + "9bCg": [7, 43.9836] + }, + "vertices": ["9bCg", "YkcP", "hKiQ"], + "texture": 1 + }, + "5JhxGbwK": { + "uv": { + "5O4d": [3.1548, 36.9836], + "JTfr": [0, 38.48362], + "xfU2": [0, 36.9836], + "gPMU": [3.1548, 38.48362] + }, + "vertices": ["gPMU", "xfU2", "JTfr", "5O4d"], + "texture": 1 + }, + "fjNguha9": { + "uv": { + "P9yc": [5.1547, 35.9836], + "xfU2": [4, 35.9836], + "5O4d": [4.5773, 36.9836] + }, + "vertices": ["5O4d", "xfU2", "P9yc"], + "texture": 1 + }, + "gmvsrhwQ": { + "uv": { + "hKiQ": [7.5774, 43.9836], + "1O7X": [8.1548, 42.9836], + "YkcP": [7, 42.9836] + }, + "vertices": ["YkcP", "1O7X", "hKiQ"], + "texture": 1 + }, + "vDOAOCtP": { + "uv": { + "AuqO": [3.1548, 36.9836], + "gPMU": [0, 38.48362], + "5O4d": [0, 36.9836], + "S34R": [3.1548, 38.48362] + }, + "vertices": ["S34R", "5O4d", "gPMU", "AuqO"], + "texture": 1 + }, + "dnWXIx0A": { + "uv": { + "P9yc": [5.1547, 35.9836], + "5O4d": [4, 35.9836], + "AuqO": [4.5773, 36.9836] + }, + "vertices": ["AuqO", "5O4d", "P9yc"], + "texture": 1 + }, + "hpoEQbnj": { + "uv": { + "zALn": [7, 43.58358], + "uVfc": [7, 41.9836], + "XrMY": [8, 43.58358], + "H3Hz": [8, 41.9836] + }, + "vertices": ["H3Hz", "XrMY", "uVfc", "zALn"], + "texture": 1 + }, + "KGaXeg2R": { + "uv": { + "3QLG": [7, 43.58358], + "D3Zi": [7, 41.9836], + "zALn": [8, 43.58358], + "uVfc": [8, 41.9836] + }, + "vertices": ["uVfc", "zALn", "D3Zi", "3QLG"], + "texture": 1 + }, + "PZum2TUC": { + "uv": { + "1O7X": [7, 43.58358], + "S34R": [7, 41.9836], + "3QLG": [8, 43.58358], + "D3Zi": [8, 41.9836] + }, + "vertices": ["D3Zi", "3QLG", "S34R", "1O7X"], + "texture": 1 + }, + "Hm45mM5A": { + "uv": { + "YkcP": [7, 43.58358], + "gPMU": [7, 41.9836], + "1O7X": [8, 43.58358], + "S34R": [8, 41.9836] + }, + "vertices": ["S34R", "1O7X", "gPMU", "YkcP"], + "texture": 1 + }, + "gGfMirYG": { + "uv": { + "9bCg": [7, 43.58358], + "JTfr": [7, 41.9836], + "YkcP": [8, 43.58358], + "gPMU": [8, 41.9836] + }, + "vertices": ["gPMU", "YkcP", "JTfr", "9bCg"], + "texture": 1 + }, + "RPPTuXb3": { + "uv": { + "XrMY": [7, 43.58358], + "H3Hz": [7, 41.9836], + "9bCg": [8, 43.58358], + "JTfr": [8, 41.9836] + }, + "vertices": ["JTfr", "9bCg", "H3Hz", "XrMY"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "03a7b0ca-adbc-e921-e466-02042f51f0fb" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-5.04, 12.87, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "uXX4": [-0.04405, -1.08, 0.135], + "xQ7R": [0.62925, -0.21375, 1.2], + "KviP": [0.9208, 4.08375, 1.7325], + "ZAwo": [0.71946, -0.21375, 0.135], + "jvUa": [1.88565, 4.08375, 0.135], + "ZlND": [0.62925, -0.21375, -0.93], + "0viC": [0.9208, 4.08375, -1.4625], + "0sOe": [-0.71735, -0.21375, -0.93], + "bbcG": [-0.4258, 4.08375, -1.4625], + "EHEa": [-1.39065, -0.21375, 0.135], + "Hf1h": [-1.39065, 4.08375, 0.135], + "qpo9": [-0.71735, -0.21375, 1.2], + "AFOM": [-0.4258, 4.08375, 1.7325], + "oTYm": [-0.04405, 4.95, 0.135] + }, + "faces": { + "lobLHojZ": { + "uv": { + "uXX4": [0, 6.9836], + "xQ7R": [0.5774, 5.9836], + "ZAwo": [1.1547, 6.9836] + }, + "vertices": ["ZAwo", "xQ7R", "uXX4"], + "texture": 1 + }, + "2wrsF9PS": { + "uv": { + "KviP": [0, 3.9836], + "jvUa": [1.1548, 3.9836], + "ZAwo": [1.1548, 9.9836], + "xQ7R": [0, 9.9836] + }, + "vertices": ["xQ7R", "ZAwo", "jvUa", "KviP"], + "texture": 1 + }, + "NHGFWn7K": { + "uv": { + "uXX4": [0, 5.9836], + "ZAwo": [1.1547, 5.9836], + "ZlND": [0.5774, 6.9836] + }, + "vertices": ["ZlND", "ZAwo", "uXX4"], + "texture": 1 + }, + "8cc6hOOR": { + "uv": { + "jvUa": [0, 3.9836], + "0viC": [1.1548, 3.9836], + "ZlND": [1.1548, 9.9836], + "ZAwo": [0, 9.9836] + }, + "vertices": ["ZAwo", "ZlND", "0viC", "jvUa"], + "texture": 1 + }, + "9UtXiLWH": { + "uv": { + "uXX4": [0.5774, 5.9836], + "ZlND": [1.1548, 6.9836], + "0sOe": [0, 6.9836] + }, + "vertices": ["0sOe", "ZlND", "uXX4"], + "texture": 1 + }, + "qGP3hNLj": { + "uv": { + "0viC": [0, 3.9836], + "bbcG": [1.1548, 3.9836], + "0sOe": [1.1548, 9.9836], + "ZlND": [0, 9.9836] + }, + "vertices": ["ZlND", "0sOe", "bbcG", "0viC"], + "texture": 1 + }, + "6tckQVaJ": { + "uv": { + "uXX4": [1.1547, 5.9836], + "0sOe": [0.5773, 6.9836], + "EHEa": [0, 5.9836] + }, + "vertices": ["EHEa", "0sOe", "uXX4"], + "texture": 1 + }, + "2WWrRUBm": { + "uv": { + "bbcG": [0, 3.9836], + "Hf1h": [1.1548, 3.9836], + "EHEa": [1.1548, 9.9836], + "0sOe": [0, 9.9836] + }, + "vertices": ["0sOe", "EHEa", "Hf1h", "bbcG"], + "texture": 1 + }, + "Gd1XafzL": { + "uv": { + "uXX4": [0.5774, 6.9836], + "EHEa": [0, 5.9836], + "qpo9": [1.1548, 5.9836] + }, + "vertices": ["qpo9", "EHEa", "uXX4"], + "texture": 1 + }, + "4eJ8kTWL": { + "uv": { + "Hf1h": [0, 3.9836], + "AFOM": [1.1548, 3.9836], + "qpo9": [1.1548, 9.9836], + "EHEa": [0, 9.9836] + }, + "vertices": ["EHEa", "qpo9", "AFOM", "Hf1h"], + "texture": 1 + }, + "U1EMdNou": { + "uv": { + "uXX4": [0.5774, 6.9836], + "qpo9": [0, 5.9836], + "xQ7R": [1.1548, 5.9836] + }, + "vertices": ["xQ7R", "qpo9", "uXX4"], + "texture": 1 + }, + "JaWe1p8r": { + "uv": { + "AFOM": [0, 3.9836], + "KviP": [1.1548, 3.9836], + "xQ7R": [1.1548, 9.9836], + "qpo9": [0, 9.9836] + }, + "vertices": ["qpo9", "xQ7R", "KviP", "AFOM"], + "texture": 1 + }, + "MLElNaEL": { + "uv": { + "oTYm": [3, 3.9836], + "jvUa": [4.1547, 3.9836], + "KviP": [3.5774, 4.9836] + }, + "vertices": ["KviP", "jvUa", "oTYm"], + "texture": 1 + }, + "SrTdhUln": { + "uv": { + "oTYm": [3, 4.9836], + "0viC": [3.5774, 3.9836], + "jvUa": [4.1547, 4.9836] + }, + "vertices": ["jvUa", "0viC", "oTYm"], + "texture": 1 + }, + "1B3EpcYx": { + "uv": { + "oTYm": [3.5774, 4.9836], + "bbcG": [3, 3.9836], + "0viC": [4.1548, 3.9836] + }, + "vertices": ["0viC", "bbcG", "oTYm"], + "texture": 1 + }, + "gSUoLh4J": { + "uv": { + "oTYm": [3.5774, 4.9836], + "Hf1h": [3, 3.9836], + "bbcG": [4.1548, 3.9836] + }, + "vertices": ["bbcG", "Hf1h", "oTYm"], + "texture": 1 + }, + "EiJgXwpU": { + "uv": { + "oTYm": [3.5774, 4.9836], + "AFOM": [3, 3.9836], + "Hf1h": [4.1548, 3.9836] + }, + "vertices": ["Hf1h", "AFOM", "oTYm"], + "texture": 1 + }, + "1NM4KFOU": { + "uv": { + "oTYm": [3.5774, 4.9836], + "KviP": [3, 3.9836], + "AFOM": [4.1548, 3.9836] + }, + "vertices": ["AFOM", "KviP", "oTYm"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "fcd91531-57f5-3dad-6808-1c446c0006ae" + }, + { + "name": "cube", + "color": 8, + "origin": [0.91367, 0, -0.15628], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "BtHE": [-3.78, 1.8, 1.8], + "p9SG": [-3.78, 1.8, -0.77143], + "dP2U": [-3.78, 0, 1.8], + "eok7": [-4.5, 0, -0.77143], + "ocfu": [-1.62, 1.8, 1.8], + "vUhB": [-1.62, 1.8, -0.77143], + "EUsg": [-1.62, 0, 1.8], + "oqGO": [-0.9, 0, -0.77143], + "LuHl": [-1.62, 1.8, -2.7], + "xXtl": [-3.78, 1.8, -2.7], + "EDaA": [-1.62, 0, -3.6], + "X2US": [-3.78, 0, -3.6] + }, + "faces": { + "rLMf7opp": { + "uv": { + "dP2U": [4, 29.9836], + "eok7": [1, 29.9836], + "p9SG": [1, 26.9836], + "BtHE": [4, 26.9836] + }, + "vertices": ["BtHE", "p9SG", "eok7", "dP2U"], + "texture": 1 + }, + "lK1uZ4ZU": { + "uv": { + "oqGO": [4, 29.9836], + "EUsg": [1, 29.9836], + "ocfu": [1, 26.9836], + "vUhB": [4, 26.9836] + }, + "vertices": ["vUhB", "ocfu", "EUsg", "oqGO"], + "texture": 1 + }, + "IOcJK5rY": { + "uv": { + "ocfu": [1, 28.9836], + "BtHE": [1, 24.9836], + "p9SG": [4, 24.9836], + "vUhB": [4, 28.9836] + }, + "vertices": ["vUhB", "p9SG", "BtHE", "ocfu"], + "texture": 1 + }, + "TZD9oDhP": { + "uv": { + "oqGO": [10, 48.9836], + "eok7": [8, 48.9836], + "dP2U": [8, 56.9836], + "EUsg": [10, 56.9836] + }, + "vertices": ["EUsg", "dP2U", "eok7", "oqGO"], + "texture": 1 + }, + "h8ImDcMA": { + "uv": { + "EUsg": [3.25, 29.9836], + "dP2U": [1, 29.9836], + "BtHE": [1, 26.9836], + "ocfu": [3.25, 26.9836] + }, + "vertices": ["ocfu", "BtHE", "dP2U", "EUsg"], + "texture": 1 + }, + "4tbVDhEo": { + "uv": { + "X2US": [3.25, 29.9836], + "EDaA": [1, 29.9836], + "LuHl": [1, 26.9836], + "xXtl": [3.25, 26.9836] + }, + "vertices": ["xXtl", "LuHl", "EDaA", "X2US"], + "texture": 1 + }, + "EtmLgTse": { + "uv": { + "vUhB": [1, 26.9836], + "oqGO": [1, 29.9836], + "LuHl": [3.25, 26.9836], + "EDaA": [3.25, 29.9836] + }, + "vertices": ["EDaA", "LuHl", "oqGO", "vUhB"], + "texture": 1 + }, + "iRHEFw0e": { + "uv": { + "p9SG": [4, 28.9836], + "vUhB": [4, 25.9836], + "xXtl": [1, 28.9836], + "LuHl": [1, 25.9836] + }, + "vertices": ["LuHl", "xXtl", "vUhB", "p9SG"], + "texture": 1 + }, + "5H56KX26": { + "uv": { + "eok7": [3.25, 29.9836], + "p9SG": [3.25, 26.9836], + "X2US": [1, 29.9836], + "xXtl": [1, 26.9836] + }, + "vertices": ["xXtl", "X2US", "p9SG", "eok7"], + "texture": 1 + }, + "YPxuRqB2": { + "uv": { + "oqGO": [10, 56.9836], + "eok7": [8, 56.9836], + "EDaA": [10, 48.9836], + "X2US": [8, 48.9836] + }, + "vertices": ["X2US", "EDaA", "eok7", "oqGO"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "88ccf0b1-c887-5a42-45aa-2a7eb359c98b" + }, + { + "name": "cube", + "color": 8, + "origin": [0, 24.21, -3.78], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "tkxK": [0.45, 3.42462, 0.51601], + "ECCY": [0.45, 1.12952, -0.93304], + "ZgvY": [0.63, 0.63, 0.9], + "iCyR": [0.63, 0.50549, -0.33026], + "cIz3": [-0.45, 3.42462, 0.51601], + "ZpVa": [-0.45, 1.12952, -0.93304], + "linI": [-0.63, 0.63, 0.9], + "zu4W": [-0.63, 0.50549, -0.33026] + }, + "faces": { + "dlJOkDpI": { + "uv": { + "ZgvY": [0, 4.9836], + "iCyR": [2, 4.9836], + "tkxK": [0, 6.9836], + "ECCY": [2, 6.9836] + }, + "vertices": ["ECCY", "tkxK", "iCyR", "ZgvY"], + "texture": 1 + }, + "XO0XBOJM": { + "uv": { + "zu4W": [0, 4.9836], + "linI": [2, 4.9836], + "ZpVa": [0, 6.9836], + "cIz3": [2, 6.9836] + }, + "vertices": ["cIz3", "ZpVa", "linI", "zu4W"], + "texture": 1 + }, + "z9C8lfjV": { + "uv": { + "cIz3": [0, 7.9836], + "tkxK": [2, 7.9836], + "ZpVa": [0, 5.9836], + "ECCY": [2, 5.9836] + }, + "vertices": ["ECCY", "ZpVa", "tkxK", "cIz3"], + "texture": 1 + }, + "Adj6L1Cx": { + "uv": { + "zu4W": [0, 3.9836], + "iCyR": [2, 3.9836], + "linI": [0, 5.9836], + "ZgvY": [2, 5.9836] + }, + "vertices": ["ZgvY", "linI", "iCyR", "zu4W"], + "texture": 1 + }, + "o9Tb4bFQ": { + "uv": { + "linI": [0, 7.9836], + "ZgvY": [2, 7.9836], + "cIz3": [0, 5.9836], + "tkxK": [2, 5.9836] + }, + "vertices": ["tkxK", "cIz3", "ZgvY", "linI"], + "texture": 1 + }, + "CqQfY0iI": { + "uv": { + "iCyR": [0, 4.9836], + "zu4W": [2, 4.9836], + "ECCY": [0, 6.9836], + "ZpVa": [2, 6.9836] + }, + "vertices": ["ZpVa", "ECCY", "zu4W", "iCyR"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "8cf37dda-a1f4-41c9-00ea-784d1ef19a8d" + }, + { + "name": "cube", + "color": 8, + "origin": [-6.15, 14.7, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "pd2g": [-0.99217, -0.3294, 1.1], + "mmL5": [-0.99217, -0.3294, -1.15], + "rrJj": [-1.30842, -3.15797, 1.1], + "s2jG": [-1.30842, -3.15797, -1.15], + "SQdA": [1.22158, 0.37774, 1.1], + "1I6t": [1.22158, 0.23632, -1.15], + "x97M": [1.22158, -3.15797, 1.1], + "6OCI": [1.22158, -3.15797, -1.15], + "1mAv": [-0.67592, -4.57226, 0.725], + "qLFu": [1.22158, -4.57226, 0.725], + "l2mI": [-0.67592, -4.57226, -0.775], + "0CGp": [1.22158, -4.57226, -0.775], + "Az5f": [1.22158, -1.74368, -1.9], + "cZ9p": [-0.67592, -1.74368, -1.9], + "zqiK": [1.22158, -3.15797, -1.9], + "iXLD": [-0.67592, -3.15797, -1.9], + "kFKb": [-0.99217, -0.3294, -0.5875], + "Jy9D": [-1.30842, -3.15797, -0.5875], + "NjLO": [-0.99217, -0.3294, -0.025], + "EamT": [-1.30842, -3.15797, -0.025], + "4Uw8": [-0.99217, -0.3294, 0.5375], + "E7H1": [-1.30842, -3.15797, 0.5375], + "zNmF": [-0.67592, -4.57226, -0.4], + "I94e": [-0.67592, -4.57226, -0.025], + "lmne": [-0.67592, -4.57226, 0.35], + "81Au": [1.22158, -4.57226, -0.4], + "bkdC": [1.22158, -4.57226, -0.025], + "GJFl": [1.22158, -4.57226, 0.35], + "iA4U": [1.22158, -3.15797, -0.5875], + "IVs2": [1.22158, -3.15797, -0.025], + "wqYW": [1.22158, -3.15797, 0.5375], + "UdID": [1.22158, 0.27167, -0.5875], + "09B4": [1.22158, 0.30703, -0.025], + "azok": [1.22158, 0.34239, 0.5375] + }, + "faces": { + "FKjq113j": { + "uv": { + "pd2g": [3, 8.9836], + "E7H1": [0, 8.4836], + "rrJj": [0, 8.9836], + "4Uw8": [3, 8.4836] + }, + "vertices": ["4Uw8", "rrJj", "E7H1", "pd2g"], + "texture": 1 + }, + "jZ871epm": { + "uv": { + "x97M": [0, 6.9836], + "azok": [3, 7.4836], + "SQdA": [3, 6.9836], + "wqYW": [0, 7.4836] + }, + "vertices": ["wqYW", "SQdA", "azok", "x97M"], + "texture": 1 + }, + "uGJH28Iv": { + "uv": { + "SQdA": [0, 8.9836], + "4Uw8": [0.375, 5.9836], + "pd2g": [0, 5.9836], + "azok": [0.375, 8.9836] + }, + "vertices": ["azok", "pd2g", "4Uw8", "SQdA"], + "texture": 1 + }, + "1nFJZMx2": { + "uv": { + "1mAv": [1.5, 5.9836], + "GJFl": [1.125, 8.9836], + "qLFu": [1.5, 8.9836], + "lmne": [1.125, 5.9836] + }, + "vertices": ["lmne", "qLFu", "GJFl", "1mAv"], + "texture": 1 + }, + "OQgR4dER": { + "uv": { + "x97M": [0, 8.9836], + "rrJj": [0, 6.9836], + "pd2g": [1.5, 6.9836], + "SQdA": [1.5, 8.9836] + }, + "vertices": ["SQdA", "pd2g", "rrJj", "x97M"], + "texture": 1 + }, + "UN1JDrWQ": { + "uv": { + "iXLD": [0, 8.9836], + "zqiK": [0, 6.9836], + "Az5f": [1.5, 6.9836], + "cZ9p": [1.5, 8.9836] + }, + "vertices": ["cZ9p", "Az5f", "zqiK", "iXLD"], + "texture": 1 + }, + "XyxwRClU": { + "uv": { + "rrJj": [0, 5.9836], + "lmne": [3, 6.2336], + "1mAv": [3, 5.9836], + "E7H1": [0, 6.2336] + }, + "vertices": ["E7H1", "1mAv", "lmne", "rrJj"], + "texture": 1 + }, + "Ilz3SEts": { + "uv": { + "x97M": [0, 5.9836], + "rrJj": [0, 6.9836], + "qLFu": [1.5, 5.9836], + "1mAv": [1.5, 6.9836] + }, + "vertices": ["1mAv", "qLFu", "rrJj", "x97M"], + "texture": 1 + }, + "Cchw1LL2": { + "uv": { + "qLFu": [3, 6.9836], + "wqYW": [0, 6.7336], + "x97M": [0, 6.9836], + "GJFl": [3, 6.7336] + }, + "vertices": ["GJFl", "x97M", "wqYW", "qLFu"], + "texture": 1 + }, + "n2rwk4ci": { + "uv": { + "s2jG": [0, 6.9836], + "6OCI": [0, 7.9836], + "l2mI": [1.5, 6.9836], + "0CGp": [1.5, 7.9836] + }, + "vertices": ["0CGp", "l2mI", "6OCI", "s2jG"], + "texture": 1 + }, + "O5Z8kx5g": { + "uv": { + "1I6t": [2, 6.9836], + "6OCI": [1, 6.9836], + "Az5f": [2, 8.9836], + "zqiK": [1, 8.9836] + }, + "vertices": ["zqiK", "Az5f", "6OCI", "1I6t"], + "texture": 1 + }, + "4RYNouH5": { + "uv": { + "mmL5": [1.5, 6.9836], + "1I6t": [1.5, 5.9836], + "cZ9p": [0, 6.9836], + "Az5f": [0, 5.9836] + }, + "vertices": ["Az5f", "cZ9p", "1I6t", "mmL5"], + "texture": 1 + }, + "TW0YxAz3": { + "uv": { + "s2jG": [0, 8.9836], + "mmL5": [1, 8.9836], + "iXLD": [0, 6.9836], + "cZ9p": [1, 6.9836] + }, + "vertices": ["cZ9p", "iXLD", "mmL5", "s2jG"], + "texture": 1 + }, + "2zYxvLvJ": { + "uv": { + "6OCI": [0, 5.9836], + "s2jG": [0, 6.9836], + "zqiK": [1.5, 5.9836], + "iXLD": [1.5, 6.9836] + }, + "vertices": ["iXLD", "zqiK", "s2jG", "6OCI"], + "texture": 1 + }, + "BKf5NSMf": { + "uv": { + "s2jG": [0, 4.9836], + "Jy9D": [0, 5.9836], + "mmL5": [3, 4.9836], + "kFKb": [3, 5.9836] + }, + "vertices": ["kFKb", "mmL5", "Jy9D", "s2jG"], + "texture": 1 + }, + "JpNiYA3G": { + "uv": { + "Jy9D": [0, 7.4836], + "EamT": [0, 7.9836], + "kFKb": [3, 7.4836], + "NjLO": [3, 7.9836] + }, + "vertices": ["NjLO", "kFKb", "EamT", "Jy9D"], + "texture": 1 + }, + "GdpzZg9a": { + "uv": { + "EamT": [0, 6.31693], + "E7H1": [0, 6.4836], + "NjLO": [3, 6.31693], + "4Uw8": [3, 6.4836] + }, + "vertices": ["4Uw8", "NjLO", "E7H1", "EamT"], + "texture": 1 + }, + "TlsMHfmZ": { + "uv": { + "l2mI": [3, 5.31693], + "zNmF": [3, 5.2336], + "s2jG": [0, 5.31693], + "Jy9D": [0, 5.2336] + }, + "vertices": ["Jy9D", "s2jG", "zNmF", "l2mI"], + "texture": 1 + }, + "aqKhnRXQ": { + "uv": { + "zNmF": [3, 6.7336], + "I94e": [3, 6.4836], + "Jy9D": [0, 6.7336], + "EamT": [0, 6.4836] + }, + "vertices": ["EamT", "Jy9D", "I94e", "zNmF"], + "texture": 1 + }, + "63v75zR5": { + "uv": { + "I94e": [3, 5.15027], + "lmne": [3, 5.06693], + "EamT": [0, 5.15027], + "E7H1": [0, 5.06693] + }, + "vertices": ["E7H1", "EamT", "lmne", "I94e"], + "texture": 1 + }, + "EMdhJPKA": { + "uv": { + "0CGp": [0, 5.9836], + "81Au": [0.375, 5.9836], + "l2mI": [0, 4.9836], + "zNmF": [0.375, 4.9836] + }, + "vertices": ["zNmF", "l2mI", "81Au", "0CGp"], + "texture": 1 + }, + "mbMoevDt": { + "uv": { + "81Au": [0.375, 8.9836], + "bkdC": [0.75, 8.9836], + "zNmF": [0.375, 5.9836], + "I94e": [0.75, 5.9836] + }, + "vertices": ["I94e", "zNmF", "bkdC", "81Au"], + "texture": 1 + }, + "x0VSEKNp": { + "uv": { + "bkdC": [0.75, 5.9836], + "GJFl": [1.125, 5.9836], + "I94e": [0.75, 4.9836], + "lmne": [1.125, 4.9836] + }, + "vertices": ["lmne", "I94e", "GJFl", "bkdC"], + "texture": 1 + }, + "JxgfCy0i": { + "uv": { + "6OCI": [0, 4.9836], + "iA4U": [0, 5.06693], + "0CGp": [3, 4.9836], + "81Au": [3, 5.06693] + }, + "vertices": ["81Au", "0CGp", "iA4U", "6OCI"], + "texture": 1 + }, + "QyoKJJph": { + "uv": { + "iA4U": [0, 6.2336], + "IVs2": [0, 6.4836], + "81Au": [3, 6.2336], + "bkdC": [3, 6.4836] + }, + "vertices": ["bkdC", "81Au", "IVs2", "iA4U"], + "texture": 1 + }, + "Lk3hmryg": { + "uv": { + "IVs2": [0, 5.15027], + "wqYW": [0, 5.2336], + "bkdC": [3, 5.15027], + "GJFl": [3, 5.2336] + }, + "vertices": ["GJFl", "bkdC", "wqYW", "IVs2"], + "texture": 1 + }, + "pJI3WqXz": { + "uv": { + "1I6t": [3, 6.65027], + "UdID": [3, 6.4836], + "6OCI": [0, 6.65027], + "iA4U": [0, 6.4836] + }, + "vertices": ["iA4U", "6OCI", "UdID", "1I6t"], + "texture": 1 + }, + "h7pymN6Y": { + "uv": { + "UdID": [3, 8.4836], + "09B4": [3, 7.9836], + "iA4U": [0, 8.4836], + "IVs2": [0, 7.9836] + }, + "vertices": ["IVs2", "iA4U", "09B4", "UdID"], + "texture": 1 + }, + "bDYNAwsd": { + "uv": { + "09B4": [3, 6.31693], + "azok": [3, 6.15027], + "IVs2": [0, 6.31693], + "wqYW": [0, 6.15027] + }, + "vertices": ["wqYW", "IVs2", "azok", "09B4"], + "texture": 1 + }, + "q4OUrDWP": { + "uv": { + "mmL5": [1.5, 4.9836], + "kFKb": [1.125, 4.9836], + "1I6t": [1.5, 5.9836], + "UdID": [1.125, 5.9836] + }, + "vertices": ["UdID", "1I6t", "kFKb", "mmL5"], + "texture": 1 + }, + "tdhfravm": { + "uv": { + "kFKb": [1.125, 5.9836], + "NjLO": [0.75, 5.9836], + "UdID": [1.125, 8.9836], + "09B4": [0.75, 8.9836] + }, + "vertices": ["09B4", "UdID", "NjLO", "kFKb"], + "texture": 1 + }, + "aBr6k8lJ": { + "uv": { + "NjLO": [0.75, 4.9836], + "4Uw8": [0.375, 4.9836], + "09B4": [0.75, 5.9836], + "azok": [0.375, 5.9836] + }, + "vertices": ["azok", "09B4", "4Uw8", "NjLO"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "58a66c62-16cb-55b7-2195-1e1a1280b174" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-3.6, 26.73, -1.71], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "8bfM": [0.495, -0.40249, 0], + "Kvjd": [0.495, -0.40249, -0.9], + "USVQ": [1.05866, -1.35, 0], + "HXhU": [1.05866, -1.35, -0.9], + "UZWq": [1.40702, -0.04057, 0], + "axTi": [1.40702, -0.04057, -0.9], + "tgyO": [0.495, 0.76869, 0], + "Ib2Y": [0.495, 0.76869, -0.9], + "FTwV": [-0.41702, -0.04057, 0], + "O5S9": [-0.41702, -0.04057, -0.9], + "5xC8": [-0.06866, -1.35, 0], + "tls7": [-0.06866, -1.35, -0.9] + }, + "faces": { + "91nAa0xC": { + "uv": { + "8bfM": [0, 10.07337], + "UZWq": [1.50002, 11.1632], + "USVQ": [1.50002, 8.9836] + }, + "vertices": ["USVQ", "UZWq", "8bfM"], + "texture": 1 + }, + "9ZKH0lG6": { + "uv": { + "HXhU": [0, 8.9836], + "axTi": [2.1796, 8.9836], + "USVQ": [0, 10.9836], + "UZWq": [2.1796, 10.9836] + }, + "vertices": ["UZWq", "USVQ", "axTi", "HXhU"], + "texture": 1 + }, + "RGmcX1UG": { + "uv": { + "Kvjd": [4.50306, 4.9836], + "HXhU": [5.06639, 6.75008], + "axTi": [2.16591, 6.75008] + }, + "vertices": ["axTi", "HXhU", "Kvjd"], + "texture": 1 + }, + "hURkvpYa": { + "uv": { + "8bfM": [0, 6.747], + "tgyO": [1.8541, 6.747], + "UZWq": [0.8729, 3.9836] + }, + "vertices": ["UZWq", "tgyO", "8bfM"], + "texture": 1 + }, + "WyrjtDC7": { + "uv": { + "axTi": [0, 8.9836], + "Ib2Y": [2.1796, 8.9836], + "UZWq": [0, 10.9836], + "tgyO": [2.1796, 10.9836] + }, + "vertices": ["tgyO", "UZWq", "Ib2Y", "axTi"], + "texture": 1 + }, + "acbFBVuv": { + "uv": { + "Kvjd": [4.50306, 4.9836], + "axTi": [5.06639, 6.75008], + "Ib2Y": [2.16591, 6.75008] + }, + "vertices": ["Ib2Y", "axTi", "Kvjd"], + "texture": 1 + }, + "lyFWiRhd": { + "uv": { + "8bfM": [0, 6.747], + "FTwV": [1.8541, 6.747], + "tgyO": [0.8729, 3.9836] + }, + "vertices": ["tgyO", "FTwV", "8bfM"], + "texture": 1 + }, + "wjezwsCE": { + "uv": { + "Ib2Y": [0, 8.9836], + "O5S9": [2.1796, 8.9836], + "tgyO": [0, 10.9836], + "FTwV": [2.1796, 10.9836] + }, + "vertices": ["FTwV", "tgyO", "O5S9", "Ib2Y"], + "texture": 1 + }, + "j57EBA6J": { + "uv": { + "Kvjd": [4.50306, 4.9836], + "Ib2Y": [5.06639, 6.75008], + "O5S9": [2.16591, 6.75008] + }, + "vertices": ["O5S9", "Ib2Y", "Kvjd"], + "texture": 1 + }, + "vcbsA7yR": { + "uv": { + "8bfM": [1.85413, 10.74693], + "5xC8": [1.28114, 8.9836], + "FTwV": [0, 10.74693] + }, + "vertices": ["FTwV", "5xC8", "8bfM"], + "texture": 1 + }, + "lYJAyjcC": { + "uv": { + "O5S9": [0, 8.9836], + "tls7": [2.1796, 8.9836], + "FTwV": [0, 10.9836], + "5xC8": [2.1796, 10.9836] + }, + "vertices": ["5xC8", "FTwV", "tls7", "O5S9"], + "texture": 1 + }, + "dswA4ncI": { + "uv": { + "Kvjd": [4.50306, 4.9836], + "O5S9": [5.06639, 6.75008], + "tls7": [2.16591, 6.75008] + }, + "vertices": ["tls7", "O5S9", "Kvjd"], + "texture": 1 + }, + "x4e93Rac": { + "uv": { + "8bfM": [1.0898, 10.4836], + "USVQ": [2.1796, 8.9836], + "5xC8": [0, 8.9836] + }, + "vertices": ["5xC8", "USVQ", "8bfM"], + "texture": 1 + }, + "TtnpSvW1": { + "uv": { + "tls7": [0, 8.9836], + "HXhU": [2.1796, 8.9836], + "5xC8": [0, 10.9836], + "USVQ": [2.1796, 10.9836] + }, + "vertices": ["USVQ", "5xC8", "HXhU", "tls7"], + "texture": 1 + }, + "royATjFd": { + "uv": { + "Kvjd": [4.50306, 4.9836], + "tls7": [5.06639, 6.75008], + "HXhU": [2.16591, 6.75008] + }, + "vertices": ["HXhU", "tls7", "Kvjd"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "13b888c6-ccc6-3eba-eac8-25aa02e3ae0a" + }, + { + "name": "cylinder", + "color": 2, + "origin": [0, 10.8, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "ITSp": [0, 3.15, 0.45], + "Nvu6": [3.11346, -1.8, 4.5], + "RrBX": [2.53136, 3.15, 3.38625], + "iPyJ": [6.22692, -1.8, 0.45], + "0Y79": [5.0627, 3.15, 0.45], + "eigQ": [3.11346, -1.8, -3.6], + "Xvb6": [2.53136, 3.15, -2.48625], + "5Dmg": [-3.11346, -1.8, -3.6], + "AtQi": [-2.53136, 3.15, -2.48625], + "eaBi": [-6.22692, -1.8, 0.45], + "2g3l": [-5.0627, 3.15, 0.45], + "ztoH": [-3.11346, -1.8, 4.5], + "sPHf": [-2.53136, 3.15, 3.38625], + "FbI5": [-2.33509, -1.8, -2.5875], + "gG1t": [2.3351, -1.8, -2.5875], + "cDOV": [4.67019, -1.8, 0.45], + "LmQd": [2.3351, -1.8, 3.4875], + "vun5": [-2.33509, -1.8, 3.4875], + "yR3f": [-4.67019, -1.8, 0.45], + "eaV1": [-2.33509, -0.45, -2.5875], + "tN6F": [2.3351, -0.45, -2.5875], + "klLY": [0, -0.45, 0.45], + "rCTa": [4.67019, -0.45, 0.45], + "pXeQ": [2.3351, -0.45, 3.4875], + "8ZDb": [-2.33509, -0.45, 3.4875], + "bcxb": [-4.67019, -0.45, 0.45] + }, + "faces": { + "bxrwCLzy": { + "uv": { + "klLY": [0, 57.99286], + "pXeQ": [5.8571, 51.46508], + "rCTa": [11.71399, 57.99286] + }, + "vertices": ["rCTa", "pXeQ", "klLY"], + "texture": 1 + }, + "V9FyZeSc": { + "uv": { + "RrBX": [1.52502, 35.96623], + "0Y79": [10.09378, 35.96623], + "iPyJ": [11.6188, 47.6082], + "Nvu6": [0, 47.6082] + }, + "vertices": ["Nvu6", "iPyJ", "0Y79", "RrBX"], + "texture": 1 + }, + "OQQuJfT4": { + "uv": { + "ITSp": [9.6188, 35.9836], + "0Y79": [4.8094, 47.9836], + "RrBX": [0, 35.9836] + }, + "vertices": ["RrBX", "0Y79", "ITSp"], + "texture": 1 + }, + "SPlMr3Na": { + "uv": { + "klLY": [0, 47.9836], + "rCTa": [11.71399, 47.9836], + "tN6F": [5.8571, 54.51138] + }, + "vertices": ["tN6F", "rCTa", "klLY"], + "texture": 1 + }, + "0ruZX02Z": { + "uv": { + "0Y79": [1.52502, 35.96623], + "Xvb6": [10.09378, 35.96623], + "eigQ": [11.6188, 47.6082], + "iPyJ": [0, 47.6082] + }, + "vertices": ["iPyJ", "eigQ", "Xvb6", "0Y79"], + "texture": 1 + }, + "ulXhCvEk": { + "uv": { + "ITSp": [4.8094, 35.9836], + "Xvb6": [9.6188, 47.9836], + "0Y79": [0, 47.9836] + }, + "vertices": ["0Y79", "Xvb6", "ITSp"], + "texture": 1 + }, + "DU8KihLn": { + "uv": { + "klLY": [5.8571, 53.20582], + "tN6F": [11.7142, 59.7336], + "eaV1": [0, 59.7336] + }, + "vertices": ["eaV1", "tN6F", "klLY"], + "texture": 1 + }, + "XWzjVFrf": { + "uv": { + "Xvb6": [1.52502, 35.96623], + "AtQi": [10.09378, 35.96623], + "5Dmg": [11.6188, 47.6082], + "eigQ": [0, 47.6082] + }, + "vertices": ["eigQ", "5Dmg", "AtQi", "Xvb6"], + "texture": 1 + }, + "w9jFffcg": { + "uv": { + "ITSp": [0, 35.9836], + "AtQi": [9.6188, 35.9836], + "Xvb6": [4.8094, 47.9836] + }, + "vertices": ["Xvb6", "AtQi", "ITSp"], + "texture": 1 + }, + "K2cLYEBb": { + "uv": { + "klLY": [11.71399, 47.9836], + "eaV1": [5.85689, 54.51138], + "bcxb": [0, 47.9836] + }, + "vertices": ["bcxb", "eaV1", "klLY"], + "texture": 1 + }, + "kG34slMj": { + "uv": { + "AtQi": [1.52502, 35.96623], + "2g3l": [10.09378, 35.96623], + "eaBi": [11.6188, 47.6082], + "5Dmg": [0, 47.6082] + }, + "vertices": ["5Dmg", "eaBi", "2g3l", "AtQi"], + "texture": 1 + }, + "8ihFMEJy": { + "uv": { + "ITSp": [0, 47.9836], + "2g3l": [4.8094, 35.9836], + "AtQi": [9.6188, 47.9836] + }, + "vertices": ["AtQi", "2g3l", "ITSp"], + "texture": 1 + }, + "UjD7vhy7": { + "uv": { + "klLY": [11.71399, 57.99286], + "bcxb": [0, 57.99286], + "8ZDb": [5.85689, 51.46508] + }, + "vertices": ["8ZDb", "bcxb", "klLY"], + "texture": 1 + }, + "SDLqZtLt": { + "uv": { + "2g3l": [1.52502, 35.96623], + "sPHf": [10.09378, 35.96623], + "ztoH": [11.6188, 47.6082], + "eaBi": [0, 47.6082] + }, + "vertices": ["eaBi", "ztoH", "sPHf", "2g3l"], + "texture": 1 + }, + "EdMUBDM6": { + "uv": { + "ITSp": [4.8094, 47.9836], + "sPHf": [0, 35.9836], + "2g3l": [9.6188, 35.9836] + }, + "vertices": ["2g3l", "sPHf", "ITSp"], + "texture": 1 + }, + "cMbGsGyo": { + "uv": { + "klLY": [5.8571, 54.51138], + "8ZDb": [0, 47.9836], + "pXeQ": [11.7142, 47.9836] + }, + "vertices": ["pXeQ", "8ZDb", "klLY"], + "texture": 1 + }, + "jFTliP3X": { + "uv": { + "sPHf": [1.52502, 35.96623], + "RrBX": [10.09378, 35.96623], + "Nvu6": [11.6188, 47.6082], + "ztoH": [0, 47.6082] + }, + "vertices": ["ztoH", "Nvu6", "RrBX", "sPHf"], + "texture": 1 + }, + "bxf4msRu": { + "uv": { + "ITSp": [9.6188, 47.9836], + "RrBX": [0, 47.9836], + "sPHf": [4.8094, 35.9836] + }, + "vertices": ["sPHf", "RrBX", "ITSp"], + "texture": 1 + }, + "sxvMJH49": { + "uv": { + "eigQ": [7.6188, 43.2336], + "5Dmg": [0, 43.2336], + "FbI5": [0.9523, 41.9836], + "gG1t": [6.6665, 41.9836] + }, + "vertices": ["gG1t", "FbI5", "5Dmg", "eigQ"], + "texture": 1 + }, + "eqZO2G0m": { + "uv": { + "iPyJ": [6.28582, 43.49869], + "eigQ": [0, 43.49863], + "gG1t": [0.41719, 41.9836], + "cDOV": [5.13153, 41.9836] + }, + "vertices": ["cDOV", "gG1t", "eigQ", "iPyJ"], + "texture": 1 + }, + "WzKqxyO5": { + "uv": { + "Nvu6": [6.51503, 39.9836], + "iPyJ": [6.51509, 46.26942], + "cDOV": [5, 45.11513], + "LmQd": [5, 40.40079] + }, + "vertices": ["LmQd", "cDOV", "iPyJ", "Nvu6"], + "texture": 1 + }, + "dxcKcdd6": { + "uv": { + "ztoH": [3, 40.9836], + "Nvu6": [10.6188, 40.9836], + "LmQd": [9.6665, 42.2336], + "vun5": [3.9523, 42.2336] + }, + "vertices": ["vun5", "LmQd", "Nvu6", "ztoH"], + "texture": 1 + }, + "WVrgpPxW": { + "uv": { + "eaBi": [4, 40.9836], + "ztoH": [10.28582, 40.98365], + "vun5": [9.86863, 42.49869], + "yR3f": [5.15429, 42.49869] + }, + "vertices": ["yR3f", "vun5", "ztoH", "eaBi"], + "texture": 1 + }, + "QseuJ9JX": { + "uv": { + "5Dmg": [4.00005, 38.26942], + "eaBi": [4, 31.9836], + "yR3f": [5.51509, 33.13789], + "FbI5": [5.51509, 37.85223] + }, + "vertices": ["FbI5", "yR3f", "eaBi", "5Dmg"], + "texture": 1 + }, + "aqWuqrqN": { + "uv": { + "gG1t": [0, 56.9836], + "FbI5": [11.7141, 56.9836], + "eaV1": [11.7141, 59.9836], + "tN6F": [0, 59.9836] + }, + "vertices": ["tN6F", "eaV1", "FbI5", "gG1t"], + "texture": 1 + }, + "yTBPAKrY": { + "uv": { + "cDOV": [2.05, 50.9836], + "gG1t": [11.7143, 50.9836], + "tN6F": [11.7143, 53.9836], + "rCTa": [2.05, 53.9836] + }, + "vertices": ["rCTa", "tN6F", "gG1t", "cDOV"], + "texture": 1 + }, + "rer2pNQY": { + "uv": { + "LmQd": [2.05, 53.9836], + "cDOV": [11.7143, 53.9836], + "rCTa": [11.7143, 56.9836], + "pXeQ": [2.05, 56.9836] + }, + "vertices": ["pXeQ", "rCTa", "cDOV", "LmQd"], + "texture": 1 + }, + "Hl4STh0d": { + "uv": { + "vun5": [0, 47.9836], + "LmQd": [11.7141, 47.9836], + "pXeQ": [11.7141, 50.9836], + "8ZDb": [0, 50.9836] + }, + "vertices": ["8ZDb", "pXeQ", "LmQd", "vun5"], + "texture": 1 + }, + "K2K6NWmV": { + "uv": { + "yR3f": [0, 53.9836], + "vun5": [9.6643, 53.9836], + "8ZDb": [9.6643, 56.9836], + "bcxb": [0, 56.9836] + }, + "vertices": ["bcxb", "8ZDb", "vun5", "yR3f"], + "texture": 1 + }, + "AaGZZNOw": { + "uv": { + "FbI5": [0, 50.9836], + "yR3f": [9.6643, 50.9836], + "bcxb": [9.6643, 53.9836], + "eaV1": [0, 53.9836] + }, + "vertices": ["eaV1", "bcxb", "yR3f", "FbI5"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "46e46f49-fca6-eb7f-d115-7473d8719233" + }, + { + "name": "neutral", + "color": 8, + "origin": [0, 25.245, -3.78], + "rotation": [2.5, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "zyRr": [3.42443, 2.98, -0.01809], + "ooTR": [3.42443, -0.1, -0.01809], + "73OG": [-3.38855, 2.98, -0.01812], + "HXoH": [-3.38855, -0.1, -0.01812], + "fJPg": [-0.05908, -0.1, -0.68839], + "ujQW": [-0.05908, 2.98, -0.68839] + }, + "faces": { + "ygbaDk3h": { + "uv": { + "HXoH": [12, 24], + "ujQW": [24, 12], + "fJPg": [24, 24], + "73OG": [12, 12] + }, + "vertices": ["73OG", "fJPg", "ujQW", "HXoH"], + "texture": 1 + }, + "QOPlDywE": { + "uv": { + "zyRr": [12, 12], + "ujQW": [24, 12], + "fJPg": [24, 24], + "ooTR": [12, 24] + }, + "vertices": ["ooTR", "fJPg", "ujQW", "zyRr"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "8dee770f-2330-9d98-92fa-7c0c3210c4fd" + }, + { + "name": "circle", + "color": 8, + "origin": [-1.26, 26.37, -3.87], + "rotation": [-90, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "QlBo": [-0.48991, -0.00219, 0.22539], + "FP9N": [-1.19526, -0.11927, 1.55103], + "lUGq": [-1.97384, -0.17814, 0.16592], + "ro66": [-1.26809, -0.12511, -1.05129], + "Usga": [0.21544, 0.11489, -1.10026], + "GyQD": [0.99362, 0.23782, 0.17642], + "sKKe": [0.28826, 0.12074, 1.50206], + "gp6k": [3.71712, -0.12004, 1.55117], + "vTgM": [3.78994, -0.12589, -1.05115], + "IXDG": [2.30639, 0.11411, -1.10012], + "82YR": [1.52822, 0.23704, 0.17655], + "p7xK": [2.23358, 0.11996, 1.5022], + "1CcK": [0.83122, 0.16318, 0.52527], + "zLaG": [1.69062, 0.1624, 0.52542], + "BVQ2": [-1.69017, -0.1204, 0.86226], + "hOxT": [-1.47135, -2.83723, 0.77308], + "DUmR": [-1.72577, -2.84914, 0.16754], + "ijmy": [3.99135, -2.80315, 0.81459], + "B9AS": [4.24577, -2.85484, 0.20997], + "mmJQ": [3.01175, -0.00296, 0.22552], + "49hN": [4.49549, -0.20233, 0.2568], + "qMSp": [4.15912, -0.16726, 0.92424] + }, + "faces": { + "MOKUwzxs": { + "uv": { + "QlBo": [29.1547, 15.9836], + "lUGq": [28, 21.9836], + "ro66": [30.3094, 21.9836] + }, + "vertices": ["ro66", "lUGq", "QlBo"], + "texture": 1 + }, + "51YiqX10": { + "uv": { + "lUGq": [33, 23], + "BVQ2": [31, 21], + "hOxT": [26, 21], + "DUmR": [28, 23] + }, + "vertices": ["DUmR", "hOxT", "BVQ2", "lUGq"], + "texture": 1 + }, + "2pIUB8ES": { + "uv": { + "QlBo": [29.1547, 15.9836], + "ro66": [28, 21.9836], + "Usga": [30.3094, 21.9836] + }, + "vertices": ["Usga", "ro66", "QlBo"], + "texture": 1 + }, + "ZK7NKOeF": { + "uv": { + "QlBo": [29.1547, 15.9836], + "Usga": [28, 21.9836], + "GyQD": [30.3094, 21.9836] + }, + "vertices": ["GyQD", "Usga", "QlBo"], + "texture": 1 + }, + "wR8umpUu": { + "uv": { + "QlBo": [29.1547, 18.2836], + "sKKe": [28, 13.2836], + "FP9N": [30.3094, 13.2836] + }, + "vertices": ["FP9N", "sKKe", "QlBo"], + "texture": 1 + }, + "H6VP4Ksv": { + "uv": { + "mmJQ": [29.1547, 15.9836], + "IXDG": [30.3094, 21.9836], + "vTgM": [28, 21.9836] + }, + "vertices": ["vTgM", "IXDG", "mmJQ"], + "texture": 1 + }, + "wJyfxrMY": { + "uv": { + "GyQD": [28.1547, 13.2836], + "QlBo": [30, 18.2836], + "1CcK": [28, 13.2836], + "sKKe": [30.3094, 13.2836] + }, + "vertices": ["sKKe", "1CcK", "QlBo", "GyQD"], + "texture": 1 + }, + "DIF8u6Nx": { + "uv": { + "p7xK": [28, 13.2836], + "mmJQ": [30.5, 18.2836], + "zLaG": [28, 13.2836], + "82YR": [30.5, 13.2836] + }, + "vertices": ["82YR", "zLaG", "mmJQ", "p7xK"], + "texture": 1 + }, + "Y3MIAtYU": { + "uv": { + "49hN": [33, 23], + "qMSp": [31, 21], + "B9AS": [28, 23], + "ijmy": [26, 21] + }, + "vertices": ["ijmy", "B9AS", "qMSp", "49hN"], + "texture": 1 + }, + "m5Ei64ON": { + "uv": { + "lUGq": [28, 13.2836], + "QlBo": [30.5, 18.2836], + "FP9N": [30.5, 13.2836], + "BVQ2": [28, 13.2836] + }, + "vertices": ["BVQ2", "FP9N", "QlBo", "lUGq"], + "texture": 1 + }, + "JXbA3fJc": { + "uv": { + "mmJQ": [29.1547, 15.9836], + "82YR": [30.3094, 21.9836], + "IXDG": [28, 21.9836] + }, + "vertices": ["IXDG", "82YR", "mmJQ"], + "texture": 1 + }, + "tMb37bkc": { + "uv": { + "1CcK": [25, 21.3173], + "GyQD": [25.52825, 20.9836], + "82YR": [26.03255, 20.9836], + "zLaG": [26.5608, 21.3173] + }, + "vertices": ["zLaG", "82YR", "GyQD", "1CcK"], + "texture": 1 + }, + "6XGDzFgh": { + "uv": { + "mmJQ": [29.1547, 15.9836], + "vTgM": [30.3094, 21.9836], + "49hN": [28, 21.9836] + }, + "vertices": ["49hN", "vTgM", "mmJQ"], + "texture": 1 + }, + "ZQX1Mu9J": { + "uv": { + "mmJQ": [30.5, 18.2836], + "gp6k": [28, 13.2836], + "p7xK": [30.5, 13.2836] + }, + "vertices": ["p7xK", "gp6k", "mmJQ"], + "texture": 1 + }, + "57qo5ODz": { + "uv": { + "49hN": [28, 13.2836], + "mmJQ": [30.5, 18.2836], + "qMSp": [28, 13.2836], + "gp6k": [30.5, 13.2836] + }, + "vertices": ["gp6k", "qMSp", "mmJQ", "49hN"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "f2ee2225-6cf0-0d4a-cde5-856d38b66daa" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-5.04375, 18.26353, -0.0135], + "rotation": [0, 0, -10], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "4WRs": [0.51754, -2.42797, 0.1485], + "hwjg": [-0.49831, -1.90803, 2.25225], + "ZISf": [-0.84896, 2.93586, 1.72632], + "ryg1": [-1.51418, -1.90803, 0.1485], + "Jq92": [-1.45551, 2.93586, 0.1485], + "rilX": [-0.49831, -1.90803, -1.95525], + "iCDk": [-0.84896, 2.93586, -1.42932], + "v1hz": [1.53339, -1.90803, -1.95525], + "UN0m": [1.12407, 3.29155, -1.42932], + "92Ln": [2.54925, -1.90803, 0.1485], + "uZrh": [1.73063, 3.29155, 0.1485], + "bftR": [1.53339, -1.90803, 2.25225], + "ORyy": [1.12407, 3.29155, 1.72632], + "9zIy": [0.51754, 3.8115, 0.1485], + "zVQ5": [-0.08899, 3.8115, 0.1485], + "Lrul": [0.21425, 3.8115, 0.93743], + "Sltx": [0.82082, 3.8115, 0.93743], + "l955": [1.12411, 3.8115, 0.1485], + "ovht": [0.82082, 3.8115, -0.64043], + "12zS": [0.21425, 3.8115, -0.64043], + "jS6F": [0.11318, -2.42797, 1.20035], + "IKHl": [-0.29121, -2.42797, 0.1485], + "srzj": [0.11316, -2.42797, -0.9034], + "TZsM": [0.92192, -2.42797, -0.9034], + "n74E": [1.32629, -2.42797, 0.1485], + "AgKl": [0.92192, -2.42797, 1.2004] + }, + "faces": { + "sGCABgEN": { + "uv": { + "hwjg": [3.3516, 30.1401], + "IKHl": [1.4433, 31.4211], + "jS6F": [2.5815, 31.4211], + "ryg1": [1, 29.9836] + }, + "vertices": ["ryg1", "jS6F", "IKHl", "hwjg"], + "texture": 1 + }, + "sWWfgk4K": { + "uv": { + "ZISf": [8.00293, 29.68519], + "Jq92": [7.99834, 27.9836], + "hwjg": [0.00761, 30.34339], + "ryg1": [0, 27.9836] + }, + "vertices": ["ryg1", "hwjg", "Jq92", "ZISf"], + "texture": 1 + }, + "QNUAKYIT": { + "uv": { + "Jq92": [1, 28.9202], + "Lrul": [2.349, 26.9836], + "zVQ5": [1.4953, 26.9836], + "ZISf": [2.7075, 28.9202] + }, + "vertices": ["ZISf", "zVQ5", "Lrul", "Jq92"], + "texture": 1 + }, + "BRnWTTQ7": { + "uv": { + "ryg1": [2.3517, 27.9836], + "srzj": [0.7701, 29.4153], + "IKHl": [1.9085, 29.4153], + "rilX": [0, 28.1291] + }, + "vertices": ["rilX", "IKHl", "srzj", "ryg1"], + "texture": 1 + }, + "USWUQ28I": { + "uv": { + "Jq92": [2.334, 25.9851], + "iCDk": [0.6324, 25.9836], + "ryg1": [2.3597, 33.9822], + "rilX": [0, 33.9822] + }, + "vertices": ["rilX", "ryg1", "iCDk", "Jq92"], + "texture": 1 + }, + "telwhUl5": { + "uv": { + "iCDk": [1, 31.9202], + "zVQ5": [2.2123, 29.9836], + "12zS": [1.3585, 29.9836], + "Jq92": [2.7075, 31.9202] + }, + "vertices": ["Jq92", "12zS", "zVQ5", "iCDk"], + "texture": 1 + }, + "Y0oRikhE": { + "uv": { + "rilX": [2.0522, 31.9836], + "TZsM": [0.6177, 33.3496], + "srzj": [1.4346, 33.3496], + "v1hz": [0, 31.9836] + }, + "vertices": ["v1hz", "srzj", "TZsM", "rilX"], + "texture": 1 + }, + "M1vklvUl": { + "uv": { + "iCDk": [8.122, 31.00235], + "UN0m": [8.61183, 28.9836], + "rilX": [0.09854, 31.03343], + "v1hz": [0, 28.9836] + }, + "vertices": ["v1hz", "rilX", "UN0m", "iCDk"], + "texture": 1 + }, + "ZVE21JMg": { + "uv": { + "UN0m": [1, 27.1202], + "12zS": [1.919, 25.9836], + "ovht": [1.3063, 25.9836], + "iCDk": [2.9929, 27.6345] + }, + "vertices": ["iCDk", "ovht", "12zS", "UN0m"], + "texture": 1 + }, + "L0SUV83I": { + "uv": { + "v1hz": [2.3517, 27.1402], + "n74E": [0.4433, 28.4212], + "TZsM": [1.5816, 28.4212], + "92Ln": [0, 26.9836] + }, + "vertices": ["92Ln", "TZsM", "n74E", "v1hz"], + "texture": 1 + }, + "R3T6mLRW": { + "uv": { + "UN0m": [2.0612, 24.9958], + "uZrh": [0.3596, 24.9836], + "v1hz": [2.3598, 33.6013], + "92Ln": [0, 33.6013] + }, + "vertices": ["92Ln", "v1hz", "uZrh", "UN0m"], + "texture": 1 + }, + "ttIS0sst": { + "uv": { + "uZrh": [0, 31.0152], + "ovht": [1.0736, 29.9836], + "l955": [0.2199, 29.9836], + "UN0m": [1.7075, 31.0152] + }, + "vertices": ["UN0m", "l955", "ovht", "uZrh"], + "texture": 1 + }, + "dQPt3CZa": { + "uv": { + "92Ln": [2.3516, 29.9836], + "AgKl": [0.7701, 31.4152], + "n74E": [1.9084, 31.4152], + "bftR": [0, 30.129] + }, + "vertices": ["bftR", "n74E", "AgKl", "92Ln"], + "texture": 1 + }, + "FiVhgNvE": { + "uv": { + "uZrh": [2.0002, 24.9836], + "ORyy": [0.2986, 24.9935], + "92Ln": [2.3597, 33.6001], + "bftR": [0, 33.6001] + }, + "vertices": ["bftR", "92Ln", "ORyy", "uZrh"], + "texture": 1 + }, + "f27qtq3m": { + "uv": { + "ORyy": [0, 28.0152], + "l955": [1.4876, 26.9836], + "Sltx": [0.6339, 26.9836], + "uZrh": [1.7075, 28.0152] + }, + "vertices": ["uZrh", "Sltx", "l955", "ORyy"], + "texture": 1 + }, + "Ahdauex4": { + "uv": { + "bftR": [2.0522, 25.9837], + "jS6F": [0.6176, 27.3497], + "AgKl": [1.4345, 27.3497], + "hwjg": [0, 25.9836] + }, + "vertices": ["hwjg", "AgKl", "jS6F", "bftR"], + "texture": 1 + }, + "FwaC0inC": { + "uv": { + "ORyy": [2.01682, 24.9836], + "ZISf": [0, 25.48108], + "bftR": [2.0503, 33.59517], + "hwjg": [0, 33.50459] + }, + "vertices": ["hwjg", "bftR", "ZISf", "ORyy"], + "texture": 1 + }, + "9ZkZ6NpN": { + "uv": { + "ZISf": [0, 33.5854], + "Sltx": [1.6866, 31.9836], + "Lrul": [1.0739, 31.9836], + "ORyy": [1.9929, 33.155] + }, + "vertices": ["ORyy", "Lrul", "Sltx", "ZISf"], + "texture": 1 + }, + "bLGLsiVU": { + "uv": { + "Lrul": [0.3063, 26.7805], + "zVQ5": [0, 25.9836], + "9zIy": [0.6127, 25.9836] + }, + "vertices": ["9zIy", "zVQ5", "Lrul"], + "texture": 1 + }, + "FdG3nVPa": { + "uv": { + "Sltx": [1.6127, 27.7805], + "Lrul": [1, 27.7805], + "9zIy": [1.3064, 26.9836] + }, + "vertices": ["9zIy", "Lrul", "Sltx"], + "texture": 1 + }, + "ud1TCfhY": { + "uv": { + "l955": [2.6127, 25.9836], + "Sltx": [2.3063, 26.7805], + "9zIy": [2, 25.9836] + }, + "vertices": ["9zIy", "Sltx", "l955"], + "texture": 1 + }, + "41w1S6rR": { + "uv": { + "ovht": [2.3063, 31.9836], + "l955": [2.6127, 32.7805], + "9zIy": [2, 32.7805] + }, + "vertices": ["9zIy", "l955", "ovht"], + "texture": 1 + }, + "wEgUowfB": { + "uv": { + "12zS": [1, 30.9836], + "ovht": [1.6127, 30.9836], + "9zIy": [1.3064, 31.7805] + }, + "vertices": ["9zIy", "ovht", "12zS"], + "texture": 1 + }, + "G3UiYJeg": { + "uv": { + "zVQ5": [0, 32.7805], + "12zS": [0.3063, 31.9836], + "9zIy": [0.6127, 32.7805] + }, + "vertices": ["9zIy", "12zS", "zVQ5"], + "texture": 1 + }, + "HSXF4kkA": { + "uv": { + "IKHl": [1, 34.0461], + "jS6F": [1.4084, 32.9836], + "4WRs": [1.8169, 34.0461] + }, + "vertices": ["4WRs", "jS6F", "IKHl"], + "texture": 1 + }, + "QqJPEzgx": { + "uv": { + "srzj": [1.4084, 27.0461], + "IKHl": [1, 25.9836], + "4WRs": [1.8169, 25.9836] + }, + "vertices": ["4WRs", "IKHl", "srzj"], + "texture": 1 + }, + "TY9u2sDg": { + "uv": { + "TZsM": [1.8169, 28.0461], + "srzj": [1, 28.0461], + "4WRs": [1.4085, 26.9836] + }, + "vertices": ["4WRs", "srzj", "TZsM"], + "texture": 1 + }, + "0orapcDd": { + "uv": { + "n74E": [2.8169, 25.9836], + "TZsM": [2.4084, 27.0461], + "4WRs": [2, 25.9836] + }, + "vertices": ["4WRs", "TZsM", "n74E"], + "texture": 1 + }, + "uoHhPK1e": { + "uv": { + "AgKl": [2.4084, 32.9836], + "n74E": [2.8169, 34.0461], + "4WRs": [2, 34.0461] + }, + "vertices": ["4WRs", "n74E", "AgKl"], + "texture": 1 + }, + "R8i2SJV3": { + "uv": { + "jS6F": [1, 30.9836], + "AgKl": [1.8169, 30.9836], + "4WRs": [1.4085, 32.0461] + }, + "vertices": ["4WRs", "AgKl", "jS6F"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "b4aa1095-c834-139c-8b5f-93abfd983a84" + }, + { + "name": "cylinder", + "color": 8, + "origin": [5.04375, 18.26353, -0.0135], + "rotation": [0, 0, 10], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "4WRs": [-0.51754, -2.42797, 0.1485], + "hwjg": [0.49832, -1.90803, 2.25225], + "ZISf": [0.84896, 2.93586, 1.72632], + "ryg1": [1.51418, -1.90803, 0.1485], + "Jq92": [1.45551, 2.93586, 0.1485], + "rilX": [0.49832, -1.90803, -1.95525], + "iCDk": [0.84896, 2.93586, -1.42932], + "v1hz": [-1.53339, -1.90803, -1.95525], + "UN0m": [-1.12407, 3.29155, -1.42932], + "92Ln": [-2.54925, -1.90803, 0.1485], + "uZrh": [-1.73063, 3.29155, 0.1485], + "bftR": [-1.53339, -1.90803, 2.25225], + "ORyy": [-1.12407, 3.29155, 1.72632], + "9zIy": [-0.51754, 3.8115, 0.1485], + "zVQ5": [0.08899, 3.8115, 0.1485], + "Lrul": [-0.21425, 3.8115, 0.93743], + "Sltx": [-0.82082, 3.8115, 0.93743], + "l955": [-1.12411, 3.8115, 0.1485], + "ovht": [-0.82082, 3.8115, -0.64043], + "12zS": [-0.21425, 3.8115, -0.64043], + "jS6F": [-0.11318, -2.42797, 1.20035], + "IKHl": [0.29121, -2.42797, 0.1485], + "srzj": [-0.11316, -2.42797, -0.9034], + "TZsM": [-0.92192, -2.42797, -0.9034], + "n74E": [-1.32628, -2.42797, 0.1485], + "AgKl": [-0.92192, -2.42797, 1.2004] + }, + "faces": { + "sGCABgEN": { + "uv": { + "hwjg": [2.5815, 31.4211], + "IKHl": [1, 29.9836], + "ryg1": [1.4433, 31.4211], + "jS6F": [3.3516, 30.1401] + }, + "vertices": ["jS6F", "ryg1", "IKHl", "hwjg"], + "texture": 1 + }, + "sWWfgk4K": { + "uv": { + "ZISf": [0.00761, 30.34339], + "Jq92": [0, 27.9836], + "ryg1": [7.99834, 27.9836], + "hwjg": [8.00293, 29.68519] + }, + "vertices": ["hwjg", "ryg1", "Jq92", "ZISf"], + "texture": 1 + }, + "QNUAKYIT": { + "uv": { + "Jq92": [1.4953, 26.9836], + "Lrul": [2.7075, 28.9202], + "ZISf": [2.349, 26.9836], + "zVQ5": [1, 28.9202] + }, + "vertices": ["zVQ5", "ZISf", "Lrul", "Jq92"], + "texture": 1 + }, + "BRnWTTQ7": { + "uv": { + "ryg1": [1.9085, 29.4153], + "srzj": [0, 28.1291], + "rilX": [0.7701, 29.4153], + "IKHl": [2.3517, 27.9836] + }, + "vertices": ["IKHl", "rilX", "srzj", "ryg1"], + "texture": 1 + }, + "USWUQ28I": { + "uv": { + "Jq92": [2.3597, 33.9822], + "iCDk": [0, 33.9822], + "rilX": [0.6324, 25.9836], + "ryg1": [2.334, 25.9851] + }, + "vertices": ["ryg1", "rilX", "iCDk", "Jq92"], + "texture": 1 + }, + "telwhUl5": { + "uv": { + "iCDk": [1.3585, 29.9836], + "zVQ5": [2.7075, 31.9202], + "Jq92": [2.2123, 29.9836], + "12zS": [1, 31.9202] + }, + "vertices": ["12zS", "Jq92", "zVQ5", "iCDk"], + "texture": 1 + }, + "Y0oRikhE": { + "uv": { + "rilX": [1.4346, 33.3496], + "TZsM": [0, 31.9836], + "v1hz": [0.6177, 33.3496], + "srzj": [2.0522, 31.9836] + }, + "vertices": ["srzj", "v1hz", "TZsM", "rilX"], + "texture": 1 + }, + "M1vklvUl": { + "uv": { + "iCDk": [0.09854, 31.03343], + "UN0m": [0, 28.9836], + "v1hz": [8.61183, 28.9836], + "rilX": [8.122, 31.00235] + }, + "vertices": ["rilX", "v1hz", "UN0m", "iCDk"], + "texture": 1 + }, + "ZVE21JMg": { + "uv": { + "UN0m": [1.3063, 25.9836], + "12zS": [2.9929, 27.6345], + "iCDk": [1.919, 25.9836], + "ovht": [1, 27.1202] + }, + "vertices": ["ovht", "iCDk", "12zS", "UN0m"], + "texture": 1 + }, + "L0SUV83I": { + "uv": { + "v1hz": [1.5816, 28.4212], + "n74E": [0, 26.9836], + "92Ln": [0.4433, 28.4212], + "TZsM": [2.3517, 27.1402] + }, + "vertices": ["TZsM", "92Ln", "n74E", "v1hz"], + "texture": 1 + }, + "R3T6mLRW": { + "uv": { + "UN0m": [2.3598, 33.6013], + "uZrh": [0, 33.6013], + "92Ln": [0.3596, 24.9836], + "v1hz": [2.0612, 24.9958] + }, + "vertices": ["v1hz", "92Ln", "uZrh", "UN0m"], + "texture": 1 + }, + "ttIS0sst": { + "uv": { + "uZrh": [0.2199, 29.9836], + "ovht": [1.7075, 31.0152], + "UN0m": [1.0736, 29.9836], + "l955": [0, 31.0152] + }, + "vertices": ["l955", "UN0m", "ovht", "uZrh"], + "texture": 1 + }, + "dQPt3CZa": { + "uv": { + "92Ln": [1.9084, 31.4152], + "AgKl": [0, 30.129], + "bftR": [0.7701, 31.4152], + "n74E": [2.3516, 29.9836] + }, + "vertices": ["n74E", "bftR", "AgKl", "92Ln"], + "texture": 1 + }, + "FiVhgNvE": { + "uv": { + "uZrh": [2.3597, 33.6001], + "ORyy": [0, 33.6001], + "bftR": [0.2986, 24.9935], + "92Ln": [2.0002, 24.9836] + }, + "vertices": ["92Ln", "bftR", "ORyy", "uZrh"], + "texture": 1 + }, + "f27qtq3m": { + "uv": { + "ORyy": [0.6339, 26.9836], + "l955": [1.7075, 28.0152], + "uZrh": [1.4876, 26.9836], + "Sltx": [0, 28.0152] + }, + "vertices": ["Sltx", "uZrh", "l955", "ORyy"], + "texture": 1 + }, + "Ahdauex4": { + "uv": { + "bftR": [1.4345, 27.3497], + "jS6F": [0, 25.9836], + "hwjg": [0.6176, 27.3497], + "AgKl": [2.0522, 25.9837] + }, + "vertices": ["AgKl", "hwjg", "jS6F", "bftR"], + "texture": 1 + }, + "FwaC0inC": { + "uv": { + "ORyy": [2.0503, 33.59517], + "ZISf": [0, 33.50459], + "hwjg": [0, 25.48108], + "bftR": [2.01682, 24.9836] + }, + "vertices": ["bftR", "hwjg", "ZISf", "ORyy"], + "texture": 1 + }, + "9ZkZ6NpN": { + "uv": { + "ZISf": [1.0739, 31.9836], + "Sltx": [1.9929, 33.155], + "ORyy": [1.6866, 31.9836], + "Lrul": [0, 33.5854] + }, + "vertices": ["Lrul", "ORyy", "Sltx", "ZISf"], + "texture": 1 + }, + "bLGLsiVU": { + "uv": { + "Lrul": [0.3063, 26.7805], + "9zIy": [0, 25.9836], + "zVQ5": [0.6127, 25.9836] + }, + "vertices": ["zVQ5", "9zIy", "Lrul"], + "texture": 1 + }, + "FdG3nVPa": { + "uv": { + "Sltx": [1.6127, 27.7805], + "9zIy": [1, 27.7805], + "Lrul": [1.3064, 26.9836] + }, + "vertices": ["Lrul", "9zIy", "Sltx"], + "texture": 1 + }, + "ud1TCfhY": { + "uv": { + "l955": [2.6127, 25.9836], + "9zIy": [2.3063, 26.7805], + "Sltx": [2, 25.9836] + }, + "vertices": ["Sltx", "9zIy", "l955"], + "texture": 1 + }, + "41w1S6rR": { + "uv": { + "ovht": [2.3063, 31.9836], + "9zIy": [2.6127, 32.7805], + "l955": [2, 32.7805] + }, + "vertices": ["l955", "9zIy", "ovht"], + "texture": 1 + }, + "wEgUowfB": { + "uv": { + "12zS": [1, 30.9836], + "9zIy": [1.6127, 30.9836], + "ovht": [1.3064, 31.7805] + }, + "vertices": ["ovht", "9zIy", "12zS"], + "texture": 1 + }, + "G3UiYJeg": { + "uv": { + "zVQ5": [0, 32.7805], + "9zIy": [0.3063, 31.9836], + "12zS": [0.6127, 32.7805] + }, + "vertices": ["12zS", "9zIy", "zVQ5"], + "texture": 1 + }, + "HSXF4kkA": { + "uv": { + "IKHl": [1, 34.0461], + "4WRs": [1.4084, 32.9836], + "jS6F": [1.8169, 34.0461] + }, + "vertices": ["jS6F", "4WRs", "IKHl"], + "texture": 1 + }, + "QqJPEzgx": { + "uv": { + "srzj": [1.4084, 27.0461], + "4WRs": [1, 25.9836], + "IKHl": [1.8169, 25.9836] + }, + "vertices": ["IKHl", "4WRs", "srzj"], + "texture": 1 + }, + "TY9u2sDg": { + "uv": { + "TZsM": [1.8169, 28.0461], + "4WRs": [1, 28.0461], + "srzj": [1.4085, 26.9836] + }, + "vertices": ["srzj", "4WRs", "TZsM"], + "texture": 1 + }, + "0orapcDd": { + "uv": { + "n74E": [2.8169, 25.9836], + "4WRs": [2.4084, 27.0461], + "TZsM": [2, 25.9836] + }, + "vertices": ["TZsM", "4WRs", "n74E"], + "texture": 1 + }, + "uoHhPK1e": { + "uv": { + "AgKl": [2.4084, 32.9836], + "4WRs": [2.8169, 34.0461], + "n74E": [2, 34.0461] + }, + "vertices": ["n74E", "4WRs", "AgKl"], + "texture": 1 + }, + "R8i2SJV3": { + "uv": { + "jS6F": [1, 30.9836], + "4WRs": [1.8169, 30.9836], + "AgKl": [1.4085, 32.0461] + }, + "vertices": ["AgKl", "4WRs", "jS6F"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "5b436543-2419-e70e-86f7-2277ab9225f9" + }, + { + "name": "cylinder", + "color": 8, + "origin": [2.23633, 5.07857, -0.15628], + "rotation": [1.72795, 0.14886, -0.15341], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "fXDl": [0.0021, -4.17816, 0.47714], + "769S": [0, 4.82143, 0.45], + "Ngnq": [1.16404, -3.27857, 2.61], + "86iU": [0.99219, 3.08572, 3.15], + "Orqk": [2.32808, -3.27857, 0.45], + "2WPs": [1.98437, 3.08572, 0.45], + "sf20": [1.16404, -3.27857, -1.71], + "JpAB": [0.99219, 3.08572, -2.25], + "uSt3": [-1.16404, -3.27857, -1.71], + "LEG0": [-0.99219, 3.08572, -2.25], + "H1ru": [-2.32807, -3.27857, 0.45], + "GPdT": [-2.16437, 3.08572, 0.45], + "HLm2": [-1.16404, -3.27857, 2.61], + "Ba1X": [-0.99219, 3.08572, 3.15] + }, + "faces": { + "kIuOJ6a5": { + "uv": { + "fXDl": [1.3815, 54.3836], + "Ngnq": [3.37555, 51.9836], + "Orqk": [5.3696, 54.3836] + }, + "vertices": ["Orqk", "Ngnq", "fXDl"], + "texture": 1 + }, + "jwCmvIw0": { + "uv": { + "86iU": [1.3815, 47.9999], + "2WPs": [5.80906, 47.9836], + "Orqk": [6.11257, 58.9896], + "Ngnq": [2.24355, 58.9896] + }, + "vertices": ["Ngnq", "Orqk", "2WPs", "86iU"], + "texture": 1 + }, + "8CBehK8M": { + "uv": { + "769S": [3.18974, 48.9836], + "2WPs": [4.47951, 52.7496], + "86iU": [0, 52.7496] + }, + "vertices": ["86iU", "2WPs", "769S"], + "texture": 1 + }, + "6735bTQz": { + "uv": { + "fXDl": [1.3815, 50.9836], + "Orqk": [5.3696, 50.9836], + "sf20": [3.37555, 53.3836] + }, + "vertices": ["sf20", "Orqk", "fXDl"], + "texture": 1 + }, + "5RuiYjJo": { + "uv": { + "2WPs": [1.68501, 47.9893], + "JpAB": [6.11257, 47.9836], + "sf20": [5.25052, 58.9844], + "Orqk": [1.3815, 58.9844] + }, + "vertices": ["Orqk", "sf20", "JpAB", "2WPs"], + "texture": 1 + }, + "haqmnfWx": { + "uv": { + "769S": [2.67126, 51.9836], + "JpAB": [5.86086, 55.7496], + "2WPs": [1.3815, 55.7496] + }, + "vertices": ["2WPs", "JpAB", "769S"], + "texture": 1 + }, + "LzfYKXZg": { + "uv": { + "fXDl": [3.37555, 52.9836], + "sf20": [5.3696, 55.3836], + "uSt3": [1.3815, 55.3836] + }, + "vertices": ["uSt3", "sf20", "fXDl"], + "texture": 1 + }, + "cdXcnv9J": { + "uv": { + "JpAB": [1.67589, 47.9836], + "LEG0": [5.07521, 47.9836], + "uSt3": [5.3696, 58.9999], + "sf20": [1.3815, 58.9999] + }, + "vertices": ["sf20", "uSt3", "LEG0", "JpAB"], + "texture": 1 + }, + "2Zbo3wUk": { + "uv": { + "769S": [3.08115, 48.9836], + "LEG0": [4.78081, 53.2262], + "JpAB": [1.3815, 53.2262] + }, + "vertices": ["JpAB", "LEG0", "769S"], + "texture": 1 + }, + "7Lb8dPtY": { + "uv": { + "fXDl": [5.36947, 50.9836], + "uSt3": [3.37541, 53.3836], + "H1ru": [1.3815, 50.9836] + }, + "vertices": ["H1ru", "uSt3", "fXDl"], + "texture": 1 + }, + "smP5XAom": { + "uv": { + "LEG0": [0, 47.9999], + "GPdT": [4.42756, 47.9836], + "H1ru": [4.73108, 58.9896], + "uSt3": [0.86205, 58.9896] + }, + "vertices": ["uSt3", "H1ru", "GPdT", "LEG0"], + "texture": 1 + }, + "Jq3zWgIi": { + "uv": { + "769S": [3.1896, 51.9836], + "GPdT": [4.47937, 55.7496], + "LEG0": [0, 55.7496] + }, + "vertices": ["LEG0", "GPdT", "769S"], + "texture": 1 + }, + "Lf6TqTg3": { + "uv": { + "fXDl": [5.36947, 54.3836], + "H1ru": [1.3815, 54.3836], + "HLm2": [3.37541, 51.9836] + }, + "vertices": ["HLm2", "H1ru", "fXDl"], + "texture": 1 + }, + "8RzK1EH5": { + "uv": { + "GPdT": [1.68501, 47.9893], + "Ba1X": [6.11257, 47.9836], + "HLm2": [5.25052, 58.9843], + "H1ru": [1.3815, 58.9843] + }, + "vertices": ["H1ru", "HLm2", "Ba1X", "GPdT"], + "texture": 1 + }, + "BDGVQs73": { + "uv": { + "769S": [4.05276, 48.9836], + "Ba1X": [7.2425, 52.7496], + "GPdT": [2.76299, 52.7496] + }, + "vertices": ["GPdT", "Ba1X", "769S"], + "texture": 1 + }, + "1l3NVOxJ": { + "uv": { + "fXDl": [3.37555, 53.3836], + "HLm2": [1.3815, 50.9836], + "Ngnq": [5.3696, 50.9836] + }, + "vertices": ["Ngnq", "HLm2", "fXDl"], + "texture": 1 + }, + "yIuKEBDF": { + "uv": { + "Ba1X": [1.67589, 47.9836], + "86iU": [5.07521, 47.9836], + "Ngnq": [5.3696, 59], + "HLm2": [1.3815, 59] + }, + "vertices": ["HLm2", "Ngnq", "86iU", "Ba1X"], + "texture": 1 + }, + "ZCMrJe0Y": { + "uv": { + "769S": [3.08115, 51.9836], + "86iU": [4.78081, 56.2262], + "Ba1X": [1.3815, 56.2262] + }, + "vertices": ["Ba1X", "86iU", "769S"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "02c1d309-dc14-6511-c2fa-60a9333aff71" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-5.00244, 18.6218, -0.0135], + "rotation": [0, 0, -10], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "4WRs": [0.76504, -6.38797, 0.1485], + "hwjg": [-0.37456, -5.86803, 2.52225], + "ZISf": [-0.76793, -1.02414, 1.92882], + "ryg1": [-1.51418, -5.86803, 0.1485], + "Jq92": [-1.44836, -1.02414, 0.1485], + "rilX": [-0.37456, -5.86803, -2.22525], + "iCDk": [-0.76793, -1.02414, -1.63181], + "v1hz": [1.90464, -5.86803, -2.22525], + "UN0m": [1.44546, -0.66845, -1.63181], + "92Ln": [3.04425, -5.86803, 0.1485], + "uZrh": [2.12591, -0.66845, 0.1485], + "bftR": [1.90464, -5.86803, 2.52225], + "ORyy": [1.44546, -0.66845, 1.92882], + "9zIy": [0.76504, -0.1485, 0.1485], + "zVQ5": [0.08463, -0.1485, 0.1485], + "Lrul": [0.42481, -0.1485, 1.03868], + "Sltx": [1.10526, -0.1485, 1.03868], + "l955": [1.4455, -0.1485, 0.1485], + "ovht": [1.10526, -0.1485, -0.74168], + "12zS": [0.42481, -0.1485, -0.74168], + "jS6F": [0.31143, -6.38797, 1.33534], + "IKHl": [-0.14223, -6.38797, 0.1485], + "srzj": [0.3114, -6.38797, -1.03841], + "TZsM": [1.21868, -6.38797, -1.03841], + "n74E": [1.6723, -6.38797, 0.1485], + "AgKl": [1.21868, -6.38797, 1.33541] + }, + "faces": { + "sGCABgEN": { + "uv": { + "hwjg": [2.5815, 31.4211], + "IKHl": [1, 29.9836], + "jS6F": [3.3516, 30.1401], + "ryg1": [1.4433, 31.4211] + }, + "vertices": ["ryg1", "jS6F", "IKHl", "hwjg"], + "texture": 1 + }, + "sWWfgk4K": { + "uv": { + "ZISf": [0.00761, 30.34339], + "Jq92": [0, 27.9836], + "hwjg": [8.00293, 29.68519], + "ryg1": [7.99834, 27.9836] + }, + "vertices": ["ryg1", "hwjg", "Jq92", "ZISf"], + "texture": 1 + }, + "QNUAKYIT": { + "uv": { + "Jq92": [1.4953, 26.9836], + "Lrul": [2.7075, 28.9202], + "zVQ5": [1, 28.9202], + "ZISf": [2.349, 26.9836] + }, + "vertices": ["ZISf", "zVQ5", "Lrul", "Jq92"], + "texture": 1 + }, + "BRnWTTQ7": { + "uv": { + "ryg1": [1.9085, 29.4153], + "srzj": [0, 28.1291], + "IKHl": [2.3517, 27.9836], + "rilX": [0.7701, 29.4153] + }, + "vertices": ["rilX", "IKHl", "srzj", "ryg1"], + "texture": 1 + }, + "USWUQ28I": { + "uv": { + "Jq92": [2.3597, 33.9822], + "iCDk": [0, 33.9822], + "ryg1": [2.334, 25.9851], + "rilX": [0.6324, 25.9836] + }, + "vertices": ["rilX", "ryg1", "iCDk", "Jq92"], + "texture": 1 + }, + "telwhUl5": { + "uv": { + "iCDk": [1.3585, 29.9836], + "zVQ5": [2.7075, 31.9202], + "12zS": [1, 31.9202], + "Jq92": [2.2123, 29.9836] + }, + "vertices": ["Jq92", "12zS", "zVQ5", "iCDk"], + "texture": 1 + }, + "Y0oRikhE": { + "uv": { + "rilX": [1.4346, 33.3496], + "TZsM": [0, 31.9836], + "srzj": [2.0522, 31.9836], + "v1hz": [0.6177, 33.3496] + }, + "vertices": ["v1hz", "srzj", "TZsM", "rilX"], + "texture": 1 + }, + "M1vklvUl": { + "uv": { + "iCDk": [0.09854, 31.03343], + "UN0m": [0, 28.9836], + "rilX": [8.122, 31.00235], + "v1hz": [8.61183, 28.9836] + }, + "vertices": ["v1hz", "rilX", "UN0m", "iCDk"], + "texture": 1 + }, + "ZVE21JMg": { + "uv": { + "UN0m": [1.3063, 25.9836], + "12zS": [2.9929, 27.6345], + "ovht": [1, 27.1202], + "iCDk": [1.919, 25.9836] + }, + "vertices": ["iCDk", "ovht", "12zS", "UN0m"], + "texture": 1 + }, + "L0SUV83I": { + "uv": { + "v1hz": [1.5816, 28.4212], + "n74E": [0, 26.9836], + "TZsM": [2.3517, 27.1402], + "92Ln": [0.4433, 28.4212] + }, + "vertices": ["92Ln", "TZsM", "n74E", "v1hz"], + "texture": 1 + }, + "R3T6mLRW": { + "uv": { + "UN0m": [2.3598, 33.6013], + "uZrh": [0, 33.6013], + "v1hz": [2.0612, 24.9958], + "92Ln": [0.3596, 24.9836] + }, + "vertices": ["92Ln", "v1hz", "uZrh", "UN0m"], + "texture": 1 + }, + "ttIS0sst": { + "uv": { + "uZrh": [0.2199, 29.9836], + "ovht": [1.7075, 31.0152], + "l955": [0, 31.0152], + "UN0m": [1.0736, 29.9836] + }, + "vertices": ["UN0m", "l955", "ovht", "uZrh"], + "texture": 1 + }, + "dQPt3CZa": { + "uv": { + "92Ln": [1.9084, 31.4152], + "AgKl": [0, 30.129], + "n74E": [2.3516, 29.9836], + "bftR": [0.7701, 31.4152] + }, + "vertices": ["bftR", "n74E", "AgKl", "92Ln"], + "texture": 1 + }, + "FiVhgNvE": { + "uv": { + "uZrh": [2.3597, 33.6001], + "ORyy": [0, 33.6001], + "92Ln": [2.0002, 24.9836], + "bftR": [0.2986, 24.9935] + }, + "vertices": ["bftR", "92Ln", "ORyy", "uZrh"], + "texture": 1 + }, + "f27qtq3m": { + "uv": { + "ORyy": [0.6339, 26.9836], + "l955": [1.7075, 28.0152], + "Sltx": [0, 28.0152], + "uZrh": [1.4876, 26.9836] + }, + "vertices": ["uZrh", "Sltx", "l955", "ORyy"], + "texture": 1 + }, + "Ahdauex4": { + "uv": { + "bftR": [1.4345, 27.3497], + "jS6F": [0, 25.9836], + "AgKl": [2.0522, 25.9837], + "hwjg": [0.6176, 27.3497] + }, + "vertices": ["hwjg", "AgKl", "jS6F", "bftR"], + "texture": 1 + }, + "FwaC0inC": { + "uv": { + "ORyy": [2.0503, 33.59517], + "ZISf": [0, 33.50459], + "bftR": [2.01682, 24.9836], + "hwjg": [0, 25.48108] + }, + "vertices": ["hwjg", "bftR", "ZISf", "ORyy"], + "texture": 1 + }, + "9ZkZ6NpN": { + "uv": { + "ZISf": [1.0739, 31.9836], + "Sltx": [1.9929, 33.155], + "Lrul": [0, 33.5854], + "ORyy": [1.6866, 31.9836] + }, + "vertices": ["ORyy", "Lrul", "Sltx", "ZISf"], + "texture": 1 + }, + "bLGLsiVU": { + "uv": { + "Lrul": [0.3063, 26.7805], + "zVQ5": [0.6127, 25.9836], + "9zIy": [0, 25.9836] + }, + "vertices": ["9zIy", "zVQ5", "Lrul"], + "texture": 1 + }, + "FdG3nVPa": { + "uv": { + "Sltx": [1.6127, 27.7805], + "Lrul": [1.3064, 26.9836], + "9zIy": [1, 27.7805] + }, + "vertices": ["9zIy", "Lrul", "Sltx"], + "texture": 1 + }, + "ud1TCfhY": { + "uv": { + "l955": [2.6127, 25.9836], + "Sltx": [2, 25.9836], + "9zIy": [2.3063, 26.7805] + }, + "vertices": ["9zIy", "Sltx", "l955"], + "texture": 1 + }, + "41w1S6rR": { + "uv": { + "ovht": [2.3063, 31.9836], + "l955": [2, 32.7805], + "9zIy": [2.6127, 32.7805] + }, + "vertices": ["9zIy", "l955", "ovht"], + "texture": 1 + }, + "wEgUowfB": { + "uv": { + "12zS": [1, 30.9836], + "ovht": [1.3064, 31.7805], + "9zIy": [1.6127, 30.9836] + }, + "vertices": ["9zIy", "ovht", "12zS"], + "texture": 1 + }, + "G3UiYJeg": { + "uv": { + "zVQ5": [0, 32.7805], + "12zS": [0.6127, 32.7805], + "9zIy": [0.3063, 31.9836] + }, + "vertices": ["9zIy", "12zS", "zVQ5"], + "texture": 1 + }, + "HSXF4kkA": { + "uv": { + "IKHl": [1, 34.0461], + "jS6F": [1.8169, 34.0461], + "4WRs": [1.4084, 32.9836] + }, + "vertices": ["4WRs", "jS6F", "IKHl"], + "texture": 1 + }, + "QqJPEzgx": { + "uv": { + "srzj": [1.4084, 27.0461], + "IKHl": [1.8169, 25.9836], + "4WRs": [1, 25.9836] + }, + "vertices": ["4WRs", "IKHl", "srzj"], + "texture": 1 + }, + "TY9u2sDg": { + "uv": { + "TZsM": [1.8169, 28.0461], + "srzj": [1.4085, 26.9836], + "4WRs": [1, 28.0461] + }, + "vertices": ["4WRs", "srzj", "TZsM"], + "texture": 1 + }, + "0orapcDd": { + "uv": { + "n74E": [2.8169, 25.9836], + "TZsM": [2, 25.9836], + "4WRs": [2.4084, 27.0461] + }, + "vertices": ["4WRs", "TZsM", "n74E"], + "texture": 1 + }, + "uoHhPK1e": { + "uv": { + "AgKl": [2.4084, 32.9836], + "n74E": [2, 34.0461], + "4WRs": [2.8169, 34.0461] + }, + "vertices": ["4WRs", "n74E", "AgKl"], + "texture": 1 + }, + "R8i2SJV3": { + "uv": { + "jS6F": [1, 30.9836], + "AgKl": [1.4085, 32.0461], + "4WRs": [1.8169, 30.9836] + }, + "vertices": ["4WRs", "AgKl", "jS6F"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "db44415d-1faa-cca8-069a-d3e7cf83a414" + }, + { + "name": "cylinder", + "color": 8, + "origin": [5.00244, 18.6218, -0.0135], + "rotation": [0, 0, 10], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "4WRs": [-0.76504, -6.38797, 0.1485], + "hwjg": [0.37456, -5.86803, 2.52225], + "ZISf": [0.76793, -1.02414, 1.92882], + "ryg1": [1.51418, -5.86803, 0.1485], + "Jq92": [1.44836, -1.02414, 0.1485], + "rilX": [0.37456, -5.86803, -2.22525], + "iCDk": [0.76793, -1.02414, -1.63181], + "v1hz": [-1.90464, -5.86803, -2.22525], + "UN0m": [-1.44546, -0.66845, -1.63181], + "92Ln": [-3.04425, -5.86803, 0.1485], + "uZrh": [-2.12591, -0.66845, 0.1485], + "bftR": [-1.90464, -5.86803, 2.52225], + "ORyy": [-1.44546, -0.66845, 1.92882], + "9zIy": [-0.76504, -0.1485, 0.1485], + "zVQ5": [-0.08463, -0.1485, 0.1485], + "Lrul": [-0.42481, -0.1485, 1.03868], + "Sltx": [-1.10526, -0.1485, 1.03868], + "l955": [-1.4455, -0.1485, 0.1485], + "ovht": [-1.10526, -0.1485, -0.74168], + "12zS": [-0.42481, -0.1485, -0.74168], + "jS6F": [-0.31143, -6.38797, 1.33534], + "IKHl": [0.14223, -6.38797, 0.1485], + "srzj": [-0.3114, -6.38797, -1.03841], + "TZsM": [-1.21868, -6.38797, -1.03841], + "n74E": [-1.6723, -6.38797, 0.1485], + "AgKl": [-1.21868, -6.38797, 1.33541] + }, + "faces": { + "sGCABgEN": { + "uv": { + "hwjg": [2.5815, 31.4211], + "IKHl": [1, 29.9836], + "ryg1": [1.4433, 31.4211], + "jS6F": [3.3516, 30.1401] + }, + "vertices": ["jS6F", "ryg1", "IKHl", "hwjg"], + "texture": 1 + }, + "sWWfgk4K": { + "uv": { + "ZISf": [0.00761, 30.34339], + "Jq92": [0, 27.9836], + "ryg1": [7.99834, 27.9836], + "hwjg": [8.00293, 29.68519] + }, + "vertices": ["hwjg", "ryg1", "Jq92", "ZISf"], + "texture": 1 + }, + "QNUAKYIT": { + "uv": { + "Jq92": [1.4953, 26.9836], + "Lrul": [2.7075, 28.9202], + "ZISf": [2.349, 26.9836], + "zVQ5": [1, 28.9202] + }, + "vertices": ["zVQ5", "ZISf", "Lrul", "Jq92"], + "texture": 1 + }, + "BRnWTTQ7": { + "uv": { + "ryg1": [1.9085, 29.4153], + "srzj": [0, 28.1291], + "rilX": [0.7701, 29.4153], + "IKHl": [2.3517, 27.9836] + }, + "vertices": ["IKHl", "rilX", "srzj", "ryg1"], + "texture": 1 + }, + "USWUQ28I": { + "uv": { + "Jq92": [2.3597, 33.9822], + "iCDk": [0, 33.9822], + "rilX": [0.6324, 25.9836], + "ryg1": [2.334, 25.9851] + }, + "vertices": ["ryg1", "rilX", "iCDk", "Jq92"], + "texture": 1 + }, + "telwhUl5": { + "uv": { + "iCDk": [1.3585, 29.9836], + "zVQ5": [2.7075, 31.9202], + "Jq92": [2.2123, 29.9836], + "12zS": [1, 31.9202] + }, + "vertices": ["12zS", "Jq92", "zVQ5", "iCDk"], + "texture": 1 + }, + "Y0oRikhE": { + "uv": { + "rilX": [1.4346, 33.3496], + "TZsM": [0, 31.9836], + "v1hz": [0.6177, 33.3496], + "srzj": [2.0522, 31.9836] + }, + "vertices": ["srzj", "v1hz", "TZsM", "rilX"], + "texture": 1 + }, + "M1vklvUl": { + "uv": { + "iCDk": [0.09854, 31.03343], + "UN0m": [0, 28.9836], + "v1hz": [8.61183, 28.9836], + "rilX": [8.122, 31.00235] + }, + "vertices": ["rilX", "v1hz", "UN0m", "iCDk"], + "texture": 1 + }, + "ZVE21JMg": { + "uv": { + "UN0m": [1.3063, 25.9836], + "12zS": [2.9929, 27.6345], + "iCDk": [1.919, 25.9836], + "ovht": [1, 27.1202] + }, + "vertices": ["ovht", "iCDk", "12zS", "UN0m"], + "texture": 1 + }, + "L0SUV83I": { + "uv": { + "v1hz": [1.5816, 28.4212], + "n74E": [0, 26.9836], + "92Ln": [0.4433, 28.4212], + "TZsM": [2.3517, 27.1402] + }, + "vertices": ["TZsM", "92Ln", "n74E", "v1hz"], + "texture": 1 + }, + "R3T6mLRW": { + "uv": { + "UN0m": [2.3598, 33.6013], + "uZrh": [0, 33.6013], + "92Ln": [0.3596, 24.9836], + "v1hz": [2.0612, 24.9958] + }, + "vertices": ["v1hz", "92Ln", "uZrh", "UN0m"], + "texture": 1 + }, + "ttIS0sst": { + "uv": { + "uZrh": [0.2199, 29.9836], + "ovht": [1.7075, 31.0152], + "UN0m": [1.0736, 29.9836], + "l955": [0, 31.0152] + }, + "vertices": ["l955", "UN0m", "ovht", "uZrh"], + "texture": 1 + }, + "dQPt3CZa": { + "uv": { + "92Ln": [1.9084, 31.4152], + "AgKl": [0, 30.129], + "bftR": [0.7701, 31.4152], + "n74E": [2.3516, 29.9836] + }, + "vertices": ["n74E", "bftR", "AgKl", "92Ln"], + "texture": 1 + }, + "FiVhgNvE": { + "uv": { + "uZrh": [2.3597, 33.6001], + "ORyy": [0, 33.6001], + "bftR": [0.2986, 24.9935], + "92Ln": [2.0002, 24.9836] + }, + "vertices": ["92Ln", "bftR", "ORyy", "uZrh"], + "texture": 1 + }, + "f27qtq3m": { + "uv": { + "ORyy": [0.6339, 26.9836], + "l955": [1.7075, 28.0152], + "uZrh": [1.4876, 26.9836], + "Sltx": [0, 28.0152] + }, + "vertices": ["Sltx", "uZrh", "l955", "ORyy"], + "texture": 1 + }, + "Ahdauex4": { + "uv": { + "bftR": [1.4345, 27.3497], + "jS6F": [0, 25.9836], + "hwjg": [0.6176, 27.3497], + "AgKl": [2.0522, 25.9837] + }, + "vertices": ["AgKl", "hwjg", "jS6F", "bftR"], + "texture": 1 + }, + "FwaC0inC": { + "uv": { + "ORyy": [2.0503, 33.59517], + "ZISf": [0, 33.50459], + "hwjg": [0, 25.48108], + "bftR": [2.01682, 24.9836] + }, + "vertices": ["bftR", "hwjg", "ZISf", "ORyy"], + "texture": 1 + }, + "9ZkZ6NpN": { + "uv": { + "ZISf": [1.0739, 31.9836], + "Sltx": [1.9929, 33.155], + "ORyy": [1.6866, 31.9836], + "Lrul": [0, 33.5854] + }, + "vertices": ["Lrul", "ORyy", "Sltx", "ZISf"], + "texture": 1 + }, + "bLGLsiVU": { + "uv": { + "Lrul": [0.3063, 26.7805], + "9zIy": [0, 25.9836], + "zVQ5": [0.6127, 25.9836] + }, + "vertices": ["zVQ5", "9zIy", "Lrul"], + "texture": 1 + }, + "FdG3nVPa": { + "uv": { + "Sltx": [1.6127, 27.7805], + "9zIy": [1, 27.7805], + "Lrul": [1.3064, 26.9836] + }, + "vertices": ["Lrul", "9zIy", "Sltx"], + "texture": 1 + }, + "ud1TCfhY": { + "uv": { + "l955": [2.6127, 25.9836], + "9zIy": [2.3063, 26.7805], + "Sltx": [2, 25.9836] + }, + "vertices": ["Sltx", "9zIy", "l955"], + "texture": 1 + }, + "41w1S6rR": { + "uv": { + "ovht": [2.3063, 31.9836], + "9zIy": [2.6127, 32.7805], + "l955": [2, 32.7805] + }, + "vertices": ["l955", "9zIy", "ovht"], + "texture": 1 + }, + "wEgUowfB": { + "uv": { + "12zS": [1, 30.9836], + "9zIy": [1.6127, 30.9836], + "ovht": [1.3064, 31.7805] + }, + "vertices": ["ovht", "9zIy", "12zS"], + "texture": 1 + }, + "G3UiYJeg": { + "uv": { + "zVQ5": [0, 32.7805], + "9zIy": [0.3063, 31.9836], + "12zS": [0.6127, 32.7805] + }, + "vertices": ["12zS", "9zIy", "zVQ5"], + "texture": 1 + }, + "HSXF4kkA": { + "uv": { + "IKHl": [1, 34.0461], + "4WRs": [1.4084, 32.9836], + "jS6F": [1.8169, 34.0461] + }, + "vertices": ["jS6F", "4WRs", "IKHl"], + "texture": 1 + }, + "QqJPEzgx": { + "uv": { + "srzj": [1.4084, 27.0461], + "4WRs": [1, 25.9836], + "IKHl": [1.8169, 25.9836] + }, + "vertices": ["IKHl", "4WRs", "srzj"], + "texture": 1 + }, + "TY9u2sDg": { + "uv": { + "TZsM": [1.8169, 28.0461], + "4WRs": [1, 28.0461], + "srzj": [1.4085, 26.9836] + }, + "vertices": ["srzj", "4WRs", "TZsM"], + "texture": 1 + }, + "0orapcDd": { + "uv": { + "n74E": [2.8169, 25.9836], + "4WRs": [2.4084, 27.0461], + "TZsM": [2, 25.9836] + }, + "vertices": ["TZsM", "4WRs", "n74E"], + "texture": 1 + }, + "uoHhPK1e": { + "uv": { + "AgKl": [2.4084, 32.9836], + "4WRs": [2.8169, 34.0461], + "n74E": [2, 34.0461] + }, + "vertices": ["n74E", "4WRs", "AgKl"], + "texture": 1 + }, + "R8i2SJV3": { + "uv": { + "jS6F": [1, 30.9836], + "4WRs": [1.8169, 30.9836], + "AgKl": [1.4085, 32.0461] + }, + "vertices": ["AgKl", "4WRs", "jS6F"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "3772a39b-fac7-715e-f228-1ac66979af34" + }, + { + "name": "cylinder", + "color": 8, + "origin": [5.04, 12.87, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "uXX4": [0.04405, -1.08, 0.135], + "xQ7R": [-0.62925, -0.21375, 1.2], + "KviP": [-0.9208, 4.08375, 1.7325], + "ZAwo": [-0.71946, -0.21375, 0.135], + "jvUa": [-1.88565, 4.08375, 0.135], + "ZlND": [-0.62925, -0.21375, -0.93], + "0viC": [-0.9208, 4.08375, -1.4625], + "0sOe": [0.71735, -0.21375, -0.93], + "bbcG": [0.4258, 4.08375, -1.4625], + "EHEa": [1.39065, -0.21375, 0.135], + "Hf1h": [1.39065, 4.08375, 0.135], + "qpo9": [0.71735, -0.21375, 1.2], + "AFOM": [0.4258, 4.08375, 1.7325], + "oTYm": [0.04405, 4.95, 0.135] + }, + "faces": { + "lobLHojZ": { + "uv": { + "uXX4": [0, 6.9836], + "ZAwo": [1.1547, 6.9836], + "xQ7R": [0.5774, 5.9836] + }, + "vertices": ["xQ7R", "ZAwo", "uXX4"], + "texture": 1 + }, + "2wrsF9PS": { + "uv": { + "KviP": [0, 3.9836], + "jvUa": [1.1548, 3.9836], + "xQ7R": [0, 9.9836], + "ZAwo": [1.1548, 9.9836] + }, + "vertices": ["ZAwo", "xQ7R", "jvUa", "KviP"], + "texture": 1 + }, + "NHGFWn7K": { + "uv": { + "uXX4": [0, 5.9836], + "ZlND": [0.5774, 6.9836], + "ZAwo": [1.1547, 5.9836] + }, + "vertices": ["ZAwo", "ZlND", "uXX4"], + "texture": 1 + }, + "8cc6hOOR": { + "uv": { + "jvUa": [0, 3.9836], + "0viC": [1.1548, 3.9836], + "ZAwo": [0, 9.9836], + "ZlND": [1.1548, 9.9836] + }, + "vertices": ["ZlND", "ZAwo", "0viC", "jvUa"], + "texture": 1 + }, + "9UtXiLWH": { + "uv": { + "uXX4": [0.5774, 5.9836], + "0sOe": [0, 6.9836], + "ZlND": [1.1548, 6.9836] + }, + "vertices": ["ZlND", "0sOe", "uXX4"], + "texture": 1 + }, + "qGP3hNLj": { + "uv": { + "0viC": [0, 3.9836], + "bbcG": [1.1548, 3.9836], + "ZlND": [0, 9.9836], + "0sOe": [1.1548, 9.9836] + }, + "vertices": ["0sOe", "ZlND", "bbcG", "0viC"], + "texture": 1 + }, + "6tckQVaJ": { + "uv": { + "uXX4": [1.1547, 5.9836], + "EHEa": [0, 5.9836], + "0sOe": [0.5773, 6.9836] + }, + "vertices": ["0sOe", "EHEa", "uXX4"], + "texture": 1 + }, + "2WWrRUBm": { + "uv": { + "bbcG": [0, 3.9836], + "Hf1h": [1.1548, 3.9836], + "0sOe": [0, 9.9836], + "EHEa": [1.1548, 9.9836] + }, + "vertices": ["EHEa", "0sOe", "Hf1h", "bbcG"], + "texture": 1 + }, + "Gd1XafzL": { + "uv": { + "uXX4": [0.5774, 6.9836], + "qpo9": [1.1548, 5.9836], + "EHEa": [0, 5.9836] + }, + "vertices": ["EHEa", "qpo9", "uXX4"], + "texture": 1 + }, + "4eJ8kTWL": { + "uv": { + "Hf1h": [0, 3.9836], + "AFOM": [1.1548, 3.9836], + "EHEa": [0, 9.9836], + "qpo9": [1.1548, 9.9836] + }, + "vertices": ["qpo9", "EHEa", "AFOM", "Hf1h"], + "texture": 1 + }, + "U1EMdNou": { + "uv": { + "uXX4": [0.5774, 6.9836], + "xQ7R": [1.1548, 5.9836], + "qpo9": [0, 5.9836] + }, + "vertices": ["qpo9", "xQ7R", "uXX4"], + "texture": 1 + }, + "JaWe1p8r": { + "uv": { + "AFOM": [0, 3.9836], + "KviP": [1.1548, 3.9836], + "qpo9": [0, 9.9836], + "xQ7R": [1.1548, 9.9836] + }, + "vertices": ["xQ7R", "qpo9", "KviP", "AFOM"], + "texture": 1 + }, + "MLElNaEL": { + "uv": { + "oTYm": [3, 3.9836], + "KviP": [3.5774, 4.9836], + "jvUa": [4.1547, 3.9836] + }, + "vertices": ["jvUa", "KviP", "oTYm"], + "texture": 1 + }, + "SrTdhUln": { + "uv": { + "oTYm": [3, 4.9836], + "jvUa": [4.1547, 4.9836], + "0viC": [3.5774, 3.9836] + }, + "vertices": ["0viC", "jvUa", "oTYm"], + "texture": 1 + }, + "1B3EpcYx": { + "uv": { + "oTYm": [3.5774, 4.9836], + "0viC": [4.1548, 3.9836], + "bbcG": [3, 3.9836] + }, + "vertices": ["bbcG", "0viC", "oTYm"], + "texture": 1 + }, + "gSUoLh4J": { + "uv": { + "oTYm": [3.5774, 4.9836], + "bbcG": [4.1548, 3.9836], + "Hf1h": [3, 3.9836] + }, + "vertices": ["Hf1h", "bbcG", "oTYm"], + "texture": 1 + }, + "EiJgXwpU": { + "uv": { + "oTYm": [3.5774, 4.9836], + "Hf1h": [4.1548, 3.9836], + "AFOM": [3, 3.9836] + }, + "vertices": ["AFOM", "Hf1h", "oTYm"], + "texture": 1 + }, + "1NM4KFOU": { + "uv": { + "oTYm": [3.5774, 4.9836], + "AFOM": [4.1548, 3.9836], + "KviP": [3, 3.9836] + }, + "vertices": ["KviP", "AFOM", "oTYm"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "1671bdb4-27ee-e3a7-78c8-f18091c01495" + }, + { + "name": "cylinder", + "color": 8, + "origin": [3.6, 26.73, -1.71], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "8bfM": [-0.495, -0.40249, 0], + "Kvjd": [-0.495, -0.40249, -0.9], + "USVQ": [-1.05866, -1.35, 0], + "HXhU": [-1.05866, -1.35, -0.9], + "UZWq": [-1.40702, -0.04057, 0], + "axTi": [-1.40702, -0.04057, -0.9], + "tgyO": [-0.495, 0.76869, 0], + "Ib2Y": [-0.495, 0.76869, -0.9], + "FTwV": [0.41702, -0.04057, 0], + "O5S9": [0.41702, -0.04057, -0.9], + "5xC8": [0.06866, -1.35, 0], + "tls7": [0.06866, -1.35, -0.9] + }, + "faces": { + "91nAa0xC": { + "uv": { + "8bfM": [0, 10.07337], + "USVQ": [1.50002, 8.9836], + "UZWq": [1.50002, 11.1632] + }, + "vertices": ["UZWq", "USVQ", "8bfM"], + "texture": 1 + }, + "9ZKH0lG6": { + "uv": { + "HXhU": [0, 8.9836], + "axTi": [2.1796, 8.9836], + "UZWq": [2.1796, 10.9836], + "USVQ": [0, 10.9836] + }, + "vertices": ["USVQ", "UZWq", "axTi", "HXhU"], + "texture": 1 + }, + "RGmcX1UG": { + "uv": { + "Kvjd": [4.50306, 4.9836], + "axTi": [5.06639, 6.75008], + "HXhU": [2.16591, 6.75008] + }, + "vertices": ["HXhU", "axTi", "Kvjd"], + "texture": 1 + }, + "hURkvpYa": { + "uv": { + "8bfM": [0, 6.747], + "UZWq": [0.8729, 3.9836], + "tgyO": [1.8541, 6.747] + }, + "vertices": ["tgyO", "UZWq", "8bfM"], + "texture": 1 + }, + "WyrjtDC7": { + "uv": { + "axTi": [0, 8.9836], + "Ib2Y": [2.1796, 8.9836], + "tgyO": [2.1796, 10.9836], + "UZWq": [0, 10.9836] + }, + "vertices": ["UZWq", "tgyO", "Ib2Y", "axTi"], + "texture": 1 + }, + "acbFBVuv": { + "uv": { + "Kvjd": [4.50306, 4.9836], + "Ib2Y": [5.06639, 6.75008], + "axTi": [2.16591, 6.75008] + }, + "vertices": ["axTi", "Ib2Y", "Kvjd"], + "texture": 1 + }, + "lyFWiRhd": { + "uv": { + "8bfM": [0, 6.747], + "tgyO": [0.8729, 3.9836], + "FTwV": [1.8541, 6.747] + }, + "vertices": ["FTwV", "tgyO", "8bfM"], + "texture": 1 + }, + "wjezwsCE": { + "uv": { + "Ib2Y": [0, 8.9836], + "O5S9": [2.1796, 8.9836], + "FTwV": [2.1796, 10.9836], + "tgyO": [0, 10.9836] + }, + "vertices": ["tgyO", "FTwV", "O5S9", "Ib2Y"], + "texture": 1 + }, + "j57EBA6J": { + "uv": { + "Kvjd": [4.50306, 4.9836], + "O5S9": [5.06639, 6.75008], + "Ib2Y": [2.16591, 6.75008] + }, + "vertices": ["Ib2Y", "O5S9", "Kvjd"], + "texture": 1 + }, + "vcbsA7yR": { + "uv": { + "8bfM": [1.85413, 10.74693], + "FTwV": [0, 10.74693], + "5xC8": [1.28114, 8.9836] + }, + "vertices": ["5xC8", "FTwV", "8bfM"], + "texture": 1 + }, + "lYJAyjcC": { + "uv": { + "O5S9": [0, 8.9836], + "tls7": [2.1796, 8.9836], + "5xC8": [2.1796, 10.9836], + "FTwV": [0, 10.9836] + }, + "vertices": ["FTwV", "5xC8", "tls7", "O5S9"], + "texture": 1 + }, + "dswA4ncI": { + "uv": { + "Kvjd": [4.50306, 4.9836], + "tls7": [5.06639, 6.75008], + "O5S9": [2.16591, 6.75008] + }, + "vertices": ["O5S9", "tls7", "Kvjd"], + "texture": 1 + }, + "x4e93Rac": { + "uv": { + "8bfM": [1.0898, 10.4836], + "5xC8": [0, 8.9836], + "USVQ": [2.1796, 8.9836] + }, + "vertices": ["USVQ", "5xC8", "8bfM"], + "texture": 1 + }, + "TtnpSvW1": { + "uv": { + "tls7": [0, 8.9836], + "HXhU": [2.1796, 8.9836], + "USVQ": [2.1796, 10.9836], + "5xC8": [0, 10.9836] + }, + "vertices": ["5xC8", "USVQ", "HXhU", "tls7"], + "texture": 1 + }, + "royATjFd": { + "uv": { + "Kvjd": [4.50306, 4.9836], + "HXhU": [5.06639, 6.75008], + "tls7": [2.16591, 6.75008] + }, + "vertices": ["tls7", "HXhU", "Kvjd"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "d10a4c76-5e2b-18bf-de9f-e3dc84e195ec" + }, + { + "name": "cylinder", + "color": 8, + "origin": [0, 22.5, 0], + "rotation": [10, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "TYCj": [0, 1.8, 0], + "uqWQ": [0.65389, -1.8, 0.9], + "VUnI": [0.65389, 1.8, 0.9], + "3pM6": [1.05801, -1.8, -0.34377], + "k4Z0": [1.05801, 1.8, -0.34377], + "liE0": [0, -1.8, -1.11246], + "4MRC": [0, 1.8, -1.11246], + "BpW6": [-1.05801, -1.8, -0.34377], + "0kUY": [-1.05801, 1.8, -0.34377], + "rDCl": [-0.65389, -1.8, 0.9], + "uFpQ": [-0.65389, 1.8, 0.9], + "0klA": [0, -1.8, 0] + }, + "faces": { + "neQxZgj7": { + "uv": { + "0klA": [0, 4.71012], + "uqWQ": [0.99999, 3.9836], + "3pM6": [0.99999, 5.43674] + }, + "vertices": ["3pM6", "uqWQ", "0klA"], + "texture": 1 + }, + "Pmm72AqV": { + "uv": { + "VUnI": [0, 3.9836], + "k4Z0": [1.453, 3.9836], + "3pM6": [1.453, 5.9836], + "uqWQ": [0, 5.9836] + }, + "vertices": ["uqWQ", "3pM6", "k4Z0", "VUnI"], + "texture": 1 + }, + "zF43FN77": { + "uv": { + "TYCj": [0, 3.9836], + "k4Z0": [1.23611, 3.9836], + "VUnI": [0.3819, 5.15916] + }, + "vertices": ["VUnI", "k4Z0", "TYCj"], + "texture": 1 + }, + "3Z2mxhsi": { + "uv": { + "0klA": [0, 3.9836], + "3pM6": [1.1756, 4.3656], + "liE0": [0, 5.2197] + }, + "vertices": ["liE0", "3pM6", "0klA"], + "texture": 1 + }, + "Ge7vXuNy": { + "uv": { + "k4Z0": [0, 3.9836], + "4MRC": [1.453, 3.9836], + "liE0": [1.453, 5.9836], + "3pM6": [0, 5.9836] + }, + "vertices": ["3pM6", "liE0", "4MRC", "k4Z0"], + "texture": 1 + }, + "6csrFhyY": { + "uv": { + "TYCj": [0, 5.2197], + "4MRC": [0, 3.9836], + "k4Z0": [1.1756, 4.8377] + }, + "vertices": ["k4Z0", "4MRC", "TYCj"], + "texture": 1 + }, + "PzDbGLZI": { + "uv": { + "0klA": [1.1756, 3.9836], + "liE0": [1.1756, 5.2197], + "BpW6": [0, 4.3656] + }, + "vertices": ["BpW6", "liE0", "0klA"], + "texture": 1 + }, + "Jnti7pZB": { + "uv": { + "4MRC": [0, 3.9836], + "0kUY": [1.453, 3.9836], + "BpW6": [1.453, 5.9836], + "liE0": [0, 5.9836] + }, + "vertices": ["liE0", "BpW6", "0kUY", "4MRC"], + "texture": 1 + }, + "ggZw5JIi": { + "uv": { + "TYCj": [1.1756, 5.2197], + "0kUY": [0, 4.8377], + "4MRC": [1.1756, 3.9836] + }, + "vertices": ["4MRC", "0kUY", "TYCj"], + "texture": 1 + }, + "3aqe5f3y": { + "uv": { + "0klA": [1.23611, 5.15916], + "BpW6": [0, 5.15916], + "rDCl": [0.8542, 3.9836] + }, + "vertices": ["rDCl", "BpW6", "0klA"], + "texture": 1 + }, + "z1Wsx2z6": { + "uv": { + "0kUY": [0, 3.9836], + "uFpQ": [1.453, 3.9836], + "rDCl": [1.453, 5.9836], + "BpW6": [0, 5.9836] + }, + "vertices": ["BpW6", "rDCl", "uFpQ", "0kUY"], + "texture": 1 + }, + "WnJUw8Za": { + "uv": { + "TYCj": [1.99999, 4.71022], + "uFpQ": [1, 5.43674], + "0kUY": [1, 3.9836] + }, + "vertices": ["0kUY", "uFpQ", "TYCj"], + "texture": 1 + }, + "bGf5q9nr": { + "uv": { + "0klA": [0.7265, 4.9836], + "rDCl": [0, 3.9836], + "uqWQ": [1.453, 3.9836] + }, + "vertices": ["uqWQ", "rDCl", "0klA"], + "texture": 1 + }, + "cfYYgyy7": { + "uv": { + "uFpQ": [0, 3.9836], + "VUnI": [1.453, 3.9836], + "uqWQ": [1.453, 5.9836], + "rDCl": [0, 5.9836] + }, + "vertices": ["rDCl", "uqWQ", "VUnI", "uFpQ"], + "texture": 1 + }, + "grmykaTZ": { + "uv": { + "TYCj": [0.7265, 3.9836], + "VUnI": [1.453, 4.9836], + "uFpQ": [0, 4.9836] + }, + "vertices": ["uFpQ", "VUnI", "TYCj"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "4aaa3c6a-3bda-cbba-c5b6-8ea6c46c0453" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-17, 0, 9], + "to": [17, 34, 9], + "autouv": 0, + "color": 5, + "visibility": false, + "origin": [0, 17, 8], + "faces": { + "north": { + "uv": [0, 0, 134, 134], + "texture": 8 + }, + "east": { + "uv": [0, 0, 0, 134], + "texture": 8 + }, + "south": { + "uv": [134, 0, 0, 134], + "texture": 8 + }, + "west": { + "uv": [0, 0, 0, 134], + "texture": 8 + }, + "up": { + "uv": [0, 0, 134, 0], + "texture": 8 + }, + "down": { + "uv": [0, 0, 134, 0], + "texture": 8 + } + }, + "type": "cube", + "uuid": "dfc0856f-b7a6-f459-fca5-ee1e02e12260" + }, + { + "name": "cuboid", + "color": 0, + "origin": [-0.9, 19.35, 0], + "rotation": [0, 0, 45], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "Rbk7": [0.57728, 0.57728, 0.45], + "tFIJ": [0.57728, 0.57728, -0.45], + "34Pf": [0.13181, -0.76819, 0.45], + "dtZF": [0.13181, -0.76819, -0.45], + "mHED": [-0.76819, 0.13181, 0.45], + "a5UE": [-0.76819, 0.13181, -0.45], + "8cmE": [-0.57728, -0.57728, -0.27], + "OWmi": [1.28636, 0.51364, 0.45], + "oT2h": [1.35, -0.45, 0.45], + "Z8Sy": [1.28636, 0.51364, -0.45], + "MO6d": [1.35, -0.45, -0.45], + "NrEa": [0.57728, 1.22272, 0.45], + "46vx": [0.57728, 1.22272, -0.45], + "2YNc": [-0.45, 1.35, 0.45], + "bQ73": [-0.45, 1.35, -0.45], + "fLAO": [1.53, 0, 0], + "wp48": [0, 1.53, 0], + "Psl0": [-0.57728, -0.57728, 0.27] + }, + "faces": { + "Muzl4Es1": { + "uv": { + "fLAO": [6.5, 15.5], + "oT2h": [5, 17], + "OWmi": [5, 14] + }, + "vertices": ["OWmi", "oT2h", "fLAO"], + "texture": 1 + }, + "ATnexadO": { + "uv": { + "fLAO": [6.5, 15.5], + "MO6d": [8, 17], + "oT2h": [5, 17] + }, + "vertices": ["oT2h", "MO6d", "fLAO"], + "texture": 1 + }, + "qqi3rDKy": { + "uv": { + "wp48": [6.5, 15.5], + "bQ73": [5, 14], + "46vx": [8, 14] + }, + "vertices": ["46vx", "bQ73", "wp48"], + "texture": 1 + }, + "wZ0Q1VN7": { + "uv": { + "wp48": [6.5, 15.5], + "2YNc": [5, 17], + "bQ73": [5, 14] + }, + "vertices": ["bQ73", "2YNc", "wp48"], + "texture": 1 + }, + "rd2QG6CY": { + "uv": { + "fLAO": [6.5, 15.5], + "OWmi": [5, 14], + "Z8Sy": [8, 14] + }, + "vertices": ["Z8Sy", "OWmi", "fLAO"], + "texture": 1 + }, + "fdILn2f5": { + "uv": { + "fLAO": [6.5, 15.5], + "Z8Sy": [8, 14], + "MO6d": [8, 17] + }, + "vertices": ["MO6d", "Z8Sy", "fLAO"], + "texture": 1 + }, + "mgHfvV0U": { + "uv": { + "wp48": [6.5, 15.5], + "NrEa": [8, 17], + "2YNc": [5, 17] + }, + "vertices": ["2YNc", "NrEa", "wp48"], + "texture": 1 + }, + "8pt2D7xH": { + "uv": { + "wp48": [6.5, 15.5], + "46vx": [8, 14], + "NrEa": [8, 17] + }, + "vertices": ["NrEa", "46vx", "wp48"], + "texture": 1 + }, + "aeybYSkj": { + "uv": { + "8cmE": [5, 17], + "Psl0": [8, 17], + "a5UE": [5, 14], + "mHED": [8, 14] + }, + "vertices": ["mHED", "a5UE", "Psl0", "8cmE"], + "texture": 1 + }, + "EeSdz22H": { + "uv": { + "8cmE": [5, 17], + "dtZF": [8, 17], + "Psl0": [5, 14], + "34Pf": [8, 14] + }, + "vertices": ["34Pf", "Psl0", "dtZF", "8cmE"], + "texture": 1 + }, + "mTHqyU0p": { + "uv": { + "8cmE": [8, 17], + "a5UE": [8, 14], + "dtZF": [5, 17], + "tFIJ": [5, 14] + }, + "vertices": ["tFIJ", "dtZF", "a5UE", "8cmE"], + "texture": 1 + }, + "ccAZfM5B": { + "uv": { + "Rbk7": [6, 15], + "tFIJ": [6, 14], + "Z8Sy": [7, 14], + "OWmi": [7, 15] + }, + "vertices": ["OWmi", "Z8Sy", "tFIJ", "Rbk7"], + "texture": 1 + }, + "vYEWe2DW": { + "uv": { + "34Pf": [5, 16], + "Rbk7": [5, 15], + "OWmi": [6, 15], + "oT2h": [6, 16] + }, + "vertices": ["oT2h", "OWmi", "Rbk7", "34Pf"], + "texture": 1 + }, + "uAEfVAfZ": { + "uv": { + "dtZF": [6, 17], + "34Pf": [6, 16], + "oT2h": [7, 16], + "MO6d": [7, 17] + }, + "vertices": ["MO6d", "oT2h", "34Pf", "dtZF"], + "texture": 1 + }, + "VFraoDad": { + "uv": { + "tFIJ": [8, 15], + "dtZF": [8, 16], + "MO6d": [7, 16], + "Z8Sy": [7, 15] + }, + "vertices": ["Z8Sy", "MO6d", "dtZF", "tFIJ"], + "texture": 1 + }, + "ngEIUToe": { + "uv": { + "Rbk7": [7, 17], + "mHED": [6, 17], + "2YNc": [6, 16], + "NrEa": [7, 16] + }, + "vertices": ["NrEa", "2YNc", "mHED", "Rbk7"], + "texture": 1 + }, + "VanXuBGE": { + "uv": { + "tFIJ": [8, 16], + "Rbk7": [7, 16], + "NrEa": [7, 15], + "46vx": [8, 15] + }, + "vertices": ["46vx", "NrEa", "Rbk7", "tFIJ"], + "texture": 1 + }, + "3VnqxInH": { + "uv": { + "a5UE": [7, 15], + "tFIJ": [6, 15], + "46vx": [6, 14], + "bQ73": [7, 14] + }, + "vertices": ["bQ73", "46vx", "tFIJ", "a5UE"], + "texture": 1 + }, + "GDoLZyGx": { + "uv": { + "mHED": [6, 16], + "a5UE": [5, 16], + "bQ73": [5, 15], + "2YNc": [6, 15] + }, + "vertices": ["2YNc", "bQ73", "a5UE", "mHED"], + "texture": 1 + }, + "4Hxb797g": { + "uv": { + "Psl0": [5, 17], + "34Pf": [8, 17], + "mHED": [5, 14], + "Rbk7": [8, 14] + }, + "vertices": ["Rbk7", "mHED", "34Pf", "Psl0"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "ca491d2b-d46d-f1b3-8cf1-309423ed2497" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [1.8, 11.8, -7], + "to": [4.2, 14.2, -4], + "autouv": 0, + "color": 3, + "visibility": false, + "origin": [-5, 5, -9], + "faces": { + "north": { + "uv": [1, 20, 3, 22], + "texture": 0 + }, + "east": { + "uv": [0, 0, 0, 0], + "texture": 0 + }, + "south": { + "uv": [0, 0, 0, 0], + "texture": 0 + }, + "west": { + "uv": [0, 0, 0, 0], + "texture": 0 + }, + "up": { + "uv": [0, 0, 0, 0], + "texture": 0 + }, + "down": { + "uv": [0, 0, 0, 0], + "texture": 0 + } + }, + "type": "cube", + "uuid": "28edf6c3-9e51-9aa6-e986-06718e224cf4" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [1.8, 11, -8], + "to": [4.2, 11.8, -5], + "autouv": 0, + "color": 0, + "visibility": false, + "origin": [-5, 5, -9], + "faces": { + "north": { + "uv": [1, 22, 3, 22.8], + "texture": 0 + }, + "east": { + "uv": [0, 0, 0, 0], + "texture": 0 + }, + "south": { + "uv": [0, 0, 0, 0], + "texture": 0 + }, + "west": { + "uv": [0, 0, 0, 0], + "texture": 0 + }, + "up": { + "uv": [21, 19, 23, 22], + "texture": 0 + }, + "down": { + "uv": [13, 19, 15, 22], + "texture": 0 + } + }, + "type": "cube", + "uuid": "6f8d85c8-d224-3d60-439e-e6026a8bb67a" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [1.8, 14.2, -8], + "to": [4.2, 15, -5], + "autouv": 0, + "color": 1, + "visibility": false, + "origin": [-5, 5, -9], + "faces": { + "north": { + "uv": [1, 19.2, 3, 20], + "texture": 0 + }, + "east": { + "uv": [0, 0, 0, 0], + "texture": 0 + }, + "south": { + "uv": [0, 0, 0, 0], + "texture": 0 + }, + "west": { + "uv": [0, 0, 0, 0], + "texture": 0 + }, + "up": { + "uv": [5, 19, 7, 22], + "texture": 0 + }, + "down": { + "uv": [21, 19, 23, 22], + "rotation": 180, + "texture": 0 + } + }, + "type": "cube", + "uuid": "bb3d788f-0b96-faf1-c93e-ec31a94c8ac5" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [1, 11, -8], + "to": [1.8, 15, -5], + "autouv": 0, + "color": 1, + "visibility": false, + "origin": [-5, 5, -9], + "faces": { + "north": { + "uv": [3, 19, 3.8, 23], + "texture": 0 + }, + "east": { + "uv": [20, 19, 24, 22], + "rotation": 90, + "texture": 0 + }, + "south": { + "uv": [0, 0, 0, 0], + "texture": 0 + }, + "west": { + "uv": [16, 19, 20, 22], + "rotation": 90, + "texture": 0 + }, + "up": { + "uv": [7, 19, 7.8, 22], + "rotation": 180, + "texture": 0 + }, + "down": { + "uv": [15.1, 19, 15.9, 22], + "texture": 0 + } + }, + "type": "cube", + "uuid": "fcf1645a-dea9-04d1-2e0d-fe655d4bafcc" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [4.2, 11, -8], + "to": [5, 15, -5], + "autouv": 0, + "color": 5, + "visibility": false, + "origin": [-5, 5, -9], + "faces": { + "north": { + "uv": [0.2, 19, 1, 23], + "texture": 0 + }, + "east": { + "uv": [8, 19, 12, 22], + "rotation": 90, + "texture": 0 + }, + "south": { + "uv": [0, 0, 0, 0], + "texture": 0 + }, + "west": { + "uv": [20, 19, 24, 22], + "rotation": 270, + "texture": 0 + }, + "up": { + "uv": [4.2, 19, 5, 22], + "rotation": 180, + "texture": 0 + }, + "down": { + "uv": [12.2, 19, 13, 22], + "texture": 0 + } + }, + "type": "cube", + "uuid": "8999e835-8300-56d0-e735-274e3f8c42a3" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [0.5, 16, -4.5], + "to": [5.5, 17, 0.5], + "autouv": 0, + "color": 3, + "visibility": false, + "origin": [-5, 5, -9], + "faces": { + "north": { + "uv": [10, 9, 15, 10], + "texture": 0 + }, + "east": { + "uv": [10, 10, 15, 11], + "texture": 0 + }, + "south": { + "uv": [10, 11, 15, 12], + "texture": 0 + }, + "west": { + "uv": [10, 12, 15, 13], + "texture": 0 + }, + "up": { + "uv": [0, 9, 5, 14], + "texture": 0 + }, + "down": { + "uv": [0, 0, 0, 0], + "texture": 0 + } + }, + "type": "cube", + "uuid": "9b51edf7-90e0-226b-2ced-771b9667b3c6" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [5.6, 12, 1.6], + "to": [6.6, 14, 3.6], + "autouv": 0, + "color": 6, + "visibility": false, + "origin": [-5, 5, -9], + "faces": { + "north": { + "uv": [30, 7, 32, 8], + "rotation": 90, + "texture": 0 + }, + "east": { + "uv": [30, 10, 32, 12], + "texture": 0 + }, + "south": { + "uv": [30, 9, 32, 10], + "rotation": 90, + "texture": 0 + }, + "west": { + "uv": [0, 0, 0, 0], + "texture": 0 + }, + "up": { + "uv": [30, 6, 32, 7], + "rotation": 90, + "texture": 0 + }, + "down": { + "uv": [30, 8, 32, 9], + "rotation": 90, + "texture": 0 + } + }, + "type": "cube", + "uuid": "a1daae99-e186-4045-047f-33a8f6ec8b68" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [6, 12, -4], + "to": [7, 15, -1], + "autouv": 0, + "color": 3, + "visibility": false, + "origin": [-5, 5, -9], + "faces": { + "north": { + "uv": [29, 13, 32, 14], + "rotation": 90, + "texture": 0 + }, + "east": { + "uv": [29, 16, 32, 19], + "texture": 0 + }, + "south": { + "uv": [29, 15, 32, 16], + "rotation": 90, + "texture": 0 + }, + "west": { + "uv": [0, 0, 0, 0], + "texture": 0 + }, + "up": { + "uv": [29, 12, 32, 13], + "rotation": 90, + "texture": 0 + }, + "down": { + "uv": [29, 14, 32, 15], + "rotation": 90, + "texture": 0 + } + }, + "type": "cube", + "uuid": "5640faf0-69c0-0cca-307d-37e784b29730" + }, + { + "name": "cube", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [0, 10, -5], + "to": [6, 16, 4], + "autouv": 0, + "color": 2, + "visibility": false, + "origin": [-5, 5, -9], + "faces": { + "north": { + "uv": [24, 0, 30, 6], + "texture": 0 + }, + "east": { + "uv": [6, 0, 12, 9], + "rotation": 90, + "texture": 0 + }, + "south": { + "uv": [24, 6, 30, 12], + "texture": 0 + }, + "west": { + "uv": [18, 0, 24, 9], + "rotation": 90, + "texture": 0 + }, + "up": { + "uv": [0, 0, 6, 9], + "texture": 0 + }, + "down": { + "uv": [12, 0, 18, 9], + "texture": 0 + } + }, + "type": "cube", + "uuid": "a85c0339-e7a5-65d2-88a1-21b5f2347100" + }, + { + "name": "cylinder", + "color": 8, + "origin": [-2.23633, 5.07857, -0.15628], + "rotation": [1.72795, -0.14886, 0.15341], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "fXDl": [-0.0021, -4.17816, 0.47714], + "769S": [0, 4.82143, 0.45], + "Ngnq": [-1.16404, -3.27857, 2.61], + "86iU": [-0.99219, 3.08572, 3.15], + "Orqk": [-2.32807, -3.27857, 0.45], + "2WPs": [-1.98437, 3.08572, 0.45], + "sf20": [-1.16404, -3.27857, -1.71], + "JpAB": [-0.99219, 3.08572, -2.25], + "uSt3": [1.16404, -3.27857, -1.71], + "LEG0": [0.99219, 3.08572, -2.25], + "H1ru": [2.32808, -3.27857, 0.45], + "GPdT": [2.16437, 3.08572, 0.45], + "HLm2": [1.16404, -3.27857, 2.61], + "Ba1X": [0.99219, 3.08572, 3.15] + }, + "faces": { + "kIuOJ6a5": { + "uv": { + "fXDl": [1.3815, 54.3836], + "Orqk": [5.3696, 54.3836], + "Ngnq": [3.37555, 51.9836] + }, + "vertices": ["Ngnq", "Orqk", "fXDl"], + "texture": 1 + }, + "jwCmvIw0": { + "uv": { + "86iU": [1.3815, 47.9999], + "2WPs": [5.80906, 47.9836], + "Ngnq": [2.24355, 58.9896], + "Orqk": [6.11257, 58.9896] + }, + "vertices": ["Orqk", "Ngnq", "2WPs", "86iU"], + "texture": 1 + }, + "8CBehK8M": { + "uv": { + "769S": [3.18974, 48.9836], + "86iU": [0, 52.7496], + "2WPs": [4.47951, 52.7496] + }, + "vertices": ["2WPs", "86iU", "769S"], + "texture": 1 + }, + "6735bTQz": { + "uv": { + "fXDl": [1.3815, 50.9836], + "sf20": [3.37555, 53.3836], + "Orqk": [5.3696, 50.9836] + }, + "vertices": ["Orqk", "sf20", "fXDl"], + "texture": 1 + }, + "5RuiYjJo": { + "uv": { + "2WPs": [1.68501, 47.9893], + "JpAB": [6.11257, 47.9836], + "Orqk": [1.3815, 58.9844], + "sf20": [5.25052, 58.9844] + }, + "vertices": ["sf20", "Orqk", "JpAB", "2WPs"], + "texture": 1 + }, + "haqmnfWx": { + "uv": { + "769S": [2.67126, 51.9836], + "2WPs": [1.3815, 55.7496], + "JpAB": [5.86086, 55.7496] + }, + "vertices": ["JpAB", "2WPs", "769S"], + "texture": 1 + }, + "LzfYKXZg": { + "uv": { + "fXDl": [3.37555, 52.9836], + "uSt3": [1.3815, 55.3836], + "sf20": [5.3696, 55.3836] + }, + "vertices": ["sf20", "uSt3", "fXDl"], + "texture": 1 + }, + "cdXcnv9J": { + "uv": { + "JpAB": [1.67589, 47.9836], + "LEG0": [5.07521, 47.9836], + "sf20": [1.3815, 58.9999], + "uSt3": [5.3696, 58.9999] + }, + "vertices": ["uSt3", "sf20", "LEG0", "JpAB"], + "texture": 1 + }, + "2Zbo3wUk": { + "uv": { + "769S": [3.08115, 48.9836], + "JpAB": [1.3815, 53.2262], + "LEG0": [4.78081, 53.2262] + }, + "vertices": ["LEG0", "JpAB", "769S"], + "texture": 1 + }, + "7Lb8dPtY": { + "uv": { + "fXDl": [5.36947, 50.9836], + "H1ru": [1.3815, 50.9836], + "uSt3": [3.37541, 53.3836] + }, + "vertices": ["uSt3", "H1ru", "fXDl"], + "texture": 1 + }, + "smP5XAom": { + "uv": { + "LEG0": [0, 47.9999], + "GPdT": [4.42756, 47.9836], + "uSt3": [0.86205, 58.9896], + "H1ru": [4.73108, 58.9896] + }, + "vertices": ["H1ru", "uSt3", "GPdT", "LEG0"], + "texture": 1 + }, + "Jq3zWgIi": { + "uv": { + "769S": [3.1896, 51.9836], + "LEG0": [0, 55.7496], + "GPdT": [4.47937, 55.7496] + }, + "vertices": ["GPdT", "LEG0", "769S"], + "texture": 1 + }, + "Lf6TqTg3": { + "uv": { + "fXDl": [5.36947, 54.3836], + "HLm2": [3.37541, 51.9836], + "H1ru": [1.3815, 54.3836] + }, + "vertices": ["H1ru", "HLm2", "fXDl"], + "texture": 1 + }, + "8RzK1EH5": { + "uv": { + "GPdT": [1.68501, 47.9893], + "Ba1X": [6.11257, 47.9836], + "H1ru": [1.3815, 58.9843], + "HLm2": [5.25052, 58.9843] + }, + "vertices": ["HLm2", "H1ru", "Ba1X", "GPdT"], + "texture": 1 + }, + "BDGVQs73": { + "uv": { + "769S": [4.05276, 48.9836], + "GPdT": [2.76299, 52.7496], + "Ba1X": [7.2425, 52.7496] + }, + "vertices": ["Ba1X", "GPdT", "769S"], + "texture": 1 + }, + "1l3NVOxJ": { + "uv": { + "fXDl": [3.37555, 53.3836], + "Ngnq": [5.3696, 50.9836], + "HLm2": [1.3815, 50.9836] + }, + "vertices": ["HLm2", "Ngnq", "fXDl"], + "texture": 1 + }, + "yIuKEBDF": { + "uv": { + "Ba1X": [1.67589, 47.9836], + "86iU": [5.07521, 47.9836], + "HLm2": [1.3815, 59], + "Ngnq": [5.3696, 59] + }, + "vertices": ["Ngnq", "HLm2", "86iU", "Ba1X"], + "texture": 1 + }, + "ZCMrJe0Y": { + "uv": { + "769S": [3.08115, 51.9836], + "Ba1X": [1.3815, 56.2262], + "86iU": [4.78081, 56.2262] + }, + "vertices": ["86iU", "Ba1X", "769S"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "8cdada64-4e60-bfe3-2585-54e6850be9c4" + }, + { + "name": "circle_selection", + "color": 3, + "origin": [-0.38889, -2.22222, 0.36667], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "w6k7": [3.82214, 0.51619, -1.73274], + "yjoM": [1.58351, 1.2146, -3.52475], + "RTr5": [2.72572, 0.51619, -1.63649], + "KdeM": [1.29834, 1.2146, -2.46171], + "VS7R": [3.41799, 3.60864, 1.42521], + "mwoy": [3.19299, 3.61471, -0.55782], + "5Xoy": [-1.30172, 1.61309, -3.55237], + "w4Mt": [-3.30334, 1.81309, -1.16694], + "XMf1": [-2.61471, 2.11166, 1.20618], + "hDEr": [-0.9019, 2.41166, 2.71384], + "5Djd": [1.40162, 3.01015, 2.83934], + "fCLM": [2.63888, 3.61056, 0.39421], + "i0yp": [-1.20612, 1.61309, -2.45591], + "ElmV": [-2.20693, 1.81309, -1.26319], + "z7dP": [-1.89882, 2.11166, 0.79249], + "XJ4A": [-0.41338, 2.41166, 1.80015], + "SBy3": [1.30516, 3.01015, 1.73676], + "rDlp": [2.42788, 3.60864, 0.92056], + "f19k": [1.91083, -0.5823, 1.75883], + "BA3g": [-0.14948, -0.86815, 1.9657], + "aEsF": [0.23198, -1.04602, 2.98268], + "UzTv": [2.00643, -0.5823, 2.8553], + "Sjst": [-0.48783, -1.0808, 1.97023], + "1vLf": [-1.50456, -1.0808, 2.39172], + "eNbD": [-0.87273, -1.17929, 0.90395], + "ckie": [-1.92251, -1.17929, 0.5733], + "ReuT": [-0.59209, -1.27778, -0.13718], + "4EYt": [-0.30691, -1.27778, -1.20022], + "2Q2X": [2.91164, -0.2823, 0.56611], + "gVk6": [4.00805, -0.2823, 0.46986], + "yGTs": [3.80483, 1.07659, -1.71785], + "4PO5": [1.56216, 1.77501, -3.51668], + "dSZr": [2.70842, 1.07659, -1.6216], + "YfCL": [1.27699, 1.77501, -2.45364], + "TNRk": [3.39992, 4.16904, 1.42092], + "SnFO": [3.19187, 4.175, -0.53936], + "SPl7": [-1.31902, 2.1735, -3.53749], + "BJbH": [-3.32064, 2.3735, -1.15205], + "7mNX": [-2.6201, 2.67206, 1.22468], + "clsf": [-0.91858, 2.97206, 2.71117], + "Lp6I": [1.38936, 3.57055, 2.85386], + "7JyW": [2.63776, 4.17084, 0.41267], + "6Z9s": [-1.22342, 2.1735, -2.44102], + "Vjml": [-2.22423, 2.3735, -1.2483], + "VYPY": [-1.90421, 2.67206, 0.81099], + "7G48": [-0.43007, 2.97206, 1.79749], + "dcku": [1.29289, 3.57055, 1.75128], + "M9qu": [2.4098, 4.16904, 0.91627], + "UsA9": [1.89353, -0.0219, 1.77372], + "Ez9u": [0.3108, -0.46444, 1.94539], + "y75e": [0.22357, -0.42377, 3.0418], + "DpGl": [1.98913, -0.0219, 2.87019], + "nFol": [-0.49986, -0.52039, 1.98963], + "wxIE": [-1.51658, -0.52039, 2.41112], + "dkpp": [-0.89441, -0.61888, 0.91109], + "A9ji": [-1.9442, -0.61888, 0.58043], + "wbSp": [-0.61344, -0.71738, -0.1291], + "vw2t": [-0.32826, -0.71738, -1.19214], + "N64v": [2.89433, 0.2781, 0.581], + "KYpN": [3.99074, 0.2781, 0.48475], + "vH8B": [-2.39395, 4.85359, 0.13333], + "h470": [-2.39395, 4.85359, -0.86667], + "J35x": [-3.10106, 4.14648, 0.13333], + "AS4N": [-3.10106, 4.14648, -0.86667], + "uZl1": [-1.21111, 3.22222, 0.13333], + "r8cd": [-1.21111, 4.22222, 0.13333], + "RBuO": [1.48889, 3.22222, 0.13333], + "l43A": [1.48889, 4.22222, 0.13333], + "KK9l": [-1.21111, 4.22222, -0.86667], + "8RZE": [1.48889, 4.22222, -0.86667], + "zQUZ": [-1.21111, 3.22222, -0.86667], + "4r1K": [1.48889, 3.22222, -0.86667], + "v4FA": [-0.71111, 4.72222, 0.13333], + "SaP1": [-0.71111, 4.72222, -0.86667], + "hwtv": [0.98889, 4.72222, 0.13333], + "zSNG": [0.98889, 4.72222, -0.86667], + "NTOm": [-0.28611, 4.72222, 0.13333], + "6Rn5": [-0.28611, 4.72222, -0.86667], + "DQAm": [0.56389, 4.72222, 0.13333], + "hzda": [0.56389, 4.72222, -0.86667], + "4xjY": [-0.31111, 3.22222, -0.86667], + "xLlC": [-0.31111, 3.22222, 0.13333], + "ysV9": [0.58889, 3.22222, -0.86667], + "OEiu": [0.58889, 3.22222, 0.13333], + "HEb7": [-0.31111, 4.22222, 0.13333], + "Twz4": [0.58889, 4.22222, 0.13333], + "qFyh": [-0.31111, 4.22222, -0.86667], + "7Lkb": [0.58889, 4.22222, -0.86667], + "baM3": [-2.74751, 4.50004, -0.36667], + "AhYD": [2.48889, 4.22222, 0.13333], + "JchO": [2.48889, 3.22222, 0.13333], + "qdRn": [2.48889, 3.22222, -0.86667], + "YfWn": [-0.31111, -0.27778, -0.86667], + "z2De": [0.58889, -0.27778, -0.86667], + "nhav": [0.58889, -0.27778, 0.13333], + "E4yt": [-0.31111, -0.27778, 0.13333], + "Omja": [-0.69935, 4.72222, 0.13333], + "97I5": [-0.69935, 4.72222, -0.86667], + "x8Ka": [0.97712, 4.72222, 0.13333], + "whqz": [0.97712, 4.72222, -0.86667], + "dUmO": [0.13889, 25.22222, -0.86667], + "omTk": [-0.18161, 4.72222, 0.13333], + "LVkI": [0.45939, 4.72222, 0.13333], + "LrXm": [-0.18161, 4.72222, -0.86667], + "yOxX": [0.45939, 4.72222, -0.86667], + "MrKc": [1.58889, 23.47222, 0.13333], + "KdFN": [1.58889, 23.47222, -0.86667], + "jgz2": [0.50212, 23.47222, -0.86667], + "YHNn": [-0.22435, 23.47222, -0.86667], + "Kmzj": [-1.31111, 23.47222, -0.86667], + "sO8h": [-1.31111, 23.47222, 0.13333], + "CTNP": [-0.22435, 23.47222, 0.13333], + "k8pS": [0.50212, 23.47222, 0.13333], + "jizT": [2.48889, 4.22222, -0.86667], + "3PVE": [-0.59979, -1.86645, -1.15534], + "idto": [-0.59979, -1.86645, 0.42201], + "8DN7": [-0.66466, -0.57778, 0.48689], + "S5Ch": [-0.66466, -0.57778, -1.22022], + "GgE6": [0.87756, -1.86645, 0.42201], + "eaDD": [0.94244, -0.57778, 0.48689], + "8xZn": [0.87756, -1.86645, -1.15534], + "ZYxD": [0.94244, -0.57778, -1.22022], + "S90S": [0.13889, 25.22222, 0.13333] + }, + "faces": { + "UcCGWRIR": { + "uv": { + "4PO5": [7, 35], + "yGTs": [7, 34], + "dSZr": [8, 34], + "YfCL": [8, 35] + }, + "vertices": ["YfCL", "dSZr", "yGTs", "4PO5"], + "texture": 10 + }, + "cXJ4ks6b": { + "uv": { + "SPl7": [7, 35], + "4PO5": [7, 34], + "YfCL": [8, 34], + "6Z9s": [8, 35] + }, + "vertices": ["6Z9s", "YfCL", "4PO5", "SPl7"], + "texture": 10 + }, + "gzPb5JkI": { + "uv": { + "BJbH": [7, 35], + "SPl7": [7, 34], + "6Z9s": [8, 34], + "Vjml": [8, 35] + }, + "vertices": ["Vjml", "6Z9s", "SPl7", "BJbH"], + "texture": 10 + }, + "h8s8JfoI": { + "uv": { + "7mNX": [7, 35], + "BJbH": [7, 34], + "Vjml": [8, 34], + "VYPY": [8, 35] + }, + "vertices": ["VYPY", "Vjml", "BJbH", "7mNX"], + "texture": 10 + }, + "bDvnXrQk": { + "uv": { + "clsf": [7, 35], + "7mNX": [7, 34], + "VYPY": [8, 34], + "7G48": [8, 35] + }, + "vertices": ["7G48", "VYPY", "7mNX", "clsf"], + "texture": 10 + }, + "iD1dk5IL": { + "uv": { + "Lp6I": [7, 35], + "clsf": [7, 34], + "7G48": [8, 34], + "dcku": [8, 35] + }, + "vertices": ["dcku", "7G48", "clsf", "Lp6I"], + "texture": 10 + }, + "JajJDXMS": { + "uv": { + "TNRk": [7, 35], + "Lp6I": [7, 34], + "dcku": [8, 34], + "M9qu": [8, 35] + }, + "vertices": ["M9qu", "dcku", "Lp6I", "TNRk"], + "texture": 10 + }, + "yfSczmGZ": { + "uv": { + "SnFO": [7, 35], + "TNRk": [7, 34], + "M9qu": [8, 34], + "7JyW": [8, 35] + }, + "vertices": ["7JyW", "M9qu", "TNRk", "SnFO"], + "texture": 10 + }, + "7Sf4ZbSE": { + "uv": { + "A9ji": [7, 35], + "vw2t": [7, 34], + "wbSp": [8, 34], + "dkpp": [8, 35] + }, + "vertices": ["dkpp", "wbSp", "vw2t", "A9ji"], + "texture": 10 + }, + "mwoYr1wP": { + "uv": { + "wxIE": [7, 35], + "A9ji": [7, 34], + "dkpp": [8, 34], + "nFol": [8, 35] + }, + "vertices": ["nFol", "dkpp", "A9ji", "wxIE"], + "texture": 10 + }, + "9MbUksVi": { + "uv": { + "y75e": [7, 35], + "wxIE": [7, 34], + "nFol": [8, 34], + "Ez9u": [8, 35] + }, + "vertices": ["Ez9u", "nFol", "wxIE", "y75e"], + "texture": 10 + }, + "TmqkEeee": { + "uv": { + "DpGl": [7, 35], + "y75e": [7, 34], + "Ez9u": [8, 34], + "UsA9": [8, 35] + }, + "vertices": ["UsA9", "Ez9u", "y75e", "DpGl"], + "texture": 10 + }, + "ScegAI1G": { + "uv": { + "KYpN": [7, 35], + "DpGl": [7, 34], + "UsA9": [8, 34], + "N64v": [8, 35] + }, + "vertices": ["N64v", "UsA9", "DpGl", "KYpN"], + "texture": 10 + }, + "dW50K3Zh": { + "uv": { + "yGTs": [7, 35], + "KYpN": [7, 34], + "N64v": [8, 34], + "dSZr": [8, 35] + }, + "vertices": ["dSZr", "N64v", "KYpN", "yGTs"], + "texture": 10 + }, + "GfHRz9Nh": { + "uv": { + "RTr5": [7, 40], + "KdeM": [6, 40], + "YfCL": [6, 38], + "dSZr": [7, 38] + }, + "vertices": ["dSZr", "YfCL", "KdeM", "RTr5"], + "texture": 10 + }, + "q4W5foTj": { + "uv": { + "yjoM": [7, 40], + "w6k7": [6, 40], + "yGTs": [6, 38], + "4PO5": [7, 38] + }, + "vertices": ["4PO5", "yGTs", "w6k7", "yjoM"], + "texture": 10 + }, + "6QESHogn": { + "uv": { + "KdeM": [7, 40], + "i0yp": [6, 40], + "6Z9s": [6, 38], + "YfCL": [7, 38] + }, + "vertices": ["YfCL", "6Z9s", "i0yp", "KdeM"], + "texture": 10 + }, + "wx0qL51a": { + "uv": { + "5Xoy": [7, 40], + "yjoM": [6, 40], + "4PO5": [6, 38], + "SPl7": [7, 38] + }, + "vertices": ["SPl7", "4PO5", "yjoM", "5Xoy"], + "texture": 10 + }, + "ryiv0V2h": { + "uv": { + "i0yp": [7, 40], + "ElmV": [6, 40], + "Vjml": [6, 38], + "6Z9s": [7, 38] + }, + "vertices": ["6Z9s", "Vjml", "ElmV", "i0yp"], + "texture": 10 + }, + "MIYBu7WJ": { + "uv": { + "w4Mt": [7, 40], + "5Xoy": [6, 40], + "SPl7": [6, 38], + "BJbH": [7, 38] + }, + "vertices": ["BJbH", "SPl7", "5Xoy", "w4Mt"], + "texture": 10 + }, + "mKICjHmc": { + "uv": { + "ElmV": [7, 40], + "z7dP": [6, 40], + "VYPY": [6, 38], + "Vjml": [7, 38] + }, + "vertices": ["Vjml", "VYPY", "z7dP", "ElmV"], + "texture": 10 + }, + "5MLN4kNk": { + "uv": { + "XMf1": [7, 40], + "w4Mt": [6, 40], + "BJbH": [6, 38], + "7mNX": [7, 38] + }, + "vertices": ["7mNX", "BJbH", "w4Mt", "XMf1"], + "texture": 10 + }, + "y6PdrcyN": { + "uv": { + "z7dP": [7, 40], + "XJ4A": [6, 40], + "7G48": [6, 38], + "VYPY": [7, 38] + }, + "vertices": ["VYPY", "7G48", "XJ4A", "z7dP"], + "texture": 10 + }, + "JXIiKHa6": { + "uv": { + "hDEr": [7, 40], + "XMf1": [6, 40], + "7mNX": [6, 38], + "clsf": [7, 38] + }, + "vertices": ["clsf", "7mNX", "XMf1", "hDEr"], + "texture": 10 + }, + "82IxAoRf": { + "uv": { + "XJ4A": [7, 40], + "SBy3": [6, 40], + "dcku": [6, 38], + "7G48": [7, 38] + }, + "vertices": ["7G48", "dcku", "SBy3", "XJ4A"], + "texture": 10 + }, + "FpAym3Ut": { + "uv": { + "5Djd": [7, 40], + "hDEr": [6, 40], + "clsf": [6, 38], + "Lp6I": [7, 38] + }, + "vertices": ["Lp6I", "clsf", "hDEr", "5Djd"], + "texture": 10 + }, + "Mega3DlU": { + "uv": { + "SBy3": [7, 40], + "rDlp": [6, 40], + "M9qu": [6, 38], + "dcku": [7, 38] + }, + "vertices": ["dcku", "M9qu", "rDlp", "SBy3"], + "texture": 10 + }, + "esXSZ0YK": { + "uv": { + "VS7R": [7, 40], + "5Djd": [6, 40], + "Lp6I": [6, 38], + "TNRk": [7, 38] + }, + "vertices": ["TNRk", "Lp6I", "5Djd", "VS7R"], + "texture": 10 + }, + "EcAYNrv3": { + "uv": { + "rDlp": [7, 40], + "fCLM": [6, 40], + "7JyW": [6, 38], + "M9qu": [7, 38] + }, + "vertices": ["M9qu", "7JyW", "fCLM", "rDlp"], + "texture": 10 + }, + "zRAd92X0": { + "uv": { + "mwoy": [7, 40], + "VS7R": [6, 40], + "TNRk": [6, 38], + "SnFO": [7, 38] + }, + "vertices": ["SnFO", "TNRk", "VS7R", "mwoy"], + "texture": 10 + }, + "k6uXJr1t": { + "uv": { + "ReuT": [7, 40], + "eNbD": [6, 40], + "dkpp": [6, 38], + "wbSp": [7, 38] + }, + "vertices": ["wbSp", "dkpp", "eNbD", "ReuT"], + "texture": 10 + }, + "BGQ5Zv56": { + "uv": { + "4EYt": [7, 35], + "ReuT": [7, 34], + "wbSp": [8, 34], + "vw2t": [8, 35] + }, + "vertices": ["vw2t", "wbSp", "ReuT", "4EYt"], + "texture": 10 + }, + "FPao9USe": { + "uv": { + "ckie": [7, 40], + "4EYt": [6, 40], + "vw2t": [6, 38], + "A9ji": [7, 38] + }, + "vertices": ["A9ji", "vw2t", "4EYt", "ckie"], + "texture": 10 + }, + "wqfVf9MP": { + "uv": { + "eNbD": [7, 40], + "Sjst": [6, 40], + "nFol": [6, 38], + "dkpp": [7, 38] + }, + "vertices": ["dkpp", "nFol", "Sjst", "eNbD"], + "texture": 10 + }, + "n4xxKioQ": { + "uv": { + "1vLf": [7, 40], + "ckie": [6, 40], + "A9ji": [6, 38], + "wxIE": [7, 38] + }, + "vertices": ["wxIE", "A9ji", "ckie", "1vLf"], + "texture": 10 + }, + "dMiegt5h": { + "uv": { + "Sjst": [7, 40], + "BA3g": [6, 40], + "Ez9u": [6, 38], + "nFol": [7, 38] + }, + "vertices": ["nFol", "Ez9u", "BA3g", "Sjst"], + "texture": 10 + }, + "6jmR5Ais": { + "uv": { + "aEsF": [7, 40], + "1vLf": [6, 40], + "wxIE": [6, 38], + "y75e": [7, 38] + }, + "vertices": ["y75e", "wxIE", "1vLf", "aEsF"], + "texture": 10 + }, + "qHZfGGqR": { + "uv": { + "BA3g": [7, 40], + "f19k": [6, 40], + "UsA9": [6, 38], + "Ez9u": [7, 38] + }, + "vertices": ["Ez9u", "UsA9", "f19k", "BA3g"], + "texture": 10 + }, + "DhKzwxh9": { + "uv": { + "UzTv": [7, 40], + "aEsF": [6, 40], + "y75e": [6, 38], + "DpGl": [7, 38] + }, + "vertices": ["DpGl", "y75e", "aEsF", "UzTv"], + "texture": 10 + }, + "HZSwmAz4": { + "uv": { + "f19k": [7, 40], + "2Q2X": [6, 40], + "N64v": [6, 38], + "UsA9": [7, 38] + }, + "vertices": ["UsA9", "N64v", "2Q2X", "f19k"], + "texture": 10 + }, + "twDV2NkQ": { + "uv": { + "gVk6": [7, 40], + "UzTv": [6, 40], + "DpGl": [6, 38], + "KYpN": [7, 38] + }, + "vertices": ["KYpN", "DpGl", "UzTv", "gVk6"], + "texture": 10 + }, + "XMj40AXI": { + "uv": { + "2Q2X": [7, 40], + "RTr5": [6, 40], + "dSZr": [6, 38], + "N64v": [7, 38] + }, + "vertices": ["N64v", "dSZr", "RTr5", "2Q2X"], + "texture": 10 + }, + "nW4CQjKx": { + "uv": { + "w6k7": [7, 40], + "gVk6": [6, 40], + "KYpN": [6, 38], + "yGTs": [7, 38] + }, + "vertices": ["yGTs", "KYpN", "gVk6", "w6k7"], + "texture": 10 + }, + "7jvzcCRK": { + "uv": { + "RTr5": [8, 36], + "KdeM": [9, 36], + "w6k7": [8, 35], + "yjoM": [9, 35] + }, + "vertices": ["yjoM", "w6k7", "KdeM", "RTr5"], + "texture": 10 + }, + "BCToe3r8": { + "uv": { + "KdeM": [8, 36], + "i0yp": [9, 36], + "yjoM": [8, 35], + "5Xoy": [9, 35] + }, + "vertices": ["5Xoy", "yjoM", "i0yp", "KdeM"], + "texture": 10 + }, + "9qC1VWcs": { + "uv": { + "i0yp": [8, 36], + "ElmV": [9, 36], + "5Xoy": [8, 35], + "w4Mt": [9, 35] + }, + "vertices": ["w4Mt", "5Xoy", "ElmV", "i0yp"], + "texture": 10 + }, + "gorbgvot": { + "uv": { + "ElmV": [8, 36], + "z7dP": [9, 36], + "w4Mt": [8, 35], + "XMf1": [9, 35] + }, + "vertices": ["XMf1", "w4Mt", "z7dP", "ElmV"], + "texture": 10 + }, + "d7dYd7bf": { + "uv": { + "z7dP": [8, 36], + "XJ4A": [9, 36], + "XMf1": [8, 35], + "hDEr": [9, 35] + }, + "vertices": ["hDEr", "XMf1", "XJ4A", "z7dP"], + "texture": 10 + }, + "NteBE9TI": { + "uv": { + "5Djd": [8, 36], + "hDEr": [9, 36], + "SBy3": [8, 35], + "XJ4A": [9, 35] + }, + "vertices": ["XJ4A", "SBy3", "hDEr", "5Djd"], + "texture": 10 + }, + "cMbXpCB8": { + "uv": { + "VS7R": [8, 36], + "5Djd": [9, 36], + "rDlp": [8, 35], + "SBy3": [9, 35] + }, + "vertices": ["SBy3", "rDlp", "5Djd", "VS7R"], + "texture": 10 + }, + "g5poZ9UO": { + "uv": { + "mwoy": [8, 36], + "VS7R": [9, 36], + "fCLM": [8, 35], + "rDlp": [9, 35] + }, + "vertices": ["rDlp", "fCLM", "VS7R", "mwoy"], + "texture": 10 + }, + "M3Zn29e2": { + "uv": { + "w6k7": [8, 36], + "gVk6": [9, 36], + "RTr5": [8, 35], + "2Q2X": [9, 35] + }, + "vertices": ["2Q2X", "RTr5", "gVk6", "w6k7"], + "texture": 10 + }, + "xJL1koME": { + "uv": { + "gVk6": [8, 36], + "UzTv": [9, 36], + "2Q2X": [8, 35], + "f19k": [9, 35] + }, + "vertices": ["f19k", "2Q2X", "UzTv", "gVk6"], + "texture": 10 + }, + "rDFzeyuz": { + "uv": { + "UzTv": [8, 36], + "aEsF": [9, 36], + "f19k": [8, 35], + "BA3g": [9, 35] + }, + "vertices": ["BA3g", "f19k", "aEsF", "UzTv"], + "texture": 10 + }, + "lyubORSA": { + "uv": { + "aEsF": [8, 36], + "1vLf": [9, 36], + "BA3g": [8, 35], + "Sjst": [9, 35] + }, + "vertices": ["Sjst", "BA3g", "1vLf", "aEsF"], + "texture": 10 + }, + "bxDmZKzA": { + "uv": { + "1vLf": [8, 36], + "ckie": [9, 36], + "Sjst": [8, 35], + "eNbD": [9, 35] + }, + "vertices": ["eNbD", "Sjst", "ckie", "1vLf"], + "texture": 10 + }, + "33QZJbTF": { + "uv": { + "ckie": [8, 36], + "4EYt": [9, 36], + "eNbD": [8, 35], + "ReuT": [9, 35] + }, + "vertices": ["ReuT", "eNbD", "4EYt", "ckie"], + "texture": 10 + }, + "DY2LwgL6": { + "uv": { + "SnFO": [6, 38], + "mwoy": [6, 40], + "jizT": [7, 38], + "qdRn": [7, 40] + }, + "vertices": ["qdRn", "jizT", "mwoy", "SnFO"], + "texture": 10 + }, + "0tgbNELr": { + "uv": { + "7JyW": [7, 35], + "SnFO": [8, 35], + "AhYD": [7, 34], + "jizT": [8, 34] + }, + "vertices": ["jizT", "AhYD", "SnFO", "7JyW"], + "texture": 10 + }, + "Cyt8KQh6": { + "uv": { + "fCLM": [7, 40], + "7JyW": [7, 38], + "JchO": [6, 40], + "AhYD": [6, 38] + }, + "vertices": ["AhYD", "JchO", "7JyW", "fCLM"], + "texture": 10 + }, + "l45GOput": { + "uv": { + "mwoy": [8, 36], + "fCLM": [9, 36], + "qdRn": [8, 35], + "JchO": [9, 35] + }, + "vertices": ["JchO", "qdRn", "fCLM", "mwoy"], + "texture": 10 + }, + "MPvqDGXn": { + "uv": { + "vH8B": [5, 38], + "r8cd": [6, 38], + "uZl1": [6, 40], + "J35x": [5, 40] + }, + "vertices": ["J35x", "uZl1", "r8cd", "vH8B"], + "texture": 10 + }, + "ZAXqaDfd": { + "uv": { + "h470": [10, 39], + "KK9l": [9, 39], + "r8cd": [9, 38], + "vH8B": [10, 38] + }, + "vertices": ["vH8B", "r8cd", "KK9l", "h470"], + "texture": 10 + }, + "3XT2Qe0F": { + "uv": { + "AS4N": [10, 40], + "zQUZ": [9, 40], + "KK9l": [9, 38], + "h470": [10, 38] + }, + "vertices": ["h470", "KK9l", "zQUZ", "AS4N"], + "texture": 10 + }, + "OSTTZ1WB": { + "uv": { + "J35x": [8, 36], + "uZl1": [8, 35], + "zQUZ": [9, 35], + "AS4N": [9, 36] + }, + "vertices": ["AS4N", "zQUZ", "uZl1", "J35x"], + "texture": 10 + }, + "6x4Fm423": { + "uv": { + "r8cd": [10, 38], + "KK9l": [9, 38], + "SaP1": [9.18519, 37], + "v4FA": [9.81481, 37] + }, + "vertices": ["v4FA", "SaP1", "KK9l", "r8cd"], + "texture": 10 + }, + "QYuUKHe6": { + "uv": { + "8RZE": [10, 38], + "l43A": [9, 38], + "hwtv": [9.18519, 37], + "zSNG": [9.81481, 37] + }, + "vertices": ["zSNG", "hwtv", "l43A", "8RZE"], + "texture": 10 + }, + "1VC3adIZ": { + "uv": { + "4r1K": [8, 36], + "OEiu": [9, 35], + "ysV9": [8, 35], + "RBuO": [9, 36] + }, + "vertices": ["RBuO", "ysV9", "OEiu", "4r1K"], + "texture": 10 + }, + "8eL2HyBf": { + "uv": { + "RBuO": [9, 40], + "Twz4": [8, 38], + "OEiu": [8, 40], + "l43A": [9, 38] + }, + "vertices": ["l43A", "OEiu", "Twz4", "RBuO"], + "texture": 10 + }, + "XkyAZS74": { + "uv": { + "l43A": [9, 38], + "DQAm": [7.81481, 37], + "Twz4": [8, 38], + "hwtv": [8.44444, 37] + }, + "vertices": ["hwtv", "Twz4", "DQAm", "l43A"], + "texture": 10 + }, + "PwpnjFND": { + "uv": { + "8RZE": [6, 38], + "ysV9": [7, 40], + "7Lkb": [7, 38], + "4r1K": [6, 40] + }, + "vertices": ["4r1K", "7Lkb", "ysV9", "8RZE"], + "texture": 10 + }, + "9oMLbnfc": { + "uv": { + "zSNG": [6.55556, 37], + "7Lkb": [7, 38], + "hzda": [7.18519, 37], + "8RZE": [6, 38] + }, + "vertices": ["8RZE", "hzda", "7Lkb", "zSNG"], + "texture": 10 + }, + "Dpxx7CpN": { + "uv": { + "uZl1": [8, 36], + "xLlC": [8, 35], + "4xjY": [9, 35], + "zQUZ": [9, 36] + }, + "vertices": ["zQUZ", "4xjY", "xLlC", "uZl1"], + "texture": 10 + }, + "SVHHhcO2": { + "uv": { + "r8cd": [6, 38], + "HEb7": [7, 38], + "xLlC": [7, 40], + "uZl1": [6, 40] + }, + "vertices": ["uZl1", "xLlC", "HEb7", "r8cd"], + "texture": 10 + }, + "vdwOaCZ4": { + "uv": { + "HEb7": [7, 38], + "Twz4": [8, 38], + "OEiu": [8, 40], + "xLlC": [7, 40] + }, + "vertices": ["xLlC", "OEiu", "Twz4", "HEb7"], + "texture": 10 + }, + "FlfaAgiy": { + "uv": { + "v4FA": [6.55556, 37], + "NTOm": [7.18519, 37], + "HEb7": [7, 38], + "r8cd": [6, 38] + }, + "vertices": ["r8cd", "HEb7", "NTOm", "v4FA"], + "texture": 10 + }, + "NckUeqJ1": { + "uv": { + "zQUZ": [9, 40], + "4xjY": [8, 40], + "qFyh": [8, 38], + "KK9l": [9, 38] + }, + "vertices": ["KK9l", "qFyh", "4xjY", "zQUZ"], + "texture": 10 + }, + "ctGuI6pF": { + "uv": { + "4xjY": [8, 40], + "ysV9": [7, 40], + "7Lkb": [7, 38], + "qFyh": [8, 38] + }, + "vertices": ["qFyh", "7Lkb", "ysV9", "4xjY"], + "texture": 10 + }, + "vSPl6O7i": { + "uv": { + "KK9l": [9, 38], + "qFyh": [8, 38], + "6Rn5": [7.81481, 37], + "SaP1": [8.44444, 37] + }, + "vertices": ["SaP1", "6Rn5", "qFyh", "KK9l"], + "texture": 10 + }, + "zT8H7d85": { + "uv": { + "qFyh": [8, 38], + "7Lkb": [7, 38], + "hzda": [7.18519, 37], + "6Rn5": [7.81481, 37] + }, + "vertices": ["6Rn5", "hzda", "7Lkb", "qFyh"], + "texture": 10 + }, + "chDXs2hw": { + "uv": { + "DQAm": [7.85, 20], + "NTOm": [7.425, 20], + "v4FA": [7, 20] + }, + "vertices": ["v4FA", "NTOm", "DQAm"], + "texture": 10 + }, + "UgShs0ZG": { + "uv": { + "NTOm": [7.18519, 37], + "DQAm": [7.81481, 37], + "Twz4": [8, 38], + "HEb7": [7, 38] + }, + "vertices": ["HEb7", "Twz4", "DQAm", "NTOm"], + "texture": 10 + }, + "OfOkta8P": { + "uv": { + "hwtv": [8.425, 22], + "DQAm": [7.85, 20], + "NTOm": [7.425, 20] + }, + "vertices": ["NTOm", "DQAm", "hwtv"], + "texture": 10 + }, + "E1pKqcMx": { + "uv": { + "baM3": [5.49999, 38.9999], + "vH8B": [6, 38], + "J35x": [6, 40] + }, + "vertices": ["J35x", "vH8B", "baM3"], + "texture": 10 + }, + "pZyasg7y": { + "uv": { + "baM3": [5.49999, 38.9999], + "h470": [5, 38], + "vH8B": [6, 38] + }, + "vertices": ["vH8B", "h470", "baM3"], + "texture": 10 + }, + "FgHaoPIT": { + "uv": { + "baM3": [7, 40], + "AS4N": [6, 40], + "h470": [7, 38] + }, + "vertices": ["h470", "AS4N", "baM3"], + "texture": 10 + }, + "pJDXjDXs": { + "uv": { + "baM3": [7, 34], + "J35x": [8, 34], + "AS4N": [8, 35] + }, + "vertices": ["AS4N", "J35x", "baM3"], + "texture": 10 + }, + "ncUiQvb7": { + "uv": { + "qdRn": [8, 37], + "jizT": [8, 35], + "JchO": [7, 37], + "AhYD": [7, 35] + }, + "vertices": ["AhYD", "JchO", "jizT", "qdRn"], + "texture": 10 + }, + "hgyNhvtP": { + "uv": { + "l43A": [7, 35], + "8RZE": [7, 34], + "jizT": [8, 34], + "AhYD": [8, 35] + }, + "vertices": ["AhYD", "jizT", "8RZE", "l43A"], + "texture": 10 + }, + "XfraWsWn": { + "uv": { + "RBuO": [7, 37], + "l43A": [7, 35], + "AhYD": [8, 35], + "JchO": [8, 37] + }, + "vertices": ["JchO", "AhYD", "l43A", "RBuO"], + "texture": 10 + }, + "FRB6ZcyW": { + "uv": { + "4r1K": [8, 36], + "RBuO": [8, 35], + "JchO": [9, 35], + "qdRn": [9, 36] + }, + "vertices": ["qdRn", "JchO", "RBuO", "4r1K"], + "texture": 10 + }, + "3rYUB9Ii": { + "uv": { + "8RZE": [8, 35], + "4r1K": [8, 37], + "qdRn": [7, 37], + "jizT": [7, 35] + }, + "vertices": ["jizT", "qdRn", "4r1K", "8RZE"], + "texture": 10 + }, + "ewN9rZIU": { + "uv": { + "ysV9": [8, 44], + "4xjY": [7, 44], + "YfWn": [7, 40], + "z2De": [8, 40] + }, + "vertices": ["z2De", "YfWn", "4xjY", "ysV9"], + "texture": 10 + }, + "ZnGvA9ol": { + "uv": { + "OEiu": [7, 35], + "ysV9": [7, 34], + "z2De": [8, 34], + "nhav": [8, 35] + }, + "vertices": ["nhav", "z2De", "ysV9", "OEiu"], + "texture": 10 + }, + "LJPkLCrV": { + "uv": { + "xLlC": [7, 40], + "OEiu": [8, 40], + "nhav": [8, 44], + "E4yt": [7, 44] + }, + "vertices": ["E4yt", "nhav", "OEiu", "xLlC"], + "texture": 10 + }, + "VPtBmmMF": { + "uv": { + "4xjY": [7, 35], + "xLlC": [7, 34], + "E4yt": [8, 34], + "YfWn": [8, 35] + }, + "vertices": ["YfWn", "E4yt", "xLlC", "4xjY"], + "texture": 10 + }, + "EfJOoi4v": { + "uv": { + "x8Ka": [6, 36], + "KdFN": [7, 20], + "MrKc": [6, 20], + "whqz": [7, 36] + }, + "vertices": ["whqz", "MrKc", "KdFN", "x8Ka"], + "texture": 10 + }, + "ufng06Uj": { + "uv": { + "whqz": [7, 36], + "jgz2": [7.25, 20], + "KdFN": [7, 20], + "yOxX": [7.25, 36] + }, + "vertices": ["yOxX", "KdFN", "jgz2", "whqz"], + "texture": 10 + }, + "xNq0BQtv": { + "uv": { + "97I5": [8, 36], + "sO8h": [9, 20], + "Kmzj": [8, 20], + "Omja": [9, 36] + }, + "vertices": ["Omja", "Kmzj", "sO8h", "97I5"], + "texture": 10 + }, + "UxelpdUq": { + "uv": { + "LVkI": [7.75, 36], + "MrKc": [8, 20], + "k8pS": [7.75, 20], + "x8Ka": [8, 36] + }, + "vertices": ["x8Ka", "k8pS", "MrKc", "LVkI"], + "texture": 10 + }, + "F0DoSv1x": { + "uv": { + "Omja": [7, 36], + "CTNP": [7.25, 20], + "sO8h": [7, 20], + "omTk": [7.25, 36] + }, + "vertices": ["omTk", "sO8h", "CTNP", "Omja"], + "texture": 10 + }, + "w16vR4Oa": { + "uv": { + "omTk": [6.5, 11], + "k8pS": [7.5, 8], + "CTNP": [6.5, 8], + "LVkI": [7.5, 11] + }, + "vertices": ["LVkI", "CTNP", "k8pS", "omTk"], + "texture": 10 + }, + "rnmBVqMn": { + "uv": { + "LrXm": [7.75, 36], + "Kmzj": [8, 20], + "YHNn": [7.75, 20], + "97I5": [8, 36] + }, + "vertices": ["97I5", "YHNn", "Kmzj", "LrXm"], + "texture": 10 + }, + "i9QWf78f": { + "uv": { + "yOxX": [6.5, 11], + "YHNn": [7.5, 8], + "jgz2": [6.5, 8], + "LrXm": [7.5, 11] + }, + "vertices": ["LrXm", "jgz2", "YHNn", "yOxX"], + "texture": 10 + }, + "L8EdjpKY": { + "uv": { + "dUmO": [7, 4], + "KdFN": [7, 20], + "MrKc": [6, 20], + "S90S": [6, 4] + }, + "vertices": ["S90S", "MrKc", "KdFN", "dUmO"], + "texture": 10 + }, + "axsJrmtt": { + "uv": { + "jgz2": [7.25, 20], + "KdFN": [7, 20], + "dUmO": [7, 4] + }, + "vertices": ["dUmO", "KdFN", "jgz2"], + "texture": 10 + }, + "iHnAYB92": { + "uv": { + "dUmO": [6.95, 4], + "YHNn": [7.25, 7.5], + "jgz2": [6.75, 7.5] + }, + "vertices": ["jgz2", "YHNn", "dUmO"], + "texture": 10 + }, + "rguPvCKq": { + "uv": { + "dUmO": [8, 4], + "Kmzj": [8, 20], + "YHNn": [7.75, 20] + }, + "vertices": ["YHNn", "Kmzj", "dUmO"], + "texture": 10 + }, + "c8cR9ogq": { + "uv": { + "S90S": [9, 4], + "sO8h": [9, 20], + "Kmzj": [8, 20], + "dUmO": [8, 4] + }, + "vertices": ["dUmO", "Kmzj", "sO8h", "S90S"], + "texture": 10 + }, + "v8wOIisd": { + "uv": { + "CTNP": [7.25, 20], + "sO8h": [7, 20], + "S90S": [7, 4] + }, + "vertices": ["S90S", "sO8h", "CTNP"], + "texture": 10 + }, + "mE46TIZW": { + "uv": { + "k8pS": [7.25, 7.5], + "CTNP": [6.75, 7.5], + "S90S": [6.95, 4] + }, + "vertices": ["S90S", "CTNP", "k8pS"], + "texture": 10 + }, + "zVeOiUM6": { + "uv": { + "S90S": [8, 4], + "MrKc": [8, 20], + "k8pS": [7.75, 20] + }, + "vertices": ["k8pS", "MrKc", "S90S"], + "texture": 10 + }, + "qzLQw2y4": { + "uv": { + "3PVE": [7, 35], + "idto": [7, 34], + "GgE6": [8, 34], + "8xZn": [8, 35] + }, + "vertices": ["8xZn", "GgE6", "idto", "3PVE"], + "texture": 10 + }, + "9mcHE0ag": { + "uv": { + "eaDD": [7, 35], + "ZYxD": [7, 34], + "8xZn": [8, 34], + "GgE6": [8, 35] + }, + "vertices": ["GgE6", "8xZn", "ZYxD", "eaDD"], + "texture": 10 + }, + "101JWkm4": { + "uv": { + "8DN7": [9, 45], + "eaDD": [8, 45], + "GgE6": [8, 44], + "idto": [9, 44] + }, + "vertices": ["idto", "GgE6", "eaDD", "8DN7"], + "texture": 10 + }, + "2WrwqWHk": { + "uv": { + "S5Ch": [7, 35], + "8DN7": [7, 34], + "idto": [8, 34], + "3PVE": [8, 35] + }, + "vertices": ["3PVE", "idto", "8DN7", "S5Ch"], + "texture": 10 + }, + "uRMTSPsN": { + "uv": { + "ZYxD": [8, 46], + "S5Ch": [7, 46], + "3PVE": [7, 45], + "8xZn": [8, 45] + }, + "vertices": ["8xZn", "3PVE", "S5Ch", "ZYxD"], + "texture": 10 + }, + "sUkbC0IS": { + "uv": { + "YfWn": [7, 35], + "E4yt": [7, 34], + "8DN7": [8, 34], + "S5Ch": [8, 35] + }, + "vertices": ["S5Ch", "8DN7", "E4yt", "YfWn"], + "texture": 10 + }, + "5Vs8g6lP": { + "uv": { + "E4yt": [8.3536, 46], + "nhav": [9.2536, 46], + "eaDD": [9.6071, 46.3536], + "8DN7": [8, 46.3536] + }, + "vertices": ["8DN7", "eaDD", "nhav", "E4yt"], + "texture": 10 + }, + "RYyPY93A": { + "uv": { + "nhav": [7, 35], + "z2De": [7, 34], + "ZYxD": [8, 34], + "eaDD": [8, 35] + }, + "vertices": ["eaDD", "ZYxD", "z2De", "nhav"], + "texture": 10 + }, + "xxRzDgcK": { + "uv": { + "z2De": [8.2536, 46.3535], + "YfWn": [7.3536, 46.3535], + "S5Ch": [7, 46], + "ZYxD": [8.6071, 46] + }, + "vertices": ["ZYxD", "S5Ch", "YfWn", "z2De"], + "texture": 10 + } + }, + "type": "mesh", + "uuid": "7cb50623-ba66-d366-b484-d07c84a26131" + }, + { + "name": "cylinder", + "color": 4, + "origin": [0, 0, 0], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "Syg9": [0, 0, 0], + "5L4x": [0, 30, 0], + "vMl8": [0.82843, 0, 2], + "KBQr": [0.82843, 30, 2], + "WTHu": [2, 0, 0.82843], + "U0jU": [2, 30, 0.82843], + "9y8l": [2, 0, -0.82843], + "JuHm": [2, 30, -0.82843], + "wlNY": [0.82843, 0, -2], + "5qhL": [0.82843, 30, -2], + "nHPO": [-0.82843, 0, -2], + "OTJT": [-0.82843, 30, -2], + "vTqs": [-2, 0, -0.82843], + "V1A8": [-2, 30, -0.82843], + "AK5h": [-2, 0, 0.82843], + "znUA": [-2, 30, 0.82843], + "7PHz": [-0.82843, 0, 2], + "f14k": [-0.82843, 30, 2] + }, + "faces": { + "47jFdP9x": { + "uv": { + "Syg9": [2.98247, 12.94655], + "vMl8": [1.74709, 9.89311], + "WTHu": [0, 11.68177] + }, + "vertices": ["WTHu", "vMl8", "Syg9"], + "texture": 11 + }, + "auaFtT31": { + "uv": { + "KBQr": [5, 0], + "U0jU": [7.2, 0], + "WTHu": [7.2, 16], + "vMl8": [5, 16] + }, + "vertices": ["vMl8", "WTHu", "U0jU", "KBQr"], + "texture": 11 + }, + "KWDAWh3z": { + "uv": { + "5L4x": [2.98247, 12.94655], + "U0jU": [0, 11.68177], + "KBQr": [1.74709, 9.89311] + }, + "vertices": ["KBQr", "U0jU", "5L4x"], + "texture": 11 + }, + "fWglIXih": { + "uv": { + "Syg9": [2.98247, 12.94655], + "WTHu": [0, 11.68177], + "9y8l": [0, 14.21133] + }, + "vertices": ["9y8l", "WTHu", "Syg9"], + "texture": 11 + }, + "WDWTbsYY": { + "uv": { + "U0jU": [7.2, 0], + "JuHm": [9.4, 0], + "9y8l": [9.4, 16], + "WTHu": [7.2, 16] + }, + "vertices": ["WTHu", "9y8l", "JuHm", "U0jU"], + "texture": 11 + }, + "yDGzCejv": { + "uv": { + "5L4x": [2.98247, 12.94655], + "JuHm": [0, 14.21133], + "U0jU": [0, 11.68177] + }, + "vertices": ["U0jU", "JuHm", "5L4x"], + "texture": 11 + }, + "NftA25Ll": { + "uv": { + "Syg9": [2.98247, 12.94655], + "9y8l": [0, 14.21133], + "wlNY": [1.74709, 16] + }, + "vertices": ["wlNY", "9y8l", "Syg9"], + "texture": 11 + }, + "GNBu50Wy": { + "uv": { + "JuHm": [9.4, 0], + "5qhL": [11.6, 0], + "wlNY": [11.6, 16], + "9y8l": [9.4, 16] + }, + "vertices": ["9y8l", "wlNY", "5qhL", "JuHm"], + "texture": 11 + }, + "7q7LBC8k": { + "uv": { + "5L4x": [2.98247, 12.94655], + "5qhL": [1.74709, 16], + "JuHm": [0, 14.21133] + }, + "vertices": ["JuHm", "5qhL", "5L4x"], + "texture": 11 + }, + "nLWLmp41": { + "uv": { + "Syg9": [2.98247, 12.94655], + "wlNY": [1.74709, 16], + "nHPO": [4.21786, 16] + }, + "vertices": ["nHPO", "wlNY", "Syg9"], + "texture": 11 + }, + "ekMCB1ct": { + "uv": { + "5qhL": [5, 0], + "OTJT": [7.2, 0], + "nHPO": [7.2, 16], + "wlNY": [5, 16] + }, + "vertices": ["wlNY", "nHPO", "OTJT", "5qhL"], + "texture": 11 + }, + "Ixk3K9Do": { + "uv": { + "5L4x": [2.98247, 12.94655], + "OTJT": [4.21786, 16], + "5qhL": [1.74709, 16] + }, + "vertices": ["5qhL", "OTJT", "5L4x"], + "texture": 11 + }, + "SzwuCwIQ": { + "uv": { + "Syg9": [2.98247, 12.94655], + "nHPO": [4.21786, 16], + "vTqs": [5.96495, 14.21133] + }, + "vertices": ["vTqs", "nHPO", "Syg9"], + "texture": 11 + }, + "gyPkfYqn": { + "uv": { + "OTJT": [7.2, 0], + "V1A8": [9.4, 0], + "vTqs": [9.4, 16], + "nHPO": [7.2, 16] + }, + "vertices": ["nHPO", "vTqs", "V1A8", "OTJT"], + "texture": 11 + }, + "a3iLNbWD": { + "uv": { + "5L4x": [2.98247, 12.94655], + "V1A8": [5.96495, 14.21133], + "OTJT": [4.21786, 16] + }, + "vertices": ["OTJT", "V1A8", "5L4x"], + "texture": 11 + }, + "PPe96f5C": { + "uv": { + "Syg9": [2.98247, 12.94655], + "vTqs": [5.96495, 14.21133], + "AK5h": [5.96495, 11.68177] + }, + "vertices": ["AK5h", "vTqs", "Syg9"], + "texture": 11 + }, + "8OvwtJu5": { + "uv": { + "V1A8": [13.8, 0], + "znUA": [16, 0], + "AK5h": [16, 16], + "vTqs": [13.8, 16] + }, + "vertices": ["vTqs", "AK5h", "znUA", "V1A8"], + "texture": 11 + }, + "aFQRLPC7": { + "uv": { + "5L4x": [2.98247, 12.94655], + "znUA": [5.96495, 11.68177], + "V1A8": [5.96495, 14.21133] + }, + "vertices": ["V1A8", "znUA", "5L4x"], + "texture": 11 + }, + "buMxxshu": { + "uv": { + "Syg9": [2.98247, 12.94655], + "AK5h": [5.96495, 11.68177], + "7PHz": [4.21786, 9.89311] + }, + "vertices": ["7PHz", "AK5h", "Syg9"], + "texture": 11 + }, + "imkdwPZw": { + "uv": { + "znUA": [11.6, 0], + "f14k": [13.8, 0], + "7PHz": [13.8, 16], + "AK5h": [11.6, 16] + }, + "vertices": ["AK5h", "7PHz", "f14k", "znUA"], + "texture": 11 + }, + "k8nu5H6F": { + "uv": { + "5L4x": [2.98247, 12.94655], + "f14k": [4.21786, 9.89311], + "znUA": [5.96495, 11.68177] + }, + "vertices": ["znUA", "f14k", "5L4x"], + "texture": 11 + }, + "DZPuyzEl": { + "uv": { + "Syg9": [2.98247, 12.94655], + "7PHz": [4.21786, 9.89311], + "vMl8": [1.74709, 9.89311] + }, + "vertices": ["vMl8", "7PHz", "Syg9"], + "texture": 11 + }, + "XLpjEnxi": { + "uv": { + "f14k": [13.8, 0], + "KBQr": [16, 0], + "vMl8": [16, 16], + "7PHz": [13.8, 16] + }, + "vertices": ["7PHz", "vMl8", "KBQr", "f14k"], + "texture": 11 + }, + "gyMGsv9U": { + "uv": { + "5L4x": [2.98247, 12.94655], + "KBQr": [1.74709, 9.89311], + "f14k": [4.21786, 9.89311] + }, + "vertices": ["f14k", "KBQr", "5L4x"], + "texture": 11 + } + }, + "type": "mesh", + "uuid": "c1a191fa-bda9-da93-b666-4ee63af908b3" + }, + { + "name": "LeftElytra", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-4.4, 1.9, 1.9], + "to": [4.4, 19.7, 1.7], + "autouv": 0, + "color": 1, + "inflate": 1, + "origin": [-4.5, 19.8, 0.9], + "faces": { + "north": { + "uv": [24, 2, 34, 22], + "texture": 12 + }, + "east": { + "uv": [22, 2, 24, 22], + "texture": 12 + }, + "south": { + "uv": [36, 2, 46, 22], + "texture": 12 + }, + "west": { + "uv": [34, 2, 36, 22], + "texture": 12 + }, + "up": { + "uv": [34, 2, 24, 0], + "texture": 12 + }, + "down": { + "uv": [44, 0, 34, 2], + "texture": 12 + } + }, + "type": "cube", + "uuid": "9d5d4d0c-3741-bd02-c98e-a172432aa02f" + }, + { + "name": "RightElytra", + "box_uv": false, + "rescale": false, + "locked": false, + "light_emission": 0, + "render_order": "default", + "allow_mirror_modeling": true, + "from": [-4.4, 1.9, 0.1], + "to": [4.4, 19.7, 1.7], + "autouv": 0, + "color": 4, + "inflate": 1, + "origin": [4.5, 19.8, 0], + "faces": { + "north": { + "uv": [34, 2, 24, 22], + "texture": 12 + }, + "east": { + "uv": [24, 2, 22, 22], + "texture": 12 + }, + "south": { + "uv": [46, 2, 36, 22], + "texture": 12 + }, + "west": { + "uv": [36, 2, 34, 22], + "texture": 12 + }, + "up": { + "uv": [24, 2, 34, 0], + "texture": 12 + }, + "down": { + "uv": [34, 0, 44, 2], + "texture": 12 + } + }, + "type": "cube", + "uuid": "96a3cb8c-5a5d-c76f-8090-446b052c4253" + }, + { + "name": "cube_selection", + "color": 0, + "origin": [-6.525, 11.7, 0.36], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "SG2C": [-0.225, -0.24539, 1.35], + "aXfG": [-0.225, -0.24547, -0.77023], + "gYNL": [0.7695, -0.24539, 1.35], + "qm42": [0.6525, -0.24547, -0.86023], + "yyqQ": [0.7695, -0.24547, -0.20407], + "rsTD": [0.7695, -0.24547, 0.31396], + "EgMs": [0.7695, -0.24547, 0.83198], + "Cp8M": [-0.225, -0.24547, -0.20407], + "6QYx": [-0.225, -0.24547, 0.31396], + "Tmp9": [-0.225, -0.24547, 0.83198], + "2XG6": [0.828, -1.96367, 1.28093], + "0NfC": [0.40289, -1.96368, 0.90104], + "ktsA": [0.828, -1.96368, 0.90104], + "gl6I": [0.40289, -1.96367, 1.28093], + "wmh0": [0.40289, -2.13553, 0.38302], + "bBD0": [0.40289, -2.13551, 0.7629], + "bLzn": [0.828, -2.13551, 0.7629], + "5Oea": [0.828, -2.13553, 0.38302], + "B3xb": [0.40289, -2.2501, -0.135], + "7f4f": [0.40289, -2.25008, 0.24488], + "VxRo": [0.828, -2.25008, 0.24488], + "QZyX": [0.828, -2.2501, -0.135], + "zUtn": [0.40289, -2.0783, -0.65302], + "nAyf": [0.40289, -2.07829, -0.27314], + "c9bo": [0.828, -2.07829, -0.27314], + "ZvZ2": [0.711, -2.0783, -0.65302], + "jyuv": [0.0675, 0.9, 1.35], + "BcrG": [0.0675, 0.9, -0.7221], + "SmHE": [0.945, 0.9, 1.35], + "16LN": [0.945, 0.9, -0.7221], + "rkTD": [0.945, 0.9, -1.41279], + "5bB4": [0.0675, 0.9, -1.41279], + "gsUF": [0.7695, -0.24547, -1.55093], + "3ZE3": [0.0675, -0.24547, -1.55093], + "DLfR": [0.828, -1.10457, -1.62], + "aOPa": [0.243, -1.10457, -1.62], + "ZHsx": [0.243, -1.10457, -1.06744], + "U3G7": [0.828, -1.10457, -1.06744] + }, + "faces": { + "m0tfQVEw": { + "uv": { + "gl6I": [2.5, 9], + "ktsA": [1, 9.75], + "2XG6": [1, 9], + "0NfC": [2.5, 9.75] + }, + "vertices": ["0NfC", "2XG6", "ktsA", "gl6I"], + "texture": 1 + }, + "IiwdQUx2": { + "uv": { + "ZvZ2": [1, 12], + "c9bo": [1, 11.25], + "zUtn": [2.5, 12], + "nAyf": [2.5, 11.25] + }, + "vertices": ["nAyf", "zUtn", "c9bo", "ZvZ2"], + "texture": 1 + }, + "Ul4tOyFB": { + "uv": { + "QZyX": [1, 11.25], + "VxRo": [1, 10.5], + "B3xb": [2.5, 11.25], + "7f4f": [2.5, 10.5] + }, + "vertices": ["7f4f", "B3xb", "VxRo", "QZyX"], + "texture": 1 + }, + "xHcIDvFc": { + "uv": { + "5Oea": [1, 10.5], + "bLzn": [1, 9.75], + "wmh0": [2.5, 10.5], + "bBD0": [2.5, 9.75] + }, + "vertices": ["bBD0", "wmh0", "bLzn", "5Oea"], + "texture": 1 + }, + "FvcWTee2": { + "uv": { + "EgMs": [0, 6], + "gYNL": [0.75, 6], + "ktsA": [0, 7], + "2XG6": [0.75, 7] + }, + "vertices": ["2XG6", "ktsA", "gYNL", "EgMs"], + "texture": 1 + }, + "YD42q4Vm": { + "uv": { + "Tmp9": [1.5, 1.4], + "EgMs": [0, 1.4], + "0NfC": [1.5, 3.4], + "ktsA": [0, 3.4] + }, + "vertices": ["ktsA", "0NfC", "EgMs", "Tmp9"], + "texture": 1 + }, + "DcHaX5tj": { + "uv": { + "SG2C": [6, 11.00031], + "Tmp9": [7, 11], + "gl6I": [6, 12.75003], + "0NfC": [7, 12.74996] + }, + "vertices": ["0NfC", "gl6I", "Tmp9", "SG2C"], + "texture": 1 + }, + "KFuNt2na": { + "uv": { + "gYNL": [1, 5], + "SG2C": [2.5, 5], + "2XG6": [1, 6], + "gl6I": [2.5, 6] + }, + "vertices": ["gl6I", "2XG6", "SG2C", "gYNL"], + "texture": 1 + }, + "UEt7qrj2": { + "uv": { + "Tmp9": [6, 11.00031], + "6QYx": [7, 11], + "bBD0": [6, 12.75003], + "wmh0": [7, 12.74996] + }, + "vertices": ["wmh0", "bBD0", "6QYx", "Tmp9"], + "texture": 1 + }, + "KB0DkmzM": { + "uv": { + "EgMs": [1.5, 1.4], + "Tmp9": [0, 1.4], + "bLzn": [1.5, 3.4], + "bBD0": [0, 3.4] + }, + "vertices": ["bBD0", "bLzn", "Tmp9", "EgMs"], + "texture": 1 + }, + "Ccf24YWf": { + "uv": { + "rsTD": [0.00003, 7], + "EgMs": [0.75003, 7], + "5Oea": [0, 8], + "bLzn": [0.7499, 8] + }, + "vertices": ["bLzn", "5Oea", "EgMs", "rsTD"], + "texture": 1 + }, + "KU7QLZrc": { + "uv": { + "6QYx": [1.5, 1.4], + "rsTD": [0, 1.4], + "wmh0": [1.5, 3.4], + "5Oea": [0, 3.4] + }, + "vertices": ["5Oea", "wmh0", "rsTD", "6QYx"], + "texture": 1 + }, + "GiNazZC5": { + "uv": { + "6QYx": [6, 11.00031], + "Cp8M": [7, 11], + "7f4f": [6, 12.75003], + "B3xb": [7, 12.74996] + }, + "vertices": ["B3xb", "7f4f", "Cp8M", "6QYx"], + "texture": 1 + }, + "Z8JMQhKI": { + "uv": { + "rsTD": [1.5, 1.4], + "6QYx": [0, 1.4], + "VxRo": [1.5, 3.4], + "7f4f": [0, 3.4] + }, + "vertices": ["7f4f", "VxRo", "6QYx", "rsTD"], + "texture": 1 + }, + "S5lPFrVF": { + "uv": { + "yyqQ": [0, 7], + "rsTD": [0.75, 7], + "QZyX": [0.0001, 8], + "VxRo": [0.7501, 8] + }, + "vertices": ["VxRo", "QZyX", "rsTD", "yyqQ"], + "texture": 1 + }, + "xUtPJcWj": { + "uv": { + "Cp8M": [1.5, 1.4], + "yyqQ": [0, 1.4], + "B3xb": [1.5, 3.4], + "QZyX": [0, 3.4] + }, + "vertices": ["QZyX", "B3xb", "yyqQ", "Cp8M"], + "texture": 1 + }, + "3N0qXU4V": { + "uv": { + "Cp8M": [6, 11.00031], + "aXfG": [7, 11], + "nAyf": [6, 12.75003], + "zUtn": [7, 12.74996] + }, + "vertices": ["zUtn", "nAyf", "aXfG", "Cp8M"], + "texture": 1 + }, + "SR3ZmE4w": { + "uv": { + "yyqQ": [1.5, 1.4], + "Cp8M": [0, 1.4], + "c9bo": [1.5, 3.4], + "nAyf": [0, 3.4] + }, + "vertices": ["nAyf", "c9bo", "Cp8M", "yyqQ"], + "texture": 1 + }, + "pJR6Btzm": { + "uv": { + "qm42": [0, 7], + "yyqQ": [0.75, 7], + "ZvZ2": [0.0001, 8], + "c9bo": [0.7501, 8] + }, + "vertices": ["c9bo", "ZvZ2", "yyqQ", "qm42"], + "texture": 1 + }, + "aR8MHDcQ": { + "uv": { + "aXfG": [1.5, 1.4], + "qm42": [0, 1.4], + "zUtn": [1.5, 3.4], + "ZvZ2": [0, 3.4] + }, + "vertices": ["ZvZ2", "zUtn", "qm42", "aXfG"], + "texture": 1 + }, + "vvIAs6ec": { + "uv": { + "SG2C": [0, 7], + "aXfG": [3, 7], + "BcrG": [3, 5], + "jyuv": [0, 5] + }, + "vertices": ["jyuv", "BcrG", "aXfG", "SG2C"], + "texture": 1 + }, + "CkMjBEUr": { + "uv": { + "SmHE": [1, 12], + "jyuv": [2.5, 12], + "BcrG": [2.5, 9], + "16LN": [1, 9] + }, + "vertices": ["16LN", "BcrG", "jyuv", "SmHE"], + "texture": 1 + }, + "uo43jn6G": { + "uv": { + "gYNL": [1, 11], + "SG2C": [2.5, 11], + "jyuv": [2.5, 9], + "SmHE": [1, 9] + }, + "vertices": ["SmHE", "jyuv", "SG2C", "gYNL"], + "texture": 1 + }, + "5U9xU0dD": { + "uv": { + "3ZE3": [1, 11], + "gsUF": [2.5, 11], + "rkTD": [2.5, 9], + "5bB4": [1, 9] + }, + "vertices": ["5bB4", "rkTD", "gsUF", "3ZE3"], + "texture": 1 + }, + "PMT6iALM": { + "uv": { + "16LN": [2, 6], + "qm42": [2, 8], + "rkTD": [1, 6], + "gsUF": [1, 8] + }, + "vertices": ["gsUF", "rkTD", "qm42", "16LN"], + "texture": 1 + }, + "laujVFTj": { + "uv": { + "BcrG": [2.5, 8], + "16LN": [1, 8], + "5bB4": [2.5, 7], + "rkTD": [1, 7] + }, + "vertices": ["rkTD", "5bB4", "16LN", "BcrG"], + "texture": 1 + }, + "8H3cL8dN": { + "uv": { + "aXfG": [0, 9], + "BcrG": [0, 7], + "3ZE3": [1, 9], + "5bB4": [1, 7] + }, + "vertices": ["5bB4", "3ZE3", "BcrG", "aXfG"], + "texture": 1 + }, + "qTTfHe64": { + "uv": { + "U3G7": [2.5, 8.00004], + "ZHsx": [1.00001, 7.99996], + "DLfR": [2.50005, 7], + "aOPa": [1, 7] + }, + "vertices": ["aOPa", "DLfR", "ZHsx", "U3G7"], + "texture": 1 + }, + "G08WUC3f": { + "uv": { + "3ZE3": [1, 5], + "gsUF": [2.5, 5], + "aOPa": [1, 6], + "DLfR": [2.5, 6] + }, + "vertices": ["DLfR", "aOPa", "gsUF", "3ZE3"], + "texture": 1 + }, + "pHmNi5fh": { + "uv": { + "aXfG": [6, 11.00031], + "3ZE3": [7, 11], + "ZHsx": [6, 12.75003], + "aOPa": [7, 12.74996] + }, + "vertices": ["aOPa", "ZHsx", "3ZE3", "aXfG"], + "texture": 1 + }, + "cuft3msr": { + "uv": { + "qm42": [1, 5], + "aXfG": [2.5, 5], + "U3G7": [1, 6], + "ZHsx": [2.5, 6] + }, + "vertices": ["ZHsx", "U3G7", "aXfG", "qm42"], + "texture": 1 + }, + "azGhehvz": { + "uv": { + "gsUF": [1, 5], + "qm42": [2, 5], + "DLfR": [1, 6], + "U3G7": [2, 6] + }, + "vertices": ["U3G7", "DLfR", "qm42", "gsUF"], + "texture": 1 + }, + "udheygIe": { + "uv": { + "qm42": [0, 7], + "gYNL": [3, 7], + "SmHE": [3, 5], + "16LN": [0, 5] + }, + "vertices": ["16LN", "SmHE", "gYNL", "qm42"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "3ff463ae-9682-6417-285e-b19d1b2220eb" + }, + { + "name": "cube", + "color": 0, + "origin": [-7, 13, 6], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "r1QE": [3, 4, 2], + "aicD": [3, 0, 2], + "4wo4": [-1, 4, 2], + "VeL6": [-1, 0, 2] + }, + "faces": { + "IWQK3JC8": { + "uv": { + "VeL6": [0, 8], + "aicD": [4.5, 8], + "4wo4": [0, 3.5], + "r1QE": [4.5, 3.5] + }, + "vertices": ["r1QE", "4wo4", "aicD", "VeL6"], + "texture": 14 + } + }, + "type": "mesh", + "uuid": "b92e3959-84e9-137a-08fd-f02494193524" + }, + { + "name": "cube", + "color": 0, + "origin": [-3, 13, 6], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "r1QE": [3, 4, 2], + "aicD": [3, 0, 2], + "4wo4": [-1, 4, 2], + "VeL6": [-1, 0, 2] + }, + "faces": { + "IWQK3JC8": { + "uv": { + "VeL6": [0, 8], + "aicD": [4.5, 8], + "4wo4": [0, 3.5], + "r1QE": [4.5, 3.5] + }, + "vertices": ["r1QE", "4wo4", "aicD", "VeL6"], + "texture": 14 + } + }, + "type": "mesh", + "uuid": "27fc6f62-950d-dcda-085c-84309264ffe8" + }, + { + "name": "cube", + "color": 0, + "origin": [1, 13, 6], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "r1QE": [3, 4, 2], + "aicD": [3, 0, 2], + "4wo4": [-1, 4, 2], + "VeL6": [-1, 0, 2] + }, + "faces": { + "IWQK3JC8": { + "uv": { + "VeL6": [0, 8], + "aicD": [4.5, 8], + "4wo4": [0, 3.5], + "r1QE": [4.5, 3.5] + }, + "vertices": ["r1QE", "4wo4", "aicD", "VeL6"], + "texture": 14 + } + }, + "type": "mesh", + "uuid": "8bf93158-6028-7e7d-537e-e421536deee4" + }, + { + "name": "cube", + "color": 0, + "origin": [5, 13, 6], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "r1QE": [3, 4, 2], + "aicD": [3, 0, 2], + "4wo4": [-1, 4, 2], + "VeL6": [-1, 0, 2] + }, + "faces": { + "IWQK3JC8": { + "uv": { + "VeL6": [0, 8], + "aicD": [4.5, 8], + "4wo4": [0, 3.5], + "r1QE": [4.5, 3.5] + }, + "vertices": ["r1QE", "4wo4", "aicD", "VeL6"], + "texture": 14 + } + }, + "type": "mesh", + "uuid": "1579092f-ba31-f220-1b8d-ba5d4a99f28f" + }, + { + "name": "cube", + "color": 0, + "origin": [5, 9, 6], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "r1QE": [3, 4, 2], + "aicD": [3, 0, 2], + "4wo4": [-1, 4, 2], + "VeL6": [-1, 0, 2] + }, + "faces": { + "IWQK3JC8": { + "uv": { + "VeL6": [0, 8], + "aicD": [4.5, 8], + "4wo4": [0, 3.5], + "r1QE": [4.5, 3.5] + }, + "vertices": ["r1QE", "4wo4", "aicD", "VeL6"], + "texture": 13 + } + }, + "type": "mesh", + "uuid": "941a4272-5b70-00ad-45a4-aacc85f521f0" + }, + { + "name": "cube", + "color": 0, + "origin": [1, 9, 6], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "r1QE": [3, 4, 2], + "aicD": [3, 0, 2], + "4wo4": [-1, 4, 2], + "VeL6": [-1, 0, 2] + }, + "faces": { + "IWQK3JC8": { + "uv": { + "VeL6": [0, 8], + "aicD": [4.5, 8], + "4wo4": [0, 3.5], + "r1QE": [4.5, 3.5] + }, + "vertices": ["r1QE", "4wo4", "aicD", "VeL6"], + "texture": 13 + } + }, + "type": "mesh", + "uuid": "be7264de-a991-9452-4993-b0bb19ad56d3" + }, + { + "name": "cube", + "color": 0, + "origin": [-3, 9, 6], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "r1QE": [3, 4, 2], + "aicD": [3, 0, 2], + "4wo4": [-1, 4, 2], + "VeL6": [-1, 0, 2] + }, + "faces": { + "IWQK3JC8": { + "uv": { + "VeL6": [0, 8], + "aicD": [4.5, 8], + "4wo4": [0, 3.5], + "r1QE": [4.5, 3.5] + }, + "vertices": ["r1QE", "4wo4", "aicD", "VeL6"], + "texture": 13 + } + }, + "type": "mesh", + "uuid": "dacb6415-2bc6-9d5f-844e-37615bc10066" + }, + { + "name": "cube", + "color": 0, + "origin": [-7, 9, 6], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "r1QE": [3, 4, 2], + "aicD": [3, 0, 2], + "4wo4": [-1, 4, 2], + "VeL6": [-1, 0, 2] + }, + "faces": { + "IWQK3JC8": { + "uv": { + "VeL6": [0, 8], + "aicD": [4.5, 8], + "4wo4": [0, 3.5], + "r1QE": [4.5, 3.5] + }, + "vertices": ["r1QE", "4wo4", "aicD", "VeL6"], + "texture": 13 + } + }, + "type": "mesh", + "uuid": "363579ea-e5bc-b6a8-7cb3-1ff461c918c0" + }, + { + "name": "inner", + "color": 8, + "origin": [0, 0, -13], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "8QjC": [0, -8, 0], + "u9P6": [0, 8, 0], + "3ZDT": [1.0718, 6.9282, 4], + "zNGN": [1.85641, 4, 6.9282], + "73Hf": [2.14359, 0, 8], + "4ExO": [1.85641, -4, 6.9282], + "f7le": [1.0718, -6.9282, 4], + "d0Pu": [2.9282, 6.9282, 2.9282], + "C5s3": [5.0718, 4, 5.0718], + "IS5N": [5.85641, 0, 5.85641], + "KeJY": [5.0718, -4, 5.0718], + "QpFb": [2.9282, -6.9282, 2.9282], + "8WEL": [4, 6.9282, 1.0718], + "KBoA": [6.9282, 4, 1.85641], + "UZLZ": [8, 0, 2.14359], + "S7bZ": [6.9282, -4, 1.85641], + "yocC": [4, -6.9282, 1.0718], + "8QT3": [4, 6.9282, -1.0718], + "W8jt": [6.9282, 4, -1.85641], + "TP88": [8, 0, -2.14359], + "OJX9": [6.9282, -4, -1.85641], + "PZ0f": [4, -6.9282, -1.0718], + "rlja": [2.9282, 6.9282, -2.9282], + "ddkb": [5.0718, 4, -5.0718], + "Phwt": [5.85641, 0, -5.85641], + "qhSG": [5.0718, -4, -5.0718], + "2KFR": [2.9282, -6.9282, -2.9282], + "UuWY": [1.0718, 6.9282, -4], + "rIID": [1.85641, 4, -6.9282], + "2eBc": [2.14359, 0, -8], + "baM3": [1.85641, -4, -6.9282], + "35RP": [1.0718, -6.9282, -4], + "b4mn": [-1.0718, 6.9282, -4], + "aLVc": [-1.85641, 4, -6.9282], + "KcNg": [-2.14359, 0, -8], + "ar6O": [-1.85641, -4, -6.9282], + "fZGN": [-1.0718, -6.9282, -4], + "nv85": [-2.9282, 6.9282, -2.9282], + "P9rX": [-5.0718, 4, -5.0718], + "LfAz": [-5.85641, 0, -5.85641], + "Aldt": [-5.0718, -4, -5.0718], + "arCH": [-2.9282, -6.9282, -2.9282], + "azgg": [-4, 6.9282, -1.0718], + "5mdt": [-6.9282, 4, -1.85641], + "f4nL": [-8, 0, -2.14359], + "IW10": [-6.9282, -4, -1.85641], + "Vgik": [-4, -6.9282, -1.0718], + "VqHR": [-4, 6.9282, 1.0718], + "lr5A": [-6.9282, 4, 1.85641], + "F9rK": [-8, 0, 2.14359], + "pQvi": [-6.9282, -4, 1.85641], + "54OX": [-4, -6.9282, 1.0718], + "bC6k": [-2.9282, 6.9282, 2.9282], + "64eD": [-5.0718, 4, 5.0718], + "8Z7A": [-5.85641, 0, 5.85641], + "nnBx": [-5.0718, -4, 5.0718], + "sdgs": [-2.9282, -6.9282, 2.9282], + "B9HA": [-1.0718, 6.9282, 4], + "YR9K": [-1.85641, 4, 6.9282], + "rBqN": [-2.14359, 0, 8], + "G7iR": [-1.85641, -4, 6.9282], + "G7Yn": [-1.0718, -6.9282, 4] + }, + "faces": { + "ZngK3IpC": { + "uv": { + "u9P6": [0.25, 0.75], + "d0Pu": [0.25, 0.25], + "3ZDT": [0.75, 0.25] + }, + "vertices": ["3ZDT", "d0Pu", "u9P6"], + "texture": 15 + }, + "L46i6DN5": { + "uv": { + "d0Pu": [1.75, 0.75], + "3ZDT": [1.75, 0.25], + "C5s3": [1.25, 0.75], + "zNGN": [1.25, 0.25] + }, + "vertices": ["zNGN", "C5s3", "3ZDT", "d0Pu"], + "texture": 15 + }, + "eNbWbFkk": { + "uv": { + "C5s3": [2.75, 0.75], + "zNGN": [2.75, 0.25], + "IS5N": [2.25, 0.75], + "73Hf": [2.25, 0.25] + }, + "vertices": ["73Hf", "IS5N", "zNGN", "C5s3"], + "texture": 15 + }, + "roTqvBDD": { + "uv": { + "IS5N": [3.75, 0.75], + "73Hf": [3.75, 0.25], + "KeJY": [3.25, 0.75], + "4ExO": [3.25, 0.25] + }, + "vertices": ["4ExO", "KeJY", "73Hf", "IS5N"], + "texture": 15 + }, + "H5SeHMdG": { + "uv": { + "KeJY": [4.75, 0.75], + "4ExO": [4.75, 0.25], + "QpFb": [4.25, 0.75], + "f7le": [4.25, 0.25] + }, + "vertices": ["f7le", "QpFb", "4ExO", "KeJY"], + "texture": 15 + }, + "9fOaMI7A": { + "uv": { + "8QjC": [5.25, 0.75], + "f7le": [5.25, 0.25], + "QpFb": [5.75, 0.25] + }, + "vertices": ["QpFb", "f7le", "8QjC"], + "texture": 15 + }, + "eHg0Xk2X": { + "uv": { + "u9P6": [6.25, 0.75], + "8WEL": [6.25, 0.25], + "d0Pu": [6.75, 0.25] + }, + "vertices": ["d0Pu", "8WEL", "u9P6"], + "texture": 15 + }, + "sRhLlJHL": { + "uv": { + "8WEL": [7.75, 0.75], + "d0Pu": [7.75, 0.25], + "KBoA": [7.25, 0.75], + "C5s3": [7.25, 0.25] + }, + "vertices": ["C5s3", "KBoA", "d0Pu", "8WEL"], + "texture": 15 + }, + "1hmcvGBk": { + "uv": { + "KBoA": [8.75, 0.75], + "C5s3": [8.75, 0.25], + "UZLZ": [8.25, 0.75], + "IS5N": [8.25, 0.25] + }, + "vertices": ["IS5N", "UZLZ", "C5s3", "KBoA"], + "texture": 15 + }, + "O4BJvLoN": { + "uv": { + "UZLZ": [9.75, 0.75], + "IS5N": [9.75, 0.25], + "S7bZ": [9.25, 0.75], + "KeJY": [9.25, 0.25] + }, + "vertices": ["KeJY", "S7bZ", "IS5N", "UZLZ"], + "texture": 15 + }, + "kx9KAAPA": { + "uv": { + "S7bZ": [10.75, 0.75], + "KeJY": [10.75, 0.25], + "yocC": [10.25, 0.75], + "QpFb": [10.25, 0.25] + }, + "vertices": ["QpFb", "yocC", "KeJY", "S7bZ"], + "texture": 15 + }, + "7xBzzsZo": { + "uv": { + "8QjC": [11.25, 0.75], + "QpFb": [11.25, 0.25], + "yocC": [11.75, 0.25] + }, + "vertices": ["yocC", "QpFb", "8QjC"], + "texture": 15 + }, + "uVFCvy3R": { + "uv": { + "u9P6": [12.25, 0.75], + "8QT3": [12.25, 0.25], + "8WEL": [12.75, 0.25] + }, + "vertices": ["8WEL", "8QT3", "u9P6"], + "texture": 15 + }, + "WaNtzBKB": { + "uv": { + "8QT3": [13.75, 0.75], + "8WEL": [13.75, 0.25], + "W8jt": [13.25, 0.75], + "KBoA": [13.25, 0.25] + }, + "vertices": ["KBoA", "W8jt", "8WEL", "8QT3"], + "texture": 15 + }, + "vTSW5OcT": { + "uv": { + "W8jt": [14.75, 0.75], + "KBoA": [14.75, 0.25], + "TP88": [14.25, 0.75], + "UZLZ": [14.25, 0.25] + }, + "vertices": ["UZLZ", "TP88", "KBoA", "W8jt"], + "texture": 15 + }, + "TUIIt1x5": { + "uv": { + "TP88": [15.75, 0.75], + "UZLZ": [15.75, 0.25], + "OJX9": [15.25, 0.75], + "S7bZ": [15.25, 0.25] + }, + "vertices": ["S7bZ", "OJX9", "UZLZ", "TP88"], + "texture": 15 + }, + "VvVgk78W": { + "uv": { + "OJX9": [0.75, 1.75], + "S7bZ": [0.75, 1.25], + "PZ0f": [0.25, 1.75], + "yocC": [0.25, 1.25] + }, + "vertices": ["yocC", "PZ0f", "S7bZ", "OJX9"], + "texture": 15 + }, + "MYvVN80s": { + "uv": { + "8QjC": [1.25, 1.75], + "yocC": [1.25, 1.25], + "PZ0f": [1.75, 1.25] + }, + "vertices": ["PZ0f", "yocC", "8QjC"], + "texture": 15 + }, + "Xxx3Dir0": { + "uv": { + "u9P6": [2.25, 1.75], + "rlja": [2.25, 1.25], + "8QT3": [2.75, 1.25] + }, + "vertices": ["8QT3", "rlja", "u9P6"], + "texture": 15 + }, + "wcliUruQ": { + "uv": { + "rlja": [3.75, 1.75], + "8QT3": [3.75, 1.25], + "ddkb": [3.25, 1.75], + "W8jt": [3.25, 1.25] + }, + "vertices": ["W8jt", "ddkb", "8QT3", "rlja"], + "texture": 15 + }, + "AC8pSweT": { + "uv": { + "ddkb": [4.75, 1.75], + "W8jt": [4.75, 1.25], + "Phwt": [4.25, 1.75], + "TP88": [4.25, 1.25] + }, + "vertices": ["TP88", "Phwt", "W8jt", "ddkb"], + "texture": 15 + }, + "iy6mUocz": { + "uv": { + "Phwt": [5.75, 1.75], + "TP88": [5.75, 1.25], + "qhSG": [5.25, 1.75], + "OJX9": [5.25, 1.25] + }, + "vertices": ["OJX9", "qhSG", "TP88", "Phwt"], + "texture": 15 + }, + "XcdOlphk": { + "uv": { + "qhSG": [6.75, 1.75], + "OJX9": [6.75, 1.25], + "2KFR": [6.25, 1.75], + "PZ0f": [6.25, 1.25] + }, + "vertices": ["PZ0f", "2KFR", "OJX9", "qhSG"], + "texture": 15 + }, + "SmiDIWsL": { + "uv": { + "8QjC": [7.25, 1.75], + "PZ0f": [7.25, 1.25], + "2KFR": [7.75, 1.25] + }, + "vertices": ["2KFR", "PZ0f", "8QjC"], + "texture": 15 + }, + "sHO7ks0Z": { + "uv": { + "u9P6": [8.25, 1.75], + "UuWY": [8.25, 1.25], + "rlja": [8.75, 1.25] + }, + "vertices": ["rlja", "UuWY", "u9P6"], + "texture": 15 + }, + "X1LTFYRX": { + "uv": { + "UuWY": [9.75, 1.75], + "rlja": [9.75, 1.25], + "rIID": [9.25, 1.75], + "ddkb": [9.25, 1.25] + }, + "vertices": ["ddkb", "rIID", "rlja", "UuWY"], + "texture": 15 + }, + "2yagsWv6": { + "uv": { + "rIID": [10.75, 1.75], + "ddkb": [10.75, 1.25], + "2eBc": [10.25, 1.75], + "Phwt": [10.25, 1.25] + }, + "vertices": ["Phwt", "2eBc", "ddkb", "rIID"], + "texture": 15 + }, + "XA5lNjst": { + "uv": { + "2eBc": [11.75, 1.75], + "Phwt": [11.75, 1.25], + "baM3": [11.25, 1.75], + "qhSG": [11.25, 1.25] + }, + "vertices": ["qhSG", "baM3", "Phwt", "2eBc"], + "texture": 15 + }, + "Ygcj4wdC": { + "uv": { + "baM3": [12.75, 1.75], + "qhSG": [12.75, 1.25], + "35RP": [12.25, 1.75], + "2KFR": [12.25, 1.25] + }, + "vertices": ["2KFR", "35RP", "qhSG", "baM3"], + "texture": 15 + }, + "m7Ce9uDx": { + "uv": { + "8QjC": [13.25, 1.75], + "2KFR": [13.25, 1.25], + "35RP": [13.75, 1.25] + }, + "vertices": ["35RP", "2KFR", "8QjC"], + "texture": 15 + }, + "MLo3SzB8": { + "uv": { + "u9P6": [14.25, 1.75], + "b4mn": [14.25, 1.25], + "UuWY": [14.75, 1.25] + }, + "vertices": ["UuWY", "b4mn", "u9P6"], + "texture": 15 + }, + "1rfpAtcz": { + "uv": { + "b4mn": [15.75, 1.75], + "UuWY": [15.75, 1.25], + "aLVc": [15.25, 1.75], + "rIID": [15.25, 1.25] + }, + "vertices": ["rIID", "aLVc", "UuWY", "b4mn"], + "texture": 15 + }, + "a42rImDx": { + "uv": { + "aLVc": [0.75, 2.75], + "rIID": [0.75, 2.25], + "KcNg": [0.25, 2.75], + "2eBc": [0.25, 2.25] + }, + "vertices": ["2eBc", "KcNg", "rIID", "aLVc"], + "texture": 15 + }, + "3vOJocS7": { + "uv": { + "KcNg": [1.75, 2.75], + "2eBc": [1.75, 2.25], + "ar6O": [1.25, 2.75], + "baM3": [1.25, 2.25] + }, + "vertices": ["baM3", "ar6O", "2eBc", "KcNg"], + "texture": 15 + }, + "D2Af9725": { + "uv": { + "ar6O": [2.75, 2.75], + "baM3": [2.75, 2.25], + "fZGN": [2.25, 2.75], + "35RP": [2.25, 2.25] + }, + "vertices": ["35RP", "fZGN", "baM3", "ar6O"], + "texture": 15 + }, + "VxgGZCf2": { + "uv": { + "8QjC": [3.25, 2.75], + "35RP": [3.25, 2.25], + "fZGN": [3.75, 2.25] + }, + "vertices": ["fZGN", "35RP", "8QjC"], + "texture": 15 + }, + "E1Intunq": { + "uv": { + "u9P6": [4.25, 2.75], + "nv85": [4.25, 2.25], + "b4mn": [4.75, 2.25] + }, + "vertices": ["b4mn", "nv85", "u9P6"], + "texture": 15 + }, + "ANsPkIUD": { + "uv": { + "nv85": [5.75, 2.75], + "b4mn": [5.75, 2.25], + "P9rX": [5.25, 2.75], + "aLVc": [5.25, 2.25] + }, + "vertices": ["aLVc", "P9rX", "b4mn", "nv85"], + "texture": 15 + }, + "hky4vXZs": { + "uv": { + "P9rX": [6.75, 2.75], + "aLVc": [6.75, 2.25], + "LfAz": [6.25, 2.75], + "KcNg": [6.25, 2.25] + }, + "vertices": ["KcNg", "LfAz", "aLVc", "P9rX"], + "texture": 15 + }, + "MdnWKrBw": { + "uv": { + "LfAz": [7.75, 2.75], + "KcNg": [7.75, 2.25], + "Aldt": [7.25, 2.75], + "ar6O": [7.25, 2.25] + }, + "vertices": ["ar6O", "Aldt", "KcNg", "LfAz"], + "texture": 15 + }, + "x5VkzqFN": { + "uv": { + "Aldt": [8.75, 2.75], + "ar6O": [8.75, 2.25], + "arCH": [8.25, 2.75], + "fZGN": [8.25, 2.25] + }, + "vertices": ["fZGN", "arCH", "ar6O", "Aldt"], + "texture": 15 + }, + "yR8j2fnY": { + "uv": { + "8QjC": [9.25, 2.75], + "fZGN": [9.25, 2.25], + "arCH": [9.75, 2.25] + }, + "vertices": ["arCH", "fZGN", "8QjC"], + "texture": 15 + }, + "hyLdc1Q6": { + "uv": { + "u9P6": [10.25, 2.75], + "azgg": [10.25, 2.25], + "nv85": [10.75, 2.25] + }, + "vertices": ["nv85", "azgg", "u9P6"], + "texture": 15 + }, + "A0sjcu7e": { + "uv": { + "azgg": [11.75, 2.75], + "nv85": [11.75, 2.25], + "5mdt": [11.25, 2.75], + "P9rX": [11.25, 2.25] + }, + "vertices": ["P9rX", "5mdt", "nv85", "azgg"], + "texture": 15 + }, + "nGDnWgSP": { + "uv": { + "5mdt": [12.75, 2.75], + "P9rX": [12.75, 2.25], + "f4nL": [12.25, 2.75], + "LfAz": [12.25, 2.25] + }, + "vertices": ["LfAz", "f4nL", "P9rX", "5mdt"], + "texture": 15 + }, + "vUpqRqbF": { + "uv": { + "f4nL": [13.75, 2.75], + "LfAz": [13.75, 2.25], + "IW10": [13.25, 2.75], + "Aldt": [13.25, 2.25] + }, + "vertices": ["Aldt", "IW10", "LfAz", "f4nL"], + "texture": 15 + }, + "s05slp5K": { + "uv": { + "IW10": [14.75, 2.75], + "Aldt": [14.75, 2.25], + "Vgik": [14.25, 2.75], + "arCH": [14.25, 2.25] + }, + "vertices": ["arCH", "Vgik", "Aldt", "IW10"], + "texture": 15 + }, + "Sxc6OKkK": { + "uv": { + "8QjC": [15.25, 2.75], + "arCH": [15.25, 2.25], + "Vgik": [15.75, 2.25] + }, + "vertices": ["Vgik", "arCH", "8QjC"], + "texture": 15 + }, + "X3nCaFBv": { + "uv": { + "u9P6": [0.25, 3.75], + "VqHR": [0.25, 3.25], + "azgg": [0.75, 3.25] + }, + "vertices": ["azgg", "VqHR", "u9P6"], + "texture": 15 + }, + "XamBI9pA": { + "uv": { + "VqHR": [1.75, 3.75], + "azgg": [1.75, 3.25], + "lr5A": [1.25, 3.75], + "5mdt": [1.25, 3.25] + }, + "vertices": ["5mdt", "lr5A", "azgg", "VqHR"], + "texture": 15 + }, + "zgN1GtnK": { + "uv": { + "lr5A": [2.75, 3.75], + "5mdt": [2.75, 3.25], + "F9rK": [2.25, 3.75], + "f4nL": [2.25, 3.25] + }, + "vertices": ["f4nL", "F9rK", "5mdt", "lr5A"], + "texture": 15 + }, + "FprSWSc8": { + "uv": { + "F9rK": [3.75, 3.75], + "f4nL": [3.75, 3.25], + "pQvi": [3.25, 3.75], + "IW10": [3.25, 3.25] + }, + "vertices": ["IW10", "pQvi", "f4nL", "F9rK"], + "texture": 15 + }, + "e9rnkzEJ": { + "uv": { + "pQvi": [4.75, 3.75], + "IW10": [4.75, 3.25], + "54OX": [4.25, 3.75], + "Vgik": [4.25, 3.25] + }, + "vertices": ["Vgik", "54OX", "IW10", "pQvi"], + "texture": 15 + }, + "OedC1Ope": { + "uv": { + "8QjC": [5.25, 3.75], + "Vgik": [5.25, 3.25], + "54OX": [5.75, 3.25] + }, + "vertices": ["54OX", "Vgik", "8QjC"], + "texture": 15 + }, + "lIt5gO7w": { + "uv": { + "u9P6": [6.25, 3.75], + "bC6k": [6.25, 3.25], + "VqHR": [6.75, 3.25] + }, + "vertices": ["VqHR", "bC6k", "u9P6"], + "texture": 15 + }, + "fiLiv4eu": { + "uv": { + "bC6k": [7.75, 3.75], + "VqHR": [7.75, 3.25], + "64eD": [7.25, 3.75], + "lr5A": [7.25, 3.25] + }, + "vertices": ["lr5A", "64eD", "VqHR", "bC6k"], + "texture": 15 + }, + "iTZHiYyz": { + "uv": { + "64eD": [8.75, 3.75], + "lr5A": [8.75, 3.25], + "8Z7A": [8.25, 3.75], + "F9rK": [8.25, 3.25] + }, + "vertices": ["F9rK", "8Z7A", "lr5A", "64eD"], + "texture": 15 + }, + "4qdXLnbR": { + "uv": { + "8Z7A": [9.75, 3.75], + "F9rK": [9.75, 3.25], + "nnBx": [9.25, 3.75], + "pQvi": [9.25, 3.25] + }, + "vertices": ["pQvi", "nnBx", "F9rK", "8Z7A"], + "texture": 15 + }, + "a4mGhICC": { + "uv": { + "nnBx": [10.75, 3.75], + "pQvi": [10.75, 3.25], + "sdgs": [10.25, 3.75], + "54OX": [10.25, 3.25] + }, + "vertices": ["54OX", "sdgs", "pQvi", "nnBx"], + "texture": 15 + }, + "SUg8IVYl": { + "uv": { + "8QjC": [11.25, 3.75], + "54OX": [11.25, 3.25], + "sdgs": [11.75, 3.25] + }, + "vertices": ["sdgs", "54OX", "8QjC"], + "texture": 15 + }, + "xtL7Hkve": { + "uv": { + "u9P6": [12.25, 3.75], + "B9HA": [12.25, 3.25], + "bC6k": [12.75, 3.25] + }, + "vertices": ["bC6k", "B9HA", "u9P6"], + "texture": 15 + }, + "JRIElpEj": { + "uv": { + "B9HA": [13.75, 3.75], + "bC6k": [13.75, 3.25], + "YR9K": [13.25, 3.75], + "64eD": [13.25, 3.25] + }, + "vertices": ["64eD", "YR9K", "bC6k", "B9HA"], + "texture": 15 + }, + "N6zi1Z8V": { + "uv": { + "YR9K": [14.75, 3.75], + "64eD": [14.75, 3.25], + "rBqN": [14.25, 3.75], + "8Z7A": [14.25, 3.25] + }, + "vertices": ["8Z7A", "rBqN", "64eD", "YR9K"], + "texture": 15 + }, + "EeFNXyFu": { + "uv": { + "rBqN": [15.75, 3.75], + "8Z7A": [15.75, 3.25], + "G7iR": [15.25, 3.75], + "nnBx": [15.25, 3.25] + }, + "vertices": ["nnBx", "G7iR", "8Z7A", "rBqN"], + "texture": 15 + }, + "HVtNylvy": { + "uv": { + "G7iR": [0.75, 4.75], + "nnBx": [0.75, 4.25], + "G7Yn": [0.25, 4.75], + "sdgs": [0.25, 4.25] + }, + "vertices": ["sdgs", "G7Yn", "nnBx", "G7iR"], + "texture": 15 + }, + "GuhboYu6": { + "uv": { + "8QjC": [1.25, 4.75], + "sdgs": [1.25, 4.25], + "G7Yn": [1.75, 4.25] + }, + "vertices": ["G7Yn", "sdgs", "8QjC"], + "texture": 15 + }, + "FatZEx29": { + "uv": { + "u9P6": [2.25, 4.75], + "3ZDT": [2.25, 4.25], + "B9HA": [2.75, 4.25] + }, + "vertices": ["B9HA", "3ZDT", "u9P6"], + "texture": 15 + }, + "WQlxRTJ0": { + "uv": { + "3ZDT": [3.75, 4.75], + "B9HA": [3.75, 4.25], + "zNGN": [3.25, 4.75], + "YR9K": [3.25, 4.25] + }, + "vertices": ["YR9K", "zNGN", "B9HA", "3ZDT"], + "texture": 15 + }, + "KLpy0qBF": { + "uv": { + "zNGN": [4.75, 4.75], + "YR9K": [4.75, 4.25], + "73Hf": [4.25, 4.75], + "rBqN": [4.25, 4.25] + }, + "vertices": ["rBqN", "73Hf", "YR9K", "zNGN"], + "texture": 15 + }, + "xp2sa1WG": { + "uv": { + "73Hf": [5.75, 4.75], + "rBqN": [5.75, 4.25], + "4ExO": [5.25, 4.75], + "G7iR": [5.25, 4.25] + }, + "vertices": ["G7iR", "4ExO", "rBqN", "73Hf"], + "texture": 15 + }, + "LXV1I4uf": { + "uv": { + "4ExO": [6.75, 4.75], + "G7iR": [6.75, 4.25], + "f7le": [6.25, 4.75], + "G7Yn": [6.25, 4.25] + }, + "vertices": ["G7Yn", "f7le", "G7iR", "4ExO"], + "texture": 15 + }, + "33MWdMUL": { + "uv": { + "8QjC": [7.25, 4.75], + "G7Yn": [7.25, 4.25], + "f7le": [7.75, 4.25] + }, + "vertices": ["f7le", "G7Yn", "8QjC"], + "texture": 15 + } + }, + "type": "mesh", + "uuid": "f82444f6-5fc6-10b8-7fe9-a96098de936d" + }, + { + "name": "outer", + "color": 8, + "origin": [0, 0, -13], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "8QjC": [0, -9, 0], + "u9P6": [0, 9, 0], + "3ZDT": [1.20577, 7.79423, 4.5], + "zNGN": [2.08846, 4.5, 7.79423], + "73Hf": [2.41154, 0, 9], + "4ExO": [2.08846, -4.5, 7.79423], + "f7le": [1.20577, -7.79423, 4.5], + "d0Pu": [3.29423, 7.79423, 3.29423], + "C5s3": [5.70577, 4.5, 5.70577], + "IS5N": [6.58846, 0, 6.58846], + "KeJY": [5.70577, -4.5, 5.70577], + "QpFb": [3.29423, -7.79423, 3.29423], + "8WEL": [4.5, 7.79423, 1.20577], + "KBoA": [7.79423, 4.5, 2.08846], + "UZLZ": [9, 0, 2.41154], + "S7bZ": [7.79423, -4.5, 2.08846], + "yocC": [4.5, -7.79423, 1.20577], + "8QT3": [4.5, 7.79423, -1.20577], + "W8jt": [7.79423, 4.5, -2.08846], + "TP88": [9, 0, -2.41154], + "OJX9": [7.79423, -4.5, -2.08846], + "PZ0f": [4.5, -7.79423, -1.20577], + "rlja": [3.29423, 7.79423, -3.29423], + "ddkb": [5.70577, 4.5, -5.70577], + "Phwt": [6.58846, 0, -6.58846], + "qhSG": [5.70577, -4.5, -5.70577], + "2KFR": [3.29423, -7.79423, -3.29423], + "UuWY": [1.20577, 7.79423, -4.5], + "rIID": [2.08846, 4.5, -7.79423], + "2eBc": [2.41154, 0, -9], + "baM3": [2.08846, -4.5, -7.79423], + "35RP": [1.20577, -7.79423, -4.5], + "b4mn": [-1.20577, 7.79423, -4.5], + "aLVc": [-2.08846, 4.5, -7.79423], + "KcNg": [-2.41154, 0, -9], + "ar6O": [-2.08846, -4.5, -7.79423], + "fZGN": [-1.20577, -7.79423, -4.5], + "nv85": [-3.29423, 7.79423, -3.29423], + "P9rX": [-5.70577, 4.5, -5.70577], + "LfAz": [-6.58846, 0, -6.58846], + "Aldt": [-5.70577, -4.5, -5.70577], + "arCH": [-3.29423, -7.79423, -3.29423], + "azgg": [-4.5, 7.79423, -1.20577], + "5mdt": [-7.79423, 4.5, -2.08846], + "f4nL": [-9, 0, -2.41154], + "IW10": [-7.79423, -4.5, -2.08846], + "Vgik": [-4.5, -7.79423, -1.20577], + "VqHR": [-4.5, 7.79423, 1.20577], + "lr5A": [-7.79423, 4.5, 2.08846], + "F9rK": [-9, 0, 2.41154], + "pQvi": [-7.79423, -4.5, 2.08846], + "54OX": [-4.5, -7.79423, 1.20577], + "bC6k": [-3.29423, 7.79423, 3.29423], + "64eD": [-5.70577, 4.5, 5.70577], + "8Z7A": [-6.58846, 0, 6.58846], + "nnBx": [-5.70577, -4.5, 5.70577], + "sdgs": [-3.29423, -7.79423, 3.29423], + "B9HA": [-1.20577, 7.79423, 4.5], + "YR9K": [-2.08846, 4.5, 7.79423], + "rBqN": [-2.41154, 0, 9], + "G7iR": [-2.08846, -4.5, 7.79423], + "G7Yn": [-1.20577, -7.79423, 4.5] + }, + "faces": { + "ZngK3IpC": { + "uv": { + "u9P6": [0.25, 0.75], + "3ZDT": [0.75, 0.25], + "d0Pu": [0.25, 0.25] + }, + "vertices": ["d0Pu", "3ZDT", "u9P6"], + "texture": 16 + }, + "L46i6DN5": { + "uv": { + "d0Pu": [1.75, 0.75], + "3ZDT": [1.75, 0.25], + "zNGN": [1.25, 0.25], + "C5s3": [1.25, 0.75] + }, + "vertices": ["C5s3", "zNGN", "3ZDT", "d0Pu"], + "texture": 16 + }, + "eNbWbFkk": { + "uv": { + "C5s3": [2.75, 0.75], + "zNGN": [2.75, 0.25], + "73Hf": [2.25, 0.25], + "IS5N": [2.25, 0.75] + }, + "vertices": ["IS5N", "73Hf", "zNGN", "C5s3"], + "texture": 16 + }, + "roTqvBDD": { + "uv": { + "IS5N": [3.75, 0.75], + "73Hf": [3.75, 0.25], + "4ExO": [3.25, 0.25], + "KeJY": [3.25, 0.75] + }, + "vertices": ["KeJY", "4ExO", "73Hf", "IS5N"], + "texture": 16 + }, + "H5SeHMdG": { + "uv": { + "KeJY": [4.75, 0.75], + "4ExO": [4.75, 0.25], + "f7le": [4.25, 0.25], + "QpFb": [4.25, 0.75] + }, + "vertices": ["QpFb", "f7le", "4ExO", "KeJY"], + "texture": 16 + }, + "9fOaMI7A": { + "uv": { + "8QjC": [5.25, 0.75], + "QpFb": [5.75, 0.25], + "f7le": [5.25, 0.25] + }, + "vertices": ["f7le", "QpFb", "8QjC"], + "texture": 16 + }, + "eHg0Xk2X": { + "uv": { + "u9P6": [6.25, 0.75], + "d0Pu": [6.75, 0.25], + "8WEL": [6.25, 0.25] + }, + "vertices": ["8WEL", "d0Pu", "u9P6"], + "texture": 16 + }, + "sRhLlJHL": { + "uv": { + "8WEL": [7.75, 0.75], + "d0Pu": [7.75, 0.25], + "C5s3": [7.25, 0.25], + "KBoA": [7.25, 0.75] + }, + "vertices": ["KBoA", "C5s3", "d0Pu", "8WEL"], + "texture": 16 + }, + "1hmcvGBk": { + "uv": { + "KBoA": [8.75, 0.75], + "C5s3": [8.75, 0.25], + "IS5N": [8.25, 0.25], + "UZLZ": [8.25, 0.75] + }, + "vertices": ["UZLZ", "IS5N", "C5s3", "KBoA"], + "texture": 16 + }, + "O4BJvLoN": { + "uv": { + "UZLZ": [9.75, 0.75], + "IS5N": [9.75, 0.25], + "KeJY": [9.25, 0.25], + "S7bZ": [9.25, 0.75] + }, + "vertices": ["S7bZ", "KeJY", "IS5N", "UZLZ"], + "texture": 16 + }, + "kx9KAAPA": { + "uv": { + "S7bZ": [10.75, 0.75], + "KeJY": [10.75, 0.25], + "QpFb": [10.25, 0.25], + "yocC": [10.25, 0.75] + }, + "vertices": ["yocC", "QpFb", "KeJY", "S7bZ"], + "texture": 16 + }, + "7xBzzsZo": { + "uv": { + "8QjC": [11.25, 0.75], + "yocC": [11.75, 0.25], + "QpFb": [11.25, 0.25] + }, + "vertices": ["QpFb", "yocC", "8QjC"], + "texture": 16 + }, + "uVFCvy3R": { + "uv": { + "u9P6": [12.25, 0.75], + "8WEL": [12.75, 0.25], + "8QT3": [12.25, 0.25] + }, + "vertices": ["8QT3", "8WEL", "u9P6"], + "texture": 16 + }, + "WaNtzBKB": { + "uv": { + "8QT3": [13.75, 0.75], + "8WEL": [13.75, 0.25], + "KBoA": [13.25, 0.25], + "W8jt": [13.25, 0.75] + }, + "vertices": ["W8jt", "KBoA", "8WEL", "8QT3"], + "texture": 16 + }, + "vTSW5OcT": { + "uv": { + "W8jt": [14.75, 0.75], + "KBoA": [14.75, 0.25], + "UZLZ": [14.25, 0.25], + "TP88": [14.25, 0.75] + }, + "vertices": ["TP88", "UZLZ", "KBoA", "W8jt"], + "texture": 16 + }, + "TUIIt1x5": { + "uv": { + "TP88": [15.75, 0.75], + "UZLZ": [15.75, 0.25], + "S7bZ": [15.25, 0.25], + "OJX9": [15.25, 0.75] + }, + "vertices": ["OJX9", "S7bZ", "UZLZ", "TP88"], + "texture": 16 + }, + "VvVgk78W": { + "uv": { + "OJX9": [0.75, 1.75], + "S7bZ": [0.75, 1.25], + "yocC": [0.25, 1.25], + "PZ0f": [0.25, 1.75] + }, + "vertices": ["PZ0f", "yocC", "S7bZ", "OJX9"], + "texture": 16 + }, + "MYvVN80s": { + "uv": { + "8QjC": [1.25, 1.75], + "PZ0f": [1.75, 1.25], + "yocC": [1.25, 1.25] + }, + "vertices": ["yocC", "PZ0f", "8QjC"], + "texture": 16 + }, + "Xxx3Dir0": { + "uv": { + "u9P6": [2.25, 1.75], + "8QT3": [2.75, 1.25], + "rlja": [2.25, 1.25] + }, + "vertices": ["rlja", "8QT3", "u9P6"], + "texture": 16 + }, + "wcliUruQ": { + "uv": { + "rlja": [3.75, 1.75], + "8QT3": [3.75, 1.25], + "W8jt": [3.25, 1.25], + "ddkb": [3.25, 1.75] + }, + "vertices": ["ddkb", "W8jt", "8QT3", "rlja"], + "texture": 16 + }, + "AC8pSweT": { + "uv": { + "ddkb": [4.75, 1.75], + "W8jt": [4.75, 1.25], + "TP88": [4.25, 1.25], + "Phwt": [4.25, 1.75] + }, + "vertices": ["Phwt", "TP88", "W8jt", "ddkb"], + "texture": 16 + }, + "iy6mUocz": { + "uv": { + "Phwt": [5.75, 1.75], + "TP88": [5.75, 1.25], + "OJX9": [5.25, 1.25], + "qhSG": [5.25, 1.75] + }, + "vertices": ["qhSG", "OJX9", "TP88", "Phwt"], + "texture": 16 + }, + "XcdOlphk": { + "uv": { + "qhSG": [6.75, 1.75], + "OJX9": [6.75, 1.25], + "PZ0f": [6.25, 1.25], + "2KFR": [6.25, 1.75] + }, + "vertices": ["2KFR", "PZ0f", "OJX9", "qhSG"], + "texture": 16 + }, + "SmiDIWsL": { + "uv": { + "8QjC": [7.25, 1.75], + "2KFR": [7.75, 1.25], + "PZ0f": [7.25, 1.25] + }, + "vertices": ["PZ0f", "2KFR", "8QjC"], + "texture": 16 + }, + "sHO7ks0Z": { + "uv": { + "u9P6": [8.25, 1.75], + "rlja": [8.75, 1.25], + "UuWY": [8.25, 1.25] + }, + "vertices": ["UuWY", "rlja", "u9P6"], + "texture": 16 + }, + "X1LTFYRX": { + "uv": { + "UuWY": [9.75, 1.75], + "rlja": [9.75, 1.25], + "ddkb": [9.25, 1.25], + "rIID": [9.25, 1.75] + }, + "vertices": ["rIID", "ddkb", "rlja", "UuWY"], + "texture": 16 + }, + "2yagsWv6": { + "uv": { + "rIID": [10.75, 1.75], + "ddkb": [10.75, 1.25], + "Phwt": [10.25, 1.25], + "2eBc": [10.25, 1.75] + }, + "vertices": ["2eBc", "Phwt", "ddkb", "rIID"], + "texture": 16 + }, + "XA5lNjst": { + "uv": { + "2eBc": [11.75, 1.75], + "Phwt": [11.75, 1.25], + "qhSG": [11.25, 1.25], + "baM3": [11.25, 1.75] + }, + "vertices": ["baM3", "qhSG", "Phwt", "2eBc"], + "texture": 16 + }, + "Ygcj4wdC": { + "uv": { + "baM3": [12.75, 1.75], + "qhSG": [12.75, 1.25], + "2KFR": [12.25, 1.25], + "35RP": [12.25, 1.75] + }, + "vertices": ["35RP", "2KFR", "qhSG", "baM3"], + "texture": 16 + }, + "m7Ce9uDx": { + "uv": { + "8QjC": [13.25, 1.75], + "35RP": [13.75, 1.25], + "2KFR": [13.25, 1.25] + }, + "vertices": ["2KFR", "35RP", "8QjC"], + "texture": 16 + }, + "MLo3SzB8": { + "uv": { + "u9P6": [14.25, 1.75], + "UuWY": [14.75, 1.25], + "b4mn": [14.25, 1.25] + }, + "vertices": ["b4mn", "UuWY", "u9P6"], + "texture": 16 + }, + "1rfpAtcz": { + "uv": { + "b4mn": [15.75, 1.75], + "UuWY": [15.75, 1.25], + "rIID": [15.25, 1.25], + "aLVc": [15.25, 1.75] + }, + "vertices": ["aLVc", "rIID", "UuWY", "b4mn"], + "texture": 16 + }, + "a42rImDx": { + "uv": { + "aLVc": [0.75, 2.75], + "rIID": [0.75, 2.25], + "2eBc": [0.25, 2.25], + "KcNg": [0.25, 2.75] + }, + "vertices": ["KcNg", "2eBc", "rIID", "aLVc"], + "texture": 16 + }, + "3vOJocS7": { + "uv": { + "KcNg": [1.75, 2.75], + "2eBc": [1.75, 2.25], + "baM3": [1.25, 2.25], + "ar6O": [1.25, 2.75] + }, + "vertices": ["ar6O", "baM3", "2eBc", "KcNg"], + "texture": 16 + }, + "D2Af9725": { + "uv": { + "ar6O": [2.75, 2.75], + "baM3": [2.75, 2.25], + "35RP": [2.25, 2.25], + "fZGN": [2.25, 2.75] + }, + "vertices": ["fZGN", "35RP", "baM3", "ar6O"], + "texture": 16 + }, + "VxgGZCf2": { + "uv": { + "8QjC": [3.25, 2.75], + "fZGN": [3.75, 2.25], + "35RP": [3.25, 2.25] + }, + "vertices": ["35RP", "fZGN", "8QjC"], + "texture": 16 + }, + "E1Intunq": { + "uv": { + "u9P6": [4.25, 2.75], + "b4mn": [4.75, 2.25], + "nv85": [4.25, 2.25] + }, + "vertices": ["nv85", "b4mn", "u9P6"], + "texture": 16 + }, + "ANsPkIUD": { + "uv": { + "nv85": [5.75, 2.75], + "b4mn": [5.75, 2.25], + "aLVc": [5.25, 2.25], + "P9rX": [5.25, 2.75] + }, + "vertices": ["P9rX", "aLVc", "b4mn", "nv85"], + "texture": 16 + }, + "hky4vXZs": { + "uv": { + "P9rX": [6.75, 2.75], + "aLVc": [6.75, 2.25], + "KcNg": [6.25, 2.25], + "LfAz": [6.25, 2.75] + }, + "vertices": ["LfAz", "KcNg", "aLVc", "P9rX"], + "texture": 16 + }, + "MdnWKrBw": { + "uv": { + "LfAz": [7.75, 2.75], + "KcNg": [7.75, 2.25], + "ar6O": [7.25, 2.25], + "Aldt": [7.25, 2.75] + }, + "vertices": ["Aldt", "ar6O", "KcNg", "LfAz"], + "texture": 16 + }, + "x5VkzqFN": { + "uv": { + "Aldt": [8.75, 2.75], + "ar6O": [8.75, 2.25], + "fZGN": [8.25, 2.25], + "arCH": [8.25, 2.75] + }, + "vertices": ["arCH", "fZGN", "ar6O", "Aldt"], + "texture": 16 + }, + "yR8j2fnY": { + "uv": { + "8QjC": [9.25, 2.75], + "arCH": [9.75, 2.25], + "fZGN": [9.25, 2.25] + }, + "vertices": ["fZGN", "arCH", "8QjC"], + "texture": 16 + }, + "hyLdc1Q6": { + "uv": { + "u9P6": [10.25, 2.75], + "nv85": [10.75, 2.25], + "azgg": [10.25, 2.25] + }, + "vertices": ["azgg", "nv85", "u9P6"], + "texture": 16 + }, + "A0sjcu7e": { + "uv": { + "azgg": [11.75, 2.75], + "nv85": [11.75, 2.25], + "P9rX": [11.25, 2.25], + "5mdt": [11.25, 2.75] + }, + "vertices": ["5mdt", "P9rX", "nv85", "azgg"], + "texture": 16 + }, + "nGDnWgSP": { + "uv": { + "5mdt": [12.75, 2.75], + "P9rX": [12.75, 2.25], + "LfAz": [12.25, 2.25], + "f4nL": [12.25, 2.75] + }, + "vertices": ["f4nL", "LfAz", "P9rX", "5mdt"], + "texture": 16 + }, + "vUpqRqbF": { + "uv": { + "f4nL": [13.75, 2.75], + "LfAz": [13.75, 2.25], + "Aldt": [13.25, 2.25], + "IW10": [13.25, 2.75] + }, + "vertices": ["IW10", "Aldt", "LfAz", "f4nL"], + "texture": 16 + }, + "s05slp5K": { + "uv": { + "IW10": [14.75, 2.75], + "Aldt": [14.75, 2.25], + "arCH": [14.25, 2.25], + "Vgik": [14.25, 2.75] + }, + "vertices": ["Vgik", "arCH", "Aldt", "IW10"], + "texture": 16 + }, + "Sxc6OKkK": { + "uv": { + "8QjC": [15.25, 2.75], + "Vgik": [15.75, 2.25], + "arCH": [15.25, 2.25] + }, + "vertices": ["arCH", "Vgik", "8QjC"], + "texture": 16 + }, + "X3nCaFBv": { + "uv": { + "u9P6": [0.25, 3.75], + "azgg": [0.75, 3.25], + "VqHR": [0.25, 3.25] + }, + "vertices": ["VqHR", "azgg", "u9P6"], + "texture": 16 + }, + "XamBI9pA": { + "uv": { + "VqHR": [1.75, 3.75], + "azgg": [1.75, 3.25], + "5mdt": [1.25, 3.25], + "lr5A": [1.25, 3.75] + }, + "vertices": ["lr5A", "5mdt", "azgg", "VqHR"], + "texture": 16 + }, + "zgN1GtnK": { + "uv": { + "lr5A": [2.75, 3.75], + "5mdt": [2.75, 3.25], + "f4nL": [2.25, 3.25], + "F9rK": [2.25, 3.75] + }, + "vertices": ["F9rK", "f4nL", "5mdt", "lr5A"], + "texture": 16 + }, + "FprSWSc8": { + "uv": { + "F9rK": [3.75, 3.75], + "f4nL": [3.75, 3.25], + "IW10": [3.25, 3.25], + "pQvi": [3.25, 3.75] + }, + "vertices": ["pQvi", "IW10", "f4nL", "F9rK"], + "texture": 16 + }, + "e9rnkzEJ": { + "uv": { + "pQvi": [4.75, 3.75], + "IW10": [4.75, 3.25], + "Vgik": [4.25, 3.25], + "54OX": [4.25, 3.75] + }, + "vertices": ["54OX", "Vgik", "IW10", "pQvi"], + "texture": 16 + }, + "OedC1Ope": { + "uv": { + "8QjC": [5.25, 3.75], + "54OX": [5.75, 3.25], + "Vgik": [5.25, 3.25] + }, + "vertices": ["Vgik", "54OX", "8QjC"], + "texture": 16 + }, + "lIt5gO7w": { + "uv": { + "u9P6": [6.25, 3.75], + "VqHR": [6.75, 3.25], + "bC6k": [6.25, 3.25] + }, + "vertices": ["bC6k", "VqHR", "u9P6"], + "texture": 16 + }, + "fiLiv4eu": { + "uv": { + "bC6k": [7.75, 3.75], + "VqHR": [7.75, 3.25], + "lr5A": [7.25, 3.25], + "64eD": [7.25, 3.75] + }, + "vertices": ["64eD", "lr5A", "VqHR", "bC6k"], + "texture": 16 + }, + "iTZHiYyz": { + "uv": { + "64eD": [8.75, 3.75], + "lr5A": [8.75, 3.25], + "F9rK": [8.25, 3.25], + "8Z7A": [8.25, 3.75] + }, + "vertices": ["8Z7A", "F9rK", "lr5A", "64eD"], + "texture": 16 + }, + "4qdXLnbR": { + "uv": { + "8Z7A": [9.75, 3.75], + "F9rK": [9.75, 3.25], + "pQvi": [9.25, 3.25], + "nnBx": [9.25, 3.75] + }, + "vertices": ["nnBx", "pQvi", "F9rK", "8Z7A"], + "texture": 16 + }, + "a4mGhICC": { + "uv": { + "nnBx": [10.75, 3.75], + "pQvi": [10.75, 3.25], + "54OX": [10.25, 3.25], + "sdgs": [10.25, 3.75] + }, + "vertices": ["sdgs", "54OX", "pQvi", "nnBx"], + "texture": 16 + }, + "SUg8IVYl": { + "uv": { + "8QjC": [11.25, 3.75], + "sdgs": [11.75, 3.25], + "54OX": [11.25, 3.25] + }, + "vertices": ["54OX", "sdgs", "8QjC"], + "texture": 16 + }, + "xtL7Hkve": { + "uv": { + "u9P6": [12.25, 3.75], + "bC6k": [12.75, 3.25], + "B9HA": [12.25, 3.25] + }, + "vertices": ["B9HA", "bC6k", "u9P6"], + "texture": 16 + }, + "JRIElpEj": { + "uv": { + "B9HA": [13.75, 3.75], + "bC6k": [13.75, 3.25], + "64eD": [13.25, 3.25], + "YR9K": [13.25, 3.75] + }, + "vertices": ["YR9K", "64eD", "bC6k", "B9HA"], + "texture": 16 + }, + "N6zi1Z8V": { + "uv": { + "YR9K": [14.75, 3.75], + "64eD": [14.75, 3.25], + "8Z7A": [14.25, 3.25], + "rBqN": [14.25, 3.75] + }, + "vertices": ["rBqN", "8Z7A", "64eD", "YR9K"], + "texture": 16 + }, + "EeFNXyFu": { + "uv": { + "rBqN": [15.75, 3.75], + "8Z7A": [15.75, 3.25], + "nnBx": [15.25, 3.25], + "G7iR": [15.25, 3.75] + }, + "vertices": ["G7iR", "nnBx", "8Z7A", "rBqN"], + "texture": 16 + }, + "HVtNylvy": { + "uv": { + "G7iR": [0.75, 4.75], + "nnBx": [0.75, 4.25], + "sdgs": [0.25, 4.25], + "G7Yn": [0.25, 4.75] + }, + "vertices": ["G7Yn", "sdgs", "nnBx", "G7iR"], + "texture": 16 + }, + "GuhboYu6": { + "uv": { + "8QjC": [1.25, 4.75], + "G7Yn": [1.75, 4.25], + "sdgs": [1.25, 4.25] + }, + "vertices": ["sdgs", "G7Yn", "8QjC"], + "texture": 16 + }, + "FatZEx29": { + "uv": { + "u9P6": [2.25, 4.75], + "B9HA": [2.75, 4.25], + "3ZDT": [2.25, 4.25] + }, + "vertices": ["3ZDT", "B9HA", "u9P6"], + "texture": 16 + }, + "WQlxRTJ0": { + "uv": { + "3ZDT": [3.75, 4.75], + "B9HA": [3.75, 4.25], + "YR9K": [3.25, 4.25], + "zNGN": [3.25, 4.75] + }, + "vertices": ["zNGN", "YR9K", "B9HA", "3ZDT"], + "texture": 16 + }, + "KLpy0qBF": { + "uv": { + "zNGN": [4.75, 4.75], + "YR9K": [4.75, 4.25], + "rBqN": [4.25, 4.25], + "73Hf": [4.25, 4.75] + }, + "vertices": ["73Hf", "rBqN", "YR9K", "zNGN"], + "texture": 16 + }, + "xp2sa1WG": { + "uv": { + "73Hf": [5.75, 4.75], + "rBqN": [5.75, 4.25], + "G7iR": [5.25, 4.25], + "4ExO": [5.25, 4.75] + }, + "vertices": ["4ExO", "G7iR", "rBqN", "73Hf"], + "texture": 16 + }, + "LXV1I4uf": { + "uv": { + "4ExO": [6.75, 4.75], + "G7iR": [6.75, 4.25], + "G7Yn": [6.25, 4.25], + "f7le": [6.25, 4.75] + }, + "vertices": ["f7le", "G7Yn", "G7iR", "4ExO"], + "texture": 16 + }, + "33MWdMUL": { + "uv": { + "8QjC": [7.25, 4.75], + "f7le": [7.75, 4.25], + "G7Yn": [7.25, 4.25] + }, + "vertices": ["G7Yn", "f7le", "8QjC"], + "texture": 16 + } + }, + "type": "mesh", + "uuid": "1ec366b1-93b9-555f-aeb7-e8056b56f334" + }, + { + "name": "inner", + "color": 8, + "origin": [0, 0, -13], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "8QjC": [0, -8, 0], + "zNGN": [2.17795, 178, 8.1282], + "73Hf": [2.14359, 0, 8], + "4ExO": [1.85641, -4, 6.9282], + "f7le": [1.0718, -6.9282, 4], + "C5s3": [5.95026, 175, 5.95026], + "IS5N": [5.85641, 0, 5.85641], + "KeJY": [5.0718, -4, 5.0718], + "QpFb": [2.9282, -6.9282, 2.9282], + "KBoA": [8.1282, 175, 2.17795], + "UZLZ": [8, 0, 2.14359], + "S7bZ": [6.9282, -4, 1.85641], + "yocC": [4, -6.9282, 1.0718], + "W8jt": [8.1282, 175, -2.17795], + "TP88": [8, 0, -2.14359], + "OJX9": [6.9282, -4, -1.85641], + "PZ0f": [4, -6.9282, -1.0718], + "ddkb": [5.95026, 178, -5.95026], + "Phwt": [5.85641, 0, -5.85641], + "qhSG": [5.0718, -4, -5.0718], + "2KFR": [2.9282, -6.9282, -2.9282], + "rIID": [2.17795, 178, -8.1282], + "2eBc": [2.14359, 0, -8], + "baM3": [1.85641, -4, -6.9282], + "35RP": [1.0718, -6.9282, -4], + "aLVc": [-2.17795, 178, -8.1282], + "KcNg": [-2.14359, 0, -8], + "ar6O": [-1.85641, -4, -6.9282], + "fZGN": [-1.0718, -6.9282, -4], + "P9rX": [-5.95026, 178, -5.95026], + "LfAz": [-5.85641, 0, -5.85641], + "Aldt": [-5.0718, -4, -5.0718], + "arCH": [-2.9282, -6.9282, -2.9282], + "5mdt": [-8.1282, 178, -2.17795], + "f4nL": [-8, 0, -2.14359], + "IW10": [-6.9282, -4, -1.85641], + "Vgik": [-4, -6.9282, -1.0718], + "lr5A": [-8.1282, 178, 2.17795], + "F9rK": [-8, 0, 2.14359], + "pQvi": [-6.9282, -4, 1.85641], + "54OX": [-4, -6.9282, 1.0718], + "64eD": [-5.95026, 178, 5.95026], + "8Z7A": [-5.85641, 0, 5.85641], + "nnBx": [-5.0718, -4, 5.0718], + "sdgs": [-2.9282, -6.9282, 2.9282], + "YR9K": [-2.17795, 178, 8.1282], + "rBqN": [-2.14359, 0, 8], + "G7iR": [-1.85641, -4, 6.9282], + "G7Yn": [-1.0718, -6.9282, 4], + "orU0": [1.17879, 182.83876, 4.39931], + "YyBo": [3.22052, 182.83876, 3.22052], + "vhJJ": [0, 183, 0], + "90Fb": [2.05628, 182.82495, 7.67415], + "HfsY": [5.61787, 182.82495, 5.61787], + "OwBJ": [4.39931, 182.83876, 1.17879], + "9RbY": [7.67415, 182.82495, 2.05628], + "tWGi": [4.39931, 182.83876, -1.17879], + "rwOP": [7.67415, 182.82495, -2.05628], + "AYq6": [3.22052, 182.83876, -3.22052], + "Clz7": [5.61787, 182.82495, -5.61787], + "13x6": [1.17879, 182.83876, -4.39931], + "7asH": [2.05628, 182.82495, -7.67415], + "53PY": [-1.17879, 182.83876, -4.39931], + "NsXb": [-2.05628, 182.82495, -7.67415], + "cf6G": [-3.22052, 182.83876, -3.22052], + "6L0d": [-5.61787, 182.82495, -5.61787], + "8i9k": [-4.39931, 182.83876, -1.17879], + "odwY": [-7.67415, 182.82495, -2.05628], + "bedr": [-4.39931, 182.83876, 1.17879], + "mRE8": [-7.67415, 182.82495, 2.05628], + "VCA7": [-3.22052, 182.83876, 3.22052], + "g8AY": [-5.61787, 182.82495, 5.61787], + "IcjH": [-1.17879, 182.83876, 4.39931], + "Cmxu": [-2.05628, 182.82495, 7.67415] + }, + "faces": { + "ZngK3IpC": { + "uv": { + "vhJJ": [0.25, 0.75], + "orU0": [0.75, 0.25], + "YyBo": [0.25, 0.25] + }, + "vertices": ["YyBo", "orU0", "vhJJ"], + "texture": 15 + }, + "L46i6DN5": { + "uv": { + "YyBo": [1.75, 0.75], + "orU0": [1.75, 0.25], + "90Fb": [1.25, 0.25], + "HfsY": [1.25, 0.75] + }, + "vertices": ["HfsY", "90Fb", "orU0", "YyBo"], + "texture": 15 + }, + "eNbWbFkk": { + "uv": { + "C5s3": [2.75, 0.75], + "zNGN": [2.75, 0.25], + "73Hf": [2.25, 0.25], + "IS5N": [2.25, 0.75] + }, + "vertices": ["IS5N", "73Hf", "zNGN", "C5s3"], + "texture": 15 + }, + "roTqvBDD": { + "uv": { + "IS5N": [3.75, 0.75], + "73Hf": [3.75, 0.25], + "4ExO": [3.25, 0.25], + "KeJY": [3.25, 0.75] + }, + "vertices": ["KeJY", "4ExO", "73Hf", "IS5N"], + "texture": 15 + }, + "H5SeHMdG": { + "uv": { + "KeJY": [4.75, 0.75], + "4ExO": [4.75, 0.25], + "f7le": [4.25, 0.25], + "QpFb": [4.25, 0.75] + }, + "vertices": ["QpFb", "f7le", "4ExO", "KeJY"], + "texture": 15 + }, + "9fOaMI7A": { + "uv": { + "8QjC": [5.25, 0.75], + "QpFb": [5.75, 0.25], + "f7le": [5.25, 0.25] + }, + "vertices": ["f7le", "QpFb", "8QjC"], + "texture": 15 + }, + "eHg0Xk2X": { + "uv": { + "vhJJ": [6.25, 0.75], + "YyBo": [6.75, 0.25], + "OwBJ": [6.25, 0.25] + }, + "vertices": ["OwBJ", "YyBo", "vhJJ"], + "texture": 15 + }, + "sRhLlJHL": { + "uv": { + "OwBJ": [7.75, 0.75], + "YyBo": [7.75, 0.25], + "HfsY": [7.25, 0.25], + "9RbY": [7.25, 0.75] + }, + "vertices": ["9RbY", "HfsY", "YyBo", "OwBJ"], + "texture": 15 + }, + "1hmcvGBk": { + "uv": { + "KBoA": [8.75, 0.75], + "C5s3": [8.75, 0.25], + "IS5N": [8.25, 0.25], + "UZLZ": [8.25, 0.75] + }, + "vertices": ["UZLZ", "IS5N", "C5s3", "KBoA"], + "texture": 15 + }, + "O4BJvLoN": { + "uv": { + "UZLZ": [9.75, 0.75], + "IS5N": [9.75, 0.25], + "KeJY": [9.25, 0.25], + "S7bZ": [9.25, 0.75] + }, + "vertices": ["S7bZ", "KeJY", "IS5N", "UZLZ"], + "texture": 15 + }, + "kx9KAAPA": { + "uv": { + "S7bZ": [10.75, 0.75], + "KeJY": [10.75, 0.25], + "QpFb": [10.25, 0.25], + "yocC": [10.25, 0.75] + }, + "vertices": ["yocC", "QpFb", "KeJY", "S7bZ"], + "texture": 15 + }, + "7xBzzsZo": { + "uv": { + "8QjC": [11.25, 0.75], + "yocC": [11.75, 0.25], + "QpFb": [11.25, 0.25] + }, + "vertices": ["QpFb", "yocC", "8QjC"], + "texture": 15 + }, + "uVFCvy3R": { + "uv": { + "vhJJ": [12.25, 0.75], + "OwBJ": [12.75, 0.25], + "tWGi": [12.25, 0.25] + }, + "vertices": ["tWGi", "OwBJ", "vhJJ"], + "texture": 15 + }, + "WaNtzBKB": { + "uv": { + "tWGi": [13.75, 0.75], + "OwBJ": [13.75, 0.25], + "9RbY": [13.25, 0.25], + "rwOP": [13.25, 0.75] + }, + "vertices": ["rwOP", "9RbY", "OwBJ", "tWGi"], + "texture": 15 + }, + "vTSW5OcT": { + "uv": { + "W8jt": [14.75, 0.75], + "KBoA": [14.75, 0.25], + "UZLZ": [14.25, 0.25], + "TP88": [14.25, 0.75] + }, + "vertices": ["TP88", "UZLZ", "KBoA", "W8jt"], + "texture": 15 + }, + "TUIIt1x5": { + "uv": { + "TP88": [15.75, 0.75], + "UZLZ": [15.75, 0.25], + "S7bZ": [15.25, 0.25], + "OJX9": [15.25, 0.75] + }, + "vertices": ["OJX9", "S7bZ", "UZLZ", "TP88"], + "texture": 15 + }, + "VvVgk78W": { + "uv": { + "OJX9": [0.75, 1.75], + "S7bZ": [0.75, 1.25], + "yocC": [0.25, 1.25], + "PZ0f": [0.25, 1.75] + }, + "vertices": ["PZ0f", "yocC", "S7bZ", "OJX9"], + "texture": 15 + }, + "MYvVN80s": { + "uv": { + "8QjC": [1.25, 1.75], + "PZ0f": [1.75, 1.25], + "yocC": [1.25, 1.25] + }, + "vertices": ["yocC", "PZ0f", "8QjC"], + "texture": 15 + }, + "Xxx3Dir0": { + "uv": { + "vhJJ": [2.25, 1.75], + "tWGi": [2.75, 1.25], + "AYq6": [2.25, 1.25] + }, + "vertices": ["AYq6", "tWGi", "vhJJ"], + "texture": 15 + }, + "wcliUruQ": { + "uv": { + "AYq6": [3.75, 1.75], + "tWGi": [3.75, 1.25], + "rwOP": [3.25, 1.25], + "Clz7": [3.25, 1.75] + }, + "vertices": ["Clz7", "rwOP", "tWGi", "AYq6"], + "texture": 15 + }, + "AC8pSweT": { + "uv": { + "ddkb": [4.75, 1.75], + "W8jt": [4.75, 1.25], + "TP88": [4.25, 1.25], + "Phwt": [4.25, 1.75] + }, + "vertices": ["Phwt", "TP88", "W8jt", "ddkb"], + "texture": 15 + }, + "iy6mUocz": { + "uv": { + "Phwt": [5.75, 1.75], + "TP88": [5.75, 1.25], + "OJX9": [5.25, 1.25], + "qhSG": [5.25, 1.75] + }, + "vertices": ["qhSG", "OJX9", "TP88", "Phwt"], + "texture": 15 + }, + "XcdOlphk": { + "uv": { + "qhSG": [6.75, 1.75], + "OJX9": [6.75, 1.25], + "PZ0f": [6.25, 1.25], + "2KFR": [6.25, 1.75] + }, + "vertices": ["2KFR", "PZ0f", "OJX9", "qhSG"], + "texture": 15 + }, + "SmiDIWsL": { + "uv": { + "8QjC": [7.25, 1.75], + "2KFR": [7.75, 1.25], + "PZ0f": [7.25, 1.25] + }, + "vertices": ["PZ0f", "2KFR", "8QjC"], + "texture": 15 + }, + "sHO7ks0Z": { + "uv": { + "vhJJ": [8.25, 1.75], + "AYq6": [8.75, 1.25], + "13x6": [8.25, 1.25] + }, + "vertices": ["13x6", "AYq6", "vhJJ"], + "texture": 15 + }, + "X1LTFYRX": { + "uv": { + "13x6": [9.75, 1.75], + "AYq6": [9.75, 1.25], + "Clz7": [9.25, 1.25], + "7asH": [9.25, 1.75] + }, + "vertices": ["7asH", "Clz7", "AYq6", "13x6"], + "texture": 15 + }, + "2yagsWv6": { + "uv": { + "rIID": [10.75, 1.75], + "ddkb": [10.75, 1.25], + "Phwt": [10.25, 1.25], + "2eBc": [10.25, 1.75] + }, + "vertices": ["2eBc", "Phwt", "ddkb", "rIID"], + "texture": 15 + }, + "XA5lNjst": { + "uv": { + "2eBc": [11.75, 1.75], + "Phwt": [11.75, 1.25], + "qhSG": [11.25, 1.25], + "baM3": [11.25, 1.75] + }, + "vertices": ["baM3", "qhSG", "Phwt", "2eBc"], + "texture": 15 + }, + "Ygcj4wdC": { + "uv": { + "baM3": [12.75, 1.75], + "qhSG": [12.75, 1.25], + "2KFR": [12.25, 1.25], + "35RP": [12.25, 1.75] + }, + "vertices": ["35RP", "2KFR", "qhSG", "baM3"], + "texture": 15 + }, + "m7Ce9uDx": { + "uv": { + "8QjC": [13.25, 1.75], + "35RP": [13.75, 1.25], + "2KFR": [13.25, 1.25] + }, + "vertices": ["2KFR", "35RP", "8QjC"], + "texture": 15 + }, + "MLo3SzB8": { + "uv": { + "vhJJ": [14.25, 1.75], + "13x6": [14.75, 1.25], + "53PY": [14.25, 1.25] + }, + "vertices": ["53PY", "13x6", "vhJJ"], + "texture": 15 + }, + "1rfpAtcz": { + "uv": { + "53PY": [15.75, 1.75], + "13x6": [15.75, 1.25], + "7asH": [15.25, 1.25], + "NsXb": [15.25, 1.75] + }, + "vertices": ["NsXb", "7asH", "13x6", "53PY"], + "texture": 15 + }, + "a42rImDx": { + "uv": { + "aLVc": [0.75, 2.75], + "rIID": [0.75, 2.25], + "2eBc": [0.25, 2.25], + "KcNg": [0.25, 2.75] + }, + "vertices": ["KcNg", "2eBc", "rIID", "aLVc"], + "texture": 15 + }, + "3vOJocS7": { + "uv": { + "KcNg": [1.75, 2.75], + "2eBc": [1.75, 2.25], + "baM3": [1.25, 2.25], + "ar6O": [1.25, 2.75] + }, + "vertices": ["ar6O", "baM3", "2eBc", "KcNg"], + "texture": 15 + }, + "D2Af9725": { + "uv": { + "ar6O": [2.75, 2.75], + "baM3": [2.75, 2.25], + "35RP": [2.25, 2.25], + "fZGN": [2.25, 2.75] + }, + "vertices": ["fZGN", "35RP", "baM3", "ar6O"], + "texture": 15 + }, + "VxgGZCf2": { + "uv": { + "8QjC": [3.25, 2.75], + "fZGN": [3.75, 2.25], + "35RP": [3.25, 2.25] + }, + "vertices": ["35RP", "fZGN", "8QjC"], + "texture": 15 + }, + "E1Intunq": { + "uv": { + "vhJJ": [4.25, 2.75], + "53PY": [4.75, 2.25], + "cf6G": [4.25, 2.25] + }, + "vertices": ["cf6G", "53PY", "vhJJ"], + "texture": 15 + }, + "ANsPkIUD": { + "uv": { + "cf6G": [5.75, 2.75], + "53PY": [5.75, 2.25], + "NsXb": [5.25, 2.25], + "6L0d": [5.25, 2.75] + }, + "vertices": ["6L0d", "NsXb", "53PY", "cf6G"], + "texture": 15 + }, + "hky4vXZs": { + "uv": { + "P9rX": [6.75, 2.75], + "aLVc": [6.75, 2.25], + "KcNg": [6.25, 2.25], + "LfAz": [6.25, 2.75] + }, + "vertices": ["LfAz", "KcNg", "aLVc", "P9rX"], + "texture": 15 + }, + "MdnWKrBw": { + "uv": { + "LfAz": [7.75, 2.75], + "KcNg": [7.75, 2.25], + "ar6O": [7.25, 2.25], + "Aldt": [7.25, 2.75] + }, + "vertices": ["Aldt", "ar6O", "KcNg", "LfAz"], + "texture": 15 + }, + "x5VkzqFN": { + "uv": { + "Aldt": [8.75, 2.75], + "ar6O": [8.75, 2.25], + "fZGN": [8.25, 2.25], + "arCH": [8.25, 2.75] + }, + "vertices": ["arCH", "fZGN", "ar6O", "Aldt"], + "texture": 15 + }, + "yR8j2fnY": { + "uv": { + "8QjC": [9.25, 2.75], + "arCH": [9.75, 2.25], + "fZGN": [9.25, 2.25] + }, + "vertices": ["fZGN", "arCH", "8QjC"], + "texture": 15 + }, + "hyLdc1Q6": { + "uv": { + "vhJJ": [10.25, 2.75], + "cf6G": [10.75, 2.25], + "8i9k": [10.25, 2.25] + }, + "vertices": ["8i9k", "cf6G", "vhJJ"], + "texture": 15 + }, + "A0sjcu7e": { + "uv": { + "8i9k": [11.75, 2.75], + "cf6G": [11.75, 2.25], + "6L0d": [11.25, 2.25], + "odwY": [11.25, 2.75] + }, + "vertices": ["odwY", "6L0d", "cf6G", "8i9k"], + "texture": 15 + }, + "nGDnWgSP": { + "uv": { + "5mdt": [12.75, 2.75], + "P9rX": [12.75, 2.25], + "LfAz": [12.25, 2.25], + "f4nL": [12.25, 2.75] + }, + "vertices": ["f4nL", "LfAz", "P9rX", "5mdt"], + "texture": 15 + }, + "vUpqRqbF": { + "uv": { + "f4nL": [13.75, 2.75], + "LfAz": [13.75, 2.25], + "Aldt": [13.25, 2.25], + "IW10": [13.25, 2.75] + }, + "vertices": ["IW10", "Aldt", "LfAz", "f4nL"], + "texture": 15 + }, + "s05slp5K": { + "uv": { + "IW10": [14.75, 2.75], + "Aldt": [14.75, 2.25], + "arCH": [14.25, 2.25], + "Vgik": [14.25, 2.75] + }, + "vertices": ["Vgik", "arCH", "Aldt", "IW10"], + "texture": 15 + }, + "Sxc6OKkK": { + "uv": { + "8QjC": [15.25, 2.75], + "Vgik": [15.75, 2.25], + "arCH": [15.25, 2.25] + }, + "vertices": ["arCH", "Vgik", "8QjC"], + "texture": 15 + }, + "X3nCaFBv": { + "uv": { + "vhJJ": [0.25, 3.75], + "8i9k": [0.75, 3.25], + "bedr": [0.25, 3.25] + }, + "vertices": ["bedr", "8i9k", "vhJJ"], + "texture": 15 + }, + "XamBI9pA": { + "uv": { + "bedr": [1.75, 3.75], + "8i9k": [1.75, 3.25], + "odwY": [1.25, 3.25], + "mRE8": [1.25, 3.75] + }, + "vertices": ["mRE8", "odwY", "8i9k", "bedr"], + "texture": 15 + }, + "zgN1GtnK": { + "uv": { + "lr5A": [2.75, 3.75], + "5mdt": [2.75, 3.25], + "f4nL": [2.25, 3.25], + "F9rK": [2.25, 3.75] + }, + "vertices": ["F9rK", "f4nL", "5mdt", "lr5A"], + "texture": 15 + }, + "FprSWSc8": { + "uv": { + "F9rK": [3.75, 3.75], + "f4nL": [3.75, 3.25], + "IW10": [3.25, 3.25], + "pQvi": [3.25, 3.75] + }, + "vertices": ["pQvi", "IW10", "f4nL", "F9rK"], + "texture": 15 + }, + "e9rnkzEJ": { + "uv": { + "pQvi": [4.75, 3.75], + "IW10": [4.75, 3.25], + "Vgik": [4.25, 3.25], + "54OX": [4.25, 3.75] + }, + "vertices": ["54OX", "Vgik", "IW10", "pQvi"], + "texture": 15 + }, + "OedC1Ope": { + "uv": { + "8QjC": [5.25, 3.75], + "54OX": [5.75, 3.25], + "Vgik": [5.25, 3.25] + }, + "vertices": ["Vgik", "54OX", "8QjC"], + "texture": 15 + }, + "lIt5gO7w": { + "uv": { + "vhJJ": [6.25, 3.75], + "bedr": [6.75, 3.25], + "VCA7": [6.25, 3.25] + }, + "vertices": ["VCA7", "bedr", "vhJJ"], + "texture": 15 + }, + "fiLiv4eu": { + "uv": { + "VCA7": [7.75, 3.75], + "bedr": [7.75, 3.25], + "mRE8": [7.25, 3.25], + "g8AY": [7.25, 3.75] + }, + "vertices": ["g8AY", "mRE8", "bedr", "VCA7"], + "texture": 15 + }, + "iTZHiYyz": { + "uv": { + "64eD": [8.75, 3.75], + "lr5A": [8.75, 3.25], + "F9rK": [8.25, 3.25], + "8Z7A": [8.25, 3.75] + }, + "vertices": ["8Z7A", "F9rK", "lr5A", "64eD"], + "texture": 15 + }, + "4qdXLnbR": { + "uv": { + "8Z7A": [9.75, 3.75], + "F9rK": [9.75, 3.25], + "pQvi": [9.25, 3.25], + "nnBx": [9.25, 3.75] + }, + "vertices": ["nnBx", "pQvi", "F9rK", "8Z7A"], + "texture": 15 + }, + "a4mGhICC": { + "uv": { + "nnBx": [10.75, 3.75], + "pQvi": [10.75, 3.25], + "54OX": [10.25, 3.25], + "sdgs": [10.25, 3.75] + }, + "vertices": ["sdgs", "54OX", "pQvi", "nnBx"], + "texture": 15 + }, + "SUg8IVYl": { + "uv": { + "8QjC": [11.25, 3.75], + "sdgs": [11.75, 3.25], + "54OX": [11.25, 3.25] + }, + "vertices": ["54OX", "sdgs", "8QjC"], + "texture": 15 + }, + "xtL7Hkve": { + "uv": { + "vhJJ": [12.25, 3.75], + "VCA7": [12.75, 3.25], + "IcjH": [12.25, 3.25] + }, + "vertices": ["IcjH", "VCA7", "vhJJ"], + "texture": 15 + }, + "JRIElpEj": { + "uv": { + "IcjH": [13.75, 3.75], + "VCA7": [13.75, 3.25], + "g8AY": [13.25, 3.25], + "Cmxu": [13.25, 3.75] + }, + "vertices": ["Cmxu", "g8AY", "VCA7", "IcjH"], + "texture": 15 + }, + "N6zi1Z8V": { + "uv": { + "YR9K": [14.75, 3.75], + "64eD": [14.75, 3.25], + "8Z7A": [14.25, 3.25], + "rBqN": [14.25, 3.75] + }, + "vertices": ["rBqN", "8Z7A", "64eD", "YR9K"], + "texture": 15 + }, + "EeFNXyFu": { + "uv": { + "rBqN": [15.75, 3.75], + "8Z7A": [15.75, 3.25], + "nnBx": [15.25, 3.25], + "G7iR": [15.25, 3.75] + }, + "vertices": ["G7iR", "nnBx", "8Z7A", "rBqN"], + "texture": 15 + }, + "HVtNylvy": { + "uv": { + "G7iR": [0.75, 4.75], + "nnBx": [0.75, 4.25], + "sdgs": [0.25, 4.25], + "G7Yn": [0.25, 4.75] + }, + "vertices": ["G7Yn", "sdgs", "nnBx", "G7iR"], + "texture": 15 + }, + "GuhboYu6": { + "uv": { + "8QjC": [1.25, 4.75], + "G7Yn": [1.75, 4.25], + "sdgs": [1.25, 4.25] + }, + "vertices": ["sdgs", "G7Yn", "8QjC"], + "texture": 15 + }, + "FatZEx29": { + "uv": { + "vhJJ": [2.25, 4.75], + "IcjH": [2.75, 4.25], + "orU0": [2.25, 4.25] + }, + "vertices": ["orU0", "IcjH", "vhJJ"], + "texture": 15 + }, + "WQlxRTJ0": { + "uv": { + "orU0": [3.75, 4.75], + "IcjH": [3.75, 4.25], + "Cmxu": [3.25, 4.25], + "90Fb": [3.25, 4.75] + }, + "vertices": ["90Fb", "Cmxu", "IcjH", "orU0"], + "texture": 15 + }, + "KLpy0qBF": { + "uv": { + "zNGN": [4.75, 4.75], + "YR9K": [4.75, 4.25], + "rBqN": [4.25, 4.25], + "73Hf": [4.25, 4.75] + }, + "vertices": ["73Hf", "rBqN", "YR9K", "zNGN"], + "texture": 15 + }, + "xp2sa1WG": { + "uv": { + "73Hf": [5.75, 4.75], + "rBqN": [5.75, 4.25], + "G7iR": [5.25, 4.25], + "4ExO": [5.25, 4.75] + }, + "vertices": ["4ExO", "G7iR", "rBqN", "73Hf"], + "texture": 15 + }, + "LXV1I4uf": { + "uv": { + "4ExO": [6.75, 4.75], + "G7iR": [6.75, 4.25], + "G7Yn": [6.25, 4.25], + "f7le": [6.25, 4.75] + }, + "vertices": ["f7le", "G7Yn", "G7iR", "4ExO"], + "texture": 15 + }, + "33MWdMUL": { + "uv": { + "8QjC": [7.25, 4.75], + "f7le": [7.75, 4.25], + "G7Yn": [7.25, 4.25] + }, + "vertices": ["G7Yn", "f7le", "8QjC"], + "texture": 15 + }, + "nvCDOv6y": { + "uv": { + "C5s3": [4.5021, 0.9892], + "zNGN": [0.1463, 0.9892], + "HfsY": [4.6484, 0], + "90Fb": [0, 0] + }, + "vertices": ["90Fb", "HfsY", "zNGN", "C5s3"], + "texture": 15 + }, + "yfWtEI7A": { + "uv": { + "KBoA": [6.5021, 0.9892], + "C5s3": [2.1463, 0.9892], + "9RbY": [6.6484, 0], + "HfsY": [2, 0] + }, + "vertices": ["HfsY", "9RbY", "C5s3", "KBoA"], + "texture": 15 + }, + "ocFuf3xz": { + "uv": { + "W8jt": [9.5021, 0.9892], + "KBoA": [5.1463, 0.9892], + "rwOP": [9.6484, 0], + "9RbY": [5, 0] + }, + "vertices": ["9RbY", "rwOP", "KBoA", "W8jt"], + "texture": 15 + }, + "eulgYJCm": { + "uv": { + "ddkb": [4.5021, 0.9892], + "W8jt": [0.1463, 0.9892], + "Clz7": [4.6484, 0], + "rwOP": [0, 0] + }, + "vertices": ["rwOP", "Clz7", "W8jt", "ddkb"], + "texture": 15 + }, + "qSrVFTTR": { + "uv": { + "rIID": [7.5021, 0.9892], + "ddkb": [3.1463, 0.9892], + "7asH": [7.6484, 0], + "Clz7": [3, 0] + }, + "vertices": ["Clz7", "7asH", "ddkb", "rIID"], + "texture": 15 + }, + "5HJj304c": { + "uv": { + "aLVc": [10.5021, 0.9892], + "rIID": [6.1463, 0.9892], + "NsXb": [10.6484, 0], + "7asH": [6, 0] + }, + "vertices": ["7asH", "NsXb", "rIID", "aLVc"], + "texture": 15 + }, + "UY5zSthE": { + "uv": { + "P9rX": [5.5021, 0.9892], + "aLVc": [1.1463, 0.9892], + "6L0d": [5.6484, 0], + "NsXb": [1, 0] + }, + "vertices": ["NsXb", "6L0d", "aLVc", "P9rX"], + "texture": 15 + }, + "dKCOWHfj": { + "uv": { + "5mdt": [8.5021, 0.9892], + "P9rX": [4.1463, 0.9892], + "odwY": [8.6484, 0], + "6L0d": [4, 0] + }, + "vertices": ["6L0d", "odwY", "P9rX", "5mdt"], + "texture": 15 + }, + "aGdI6sMr": { + "uv": { + "lr5A": [4.5021, 1.9892], + "5mdt": [0.1463, 1.9892], + "mRE8": [4.6484, 1], + "odwY": [0, 1] + }, + "vertices": ["odwY", "mRE8", "5mdt", "lr5A"], + "texture": 15 + }, + "NgqcgSvB": { + "uv": { + "64eD": [6.5021, 1.9892], + "lr5A": [2.1463, 1.9892], + "g8AY": [6.6484, 1], + "mRE8": [2, 1] + }, + "vertices": ["mRE8", "g8AY", "lr5A", "64eD"], + "texture": 15 + }, + "cSZhnQck": { + "uv": { + "YR9K": [9.5021, 1.9892], + "64eD": [5.1463, 1.9892], + "Cmxu": [9.6484, 1], + "g8AY": [5, 1] + }, + "vertices": ["g8AY", "Cmxu", "64eD", "YR9K"], + "texture": 15 + }, + "dqNbUXu2": { + "uv": { + "zNGN": [4.5021, 1.9892], + "YR9K": [0.1463, 1.9892], + "90Fb": [4.6484, 1], + "Cmxu": [0, 1] + }, + "vertices": ["Cmxu", "90Fb", "YR9K", "zNGN"], + "texture": 15 + } + }, + "type": "mesh", + "uuid": "b377a19e-e6a7-3f1c-6037-2542bb7d7e02" + }, + { + "name": "outer", + "color": 8, + "origin": [0, -0.25, -13], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "8QjC": [0, -8.25, 0], + "zNGN": [2.31192, 178.1859, 8.6282], + "73Hf": [2.27546, -0.14744, 8.49211], + "4ExO": [1.9706, -4.19872, 7.35439], + "f7le": [1.13773, -7.16446, 4.24606], + "C5s3": [6.31628, 175.14744, 6.31628], + "IS5N": [6.21666, -0.1859, 6.21666], + "KeJY": [5.38378, -4.19872, 5.38378], + "QpFb": [3.10833, -7.16446, 3.10833], + "KBoA": [8.6282, 175.14744, 2.31192], + "UZLZ": [8.49211, -0.1859, 2.27546], + "S7bZ": [7.35439, -4.19872, 1.9706], + "yocC": [4.24606, -7.16446, 1.13773], + "W8jt": [8.6282, 175.14744, -2.31192], + "TP88": [8.49211, -0.1859, -2.27546], + "OJX9": [7.35439, -4.19872, -1.9706], + "PZ0f": [4.24606, -7.16446, -1.13773], + "ddkb": [6.31628, 178.1859, -6.31628], + "Phwt": [6.21666, -0.14744, -6.21666], + "qhSG": [5.38378, -4.19872, -5.38378], + "2KFR": [3.10833, -7.16446, -3.10833], + "rIID": [2.31192, 178.1859, -8.6282], + "2eBc": [2.27546, -0.14744, -8.49211], + "baM3": [1.9706, -4.19872, -7.35439], + "35RP": [1.13773, -7.16446, -4.24606], + "aLVc": [-2.31192, 178.1859, -8.6282], + "KcNg": [-2.27546, -0.14744, -8.49211], + "ar6O": [-1.9706, -4.19872, -7.35439], + "fZGN": [-1.13773, -7.16446, -4.24606], + "P9rX": [-6.31628, 178.1859, -6.31628], + "LfAz": [-6.21666, -0.14744, -6.21666], + "Aldt": [-5.38378, -4.19872, -5.38378], + "arCH": [-3.10833, -7.16446, -3.10833], + "5mdt": [-8.6282, 178.1859, -2.31192], + "f4nL": [-8.49211, -0.14744, -2.27546], + "IW10": [-7.35439, -4.19872, -1.9706], + "Vgik": [-4.24606, -7.16446, -1.13773], + "lr5A": [-8.6282, 178.1859, 2.31192], + "F9rK": [-8.49211, -0.14744, 2.27546], + "pQvi": [-7.35439, -4.19872, 1.9706], + "54OX": [-4.24606, -7.16446, 1.13773], + "64eD": [-6.31628, 178.1859, 6.31628], + "8Z7A": [-6.21666, -0.14744, 6.21666], + "nnBx": [-5.38378, -4.19872, 5.38378], + "sdgs": [-3.10833, -7.16446, 3.10833], + "YR9K": [-2.31192, 178.1859, 8.6282], + "rBqN": [-2.27546, -0.14744, 8.49211], + "G7iR": [-1.9706, -4.19872, 7.35439], + "G7Yn": [-1.13773, -7.16446, 4.24606], + "orU0": [1.2513, 183.08669, 4.66993], + "YyBo": [3.41862, 183.08669, 3.41862], + "vhJJ": [0, 183.25, 0], + "90Fb": [2.18277, 183.0727, 8.14622], + "HfsY": [5.96345, 183.0727, 5.96345], + "OwBJ": [4.66993, 183.08669, 1.2513], + "9RbY": [8.14622, 183.0727, 2.18277], + "tWGi": [4.66993, 183.08669, -1.2513], + "rwOP": [8.14622, 183.0727, -2.18277], + "AYq6": [3.41862, 183.08669, -3.41862], + "Clz7": [5.96345, 183.0727, -5.96345], + "13x6": [1.2513, 183.08669, -4.66993], + "7asH": [2.18277, 183.0727, -8.14622], + "53PY": [-1.2513, 183.08669, -4.66993], + "NsXb": [-2.18277, 183.0727, -8.14622], + "cf6G": [-3.41862, 183.08669, -3.41862], + "6L0d": [-5.96345, 183.0727, -5.96345], + "8i9k": [-4.66993, 183.08669, -1.2513], + "odwY": [-8.14622, 183.0727, -2.18277], + "bedr": [-4.66993, 183.08669, 1.2513], + "mRE8": [-8.14622, 183.0727, 2.18277], + "VCA7": [-3.41862, 183.08669, 3.41862], + "g8AY": [-5.96345, 183.0727, 5.96345], + "IcjH": [-1.2513, 183.08669, 4.66993], + "Cmxu": [-2.18277, 183.0727, 8.14622] + }, + "faces": { + "ZngK3IpC": { + "uv": { + "vhJJ": [0.12302, 0.75], + "orU0": [0.36905, 0.25], + "YyBo": [0.12302, 0.25] + }, + "vertices": ["YyBo", "orU0", "vhJJ"], + "texture": 16 + }, + "L46i6DN5": { + "uv": { + "YyBo": [0.86111, 0.75], + "orU0": [0.86111, 0.25], + "90Fb": [0.61508, 0.25], + "HfsY": [0.61508, 0.75] + }, + "vertices": ["HfsY", "90Fb", "orU0", "YyBo"], + "texture": 16 + }, + "eNbWbFkk": { + "uv": { + "C5s3": [1.35317, 0.75], + "zNGN": [1.35317, 0.25], + "73Hf": [1.10714, 0.25], + "IS5N": [1.10714, 0.75] + }, + "vertices": ["IS5N", "73Hf", "zNGN", "C5s3"], + "texture": 16 + }, + "roTqvBDD": { + "uv": { + "IS5N": [1.84524, 0.75], + "73Hf": [1.84524, 0.25], + "4ExO": [1.59921, 0.25], + "KeJY": [1.59921, 0.75] + }, + "vertices": ["KeJY", "4ExO", "73Hf", "IS5N"], + "texture": 16 + }, + "H5SeHMdG": { + "uv": { + "KeJY": [2.3373, 0.75], + "4ExO": [2.3373, 0.25], + "f7le": [2.09127, 0.25], + "QpFb": [2.09127, 0.75] + }, + "vertices": ["QpFb", "f7le", "4ExO", "KeJY"], + "texture": 16 + }, + "9fOaMI7A": { + "uv": { + "8QjC": [2.58333, 0.75], + "QpFb": [2.82937, 0.25], + "f7le": [2.58333, 0.25] + }, + "vertices": ["f7le", "QpFb", "8QjC"], + "texture": 16 + }, + "eHg0Xk2X": { + "uv": { + "vhJJ": [3.0754, 0.75], + "YyBo": [3.32143, 0.25], + "OwBJ": [3.0754, 0.25] + }, + "vertices": ["OwBJ", "YyBo", "vhJJ"], + "texture": 16 + }, + "sRhLlJHL": { + "uv": { + "OwBJ": [3.81349, 0.75], + "YyBo": [3.81349, 0.25], + "HfsY": [3.56746, 0.25], + "9RbY": [3.56746, 0.75] + }, + "vertices": ["9RbY", "HfsY", "YyBo", "OwBJ"], + "texture": 16 + }, + "1hmcvGBk": { + "uv": { + "KBoA": [4.30556, 0.75], + "C5s3": [4.30556, 0.25], + "IS5N": [4.05952, 0.25], + "UZLZ": [4.05952, 0.75] + }, + "vertices": ["UZLZ", "IS5N", "C5s3", "KBoA"], + "texture": 16 + }, + "O4BJvLoN": { + "uv": { + "UZLZ": [4.79762, 0.75], + "IS5N": [4.79762, 0.25], + "KeJY": [4.55159, 0.25], + "S7bZ": [4.55159, 0.75] + }, + "vertices": ["S7bZ", "KeJY", "IS5N", "UZLZ"], + "texture": 16 + }, + "kx9KAAPA": { + "uv": { + "S7bZ": [5.28968, 0.75], + "KeJY": [5.28968, 0.25], + "QpFb": [5.04365, 0.25], + "yocC": [5.04365, 0.75] + }, + "vertices": ["yocC", "QpFb", "KeJY", "S7bZ"], + "texture": 16 + }, + "7xBzzsZo": { + "uv": { + "8QjC": [5.53571, 0.75], + "yocC": [5.78175, 0.25], + "QpFb": [5.53571, 0.25] + }, + "vertices": ["QpFb", "yocC", "8QjC"], + "texture": 16 + }, + "uVFCvy3R": { + "uv": { + "vhJJ": [6.02778, 0.75], + "OwBJ": [6.27381, 0.25], + "tWGi": [6.02778, 0.25] + }, + "vertices": ["tWGi", "OwBJ", "vhJJ"], + "texture": 16 + }, + "WaNtzBKB": { + "uv": { + "tWGi": [6.76587, 0.75], + "OwBJ": [6.76587, 0.25], + "9RbY": [6.51984, 0.25], + "rwOP": [6.51984, 0.75] + }, + "vertices": ["rwOP", "9RbY", "OwBJ", "tWGi"], + "texture": 16 + }, + "vTSW5OcT": { + "uv": { + "W8jt": [7.25794, 0.75], + "KBoA": [7.25794, 0.25], + "UZLZ": [7.0119, 0.25], + "TP88": [7.0119, 0.75] + }, + "vertices": ["TP88", "UZLZ", "KBoA", "W8jt"], + "texture": 16 + }, + "TUIIt1x5": { + "uv": { + "TP88": [7.75, 0.75], + "UZLZ": [7.75, 0.25], + "S7bZ": [7.50397, 0.25], + "OJX9": [7.50397, 0.75] + }, + "vertices": ["OJX9", "S7bZ", "UZLZ", "TP88"], + "texture": 16 + }, + "VvVgk78W": { + "uv": { + "OJX9": [0.36905, 1.75], + "S7bZ": [0.36905, 1.25], + "yocC": [0.12302, 1.25], + "PZ0f": [0.12302, 1.75] + }, + "vertices": ["PZ0f", "yocC", "S7bZ", "OJX9"], + "texture": 16 + }, + "MYvVN80s": { + "uv": { + "8QjC": [0.61508, 1.75], + "PZ0f": [0.86111, 1.25], + "yocC": [0.61508, 1.25] + }, + "vertices": ["yocC", "PZ0f", "8QjC"], + "texture": 16 + }, + "Xxx3Dir0": { + "uv": { + "vhJJ": [1.10714, 1.75], + "tWGi": [1.35317, 1.25], + "AYq6": [1.10714, 1.25] + }, + "vertices": ["AYq6", "tWGi", "vhJJ"], + "texture": 16 + }, + "wcliUruQ": { + "uv": { + "AYq6": [1.84524, 1.75], + "tWGi": [1.84524, 1.25], + "rwOP": [1.59921, 1.25], + "Clz7": [1.59921, 1.75] + }, + "vertices": ["Clz7", "rwOP", "tWGi", "AYq6"], + "texture": 16 + }, + "AC8pSweT": { + "uv": { + "ddkb": [2.3373, 1.75], + "W8jt": [2.3373, 1.25], + "TP88": [2.09127, 1.25], + "Phwt": [2.09127, 1.75] + }, + "vertices": ["Phwt", "TP88", "W8jt", "ddkb"], + "texture": 16 + }, + "iy6mUocz": { + "uv": { + "Phwt": [2.82937, 1.75], + "TP88": [2.82937, 1.25], + "OJX9": [2.58333, 1.25], + "qhSG": [2.58333, 1.75] + }, + "vertices": ["qhSG", "OJX9", "TP88", "Phwt"], + "texture": 16 + }, + "XcdOlphk": { + "uv": { + "qhSG": [3.32143, 1.75], + "OJX9": [3.32143, 1.25], + "PZ0f": [3.0754, 1.25], + "2KFR": [3.0754, 1.75] + }, + "vertices": ["2KFR", "PZ0f", "OJX9", "qhSG"], + "texture": 16 + }, + "SmiDIWsL": { + "uv": { + "8QjC": [3.56746, 1.75], + "2KFR": [3.81349, 1.25], + "PZ0f": [3.56746, 1.25] + }, + "vertices": ["PZ0f", "2KFR", "8QjC"], + "texture": 16 + }, + "sHO7ks0Z": { + "uv": { + "vhJJ": [4.05952, 1.75], + "AYq6": [4.30556, 1.25], + "13x6": [4.05952, 1.25] + }, + "vertices": ["13x6", "AYq6", "vhJJ"], + "texture": 16 + }, + "X1LTFYRX": { + "uv": { + "13x6": [4.79762, 1.75], + "AYq6": [4.79762, 1.25], + "Clz7": [4.55159, 1.25], + "7asH": [4.55159, 1.75] + }, + "vertices": ["7asH", "Clz7", "AYq6", "13x6"], + "texture": 16 + }, + "2yagsWv6": { + "uv": { + "rIID": [5.28968, 1.75], + "ddkb": [5.28968, 1.25], + "Phwt": [5.04365, 1.25], + "2eBc": [5.04365, 1.75] + }, + "vertices": ["2eBc", "Phwt", "ddkb", "rIID"], + "texture": 16 + }, + "XA5lNjst": { + "uv": { + "2eBc": [5.78175, 1.75], + "Phwt": [5.78175, 1.25], + "qhSG": [5.53571, 1.25], + "baM3": [5.53571, 1.75] + }, + "vertices": ["baM3", "qhSG", "Phwt", "2eBc"], + "texture": 16 + }, + "Ygcj4wdC": { + "uv": { + "baM3": [6.27381, 1.75], + "qhSG": [6.27381, 1.25], + "2KFR": [6.02778, 1.25], + "35RP": [6.02778, 1.75] + }, + "vertices": ["35RP", "2KFR", "qhSG", "baM3"], + "texture": 16 + }, + "m7Ce9uDx": { + "uv": { + "8QjC": [6.51984, 1.75], + "35RP": [6.76587, 1.25], + "2KFR": [6.51984, 1.25] + }, + "vertices": ["2KFR", "35RP", "8QjC"], + "texture": 16 + }, + "MLo3SzB8": { + "uv": { + "vhJJ": [7.0119, 1.75], + "13x6": [7.25794, 1.25], + "53PY": [7.0119, 1.25] + }, + "vertices": ["53PY", "13x6", "vhJJ"], + "texture": 16 + }, + "1rfpAtcz": { + "uv": { + "53PY": [7.75, 1.75], + "13x6": [7.75, 1.25], + "7asH": [7.50397, 1.25], + "NsXb": [7.50397, 1.75] + }, + "vertices": ["NsXb", "7asH", "13x6", "53PY"], + "texture": 16 + }, + "a42rImDx": { + "uv": { + "aLVc": [0.36905, 2.75], + "rIID": [0.36905, 2.25], + "2eBc": [0.12302, 2.25], + "KcNg": [0.12302, 2.75] + }, + "vertices": ["KcNg", "2eBc", "rIID", "aLVc"], + "texture": 16 + }, + "3vOJocS7": { + "uv": { + "KcNg": [0.86111, 2.75], + "2eBc": [0.86111, 2.25], + "baM3": [0.61508, 2.25], + "ar6O": [0.61508, 2.75] + }, + "vertices": ["ar6O", "baM3", "2eBc", "KcNg"], + "texture": 16 + }, + "D2Af9725": { + "uv": { + "ar6O": [1.35317, 2.75], + "baM3": [1.35317, 2.25], + "35RP": [1.10714, 2.25], + "fZGN": [1.10714, 2.75] + }, + "vertices": ["fZGN", "35RP", "baM3", "ar6O"], + "texture": 16 + }, + "VxgGZCf2": { + "uv": { + "8QjC": [1.59921, 2.75], + "fZGN": [1.84524, 2.25], + "35RP": [1.59921, 2.25] + }, + "vertices": ["35RP", "fZGN", "8QjC"], + "texture": 16 + }, + "E1Intunq": { + "uv": { + "vhJJ": [2.09127, 2.75], + "53PY": [2.3373, 2.25], + "cf6G": [2.09127, 2.25] + }, + "vertices": ["cf6G", "53PY", "vhJJ"], + "texture": 16 + }, + "ANsPkIUD": { + "uv": { + "cf6G": [2.82937, 2.75], + "53PY": [2.82937, 2.25], + "NsXb": [2.58333, 2.25], + "6L0d": [2.58333, 2.75] + }, + "vertices": ["6L0d", "NsXb", "53PY", "cf6G"], + "texture": 16 + }, + "hky4vXZs": { + "uv": { + "P9rX": [3.32143, 2.75], + "aLVc": [3.32143, 2.25], + "KcNg": [3.0754, 2.25], + "LfAz": [3.0754, 2.75] + }, + "vertices": ["LfAz", "KcNg", "aLVc", "P9rX"], + "texture": 16 + }, + "MdnWKrBw": { + "uv": { + "LfAz": [3.81349, 2.75], + "KcNg": [3.81349, 2.25], + "ar6O": [3.56746, 2.25], + "Aldt": [3.56746, 2.75] + }, + "vertices": ["Aldt", "ar6O", "KcNg", "LfAz"], + "texture": 16 + }, + "x5VkzqFN": { + "uv": { + "Aldt": [4.30556, 2.75], + "ar6O": [4.30556, 2.25], + "fZGN": [4.05952, 2.25], + "arCH": [4.05952, 2.75] + }, + "vertices": ["arCH", "fZGN", "ar6O", "Aldt"], + "texture": 16 + }, + "yR8j2fnY": { + "uv": { + "8QjC": [4.55159, 2.75], + "arCH": [4.79762, 2.25], + "fZGN": [4.55159, 2.25] + }, + "vertices": ["fZGN", "arCH", "8QjC"], + "texture": 16 + }, + "hyLdc1Q6": { + "uv": { + "vhJJ": [5.04365, 2.75], + "cf6G": [5.28968, 2.25], + "8i9k": [5.04365, 2.25] + }, + "vertices": ["8i9k", "cf6G", "vhJJ"], + "texture": 16 + }, + "A0sjcu7e": { + "uv": { + "8i9k": [5.78175, 2.75], + "cf6G": [5.78175, 2.25], + "6L0d": [5.53571, 2.25], + "odwY": [5.53571, 2.75] + }, + "vertices": ["odwY", "6L0d", "cf6G", "8i9k"], + "texture": 16 + }, + "nGDnWgSP": { + "uv": { + "5mdt": [6.27381, 2.75], + "P9rX": [6.27381, 2.25], + "LfAz": [6.02778, 2.25], + "f4nL": [6.02778, 2.75] + }, + "vertices": ["f4nL", "LfAz", "P9rX", "5mdt"], + "texture": 16 + }, + "vUpqRqbF": { + "uv": { + "f4nL": [6.76587, 2.75], + "LfAz": [6.76587, 2.25], + "Aldt": [6.51984, 2.25], + "IW10": [6.51984, 2.75] + }, + "vertices": ["IW10", "Aldt", "LfAz", "f4nL"], + "texture": 16 + }, + "s05slp5K": { + "uv": { + "IW10": [7.25794, 2.75], + "Aldt": [7.25794, 2.25], + "arCH": [7.0119, 2.25], + "Vgik": [7.0119, 2.75] + }, + "vertices": ["Vgik", "arCH", "Aldt", "IW10"], + "texture": 16 + }, + "Sxc6OKkK": { + "uv": { + "8QjC": [7.50397, 2.75], + "Vgik": [7.75, 2.25], + "arCH": [7.50397, 2.25] + }, + "vertices": ["arCH", "Vgik", "8QjC"], + "texture": 16 + }, + "X3nCaFBv": { + "uv": { + "vhJJ": [0.12302, 3.75], + "8i9k": [0.36905, 3.25], + "bedr": [0.12302, 3.25] + }, + "vertices": ["bedr", "8i9k", "vhJJ"], + "texture": 16 + }, + "XamBI9pA": { + "uv": { + "bedr": [0.86111, 3.75], + "8i9k": [0.86111, 3.25], + "odwY": [0.61508, 3.25], + "mRE8": [0.61508, 3.75] + }, + "vertices": ["mRE8", "odwY", "8i9k", "bedr"], + "texture": 16 + }, + "zgN1GtnK": { + "uv": { + "lr5A": [1.35317, 3.75], + "5mdt": [1.35317, 3.25], + "f4nL": [1.10714, 3.25], + "F9rK": [1.10714, 3.75] + }, + "vertices": ["F9rK", "f4nL", "5mdt", "lr5A"], + "texture": 16 + }, + "FprSWSc8": { + "uv": { + "F9rK": [1.84524, 3.75], + "f4nL": [1.84524, 3.25], + "IW10": [1.59921, 3.25], + "pQvi": [1.59921, 3.75] + }, + "vertices": ["pQvi", "IW10", "f4nL", "F9rK"], + "texture": 16 + }, + "e9rnkzEJ": { + "uv": { + "pQvi": [2.3373, 3.75], + "IW10": [2.3373, 3.25], + "Vgik": [2.09127, 3.25], + "54OX": [2.09127, 3.75] + }, + "vertices": ["54OX", "Vgik", "IW10", "pQvi"], + "texture": 16 + }, + "OedC1Ope": { + "uv": { + "8QjC": [2.58333, 3.75], + "54OX": [2.82937, 3.25], + "Vgik": [2.58333, 3.25] + }, + "vertices": ["Vgik", "54OX", "8QjC"], + "texture": 16 + }, + "lIt5gO7w": { + "uv": { + "vhJJ": [3.0754, 3.75], + "bedr": [3.32143, 3.25], + "VCA7": [3.0754, 3.25] + }, + "vertices": ["VCA7", "bedr", "vhJJ"], + "texture": 16 + }, + "fiLiv4eu": { + "uv": { + "VCA7": [3.81349, 3.75], + "bedr": [3.81349, 3.25], + "mRE8": [3.56746, 3.25], + "g8AY": [3.56746, 3.75] + }, + "vertices": ["g8AY", "mRE8", "bedr", "VCA7"], + "texture": 16 + }, + "iTZHiYyz": { + "uv": { + "64eD": [4.30556, 3.75], + "lr5A": [4.30556, 3.25], + "F9rK": [4.05952, 3.25], + "8Z7A": [4.05952, 3.75] + }, + "vertices": ["8Z7A", "F9rK", "lr5A", "64eD"], + "texture": 16 + }, + "4qdXLnbR": { + "uv": { + "8Z7A": [4.79762, 3.75], + "F9rK": [4.79762, 3.25], + "pQvi": [4.55159, 3.25], + "nnBx": [4.55159, 3.75] + }, + "vertices": ["nnBx", "pQvi", "F9rK", "8Z7A"], + "texture": 16 + }, + "a4mGhICC": { + "uv": { + "nnBx": [5.28968, 3.75], + "pQvi": [5.28968, 3.25], + "54OX": [5.04365, 3.25], + "sdgs": [5.04365, 3.75] + }, + "vertices": ["sdgs", "54OX", "pQvi", "nnBx"], + "texture": 16 + }, + "SUg8IVYl": { + "uv": { + "8QjC": [5.53571, 3.75], + "sdgs": [5.78175, 3.25], + "54OX": [5.53571, 3.25] + }, + "vertices": ["54OX", "sdgs", "8QjC"], + "texture": 16 + }, + "xtL7Hkve": { + "uv": { + "vhJJ": [6.02778, 3.75], + "VCA7": [6.27381, 3.25], + "IcjH": [6.02778, 3.25] + }, + "vertices": ["IcjH", "VCA7", "vhJJ"], + "texture": 16 + }, + "JRIElpEj": { + "uv": { + "IcjH": [6.76587, 3.75], + "VCA7": [6.76587, 3.25], + "g8AY": [6.51984, 3.25], + "Cmxu": [6.51984, 3.75] + }, + "vertices": ["Cmxu", "g8AY", "VCA7", "IcjH"], + "texture": 16 + }, + "N6zi1Z8V": { + "uv": { + "YR9K": [7.25794, 3.75], + "64eD": [7.25794, 3.25], + "8Z7A": [7.0119, 3.25], + "rBqN": [7.0119, 3.75] + }, + "vertices": ["rBqN", "8Z7A", "64eD", "YR9K"], + "texture": 16 + }, + "EeFNXyFu": { + "uv": { + "rBqN": [7.75, 3.75], + "8Z7A": [7.75, 3.25], + "nnBx": [7.50397, 3.25], + "G7iR": [7.50397, 3.75] + }, + "vertices": ["G7iR", "nnBx", "8Z7A", "rBqN"], + "texture": 16 + }, + "HVtNylvy": { + "uv": { + "G7iR": [0.36905, 4.75], + "nnBx": [0.36905, 4.25], + "sdgs": [0.12302, 4.25], + "G7Yn": [0.12302, 4.75] + }, + "vertices": ["G7Yn", "sdgs", "nnBx", "G7iR"], + "texture": 16 + }, + "GuhboYu6": { + "uv": { + "8QjC": [0.61508, 4.75], + "G7Yn": [0.86111, 4.25], + "sdgs": [0.61508, 4.25] + }, + "vertices": ["sdgs", "G7Yn", "8QjC"], + "texture": 16 + }, + "FatZEx29": { + "uv": { + "vhJJ": [1.10714, 4.75], + "IcjH": [1.35317, 4.25], + "orU0": [1.10714, 4.25] + }, + "vertices": ["orU0", "IcjH", "vhJJ"], + "texture": 16 + }, + "WQlxRTJ0": { + "uv": { + "orU0": [1.84524, 4.75], + "IcjH": [1.84524, 4.25], + "Cmxu": [1.59921, 4.25], + "90Fb": [1.59921, 4.75] + }, + "vertices": ["90Fb", "Cmxu", "IcjH", "orU0"], + "texture": 16 + }, + "KLpy0qBF": { + "uv": { + "zNGN": [2.3373, 4.75], + "YR9K": [2.3373, 4.25], + "rBqN": [2.09127, 4.25], + "73Hf": [2.09127, 4.75] + }, + "vertices": ["73Hf", "rBqN", "YR9K", "zNGN"], + "texture": 16 + }, + "xp2sa1WG": { + "uv": { + "73Hf": [2.82937, 4.75], + "rBqN": [2.82937, 4.25], + "G7iR": [2.58333, 4.25], + "4ExO": [2.58333, 4.75] + }, + "vertices": ["4ExO", "G7iR", "rBqN", "73Hf"], + "texture": 16 + }, + "LXV1I4uf": { + "uv": { + "4ExO": [3.32143, 4.75], + "G7iR": [3.32143, 4.25], + "G7Yn": [3.0754, 4.25], + "f7le": [3.0754, 4.75] + }, + "vertices": ["f7le", "G7Yn", "G7iR", "4ExO"], + "texture": 16 + }, + "33MWdMUL": { + "uv": { + "8QjC": [3.56746, 4.75], + "f7le": [3.81349, 4.25], + "G7Yn": [3.56746, 4.25] + }, + "vertices": ["G7Yn", "f7le", "8QjC"], + "texture": 16 + }, + "nvCDOv6y": { + "uv": { + "C5s3": [2.21532, 0.9892], + "zNGN": [0.07199, 0.9892], + "HfsY": [2.28731, 0], + "90Fb": [0, 0] + }, + "vertices": ["90Fb", "HfsY", "zNGN", "C5s3"], + "texture": 16 + }, + "yfWtEI7A": { + "uv": { + "KBoA": [3.19945, 0.9892], + "C5s3": [1.05612, 0.9892], + "9RbY": [3.27143, 0], + "HfsY": [0.98413, 0] + }, + "vertices": ["HfsY", "9RbY", "C5s3", "KBoA"], + "texture": 16 + }, + "ocFuf3xz": { + "uv": { + "W8jt": [4.67564, 0.9892], + "KBoA": [2.53231, 0.9892], + "rwOP": [4.74763, 0], + "9RbY": [2.46032, 0] + }, + "vertices": ["9RbY", "rwOP", "KBoA", "W8jt"], + "texture": 16 + }, + "eulgYJCm": { + "uv": { + "ddkb": [2.21532, 0.9892], + "W8jt": [0.07199, 0.9892], + "Clz7": [2.28731, 0], + "rwOP": [0, 0] + }, + "vertices": ["rwOP", "Clz7", "W8jt", "ddkb"], + "texture": 16 + }, + "qSrVFTTR": { + "uv": { + "rIID": [3.69151, 0.9892], + "ddkb": [1.54818, 0.9892], + "7asH": [3.7635, 0], + "Clz7": [1.47619, 0] + }, + "vertices": ["Clz7", "7asH", "ddkb", "rIID"], + "texture": 16 + }, + "5HJj304c": { + "uv": { + "aLVc": [5.1677, 0.9892], + "rIID": [3.02437, 0.9892], + "NsXb": [5.23969, 0], + "7asH": [2.95238, 0] + }, + "vertices": ["7asH", "NsXb", "rIID", "aLVc"], + "texture": 16 + }, + "UY5zSthE": { + "uv": { + "P9rX": [2.70738, 0.9892], + "aLVc": [0.56405, 0.9892], + "6L0d": [2.77937, 0], + "NsXb": [0.49206, 0] + }, + "vertices": ["NsXb", "6L0d", "aLVc", "P9rX"], + "texture": 16 + }, + "dKCOWHfj": { + "uv": { + "5mdt": [4.18357, 0.9892], + "P9rX": [2.04024, 0.9892], + "odwY": [4.25556, 0], + "6L0d": [1.96825, 0] + }, + "vertices": ["6L0d", "odwY", "P9rX", "5mdt"], + "texture": 16 + }, + "aGdI6sMr": { + "uv": { + "lr5A": [2.21532, 1.9892], + "5mdt": [0.07199, 1.9892], + "mRE8": [2.28731, 1], + "odwY": [0, 1] + }, + "vertices": ["odwY", "mRE8", "5mdt", "lr5A"], + "texture": 16 + }, + "NgqcgSvB": { + "uv": { + "64eD": [3.19945, 1.9892], + "lr5A": [1.05612, 1.9892], + "g8AY": [3.27143, 1], + "mRE8": [0.98413, 1] + }, + "vertices": ["mRE8", "g8AY", "lr5A", "64eD"], + "texture": 16 + }, + "cSZhnQck": { + "uv": { + "YR9K": [4.67564, 1.9892], + "64eD": [2.53231, 1.9892], + "Cmxu": [4.74763, 1], + "g8AY": [2.46032, 1] + }, + "vertices": ["g8AY", "Cmxu", "64eD", "YR9K"], + "texture": 16 + }, + "dqNbUXu2": { + "uv": { + "zNGN": [2.21532, 1.9892], + "YR9K": [0.07199, 1.9892], + "90Fb": [2.28731, 1], + "Cmxu": [0, 1] + }, + "vertices": ["Cmxu", "90Fb", "YR9K", "zNGN"], + "texture": 16 + } + }, + "type": "mesh", + "uuid": "2d870819-ae69-45d2-650f-00e0da1ac58c" + }, + { + "name": "inner", + "color": 8, + "origin": [0, 0, -13], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "8QjC": [0, 26, 0], + "zNGN": [2.17795, 26, 8.1282], + "73Hf": [2.14359, 26, 8], + "4ExO": [1.85641, 26, 6.9282], + "f7le": [1.0718, 26.0718, 4], + "C5s3": [5.95026, 26, 5.95026], + "IS5N": [5.85641, 26, 5.85641], + "KeJY": [5.0718, 26, 5.0718], + "QpFb": [2.9282, 26.0718, 2.9282], + "KBoA": [8.1282, 26, 2.17795], + "UZLZ": [8, 26, 2.14359], + "S7bZ": [6.9282, 26, 1.85641], + "yocC": [4, 26.0718, 1.0718], + "W8jt": [8.1282, 26, -2.17795], + "TP88": [8, 26, -2.14359], + "OJX9": [6.9282, 26, -1.85641], + "PZ0f": [4, 26.0718, -1.0718], + "ddkb": [5.95026, 26, -5.95026], + "Phwt": [5.85641, 26, -5.85641], + "qhSG": [5.0718, 26, -5.0718], + "2KFR": [2.9282, 26.0718, -2.9282], + "rIID": [2.17795, 26, -8.1282], + "2eBc": [2.14359, 26, -8], + "baM3": [1.85641, 26, -6.9282], + "35RP": [1.0718, 26.0718, -4], + "aLVc": [-2.17795, 26, -8.1282], + "KcNg": [-2.14359, 26, -8], + "ar6O": [-1.85641, 26, -6.9282], + "fZGN": [-1.0718, 26.0718, -4], + "P9rX": [-5.95026, 26, -5.95026], + "LfAz": [-5.85641, 26, -5.85641], + "Aldt": [-5.0718, 26, -5.0718], + "arCH": [-2.9282, 26.0718, -2.9282], + "5mdt": [-8.1282, 26, -2.17795], + "f4nL": [-8, 26, -2.14359], + "IW10": [-6.9282, 26, -1.85641], + "Vgik": [-4, 26.0718, -1.0718], + "lr5A": [-8.1282, 26, 2.17795], + "F9rK": [-8, 26, 2.14359], + "pQvi": [-6.9282, 26, 1.85641], + "54OX": [-4, 26.0718, 1.0718], + "64eD": [-5.95026, 26, 5.95026], + "8Z7A": [-5.85641, 26, 5.85641], + "nnBx": [-5.0718, 26, 5.0718], + "sdgs": [-2.9282, 26.0718, 2.9282], + "YR9K": [-2.17795, 26, 8.1282], + "rBqN": [-2.14359, 26, 8], + "G7iR": [-1.85641, 26, 6.9282], + "G7Yn": [-1.0718, 26.0718, 4], + "orU0": [1.17879, 33.83876, 4.39931], + "YyBo": [3.22052, 33.83876, 3.22052], + "vhJJ": [0, 35, 0], + "90Fb": [2.32423, 30.82495, 8.67415], + "HfsY": [6.34992, 30.82495, 6.34992], + "OwBJ": [4.39931, 33.83876, 1.17879], + "9RbY": [8.67415, 30.82495, 2.32423], + "tWGi": [4.39931, 33.83876, -1.17879], + "rwOP": [8.67415, 30.82495, -2.32423], + "AYq6": [3.22052, 33.83876, -3.22052], + "Clz7": [6.34992, 30.82495, -6.34992], + "13x6": [1.17879, 33.83876, -4.39931], + "7asH": [2.32423, 30.82495, -8.67415], + "53PY": [-1.17879, 33.83876, -4.39931], + "NsXb": [-2.32423, 30.82495, -8.67415], + "cf6G": [-3.22052, 33.83876, -3.22052], + "6L0d": [-6.34992, 30.82495, -6.34992], + "8i9k": [-4.39931, 33.83876, -1.17879], + "odwY": [-8.67415, 30.82495, -2.32423], + "bedr": [-4.39931, 33.83876, 1.17879], + "mRE8": [-8.67415, 30.82495, 2.32423], + "VCA7": [-3.22052, 33.83876, 3.22052], + "g8AY": [-6.34992, 30.82495, 6.34992], + "IcjH": [-1.17879, 33.83876, 4.39931], + "Cmxu": [-2.32423, 30.82495, 8.67415] + }, + "faces": { + "ZngK3IpC": { + "uv": { + "vhJJ": [0.25, 0.75], + "orU0": [0.75, 0.25], + "YyBo": [0.25, 0.25] + }, + "vertices": ["YyBo", "orU0", "vhJJ"], + "texture": 15 + }, + "L46i6DN5": { + "uv": { + "YyBo": [1.75, 0.75], + "orU0": [1.75, 0.25], + "90Fb": [1.25, 0.25], + "HfsY": [1.25, 0.75] + }, + "vertices": ["HfsY", "90Fb", "orU0", "YyBo"], + "texture": 15 + }, + "eNbWbFkk": { + "uv": { + "C5s3": [2.75, 0.75], + "zNGN": [2.75, 0.25], + "73Hf": [2.25, 0.25], + "IS5N": [2.25, 0.75] + }, + "vertices": ["IS5N", "73Hf", "zNGN", "C5s3"], + "texture": 15 + }, + "roTqvBDD": { + "uv": { + "IS5N": [3.75, 0.75], + "73Hf": [3.75, 0.25], + "4ExO": [3.25, 0.25], + "KeJY": [3.25, 0.75] + }, + "vertices": ["KeJY", "4ExO", "73Hf", "IS5N"], + "texture": 15 + }, + "H5SeHMdG": { + "uv": { + "KeJY": [4.75, 0.75], + "4ExO": [4.75, 0.25], + "f7le": [4.25, 0.25], + "QpFb": [4.25, 0.75] + }, + "vertices": ["QpFb", "f7le", "4ExO", "KeJY"], + "texture": 15 + }, + "9fOaMI7A": { + "uv": { + "8QjC": [5.25, 0.75], + "QpFb": [5.75, 0.25], + "f7le": [5.25, 0.25] + }, + "vertices": ["f7le", "QpFb", "8QjC"], + "texture": 15 + }, + "eHg0Xk2X": { + "uv": { + "vhJJ": [6.25, 0.75], + "YyBo": [6.75, 0.25], + "OwBJ": [6.25, 0.25] + }, + "vertices": ["OwBJ", "YyBo", "vhJJ"], + "texture": 15 + }, + "sRhLlJHL": { + "uv": { + "OwBJ": [7.75, 0.75], + "YyBo": [7.75, 0.25], + "HfsY": [7.25, 0.25], + "9RbY": [7.25, 0.75] + }, + "vertices": ["9RbY", "HfsY", "YyBo", "OwBJ"], + "texture": 15 + }, + "1hmcvGBk": { + "uv": { + "KBoA": [8.75, 0.75], + "C5s3": [8.75, 0.25], + "IS5N": [8.25, 0.25], + "UZLZ": [8.25, 0.75] + }, + "vertices": ["UZLZ", "IS5N", "C5s3", "KBoA"], + "texture": 15 + }, + "O4BJvLoN": { + "uv": { + "UZLZ": [9.75, 0.75], + "IS5N": [9.75, 0.25], + "KeJY": [9.25, 0.25], + "S7bZ": [9.25, 0.75] + }, + "vertices": ["S7bZ", "KeJY", "IS5N", "UZLZ"], + "texture": 15 + }, + "kx9KAAPA": { + "uv": { + "S7bZ": [10.75, 0.75], + "KeJY": [10.75, 0.25], + "QpFb": [10.25, 0.25], + "yocC": [10.25, 0.75] + }, + "vertices": ["yocC", "QpFb", "KeJY", "S7bZ"], + "texture": 15 + }, + "7xBzzsZo": { + "uv": { + "8QjC": [11.25, 0.75], + "yocC": [11.75, 0.25], + "QpFb": [11.25, 0.25] + }, + "vertices": ["QpFb", "yocC", "8QjC"], + "texture": 15 + }, + "uVFCvy3R": { + "uv": { + "vhJJ": [12.25, 0.75], + "OwBJ": [12.75, 0.25], + "tWGi": [12.25, 0.25] + }, + "vertices": ["tWGi", "OwBJ", "vhJJ"], + "texture": 15 + }, + "WaNtzBKB": { + "uv": { + "tWGi": [13.75, 0.75], + "OwBJ": [13.75, 0.25], + "9RbY": [13.25, 0.25], + "rwOP": [13.25, 0.75] + }, + "vertices": ["rwOP", "9RbY", "OwBJ", "tWGi"], + "texture": 15 + }, + "vTSW5OcT": { + "uv": { + "W8jt": [14.75, 0.75], + "KBoA": [14.75, 0.25], + "UZLZ": [14.25, 0.25], + "TP88": [14.25, 0.75] + }, + "vertices": ["TP88", "UZLZ", "KBoA", "W8jt"], + "texture": 15 + }, + "TUIIt1x5": { + "uv": { + "TP88": [15.75, 0.75], + "UZLZ": [15.75, 0.25], + "S7bZ": [15.25, 0.25], + "OJX9": [15.25, 0.75] + }, + "vertices": ["OJX9", "S7bZ", "UZLZ", "TP88"], + "texture": 15 + }, + "VvVgk78W": { + "uv": { + "OJX9": [0.75, 1.75], + "S7bZ": [0.75, 1.25], + "yocC": [0.25, 1.25], + "PZ0f": [0.25, 1.75] + }, + "vertices": ["PZ0f", "yocC", "S7bZ", "OJX9"], + "texture": 15 + }, + "MYvVN80s": { + "uv": { + "8QjC": [1.25, 1.75], + "PZ0f": [1.75, 1.25], + "yocC": [1.25, 1.25] + }, + "vertices": ["yocC", "PZ0f", "8QjC"], + "texture": 15 + }, + "Xxx3Dir0": { + "uv": { + "vhJJ": [2.25, 1.75], + "tWGi": [2.75, 1.25], + "AYq6": [2.25, 1.25] + }, + "vertices": ["AYq6", "tWGi", "vhJJ"], + "texture": 15 + }, + "wcliUruQ": { + "uv": { + "AYq6": [3.75, 1.75], + "tWGi": [3.75, 1.25], + "rwOP": [3.25, 1.25], + "Clz7": [3.25, 1.75] + }, + "vertices": ["Clz7", "rwOP", "tWGi", "AYq6"], + "texture": 15 + }, + "AC8pSweT": { + "uv": { + "ddkb": [4.75, 1.75], + "W8jt": [4.75, 1.25], + "TP88": [4.25, 1.25], + "Phwt": [4.25, 1.75] + }, + "vertices": ["Phwt", "TP88", "W8jt", "ddkb"], + "texture": 15 + }, + "iy6mUocz": { + "uv": { + "Phwt": [5.75, 1.75], + "TP88": [5.75, 1.25], + "OJX9": [5.25, 1.25], + "qhSG": [5.25, 1.75] + }, + "vertices": ["qhSG", "OJX9", "TP88", "Phwt"], + "texture": 15 + }, + "XcdOlphk": { + "uv": { + "qhSG": [6.75, 1.75], + "OJX9": [6.75, 1.25], + "PZ0f": [6.25, 1.25], + "2KFR": [6.25, 1.75] + }, + "vertices": ["2KFR", "PZ0f", "OJX9", "qhSG"], + "texture": 15 + }, + "SmiDIWsL": { + "uv": { + "8QjC": [7.25, 1.75], + "2KFR": [7.75, 1.25], + "PZ0f": [7.25, 1.25] + }, + "vertices": ["PZ0f", "2KFR", "8QjC"], + "texture": 15 + }, + "sHO7ks0Z": { + "uv": { + "vhJJ": [8.25, 1.75], + "AYq6": [8.75, 1.25], + "13x6": [8.25, 1.25] + }, + "vertices": ["13x6", "AYq6", "vhJJ"], + "texture": 15 + }, + "X1LTFYRX": { + "uv": { + "13x6": [9.75, 1.75], + "AYq6": [9.75, 1.25], + "Clz7": [9.25, 1.25], + "7asH": [9.25, 1.75] + }, + "vertices": ["7asH", "Clz7", "AYq6", "13x6"], + "texture": 15 + }, + "2yagsWv6": { + "uv": { + "rIID": [10.75, 1.75], + "ddkb": [10.75, 1.25], + "Phwt": [10.25, 1.25], + "2eBc": [10.25, 1.75] + }, + "vertices": ["2eBc", "Phwt", "ddkb", "rIID"], + "texture": 15 + }, + "XA5lNjst": { + "uv": { + "2eBc": [11.75, 1.75], + "Phwt": [11.75, 1.25], + "qhSG": [11.25, 1.25], + "baM3": [11.25, 1.75] + }, + "vertices": ["baM3", "qhSG", "Phwt", "2eBc"], + "texture": 15 + }, + "Ygcj4wdC": { + "uv": { + "baM3": [12.75, 1.75], + "qhSG": [12.75, 1.25], + "2KFR": [12.25, 1.25], + "35RP": [12.25, 1.75] + }, + "vertices": ["35RP", "2KFR", "qhSG", "baM3"], + "texture": 15 + }, + "m7Ce9uDx": { + "uv": { + "8QjC": [13.25, 1.75], + "35RP": [13.75, 1.25], + "2KFR": [13.25, 1.25] + }, + "vertices": ["2KFR", "35RP", "8QjC"], + "texture": 15 + }, + "MLo3SzB8": { + "uv": { + "vhJJ": [14.25, 1.75], + "13x6": [14.75, 1.25], + "53PY": [14.25, 1.25] + }, + "vertices": ["53PY", "13x6", "vhJJ"], + "texture": 15 + }, + "1rfpAtcz": { + "uv": { + "53PY": [15.75, 1.75], + "13x6": [15.75, 1.25], + "7asH": [15.25, 1.25], + "NsXb": [15.25, 1.75] + }, + "vertices": ["NsXb", "7asH", "13x6", "53PY"], + "texture": 15 + }, + "a42rImDx": { + "uv": { + "aLVc": [0.75, 2.75], + "rIID": [0.75, 2.25], + "2eBc": [0.25, 2.25], + "KcNg": [0.25, 2.75] + }, + "vertices": ["KcNg", "2eBc", "rIID", "aLVc"], + "texture": 15 + }, + "3vOJocS7": { + "uv": { + "KcNg": [1.75, 2.75], + "2eBc": [1.75, 2.25], + "baM3": [1.25, 2.25], + "ar6O": [1.25, 2.75] + }, + "vertices": ["ar6O", "baM3", "2eBc", "KcNg"], + "texture": 15 + }, + "D2Af9725": { + "uv": { + "ar6O": [2.75, 2.75], + "baM3": [2.75, 2.25], + "35RP": [2.25, 2.25], + "fZGN": [2.25, 2.75] + }, + "vertices": ["fZGN", "35RP", "baM3", "ar6O"], + "texture": 15 + }, + "VxgGZCf2": { + "uv": { + "8QjC": [3.25, 2.75], + "fZGN": [3.75, 2.25], + "35RP": [3.25, 2.25] + }, + "vertices": ["35RP", "fZGN", "8QjC"], + "texture": 15 + }, + "E1Intunq": { + "uv": { + "vhJJ": [4.25, 2.75], + "53PY": [4.75, 2.25], + "cf6G": [4.25, 2.25] + }, + "vertices": ["cf6G", "53PY", "vhJJ"], + "texture": 15 + }, + "ANsPkIUD": { + "uv": { + "cf6G": [5.75, 2.75], + "53PY": [5.75, 2.25], + "NsXb": [5.25, 2.25], + "6L0d": [5.25, 2.75] + }, + "vertices": ["6L0d", "NsXb", "53PY", "cf6G"], + "texture": 15 + }, + "hky4vXZs": { + "uv": { + "P9rX": [6.75, 2.75], + "aLVc": [6.75, 2.25], + "KcNg": [6.25, 2.25], + "LfAz": [6.25, 2.75] + }, + "vertices": ["LfAz", "KcNg", "aLVc", "P9rX"], + "texture": 15 + }, + "MdnWKrBw": { + "uv": { + "LfAz": [7.75, 2.75], + "KcNg": [7.75, 2.25], + "ar6O": [7.25, 2.25], + "Aldt": [7.25, 2.75] + }, + "vertices": ["Aldt", "ar6O", "KcNg", "LfAz"], + "texture": 15 + }, + "x5VkzqFN": { + "uv": { + "Aldt": [8.75, 2.75], + "ar6O": [8.75, 2.25], + "fZGN": [8.25, 2.25], + "arCH": [8.25, 2.75] + }, + "vertices": ["arCH", "fZGN", "ar6O", "Aldt"], + "texture": 15 + }, + "yR8j2fnY": { + "uv": { + "8QjC": [9.25, 2.75], + "arCH": [9.75, 2.25], + "fZGN": [9.25, 2.25] + }, + "vertices": ["fZGN", "arCH", "8QjC"], + "texture": 15 + }, + "hyLdc1Q6": { + "uv": { + "vhJJ": [10.25, 2.75], + "cf6G": [10.75, 2.25], + "8i9k": [10.25, 2.25] + }, + "vertices": ["8i9k", "cf6G", "vhJJ"], + "texture": 15 + }, + "A0sjcu7e": { + "uv": { + "8i9k": [11.75, 2.75], + "cf6G": [11.75, 2.25], + "6L0d": [11.25, 2.25], + "odwY": [11.25, 2.75] + }, + "vertices": ["odwY", "6L0d", "cf6G", "8i9k"], + "texture": 15 + }, + "nGDnWgSP": { + "uv": { + "5mdt": [12.75, 2.75], + "P9rX": [12.75, 2.25], + "LfAz": [12.25, 2.25], + "f4nL": [12.25, 2.75] + }, + "vertices": ["f4nL", "LfAz", "P9rX", "5mdt"], + "texture": 15 + }, + "vUpqRqbF": { + "uv": { + "f4nL": [13.75, 2.75], + "LfAz": [13.75, 2.25], + "Aldt": [13.25, 2.25], + "IW10": [13.25, 2.75] + }, + "vertices": ["IW10", "Aldt", "LfAz", "f4nL"], + "texture": 15 + }, + "s05slp5K": { + "uv": { + "IW10": [14.75, 2.75], + "Aldt": [14.75, 2.25], + "arCH": [14.25, 2.25], + "Vgik": [14.25, 2.75] + }, + "vertices": ["Vgik", "arCH", "Aldt", "IW10"], + "texture": 15 + }, + "Sxc6OKkK": { + "uv": { + "8QjC": [15.25, 2.75], + "Vgik": [15.75, 2.25], + "arCH": [15.25, 2.25] + }, + "vertices": ["arCH", "Vgik", "8QjC"], + "texture": 15 + }, + "X3nCaFBv": { + "uv": { + "vhJJ": [0.25, 3.75], + "8i9k": [0.75, 3.25], + "bedr": [0.25, 3.25] + }, + "vertices": ["bedr", "8i9k", "vhJJ"], + "texture": 15 + }, + "XamBI9pA": { + "uv": { + "bedr": [1.75, 3.75], + "8i9k": [1.75, 3.25], + "odwY": [1.25, 3.25], + "mRE8": [1.25, 3.75] + }, + "vertices": ["mRE8", "odwY", "8i9k", "bedr"], + "texture": 15 + }, + "zgN1GtnK": { + "uv": { + "lr5A": [2.75, 3.75], + "5mdt": [2.75, 3.25], + "f4nL": [2.25, 3.25], + "F9rK": [2.25, 3.75] + }, + "vertices": ["F9rK", "f4nL", "5mdt", "lr5A"], + "texture": 15 + }, + "FprSWSc8": { + "uv": { + "F9rK": [3.75, 3.75], + "f4nL": [3.75, 3.25], + "IW10": [3.25, 3.25], + "pQvi": [3.25, 3.75] + }, + "vertices": ["pQvi", "IW10", "f4nL", "F9rK"], + "texture": 15 + }, + "e9rnkzEJ": { + "uv": { + "pQvi": [4.75, 3.75], + "IW10": [4.75, 3.25], + "Vgik": [4.25, 3.25], + "54OX": [4.25, 3.75] + }, + "vertices": ["54OX", "Vgik", "IW10", "pQvi"], + "texture": 15 + }, + "OedC1Ope": { + "uv": { + "8QjC": [5.25, 3.75], + "54OX": [5.75, 3.25], + "Vgik": [5.25, 3.25] + }, + "vertices": ["Vgik", "54OX", "8QjC"], + "texture": 15 + }, + "lIt5gO7w": { + "uv": { + "vhJJ": [6.25, 3.75], + "bedr": [6.75, 3.25], + "VCA7": [6.25, 3.25] + }, + "vertices": ["VCA7", "bedr", "vhJJ"], + "texture": 15 + }, + "fiLiv4eu": { + "uv": { + "VCA7": [7.75, 3.75], + "bedr": [7.75, 3.25], + "mRE8": [7.25, 3.25], + "g8AY": [7.25, 3.75] + }, + "vertices": ["g8AY", "mRE8", "bedr", "VCA7"], + "texture": 15 + }, + "iTZHiYyz": { + "uv": { + "64eD": [8.75, 3.75], + "lr5A": [8.75, 3.25], + "F9rK": [8.25, 3.25], + "8Z7A": [8.25, 3.75] + }, + "vertices": ["8Z7A", "F9rK", "lr5A", "64eD"], + "texture": 15 + }, + "4qdXLnbR": { + "uv": { + "8Z7A": [9.75, 3.75], + "F9rK": [9.75, 3.25], + "pQvi": [9.25, 3.25], + "nnBx": [9.25, 3.75] + }, + "vertices": ["nnBx", "pQvi", "F9rK", "8Z7A"], + "texture": 15 + }, + "a4mGhICC": { + "uv": { + "nnBx": [10.75, 3.75], + "pQvi": [10.75, 3.25], + "54OX": [10.25, 3.25], + "sdgs": [10.25, 3.75] + }, + "vertices": ["sdgs", "54OX", "pQvi", "nnBx"], + "texture": 15 + }, + "SUg8IVYl": { + "uv": { + "8QjC": [11.25, 3.75], + "sdgs": [11.75, 3.25], + "54OX": [11.25, 3.25] + }, + "vertices": ["54OX", "sdgs", "8QjC"], + "texture": 15 + }, + "xtL7Hkve": { + "uv": { + "vhJJ": [12.25, 3.75], + "VCA7": [12.75, 3.25], + "IcjH": [12.25, 3.25] + }, + "vertices": ["IcjH", "VCA7", "vhJJ"], + "texture": 15 + }, + "JRIElpEj": { + "uv": { + "IcjH": [13.75, 3.75], + "VCA7": [13.75, 3.25], + "g8AY": [13.25, 3.25], + "Cmxu": [13.25, 3.75] + }, + "vertices": ["Cmxu", "g8AY", "VCA7", "IcjH"], + "texture": 15 + }, + "N6zi1Z8V": { + "uv": { + "YR9K": [14.75, 3.75], + "64eD": [14.75, 3.25], + "8Z7A": [14.25, 3.25], + "rBqN": [14.25, 3.75] + }, + "vertices": ["rBqN", "8Z7A", "64eD", "YR9K"], + "texture": 15 + }, + "EeFNXyFu": { + "uv": { + "rBqN": [15.75, 3.75], + "8Z7A": [15.75, 3.25], + "nnBx": [15.25, 3.25], + "G7iR": [15.25, 3.75] + }, + "vertices": ["G7iR", "nnBx", "8Z7A", "rBqN"], + "texture": 15 + }, + "HVtNylvy": { + "uv": { + "G7iR": [0.75, 4.75], + "nnBx": [0.75, 4.25], + "sdgs": [0.25, 4.25], + "G7Yn": [0.25, 4.75] + }, + "vertices": ["G7Yn", "sdgs", "nnBx", "G7iR"], + "texture": 15 + }, + "GuhboYu6": { + "uv": { + "8QjC": [1.25, 4.75], + "G7Yn": [1.75, 4.25], + "sdgs": [1.25, 4.25] + }, + "vertices": ["sdgs", "G7Yn", "8QjC"], + "texture": 15 + }, + "FatZEx29": { + "uv": { + "vhJJ": [2.25, 4.75], + "IcjH": [2.75, 4.25], + "orU0": [2.25, 4.25] + }, + "vertices": ["orU0", "IcjH", "vhJJ"], + "texture": 15 + }, + "WQlxRTJ0": { + "uv": { + "orU0": [3.75, 4.75], + "IcjH": [3.75, 4.25], + "Cmxu": [3.25, 4.25], + "90Fb": [3.25, 4.75] + }, + "vertices": ["90Fb", "Cmxu", "IcjH", "orU0"], + "texture": 15 + }, + "KLpy0qBF": { + "uv": { + "zNGN": [4.75, 4.75], + "YR9K": [4.75, 4.25], + "rBqN": [4.25, 4.25], + "73Hf": [4.25, 4.75] + }, + "vertices": ["73Hf", "rBqN", "YR9K", "zNGN"], + "texture": 15 + }, + "xp2sa1WG": { + "uv": { + "73Hf": [5.75, 4.75], + "rBqN": [5.75, 4.25], + "G7iR": [5.25, 4.25], + "4ExO": [5.25, 4.75] + }, + "vertices": ["4ExO", "G7iR", "rBqN", "73Hf"], + "texture": 15 + }, + "LXV1I4uf": { + "uv": { + "4ExO": [6.75, 4.75], + "G7iR": [6.75, 4.25], + "G7Yn": [6.25, 4.25], + "f7le": [6.25, 4.75] + }, + "vertices": ["f7le", "G7Yn", "G7iR", "4ExO"], + "texture": 15 + }, + "33MWdMUL": { + "uv": { + "8QjC": [7.25, 4.75], + "f7le": [7.75, 4.25], + "G7Yn": [7.25, 4.25] + }, + "vertices": ["G7Yn", "f7le", "8QjC"], + "texture": 15 + }, + "nvCDOv6y": { + "uv": { + "C5s3": [4.5021, 0.9892], + "zNGN": [0.1463, 0.9892], + "HfsY": [4.6484, 0], + "90Fb": [0, 0] + }, + "vertices": ["90Fb", "HfsY", "zNGN", "C5s3"], + "texture": 15 + }, + "yfWtEI7A": { + "uv": { + "KBoA": [6.5021, 0.9892], + "C5s3": [2.1463, 0.9892], + "9RbY": [6.6484, 0], + "HfsY": [2, 0] + }, + "vertices": ["HfsY", "9RbY", "C5s3", "KBoA"], + "texture": 15 + }, + "ocFuf3xz": { + "uv": { + "W8jt": [9.5021, 0.9892], + "KBoA": [5.1463, 0.9892], + "rwOP": [9.6484, 0], + "9RbY": [5, 0] + }, + "vertices": ["9RbY", "rwOP", "KBoA", "W8jt"], + "texture": 15 + }, + "eulgYJCm": { + "uv": { + "ddkb": [4.5021, 0.9892], + "W8jt": [0.1463, 0.9892], + "Clz7": [4.6484, 0], + "rwOP": [0, 0] + }, + "vertices": ["rwOP", "Clz7", "W8jt", "ddkb"], + "texture": 15 + }, + "qSrVFTTR": { + "uv": { + "rIID": [7.5021, 0.9892], + "ddkb": [3.1463, 0.9892], + "7asH": [7.6484, 0], + "Clz7": [3, 0] + }, + "vertices": ["Clz7", "7asH", "ddkb", "rIID"], + "texture": 15 + }, + "5HJj304c": { + "uv": { + "aLVc": [10.5021, 0.9892], + "rIID": [6.1463, 0.9892], + "NsXb": [10.6484, 0], + "7asH": [6, 0] + }, + "vertices": ["7asH", "NsXb", "rIID", "aLVc"], + "texture": 15 + }, + "UY5zSthE": { + "uv": { + "P9rX": [5.5021, 0.9892], + "aLVc": [1.1463, 0.9892], + "6L0d": [5.6484, 0], + "NsXb": [1, 0] + }, + "vertices": ["NsXb", "6L0d", "aLVc", "P9rX"], + "texture": 15 + }, + "dKCOWHfj": { + "uv": { + "5mdt": [8.5021, 0.9892], + "P9rX": [4.1463, 0.9892], + "odwY": [8.6484, 0], + "6L0d": [4, 0] + }, + "vertices": ["6L0d", "odwY", "P9rX", "5mdt"], + "texture": 15 + }, + "aGdI6sMr": { + "uv": { + "lr5A": [4.5021, 1.9892], + "5mdt": [0.1463, 1.9892], + "mRE8": [4.6484, 1], + "odwY": [0, 1] + }, + "vertices": ["odwY", "mRE8", "5mdt", "lr5A"], + "texture": 15 + }, + "NgqcgSvB": { + "uv": { + "64eD": [6.5021, 1.9892], + "lr5A": [2.1463, 1.9892], + "g8AY": [6.6484, 1], + "mRE8": [2, 1] + }, + "vertices": ["mRE8", "g8AY", "lr5A", "64eD"], + "texture": 15 + }, + "cSZhnQck": { + "uv": { + "YR9K": [9.5021, 1.9892], + "64eD": [5.1463, 1.9892], + "Cmxu": [9.6484, 1], + "g8AY": [5, 1] + }, + "vertices": ["g8AY", "Cmxu", "64eD", "YR9K"], + "texture": 15 + }, + "dqNbUXu2": { + "uv": { + "zNGN": [4.5021, 1.9892], + "YR9K": [0.1463, 1.9892], + "90Fb": [4.6484, 1], + "Cmxu": [0, 1] + }, + "vertices": ["Cmxu", "90Fb", "YR9K", "zNGN"], + "texture": 15 + } + }, + "type": "mesh", + "uuid": "97919864-37c1-e7f5-3b2d-f51ec27c0d8b" + }, + { + "name": "outer", + "color": 8, + "origin": [0, 0, -13], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "8QjC": [0, 25.5, 0], + "zNGN": [2.30349, 25.5, 8.59673], + "73Hf": [2.26716, 25.5, 8.46114], + "4ExO": [1.96341, 25.5, 7.32756], + "f7le": [1.13358, 25.57977, 4.23057], + "C5s3": [6.29325, 25.5, 6.29325], + "IS5N": [6.19398, 25.5, 6.19398], + "KeJY": [5.36415, 25.5, 5.36415], + "QpFb": [3.09699, 25.57977, 3.09699], + "KBoA": [8.59673, 25.5, 2.30349], + "UZLZ": [8.46114, 25.5, 2.26716], + "S7bZ": [7.32756, 25.5, 1.96341], + "yocC": [4.23057, 25.57977, 1.13358], + "W8jt": [8.59673, 25.5, -2.30349], + "TP88": [8.46114, 25.5, -2.26716], + "OJX9": [7.32756, 25.5, -1.96341], + "PZ0f": [4.23057, 25.57977, -1.13358], + "ddkb": [6.29325, 25.5, -6.29325], + "Phwt": [6.19398, 25.5, -6.19398], + "qhSG": [5.36415, 25.5, -5.36415], + "2KFR": [3.09699, 25.57977, -3.09699], + "rIID": [2.30349, 25.5, -8.59673], + "2eBc": [2.26716, 25.5, -8.46114], + "baM3": [1.96341, 25.5, -7.32756], + "35RP": [1.13358, 25.57977, -4.23057], + "aLVc": [-2.30349, 25.5, -8.59673], + "KcNg": [-2.26716, 25.5, -8.46114], + "ar6O": [-1.96341, 25.5, -7.32756], + "fZGN": [-1.13358, 25.57977, -4.23057], + "P9rX": [-6.29325, 25.5, -6.29325], + "LfAz": [-6.19398, 25.5, -6.19398], + "Aldt": [-5.36415, 25.5, -5.36415], + "arCH": [-3.09699, 25.57977, -3.09699], + "5mdt": [-8.59673, 25.5, -2.30349], + "f4nL": [-8.46114, 25.5, -2.26716], + "IW10": [-7.32756, 25.5, -1.96341], + "Vgik": [-4.23057, 25.57977, -1.13358], + "lr5A": [-8.59673, 25.5, 2.30349], + "F9rK": [-8.46114, 25.5, 2.26716], + "pQvi": [-7.32756, 25.5, 1.96341], + "54OX": [-4.23057, 25.57977, 1.13358], + "64eD": [-6.29325, 25.5, 6.29325], + "8Z7A": [-6.19398, 25.5, 6.19398], + "nnBx": [-5.36415, 25.5, 5.36415], + "sdgs": [-3.09699, 25.57977, 3.09699], + "YR9K": [-2.30349, 25.5, 8.59673], + "rBqN": [-2.26716, 25.5, 8.46114], + "G7iR": [-1.96341, 25.5, 7.32756], + "G7Yn": [-1.13358, 25.57977, 4.23057], + "orU0": [1.24674, 34.20973, 4.65289], + "YyBo": [3.40615, 34.20973, 3.40615], + "vhJJ": [0, 35.5, 0], + "90Fb": [2.45821, 30.86105, 9.17415], + "HfsY": [6.71595, 30.86105, 6.71595], + "OwBJ": [4.65289, 34.20973, 1.24674], + "9RbY": [9.17415, 30.86105, 2.45821], + "tWGi": [4.65289, 34.20973, -1.24674], + "rwOP": [9.17415, 30.86105, -2.45821], + "AYq6": [3.40615, 34.20973, -3.40615], + "Clz7": [6.71595, 30.86105, -6.71595], + "13x6": [1.24674, 34.20973, -4.65289], + "7asH": [2.45821, 30.86105, -9.17415], + "53PY": [-1.24674, 34.20973, -4.65289], + "NsXb": [-2.45821, 30.86105, -9.17415], + "cf6G": [-3.40615, 34.20973, -3.40615], + "6L0d": [-6.71595, 30.86105, -6.71595], + "8i9k": [-4.65289, 34.20973, -1.24674], + "odwY": [-9.17415, 30.86105, -2.45821], + "bedr": [-4.65289, 34.20973, 1.24674], + "mRE8": [-9.17415, 30.86105, 2.45821], + "VCA7": [-3.40615, 34.20973, 3.40615], + "g8AY": [-6.71595, 30.86105, 6.71595], + "IcjH": [-1.24674, 34.20973, 4.65289], + "Cmxu": [-2.45821, 30.86105, 9.17415] + }, + "faces": { + "ZngK3IpC": { + "uv": { + "vhJJ": [0.25, 0.75], + "orU0": [0.75, 0.25], + "YyBo": [0.25, 0.25] + }, + "vertices": ["YyBo", "orU0", "vhJJ"], + "texture": 16 + }, + "L46i6DN5": { + "uv": { + "YyBo": [1.75, 0.75], + "orU0": [1.75, 0.25], + "90Fb": [1.25, 0.25], + "HfsY": [1.25, 0.75] + }, + "vertices": ["HfsY", "90Fb", "orU0", "YyBo"], + "texture": 16 + }, + "eNbWbFkk": { + "uv": { + "C5s3": [2.75, 0.75], + "zNGN": [2.75, 0.25], + "73Hf": [2.25, 0.25], + "IS5N": [2.25, 0.75] + }, + "vertices": ["IS5N", "73Hf", "zNGN", "C5s3"], + "texture": 16 + }, + "roTqvBDD": { + "uv": { + "IS5N": [3.75, 0.75], + "73Hf": [3.75, 0.25], + "4ExO": [3.25, 0.25], + "KeJY": [3.25, 0.75] + }, + "vertices": ["KeJY", "4ExO", "73Hf", "IS5N"], + "texture": 16 + }, + "H5SeHMdG": { + "uv": { + "KeJY": [4.75, 0.75], + "4ExO": [4.75, 0.25], + "f7le": [4.25, 0.25], + "QpFb": [4.25, 0.75] + }, + "vertices": ["QpFb", "f7le", "4ExO", "KeJY"], + "texture": 16 + }, + "9fOaMI7A": { + "uv": { + "8QjC": [5.25, 0.75], + "QpFb": [5.75, 0.25], + "f7le": [5.25, 0.25] + }, + "vertices": ["f7le", "QpFb", "8QjC"], + "texture": 16 + }, + "eHg0Xk2X": { + "uv": { + "vhJJ": [6.25, 0.75], + "YyBo": [6.75, 0.25], + "OwBJ": [6.25, 0.25] + }, + "vertices": ["OwBJ", "YyBo", "vhJJ"], + "texture": 16 + }, + "sRhLlJHL": { + "uv": { + "OwBJ": [7.75, 0.75], + "YyBo": [7.75, 0.25], + "HfsY": [7.25, 0.25], + "9RbY": [7.25, 0.75] + }, + "vertices": ["9RbY", "HfsY", "YyBo", "OwBJ"], + "texture": 16 + }, + "1hmcvGBk": { + "uv": { + "KBoA": [8.75, 0.75], + "C5s3": [8.75, 0.25], + "IS5N": [8.25, 0.25], + "UZLZ": [8.25, 0.75] + }, + "vertices": ["UZLZ", "IS5N", "C5s3", "KBoA"], + "texture": 16 + }, + "O4BJvLoN": { + "uv": { + "UZLZ": [9.75, 0.75], + "IS5N": [9.75, 0.25], + "KeJY": [9.25, 0.25], + "S7bZ": [9.25, 0.75] + }, + "vertices": ["S7bZ", "KeJY", "IS5N", "UZLZ"], + "texture": 16 + }, + "kx9KAAPA": { + "uv": { + "S7bZ": [10.75, 0.75], + "KeJY": [10.75, 0.25], + "QpFb": [10.25, 0.25], + "yocC": [10.25, 0.75] + }, + "vertices": ["yocC", "QpFb", "KeJY", "S7bZ"], + "texture": 16 + }, + "7xBzzsZo": { + "uv": { + "8QjC": [11.25, 0.75], + "yocC": [11.75, 0.25], + "QpFb": [11.25, 0.25] + }, + "vertices": ["QpFb", "yocC", "8QjC"], + "texture": 16 + }, + "uVFCvy3R": { + "uv": { + "vhJJ": [12.25, 0.75], + "OwBJ": [12.75, 0.25], + "tWGi": [12.25, 0.25] + }, + "vertices": ["tWGi", "OwBJ", "vhJJ"], + "texture": 16 + }, + "WaNtzBKB": { + "uv": { + "tWGi": [13.75, 0.75], + "OwBJ": [13.75, 0.25], + "9RbY": [13.25, 0.25], + "rwOP": [13.25, 0.75] + }, + "vertices": ["rwOP", "9RbY", "OwBJ", "tWGi"], + "texture": 16 + }, + "vTSW5OcT": { + "uv": { + "W8jt": [14.75, 0.75], + "KBoA": [14.75, 0.25], + "UZLZ": [14.25, 0.25], + "TP88": [14.25, 0.75] + }, + "vertices": ["TP88", "UZLZ", "KBoA", "W8jt"], + "texture": 16 + }, + "TUIIt1x5": { + "uv": { + "TP88": [15.75, 0.75], + "UZLZ": [15.75, 0.25], + "S7bZ": [15.25, 0.25], + "OJX9": [15.25, 0.75] + }, + "vertices": ["OJX9", "S7bZ", "UZLZ", "TP88"], + "texture": 16 + }, + "VvVgk78W": { + "uv": { + "OJX9": [0.75, 1.75], + "S7bZ": [0.75, 1.25], + "yocC": [0.25, 1.25], + "PZ0f": [0.25, 1.75] + }, + "vertices": ["PZ0f", "yocC", "S7bZ", "OJX9"], + "texture": 16 + }, + "MYvVN80s": { + "uv": { + "8QjC": [1.25, 1.75], + "PZ0f": [1.75, 1.25], + "yocC": [1.25, 1.25] + }, + "vertices": ["yocC", "PZ0f", "8QjC"], + "texture": 16 + }, + "Xxx3Dir0": { + "uv": { + "vhJJ": [2.25, 1.75], + "tWGi": [2.75, 1.25], + "AYq6": [2.25, 1.25] + }, + "vertices": ["AYq6", "tWGi", "vhJJ"], + "texture": 16 + }, + "wcliUruQ": { + "uv": { + "AYq6": [3.75, 1.75], + "tWGi": [3.75, 1.25], + "rwOP": [3.25, 1.25], + "Clz7": [3.25, 1.75] + }, + "vertices": ["Clz7", "rwOP", "tWGi", "AYq6"], + "texture": 16 + }, + "AC8pSweT": { + "uv": { + "ddkb": [4.75, 1.75], + "W8jt": [4.75, 1.25], + "TP88": [4.25, 1.25], + "Phwt": [4.25, 1.75] + }, + "vertices": ["Phwt", "TP88", "W8jt", "ddkb"], + "texture": 16 + }, + "iy6mUocz": { + "uv": { + "Phwt": [5.75, 1.75], + "TP88": [5.75, 1.25], + "OJX9": [5.25, 1.25], + "qhSG": [5.25, 1.75] + }, + "vertices": ["qhSG", "OJX9", "TP88", "Phwt"], + "texture": 16 + }, + "XcdOlphk": { + "uv": { + "qhSG": [6.75, 1.75], + "OJX9": [6.75, 1.25], + "PZ0f": [6.25, 1.25], + "2KFR": [6.25, 1.75] + }, + "vertices": ["2KFR", "PZ0f", "OJX9", "qhSG"], + "texture": 16 + }, + "SmiDIWsL": { + "uv": { + "8QjC": [7.25, 1.75], + "2KFR": [7.75, 1.25], + "PZ0f": [7.25, 1.25] + }, + "vertices": ["PZ0f", "2KFR", "8QjC"], + "texture": 16 + }, + "sHO7ks0Z": { + "uv": { + "vhJJ": [8.25, 1.75], + "AYq6": [8.75, 1.25], + "13x6": [8.25, 1.25] + }, + "vertices": ["13x6", "AYq6", "vhJJ"], + "texture": 16 + }, + "X1LTFYRX": { + "uv": { + "13x6": [9.75, 1.75], + "AYq6": [9.75, 1.25], + "Clz7": [9.25, 1.25], + "7asH": [9.25, 1.75] + }, + "vertices": ["7asH", "Clz7", "AYq6", "13x6"], + "texture": 16 + }, + "2yagsWv6": { + "uv": { + "rIID": [10.75, 1.75], + "ddkb": [10.75, 1.25], + "Phwt": [10.25, 1.25], + "2eBc": [10.25, 1.75] + }, + "vertices": ["2eBc", "Phwt", "ddkb", "rIID"], + "texture": 16 + }, + "XA5lNjst": { + "uv": { + "2eBc": [11.75, 1.75], + "Phwt": [11.75, 1.25], + "qhSG": [11.25, 1.25], + "baM3": [11.25, 1.75] + }, + "vertices": ["baM3", "qhSG", "Phwt", "2eBc"], + "texture": 16 + }, + "Ygcj4wdC": { + "uv": { + "baM3": [12.75, 1.75], + "qhSG": [12.75, 1.25], + "2KFR": [12.25, 1.25], + "35RP": [12.25, 1.75] + }, + "vertices": ["35RP", "2KFR", "qhSG", "baM3"], + "texture": 16 + }, + "m7Ce9uDx": { + "uv": { + "8QjC": [13.25, 1.75], + "35RP": [13.75, 1.25], + "2KFR": [13.25, 1.25] + }, + "vertices": ["2KFR", "35RP", "8QjC"], + "texture": 16 + }, + "MLo3SzB8": { + "uv": { + "vhJJ": [14.25, 1.75], + "13x6": [14.75, 1.25], + "53PY": [14.25, 1.25] + }, + "vertices": ["53PY", "13x6", "vhJJ"], + "texture": 16 + }, + "1rfpAtcz": { + "uv": { + "53PY": [15.75, 1.75], + "13x6": [15.75, 1.25], + "7asH": [15.25, 1.25], + "NsXb": [15.25, 1.75] + }, + "vertices": ["NsXb", "7asH", "13x6", "53PY"], + "texture": 16 + }, + "a42rImDx": { + "uv": { + "aLVc": [0.75, 2.75], + "rIID": [0.75, 2.25], + "2eBc": [0.25, 2.25], + "KcNg": [0.25, 2.75] + }, + "vertices": ["KcNg", "2eBc", "rIID", "aLVc"], + "texture": 16 + }, + "3vOJocS7": { + "uv": { + "KcNg": [1.75, 2.75], + "2eBc": [1.75, 2.25], + "baM3": [1.25, 2.25], + "ar6O": [1.25, 2.75] + }, + "vertices": ["ar6O", "baM3", "2eBc", "KcNg"], + "texture": 16 + }, + "D2Af9725": { + "uv": { + "ar6O": [2.75, 2.75], + "baM3": [2.75, 2.25], + "35RP": [2.25, 2.25], + "fZGN": [2.25, 2.75] + }, + "vertices": ["fZGN", "35RP", "baM3", "ar6O"], + "texture": 16 + }, + "VxgGZCf2": { + "uv": { + "8QjC": [3.25, 2.75], + "fZGN": [3.75, 2.25], + "35RP": [3.25, 2.25] + }, + "vertices": ["35RP", "fZGN", "8QjC"], + "texture": 16 + }, + "E1Intunq": { + "uv": { + "vhJJ": [4.25, 2.75], + "53PY": [4.75, 2.25], + "cf6G": [4.25, 2.25] + }, + "vertices": ["cf6G", "53PY", "vhJJ"], + "texture": 16 + }, + "ANsPkIUD": { + "uv": { + "cf6G": [5.75, 2.75], + "53PY": [5.75, 2.25], + "NsXb": [5.25, 2.25], + "6L0d": [5.25, 2.75] + }, + "vertices": ["6L0d", "NsXb", "53PY", "cf6G"], + "texture": 16 + }, + "hky4vXZs": { + "uv": { + "P9rX": [6.75, 2.75], + "aLVc": [6.75, 2.25], + "KcNg": [6.25, 2.25], + "LfAz": [6.25, 2.75] + }, + "vertices": ["LfAz", "KcNg", "aLVc", "P9rX"], + "texture": 16 + }, + "MdnWKrBw": { + "uv": { + "LfAz": [7.75, 2.75], + "KcNg": [7.75, 2.25], + "ar6O": [7.25, 2.25], + "Aldt": [7.25, 2.75] + }, + "vertices": ["Aldt", "ar6O", "KcNg", "LfAz"], + "texture": 16 + }, + "x5VkzqFN": { + "uv": { + "Aldt": [8.75, 2.75], + "ar6O": [8.75, 2.25], + "fZGN": [8.25, 2.25], + "arCH": [8.25, 2.75] + }, + "vertices": ["arCH", "fZGN", "ar6O", "Aldt"], + "texture": 16 + }, + "yR8j2fnY": { + "uv": { + "8QjC": [9.25, 2.75], + "arCH": [9.75, 2.25], + "fZGN": [9.25, 2.25] + }, + "vertices": ["fZGN", "arCH", "8QjC"], + "texture": 16 + }, + "hyLdc1Q6": { + "uv": { + "vhJJ": [10.25, 2.75], + "cf6G": [10.75, 2.25], + "8i9k": [10.25, 2.25] + }, + "vertices": ["8i9k", "cf6G", "vhJJ"], + "texture": 16 + }, + "A0sjcu7e": { + "uv": { + "8i9k": [11.75, 2.75], + "cf6G": [11.75, 2.25], + "6L0d": [11.25, 2.25], + "odwY": [11.25, 2.75] + }, + "vertices": ["odwY", "6L0d", "cf6G", "8i9k"], + "texture": 16 + }, + "nGDnWgSP": { + "uv": { + "5mdt": [12.75, 2.75], + "P9rX": [12.75, 2.25], + "LfAz": [12.25, 2.25], + "f4nL": [12.25, 2.75] + }, + "vertices": ["f4nL", "LfAz", "P9rX", "5mdt"], + "texture": 16 + }, + "vUpqRqbF": { + "uv": { + "f4nL": [13.75, 2.75], + "LfAz": [13.75, 2.25], + "Aldt": [13.25, 2.25], + "IW10": [13.25, 2.75] + }, + "vertices": ["IW10", "Aldt", "LfAz", "f4nL"], + "texture": 16 + }, + "s05slp5K": { + "uv": { + "IW10": [14.75, 2.75], + "Aldt": [14.75, 2.25], + "arCH": [14.25, 2.25], + "Vgik": [14.25, 2.75] + }, + "vertices": ["Vgik", "arCH", "Aldt", "IW10"], + "texture": 16 + }, + "Sxc6OKkK": { + "uv": { + "8QjC": [15.25, 2.75], + "Vgik": [15.75, 2.25], + "arCH": [15.25, 2.25] + }, + "vertices": ["arCH", "Vgik", "8QjC"], + "texture": 16 + }, + "X3nCaFBv": { + "uv": { + "vhJJ": [0.25, 3.75], + "8i9k": [0.75, 3.25], + "bedr": [0.25, 3.25] + }, + "vertices": ["bedr", "8i9k", "vhJJ"], + "texture": 16 + }, + "XamBI9pA": { + "uv": { + "bedr": [1.75, 3.75], + "8i9k": [1.75, 3.25], + "odwY": [1.25, 3.25], + "mRE8": [1.25, 3.75] + }, + "vertices": ["mRE8", "odwY", "8i9k", "bedr"], + "texture": 16 + }, + "zgN1GtnK": { + "uv": { + "lr5A": [2.75, 3.75], + "5mdt": [2.75, 3.25], + "f4nL": [2.25, 3.25], + "F9rK": [2.25, 3.75] + }, + "vertices": ["F9rK", "f4nL", "5mdt", "lr5A"], + "texture": 16 + }, + "FprSWSc8": { + "uv": { + "F9rK": [3.75, 3.75], + "f4nL": [3.75, 3.25], + "IW10": [3.25, 3.25], + "pQvi": [3.25, 3.75] + }, + "vertices": ["pQvi", "IW10", "f4nL", "F9rK"], + "texture": 16 + }, + "e9rnkzEJ": { + "uv": { + "pQvi": [4.75, 3.75], + "IW10": [4.75, 3.25], + "Vgik": [4.25, 3.25], + "54OX": [4.25, 3.75] + }, + "vertices": ["54OX", "Vgik", "IW10", "pQvi"], + "texture": 16 + }, + "OedC1Ope": { + "uv": { + "8QjC": [5.25, 3.75], + "54OX": [5.75, 3.25], + "Vgik": [5.25, 3.25] + }, + "vertices": ["Vgik", "54OX", "8QjC"], + "texture": 16 + }, + "lIt5gO7w": { + "uv": { + "vhJJ": [6.25, 3.75], + "bedr": [6.75, 3.25], + "VCA7": [6.25, 3.25] + }, + "vertices": ["VCA7", "bedr", "vhJJ"], + "texture": 16 + }, + "fiLiv4eu": { + "uv": { + "VCA7": [7.75, 3.75], + "bedr": [7.75, 3.25], + "mRE8": [7.25, 3.25], + "g8AY": [7.25, 3.75] + }, + "vertices": ["g8AY", "mRE8", "bedr", "VCA7"], + "texture": 16 + }, + "iTZHiYyz": { + "uv": { + "64eD": [8.75, 3.75], + "lr5A": [8.75, 3.25], + "F9rK": [8.25, 3.25], + "8Z7A": [8.25, 3.75] + }, + "vertices": ["8Z7A", "F9rK", "lr5A", "64eD"], + "texture": 16 + }, + "4qdXLnbR": { + "uv": { + "8Z7A": [9.75, 3.75], + "F9rK": [9.75, 3.25], + "pQvi": [9.25, 3.25], + "nnBx": [9.25, 3.75] + }, + "vertices": ["nnBx", "pQvi", "F9rK", "8Z7A"], + "texture": 16 + }, + "a4mGhICC": { + "uv": { + "nnBx": [10.75, 3.75], + "pQvi": [10.75, 3.25], + "54OX": [10.25, 3.25], + "sdgs": [10.25, 3.75] + }, + "vertices": ["sdgs", "54OX", "pQvi", "nnBx"], + "texture": 16 + }, + "SUg8IVYl": { + "uv": { + "8QjC": [11.25, 3.75], + "sdgs": [11.75, 3.25], + "54OX": [11.25, 3.25] + }, + "vertices": ["54OX", "sdgs", "8QjC"], + "texture": 16 + }, + "xtL7Hkve": { + "uv": { + "vhJJ": [12.25, 3.75], + "VCA7": [12.75, 3.25], + "IcjH": [12.25, 3.25] + }, + "vertices": ["IcjH", "VCA7", "vhJJ"], + "texture": 16 + }, + "JRIElpEj": { + "uv": { + "IcjH": [13.75, 3.75], + "VCA7": [13.75, 3.25], + "g8AY": [13.25, 3.25], + "Cmxu": [13.25, 3.75] + }, + "vertices": ["Cmxu", "g8AY", "VCA7", "IcjH"], + "texture": 16 + }, + "N6zi1Z8V": { + "uv": { + "YR9K": [14.75, 3.75], + "64eD": [14.75, 3.25], + "8Z7A": [14.25, 3.25], + "rBqN": [14.25, 3.75] + }, + "vertices": ["rBqN", "8Z7A", "64eD", "YR9K"], + "texture": 16 + }, + "EeFNXyFu": { + "uv": { + "rBqN": [15.75, 3.75], + "8Z7A": [15.75, 3.25], + "nnBx": [15.25, 3.25], + "G7iR": [15.25, 3.75] + }, + "vertices": ["G7iR", "nnBx", "8Z7A", "rBqN"], + "texture": 16 + }, + "HVtNylvy": { + "uv": { + "G7iR": [0.75, 4.75], + "nnBx": [0.75, 4.25], + "sdgs": [0.25, 4.25], + "G7Yn": [0.25, 4.75] + }, + "vertices": ["G7Yn", "sdgs", "nnBx", "G7iR"], + "texture": 16 + }, + "GuhboYu6": { + "uv": { + "8QjC": [1.25, 4.75], + "G7Yn": [1.75, 4.25], + "sdgs": [1.25, 4.25] + }, + "vertices": ["sdgs", "G7Yn", "8QjC"], + "texture": 16 + }, + "FatZEx29": { + "uv": { + "vhJJ": [2.25, 4.75], + "IcjH": [2.75, 4.25], + "orU0": [2.25, 4.25] + }, + "vertices": ["orU0", "IcjH", "vhJJ"], + "texture": 16 + }, + "WQlxRTJ0": { + "uv": { + "orU0": [3.75, 4.75], + "IcjH": [3.75, 4.25], + "Cmxu": [3.25, 4.25], + "90Fb": [3.25, 4.75] + }, + "vertices": ["90Fb", "Cmxu", "IcjH", "orU0"], + "texture": 16 + }, + "KLpy0qBF": { + "uv": { + "zNGN": [4.75, 4.75], + "YR9K": [4.75, 4.25], + "rBqN": [4.25, 4.25], + "73Hf": [4.25, 4.75] + }, + "vertices": ["73Hf", "rBqN", "YR9K", "zNGN"], + "texture": 16 + }, + "xp2sa1WG": { + "uv": { + "73Hf": [5.75, 4.75], + "rBqN": [5.75, 4.25], + "G7iR": [5.25, 4.25], + "4ExO": [5.25, 4.75] + }, + "vertices": ["4ExO", "G7iR", "rBqN", "73Hf"], + "texture": 16 + }, + "LXV1I4uf": { + "uv": { + "4ExO": [6.75, 4.75], + "G7iR": [6.75, 4.25], + "G7Yn": [6.25, 4.25], + "f7le": [6.25, 4.75] + }, + "vertices": ["f7le", "G7Yn", "G7iR", "4ExO"], + "texture": 16 + }, + "33MWdMUL": { + "uv": { + "8QjC": [7.25, 4.75], + "f7le": [7.75, 4.25], + "G7Yn": [7.25, 4.25] + }, + "vertices": ["G7Yn", "f7le", "8QjC"], + "texture": 16 + }, + "nvCDOv6y": { + "uv": { + "C5s3": [4.5021, 0.9892], + "zNGN": [0.1463, 0.9892], + "HfsY": [4.6484, 0], + "90Fb": [0, 0] + }, + "vertices": ["90Fb", "HfsY", "zNGN", "C5s3"], + "texture": 16 + }, + "yfWtEI7A": { + "uv": { + "KBoA": [6.5021, 0.9892], + "C5s3": [2.1463, 0.9892], + "9RbY": [6.6484, 0], + "HfsY": [2, 0] + }, + "vertices": ["HfsY", "9RbY", "C5s3", "KBoA"], + "texture": 16 + }, + "ocFuf3xz": { + "uv": { + "W8jt": [9.5021, 0.9892], + "KBoA": [5.1463, 0.9892], + "rwOP": [9.6484, 0], + "9RbY": [5, 0] + }, + "vertices": ["9RbY", "rwOP", "KBoA", "W8jt"], + "texture": 16 + }, + "eulgYJCm": { + "uv": { + "ddkb": [4.5021, 0.9892], + "W8jt": [0.1463, 0.9892], + "Clz7": [4.6484, 0], + "rwOP": [0, 0] + }, + "vertices": ["rwOP", "Clz7", "W8jt", "ddkb"], + "texture": 16 + }, + "qSrVFTTR": { + "uv": { + "rIID": [7.5021, 0.9892], + "ddkb": [3.1463, 0.9892], + "7asH": [7.6484, 0], + "Clz7": [3, 0] + }, + "vertices": ["Clz7", "7asH", "ddkb", "rIID"], + "texture": 16 + }, + "5HJj304c": { + "uv": { + "aLVc": [10.5021, 0.9892], + "rIID": [6.1463, 0.9892], + "NsXb": [10.6484, 0], + "7asH": [6, 0] + }, + "vertices": ["7asH", "NsXb", "rIID", "aLVc"], + "texture": 16 + }, + "UY5zSthE": { + "uv": { + "P9rX": [5.5021, 0.9892], + "aLVc": [1.1463, 0.9892], + "6L0d": [5.6484, 0], + "NsXb": [1, 0] + }, + "vertices": ["NsXb", "6L0d", "aLVc", "P9rX"], + "texture": 16 + }, + "dKCOWHfj": { + "uv": { + "5mdt": [8.5021, 0.9892], + "P9rX": [4.1463, 0.9892], + "odwY": [8.6484, 0], + "6L0d": [4, 0] + }, + "vertices": ["6L0d", "odwY", "P9rX", "5mdt"], + "texture": 16 + }, + "aGdI6sMr": { + "uv": { + "lr5A": [4.5021, 1.9892], + "5mdt": [0.1463, 1.9892], + "mRE8": [4.6484, 1], + "odwY": [0, 1] + }, + "vertices": ["odwY", "mRE8", "5mdt", "lr5A"], + "texture": 16 + }, + "NgqcgSvB": { + "uv": { + "64eD": [6.5021, 1.9892], + "lr5A": [2.1463, 1.9892], + "g8AY": [6.6484, 1], + "mRE8": [2, 1] + }, + "vertices": ["mRE8", "g8AY", "lr5A", "64eD"], + "texture": 16 + }, + "cSZhnQck": { + "uv": { + "YR9K": [9.5021, 1.9892], + "64eD": [5.1463, 1.9892], + "Cmxu": [9.6484, 1], + "g8AY": [5, 1] + }, + "vertices": ["g8AY", "Cmxu", "64eD", "YR9K"], + "texture": 16 + }, + "dqNbUXu2": { + "uv": { + "zNGN": [4.5021, 1.9892], + "YR9K": [0.1463, 1.9892], + "90Fb": [4.6484, 1], + "Cmxu": [0, 1] + }, + "vertices": ["Cmxu", "90Fb", "YR9K", "zNGN"], + "texture": 16 + } + }, + "type": "mesh", + "uuid": "0f6507ac-1f14-fe6c-9de2-db4412df2ba5" + }, + { + "name": "inner", + "color": 8, + "origin": [0, 0, -13], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "8QjC": [0, 26, 0], + "zNGN": [2.17795, 26, 8.1282], + "73Hf": [2.14359, 26, 8], + "4ExO": [1.85641, 26, 6.9282], + "f7le": [1.0718, 26.0718, 4], + "C5s3": [5.95026, 26, 5.95026], + "IS5N": [5.85641, 26, 5.85641], + "KeJY": [5.0718, 26, 5.0718], + "QpFb": [2.9282, 26.0718, 2.9282], + "KBoA": [8.1282, 26, 2.17795], + "UZLZ": [8, 26, 2.14359], + "S7bZ": [6.9282, 26, 1.85641], + "yocC": [4, 26.0718, 1.0718], + "W8jt": [8.1282, 26, -2.17795], + "TP88": [8, 26, -2.14359], + "OJX9": [6.9282, 26, -1.85641], + "PZ0f": [4, 26.0718, -1.0718], + "ddkb": [5.95026, 26, -5.95026], + "Phwt": [5.85641, 26, -5.85641], + "qhSG": [5.0718, 26, -5.0718], + "2KFR": [2.9282, 26.0718, -2.9282], + "rIID": [2.17795, 26, -8.1282], + "2eBc": [2.14359, 26, -8], + "baM3": [1.85641, 26, -6.9282], + "35RP": [1.0718, 26.0718, -4], + "aLVc": [-2.17795, 26, -8.1282], + "KcNg": [-2.14359, 26, -8], + "ar6O": [-1.85641, 26, -6.9282], + "fZGN": [-1.0718, 26.0718, -4], + "P9rX": [-5.95026, 26, -5.95026], + "LfAz": [-5.85641, 26, -5.85641], + "Aldt": [-5.0718, 26, -5.0718], + "arCH": [-2.9282, 26.0718, -2.9282], + "5mdt": [-8.1282, 26, -2.17795], + "f4nL": [-8, 26, -2.14359], + "IW10": [-6.9282, 26, -1.85641], + "Vgik": [-4, 26.0718, -1.0718], + "lr5A": [-8.1282, 26, 2.17795], + "F9rK": [-8, 26, 2.14359], + "pQvi": [-6.9282, 26, 1.85641], + "54OX": [-4, 26.0718, 1.0718], + "64eD": [-5.95026, 26, 5.95026], + "8Z7A": [-5.85641, 26, 5.85641], + "nnBx": [-5.0718, 26, 5.0718], + "sdgs": [-2.9282, 26.0718, 2.9282], + "YR9K": [-2.17795, 26, 8.1282], + "rBqN": [-2.14359, 26, 8], + "G7iR": [-1.85641, 26, 6.9282], + "G7Yn": [-1.0718, 26.0718, 4], + "orU0": [1.17879, 33.83876, 4.39931], + "YyBo": [3.22052, 33.83876, 3.22052], + "vhJJ": [0, 35, 0], + "90Fb": [2.32423, 30.82495, 8.67415], + "HfsY": [6.34992, 30.82495, 6.34992], + "OwBJ": [4.39931, 33.83876, 1.17879], + "9RbY": [8.67415, 30.82495, 2.32423], + "tWGi": [4.39931, 33.83876, -1.17879], + "rwOP": [8.67415, 30.82495, -2.32423], + "AYq6": [3.22052, 33.83876, -3.22052], + "Clz7": [6.34992, 30.82495, -6.34992], + "13x6": [1.17879, 33.83876, -4.39931], + "7asH": [2.32423, 30.82495, -8.67415], + "53PY": [-1.17879, 33.83876, -4.39931], + "NsXb": [-2.32423, 30.82495, -8.67415], + "cf6G": [-3.22052, 33.83876, -3.22052], + "6L0d": [-6.34992, 30.82495, -6.34992], + "8i9k": [-4.39931, 33.83876, -1.17879], + "odwY": [-8.67415, 30.82495, -2.32423], + "bedr": [-4.39931, 33.83876, 1.17879], + "mRE8": [-8.67415, 30.82495, 2.32423], + "VCA7": [-3.22052, 33.83876, 3.22052], + "g8AY": [-6.34992, 30.82495, 6.34992], + "IcjH": [-1.17879, 33.83876, 4.39931], + "Cmxu": [-2.32423, 30.82495, 8.67415] + }, + "faces": { + "ZngK3IpC": { + "uv": { + "vhJJ": [0.25, 0.75], + "YyBo": [0.25, 0.25], + "orU0": [0.75, 0.25] + }, + "vertices": ["orU0", "YyBo", "vhJJ"], + "texture": 15 + }, + "L46i6DN5": { + "uv": { + "YyBo": [1.75, 0.75], + "orU0": [1.75, 0.25], + "HfsY": [1.25, 0.75], + "90Fb": [1.25, 0.25] + }, + "vertices": ["90Fb", "HfsY", "orU0", "YyBo"], + "texture": 15 + }, + "eNbWbFkk": { + "uv": { + "C5s3": [2.75, 0.75], + "zNGN": [2.75, 0.25], + "IS5N": [2.25, 0.75], + "73Hf": [2.25, 0.25] + }, + "vertices": ["73Hf", "IS5N", "zNGN", "C5s3"], + "texture": 15 + }, + "roTqvBDD": { + "uv": { + "IS5N": [3.75, 0.75], + "73Hf": [3.75, 0.25], + "KeJY": [3.25, 0.75], + "4ExO": [3.25, 0.25] + }, + "vertices": ["4ExO", "KeJY", "73Hf", "IS5N"], + "texture": 15 + }, + "H5SeHMdG": { + "uv": { + "KeJY": [4.75, 0.75], + "4ExO": [4.75, 0.25], + "QpFb": [4.25, 0.75], + "f7le": [4.25, 0.25] + }, + "vertices": ["f7le", "QpFb", "4ExO", "KeJY"], + "texture": 15 + }, + "9fOaMI7A": { + "uv": { + "8QjC": [5.25, 0.75], + "f7le": [5.25, 0.25], + "QpFb": [5.75, 0.25] + }, + "vertices": ["QpFb", "f7le", "8QjC"], + "texture": 15 + }, + "eHg0Xk2X": { + "uv": { + "vhJJ": [6.25, 0.75], + "OwBJ": [6.25, 0.25], + "YyBo": [6.75, 0.25] + }, + "vertices": ["YyBo", "OwBJ", "vhJJ"], + "texture": 15 + }, + "sRhLlJHL": { + "uv": { + "OwBJ": [7.75, 0.75], + "YyBo": [7.75, 0.25], + "9RbY": [7.25, 0.75], + "HfsY": [7.25, 0.25] + }, + "vertices": ["HfsY", "9RbY", "YyBo", "OwBJ"], + "texture": 15 + }, + "1hmcvGBk": { + "uv": { + "KBoA": [8.75, 0.75], + "C5s3": [8.75, 0.25], + "UZLZ": [8.25, 0.75], + "IS5N": [8.25, 0.25] + }, + "vertices": ["IS5N", "UZLZ", "C5s3", "KBoA"], + "texture": 15 + }, + "O4BJvLoN": { + "uv": { + "UZLZ": [9.75, 0.75], + "IS5N": [9.75, 0.25], + "S7bZ": [9.25, 0.75], + "KeJY": [9.25, 0.25] + }, + "vertices": ["KeJY", "S7bZ", "IS5N", "UZLZ"], + "texture": 15 + }, + "kx9KAAPA": { + "uv": { + "S7bZ": [10.75, 0.75], + "KeJY": [10.75, 0.25], + "yocC": [10.25, 0.75], + "QpFb": [10.25, 0.25] + }, + "vertices": ["QpFb", "yocC", "KeJY", "S7bZ"], + "texture": 15 + }, + "7xBzzsZo": { + "uv": { + "8QjC": [11.25, 0.75], + "QpFb": [11.25, 0.25], + "yocC": [11.75, 0.25] + }, + "vertices": ["yocC", "QpFb", "8QjC"], + "texture": 15 + }, + "uVFCvy3R": { + "uv": { + "vhJJ": [12.25, 0.75], + "tWGi": [12.25, 0.25], + "OwBJ": [12.75, 0.25] + }, + "vertices": ["OwBJ", "tWGi", "vhJJ"], + "texture": 15 + }, + "WaNtzBKB": { + "uv": { + "tWGi": [13.75, 0.75], + "OwBJ": [13.75, 0.25], + "rwOP": [13.25, 0.75], + "9RbY": [13.25, 0.25] + }, + "vertices": ["9RbY", "rwOP", "OwBJ", "tWGi"], + "texture": 15 + }, + "vTSW5OcT": { + "uv": { + "W8jt": [14.75, 0.75], + "KBoA": [14.75, 0.25], + "TP88": [14.25, 0.75], + "UZLZ": [14.25, 0.25] + }, + "vertices": ["UZLZ", "TP88", "KBoA", "W8jt"], + "texture": 15 + }, + "TUIIt1x5": { + "uv": { + "TP88": [15.75, 0.75], + "UZLZ": [15.75, 0.25], + "OJX9": [15.25, 0.75], + "S7bZ": [15.25, 0.25] + }, + "vertices": ["S7bZ", "OJX9", "UZLZ", "TP88"], + "texture": 15 + }, + "VvVgk78W": { + "uv": { + "OJX9": [0.75, 1.75], + "S7bZ": [0.75, 1.25], + "PZ0f": [0.25, 1.75], + "yocC": [0.25, 1.25] + }, + "vertices": ["yocC", "PZ0f", "S7bZ", "OJX9"], + "texture": 15 + }, + "MYvVN80s": { + "uv": { + "8QjC": [1.25, 1.75], + "yocC": [1.25, 1.25], + "PZ0f": [1.75, 1.25] + }, + "vertices": ["PZ0f", "yocC", "8QjC"], + "texture": 15 + }, + "Xxx3Dir0": { + "uv": { + "vhJJ": [2.25, 1.75], + "AYq6": [2.25, 1.25], + "tWGi": [2.75, 1.25] + }, + "vertices": ["tWGi", "AYq6", "vhJJ"], + "texture": 15 + }, + "wcliUruQ": { + "uv": { + "AYq6": [3.75, 1.75], + "tWGi": [3.75, 1.25], + "Clz7": [3.25, 1.75], + "rwOP": [3.25, 1.25] + }, + "vertices": ["rwOP", "Clz7", "tWGi", "AYq6"], + "texture": 15 + }, + "AC8pSweT": { + "uv": { + "ddkb": [4.75, 1.75], + "W8jt": [4.75, 1.25], + "Phwt": [4.25, 1.75], + "TP88": [4.25, 1.25] + }, + "vertices": ["TP88", "Phwt", "W8jt", "ddkb"], + "texture": 15 + }, + "iy6mUocz": { + "uv": { + "Phwt": [5.75, 1.75], + "TP88": [5.75, 1.25], + "qhSG": [5.25, 1.75], + "OJX9": [5.25, 1.25] + }, + "vertices": ["OJX9", "qhSG", "TP88", "Phwt"], + "texture": 15 + }, + "XcdOlphk": { + "uv": { + "qhSG": [6.75, 1.75], + "OJX9": [6.75, 1.25], + "2KFR": [6.25, 1.75], + "PZ0f": [6.25, 1.25] + }, + "vertices": ["PZ0f", "2KFR", "OJX9", "qhSG"], + "texture": 15 + }, + "SmiDIWsL": { + "uv": { + "8QjC": [7.25, 1.75], + "PZ0f": [7.25, 1.25], + "2KFR": [7.75, 1.25] + }, + "vertices": ["2KFR", "PZ0f", "8QjC"], + "texture": 15 + }, + "sHO7ks0Z": { + "uv": { + "vhJJ": [8.25, 1.75], + "13x6": [8.25, 1.25], + "AYq6": [8.75, 1.25] + }, + "vertices": ["AYq6", "13x6", "vhJJ"], + "texture": 15 + }, + "X1LTFYRX": { + "uv": { + "13x6": [9.75, 1.75], + "AYq6": [9.75, 1.25], + "7asH": [9.25, 1.75], + "Clz7": [9.25, 1.25] + }, + "vertices": ["Clz7", "7asH", "AYq6", "13x6"], + "texture": 15 + }, + "2yagsWv6": { + "uv": { + "rIID": [10.75, 1.75], + "ddkb": [10.75, 1.25], + "2eBc": [10.25, 1.75], + "Phwt": [10.25, 1.25] + }, + "vertices": ["Phwt", "2eBc", "ddkb", "rIID"], + "texture": 15 + }, + "XA5lNjst": { + "uv": { + "2eBc": [11.75, 1.75], + "Phwt": [11.75, 1.25], + "baM3": [11.25, 1.75], + "qhSG": [11.25, 1.25] + }, + "vertices": ["qhSG", "baM3", "Phwt", "2eBc"], + "texture": 15 + }, + "Ygcj4wdC": { + "uv": { + "baM3": [12.75, 1.75], + "qhSG": [12.75, 1.25], + "35RP": [12.25, 1.75], + "2KFR": [12.25, 1.25] + }, + "vertices": ["2KFR", "35RP", "qhSG", "baM3"], + "texture": 15 + }, + "m7Ce9uDx": { + "uv": { + "8QjC": [13.25, 1.75], + "2KFR": [13.25, 1.25], + "35RP": [13.75, 1.25] + }, + "vertices": ["35RP", "2KFR", "8QjC"], + "texture": 15 + }, + "MLo3SzB8": { + "uv": { + "vhJJ": [14.25, 1.75], + "53PY": [14.25, 1.25], + "13x6": [14.75, 1.25] + }, + "vertices": ["13x6", "53PY", "vhJJ"], + "texture": 15 + }, + "1rfpAtcz": { + "uv": { + "53PY": [15.75, 1.75], + "13x6": [15.75, 1.25], + "NsXb": [15.25, 1.75], + "7asH": [15.25, 1.25] + }, + "vertices": ["7asH", "NsXb", "13x6", "53PY"], + "texture": 15 + }, + "a42rImDx": { + "uv": { + "aLVc": [0.75, 2.75], + "rIID": [0.75, 2.25], + "KcNg": [0.25, 2.75], + "2eBc": [0.25, 2.25] + }, + "vertices": ["2eBc", "KcNg", "rIID", "aLVc"], + "texture": 15 + }, + "3vOJocS7": { + "uv": { + "KcNg": [1.75, 2.75], + "2eBc": [1.75, 2.25], + "ar6O": [1.25, 2.75], + "baM3": [1.25, 2.25] + }, + "vertices": ["baM3", "ar6O", "2eBc", "KcNg"], + "texture": 15 + }, + "D2Af9725": { + "uv": { + "ar6O": [2.75, 2.75], + "baM3": [2.75, 2.25], + "fZGN": [2.25, 2.75], + "35RP": [2.25, 2.25] + }, + "vertices": ["35RP", "fZGN", "baM3", "ar6O"], + "texture": 15 + }, + "VxgGZCf2": { + "uv": { + "8QjC": [3.25, 2.75], + "35RP": [3.25, 2.25], + "fZGN": [3.75, 2.25] + }, + "vertices": ["fZGN", "35RP", "8QjC"], + "texture": 15 + }, + "E1Intunq": { + "uv": { + "vhJJ": [4.25, 2.75], + "cf6G": [4.25, 2.25], + "53PY": [4.75, 2.25] + }, + "vertices": ["53PY", "cf6G", "vhJJ"], + "texture": 15 + }, + "ANsPkIUD": { + "uv": { + "cf6G": [5.75, 2.75], + "53PY": [5.75, 2.25], + "6L0d": [5.25, 2.75], + "NsXb": [5.25, 2.25] + }, + "vertices": ["NsXb", "6L0d", "53PY", "cf6G"], + "texture": 15 + }, + "hky4vXZs": { + "uv": { + "P9rX": [6.75, 2.75], + "aLVc": [6.75, 2.25], + "LfAz": [6.25, 2.75], + "KcNg": [6.25, 2.25] + }, + "vertices": ["KcNg", "LfAz", "aLVc", "P9rX"], + "texture": 15 + }, + "MdnWKrBw": { + "uv": { + "LfAz": [7.75, 2.75], + "KcNg": [7.75, 2.25], + "Aldt": [7.25, 2.75], + "ar6O": [7.25, 2.25] + }, + "vertices": ["ar6O", "Aldt", "KcNg", "LfAz"], + "texture": 15 + }, + "x5VkzqFN": { + "uv": { + "Aldt": [8.75, 2.75], + "ar6O": [8.75, 2.25], + "arCH": [8.25, 2.75], + "fZGN": [8.25, 2.25] + }, + "vertices": ["fZGN", "arCH", "ar6O", "Aldt"], + "texture": 15 + }, + "yR8j2fnY": { + "uv": { + "8QjC": [9.25, 2.75], + "fZGN": [9.25, 2.25], + "arCH": [9.75, 2.25] + }, + "vertices": ["arCH", "fZGN", "8QjC"], + "texture": 15 + }, + "hyLdc1Q6": { + "uv": { + "vhJJ": [10.25, 2.75], + "8i9k": [10.25, 2.25], + "cf6G": [10.75, 2.25] + }, + "vertices": ["cf6G", "8i9k", "vhJJ"], + "texture": 15 + }, + "A0sjcu7e": { + "uv": { + "8i9k": [11.75, 2.75], + "cf6G": [11.75, 2.25], + "odwY": [11.25, 2.75], + "6L0d": [11.25, 2.25] + }, + "vertices": ["6L0d", "odwY", "cf6G", "8i9k"], + "texture": 15 + }, + "nGDnWgSP": { + "uv": { + "5mdt": [12.75, 2.75], + "P9rX": [12.75, 2.25], + "f4nL": [12.25, 2.75], + "LfAz": [12.25, 2.25] + }, + "vertices": ["LfAz", "f4nL", "P9rX", "5mdt"], + "texture": 15 + }, + "vUpqRqbF": { + "uv": { + "f4nL": [13.75, 2.75], + "LfAz": [13.75, 2.25], + "IW10": [13.25, 2.75], + "Aldt": [13.25, 2.25] + }, + "vertices": ["Aldt", "IW10", "LfAz", "f4nL"], + "texture": 15 + }, + "s05slp5K": { + "uv": { + "IW10": [14.75, 2.75], + "Aldt": [14.75, 2.25], + "Vgik": [14.25, 2.75], + "arCH": [14.25, 2.25] + }, + "vertices": ["arCH", "Vgik", "Aldt", "IW10"], + "texture": 15 + }, + "Sxc6OKkK": { + "uv": { + "8QjC": [15.25, 2.75], + "arCH": [15.25, 2.25], + "Vgik": [15.75, 2.25] + }, + "vertices": ["Vgik", "arCH", "8QjC"], + "texture": 15 + }, + "X3nCaFBv": { + "uv": { + "vhJJ": [0.25, 3.75], + "bedr": [0.25, 3.25], + "8i9k": [0.75, 3.25] + }, + "vertices": ["8i9k", "bedr", "vhJJ"], + "texture": 15 + }, + "XamBI9pA": { + "uv": { + "bedr": [1.75, 3.75], + "8i9k": [1.75, 3.25], + "mRE8": [1.25, 3.75], + "odwY": [1.25, 3.25] + }, + "vertices": ["odwY", "mRE8", "8i9k", "bedr"], + "texture": 15 + }, + "zgN1GtnK": { + "uv": { + "lr5A": [2.75, 3.75], + "5mdt": [2.75, 3.25], + "F9rK": [2.25, 3.75], + "f4nL": [2.25, 3.25] + }, + "vertices": ["f4nL", "F9rK", "5mdt", "lr5A"], + "texture": 15 + }, + "FprSWSc8": { + "uv": { + "F9rK": [3.75, 3.75], + "f4nL": [3.75, 3.25], + "pQvi": [3.25, 3.75], + "IW10": [3.25, 3.25] + }, + "vertices": ["IW10", "pQvi", "f4nL", "F9rK"], + "texture": 15 + }, + "e9rnkzEJ": { + "uv": { + "pQvi": [4.75, 3.75], + "IW10": [4.75, 3.25], + "54OX": [4.25, 3.75], + "Vgik": [4.25, 3.25] + }, + "vertices": ["Vgik", "54OX", "IW10", "pQvi"], + "texture": 15 + }, + "OedC1Ope": { + "uv": { + "8QjC": [5.25, 3.75], + "Vgik": [5.25, 3.25], + "54OX": [5.75, 3.25] + }, + "vertices": ["54OX", "Vgik", "8QjC"], + "texture": 15 + }, + "lIt5gO7w": { + "uv": { + "vhJJ": [6.25, 3.75], + "VCA7": [6.25, 3.25], + "bedr": [6.75, 3.25] + }, + "vertices": ["bedr", "VCA7", "vhJJ"], + "texture": 15 + }, + "fiLiv4eu": { + "uv": { + "VCA7": [7.75, 3.75], + "bedr": [7.75, 3.25], + "g8AY": [7.25, 3.75], + "mRE8": [7.25, 3.25] + }, + "vertices": ["mRE8", "g8AY", "bedr", "VCA7"], + "texture": 15 + }, + "iTZHiYyz": { + "uv": { + "64eD": [8.75, 3.75], + "lr5A": [8.75, 3.25], + "8Z7A": [8.25, 3.75], + "F9rK": [8.25, 3.25] + }, + "vertices": ["F9rK", "8Z7A", "lr5A", "64eD"], + "texture": 15 + }, + "4qdXLnbR": { + "uv": { + "8Z7A": [9.75, 3.75], + "F9rK": [9.75, 3.25], + "nnBx": [9.25, 3.75], + "pQvi": [9.25, 3.25] + }, + "vertices": ["pQvi", "nnBx", "F9rK", "8Z7A"], + "texture": 15 + }, + "a4mGhICC": { + "uv": { + "nnBx": [10.75, 3.75], + "pQvi": [10.75, 3.25], + "sdgs": [10.25, 3.75], + "54OX": [10.25, 3.25] + }, + "vertices": ["54OX", "sdgs", "pQvi", "nnBx"], + "texture": 15 + }, + "SUg8IVYl": { + "uv": { + "8QjC": [11.25, 3.75], + "54OX": [11.25, 3.25], + "sdgs": [11.75, 3.25] + }, + "vertices": ["sdgs", "54OX", "8QjC"], + "texture": 15 + }, + "xtL7Hkve": { + "uv": { + "vhJJ": [12.25, 3.75], + "IcjH": [12.25, 3.25], + "VCA7": [12.75, 3.25] + }, + "vertices": ["VCA7", "IcjH", "vhJJ"], + "texture": 15 + }, + "JRIElpEj": { + "uv": { + "IcjH": [13.75, 3.75], + "VCA7": [13.75, 3.25], + "Cmxu": [13.25, 3.75], + "g8AY": [13.25, 3.25] + }, + "vertices": ["g8AY", "Cmxu", "VCA7", "IcjH"], + "texture": 15 + }, + "N6zi1Z8V": { + "uv": { + "YR9K": [14.75, 3.75], + "64eD": [14.75, 3.25], + "rBqN": [14.25, 3.75], + "8Z7A": [14.25, 3.25] + }, + "vertices": ["8Z7A", "rBqN", "64eD", "YR9K"], + "texture": 15 + }, + "EeFNXyFu": { + "uv": { + "rBqN": [15.75, 3.75], + "8Z7A": [15.75, 3.25], + "G7iR": [15.25, 3.75], + "nnBx": [15.25, 3.25] + }, + "vertices": ["nnBx", "G7iR", "8Z7A", "rBqN"], + "texture": 15 + }, + "HVtNylvy": { + "uv": { + "G7iR": [0.75, 4.75], + "nnBx": [0.75, 4.25], + "G7Yn": [0.25, 4.75], + "sdgs": [0.25, 4.25] + }, + "vertices": ["sdgs", "G7Yn", "nnBx", "G7iR"], + "texture": 15 + }, + "GuhboYu6": { + "uv": { + "8QjC": [1.25, 4.75], + "sdgs": [1.25, 4.25], + "G7Yn": [1.75, 4.25] + }, + "vertices": ["G7Yn", "sdgs", "8QjC"], + "texture": 15 + }, + "FatZEx29": { + "uv": { + "vhJJ": [2.25, 4.75], + "orU0": [2.25, 4.25], + "IcjH": [2.75, 4.25] + }, + "vertices": ["IcjH", "orU0", "vhJJ"], + "texture": 15 + }, + "WQlxRTJ0": { + "uv": { + "orU0": [3.75, 4.75], + "IcjH": [3.75, 4.25], + "90Fb": [3.25, 4.75], + "Cmxu": [3.25, 4.25] + }, + "vertices": ["Cmxu", "90Fb", "IcjH", "orU0"], + "texture": 15 + }, + "KLpy0qBF": { + "uv": { + "zNGN": [4.75, 4.75], + "YR9K": [4.75, 4.25], + "73Hf": [4.25, 4.75], + "rBqN": [4.25, 4.25] + }, + "vertices": ["rBqN", "73Hf", "YR9K", "zNGN"], + "texture": 15 + }, + "xp2sa1WG": { + "uv": { + "73Hf": [5.75, 4.75], + "rBqN": [5.75, 4.25], + "4ExO": [5.25, 4.75], + "G7iR": [5.25, 4.25] + }, + "vertices": ["G7iR", "4ExO", "rBqN", "73Hf"], + "texture": 15 + }, + "LXV1I4uf": { + "uv": { + "4ExO": [6.75, 4.75], + "G7iR": [6.75, 4.25], + "f7le": [6.25, 4.75], + "G7Yn": [6.25, 4.25] + }, + "vertices": ["G7Yn", "f7le", "G7iR", "4ExO"], + "texture": 15 + }, + "33MWdMUL": { + "uv": { + "8QjC": [7.25, 4.75], + "G7Yn": [7.25, 4.25], + "f7le": [7.75, 4.25] + }, + "vertices": ["f7le", "G7Yn", "8QjC"], + "texture": 15 + }, + "nvCDOv6y": { + "uv": { + "C5s3": [4.5021, 0.9892], + "zNGN": [0.1463, 0.9892], + "90Fb": [0, 0], + "HfsY": [4.6484, 0] + }, + "vertices": ["HfsY", "90Fb", "zNGN", "C5s3"], + "texture": 15 + }, + "yfWtEI7A": { + "uv": { + "KBoA": [6.5021, 0.9892], + "C5s3": [2.1463, 0.9892], + "HfsY": [2, 0], + "9RbY": [6.6484, 0] + }, + "vertices": ["9RbY", "HfsY", "C5s3", "KBoA"], + "texture": 15 + }, + "ocFuf3xz": { + "uv": { + "W8jt": [9.5021, 0.9892], + "KBoA": [5.1463, 0.9892], + "9RbY": [5, 0], + "rwOP": [9.6484, 0] + }, + "vertices": ["rwOP", "9RbY", "KBoA", "W8jt"], + "texture": 15 + }, + "eulgYJCm": { + "uv": { + "ddkb": [4.5021, 0.9892], + "W8jt": [0.1463, 0.9892], + "rwOP": [0, 0], + "Clz7": [4.6484, 0] + }, + "vertices": ["Clz7", "rwOP", "W8jt", "ddkb"], + "texture": 15 + }, + "qSrVFTTR": { + "uv": { + "rIID": [7.5021, 0.9892], + "ddkb": [3.1463, 0.9892], + "Clz7": [3, 0], + "7asH": [7.6484, 0] + }, + "vertices": ["7asH", "Clz7", "ddkb", "rIID"], + "texture": 15 + }, + "5HJj304c": { + "uv": { + "aLVc": [10.5021, 0.9892], + "rIID": [6.1463, 0.9892], + "7asH": [6, 0], + "NsXb": [10.6484, 0] + }, + "vertices": ["NsXb", "7asH", "rIID", "aLVc"], + "texture": 15 + }, + "UY5zSthE": { + "uv": { + "P9rX": [5.5021, 0.9892], + "aLVc": [1.1463, 0.9892], + "NsXb": [1, 0], + "6L0d": [5.6484, 0] + }, + "vertices": ["6L0d", "NsXb", "aLVc", "P9rX"], + "texture": 15 + }, + "dKCOWHfj": { + "uv": { + "5mdt": [8.5021, 0.9892], + "P9rX": [4.1463, 0.9892], + "6L0d": [4, 0], + "odwY": [8.6484, 0] + }, + "vertices": ["odwY", "6L0d", "P9rX", "5mdt"], + "texture": 15 + }, + "aGdI6sMr": { + "uv": { + "lr5A": [4.5021, 1.9892], + "5mdt": [0.1463, 1.9892], + "odwY": [0, 1], + "mRE8": [4.6484, 1] + }, + "vertices": ["mRE8", "odwY", "5mdt", "lr5A"], + "texture": 15 + }, + "NgqcgSvB": { + "uv": { + "64eD": [6.5021, 1.9892], + "lr5A": [2.1463, 1.9892], + "mRE8": [2, 1], + "g8AY": [6.6484, 1] + }, + "vertices": ["g8AY", "mRE8", "lr5A", "64eD"], + "texture": 15 + }, + "cSZhnQck": { + "uv": { + "YR9K": [9.5021, 1.9892], + "64eD": [5.1463, 1.9892], + "g8AY": [5, 1], + "Cmxu": [9.6484, 1] + }, + "vertices": ["Cmxu", "g8AY", "64eD", "YR9K"], + "texture": 15 + }, + "dqNbUXu2": { + "uv": { + "zNGN": [4.5021, 1.9892], + "YR9K": [0.1463, 1.9892], + "Cmxu": [0, 1], + "90Fb": [4.6484, 1] + }, + "vertices": ["90Fb", "Cmxu", "YR9K", "zNGN"], + "texture": 15 + } + }, + "type": "mesh", + "uuid": "95f99834-7054-ac76-4284-fe8ffa6abc74" + }, + { + "name": "outer", + "color": 8, + "origin": [0, 0, -13], + "rotation": [0, 0, 0], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "8QjC": [0, 25.5, 0], + "zNGN": [2.30349, 25.5, 8.59673], + "73Hf": [2.26716, 25.5, 8.46114], + "4ExO": [1.96341, 25.5, 7.32756], + "f7le": [1.13358, 25.57977, 4.23057], + "C5s3": [6.29325, 25.5, 6.29325], + "IS5N": [6.19398, 25.5, 6.19398], + "KeJY": [5.36415, 25.5, 5.36415], + "QpFb": [3.09699, 25.57977, 3.09699], + "KBoA": [8.59673, 25.5, 2.30349], + "UZLZ": [8.46114, 25.5, 2.26716], + "S7bZ": [7.32756, 25.5, 1.96341], + "yocC": [4.23057, 25.57977, 1.13358], + "W8jt": [8.59673, 25.5, -2.30349], + "TP88": [8.46114, 25.5, -2.26716], + "OJX9": [7.32756, 25.5, -1.96341], + "PZ0f": [4.23057, 25.57977, -1.13358], + "ddkb": [6.29325, 25.5, -6.29325], + "Phwt": [6.19398, 25.5, -6.19398], + "qhSG": [5.36415, 25.5, -5.36415], + "2KFR": [3.09699, 25.57977, -3.09699], + "rIID": [2.30349, 25.5, -8.59673], + "2eBc": [2.26716, 25.5, -8.46114], + "baM3": [1.96341, 25.5, -7.32756], + "35RP": [1.13358, 25.57977, -4.23057], + "aLVc": [-2.30349, 25.5, -8.59673], + "KcNg": [-2.26716, 25.5, -8.46114], + "ar6O": [-1.96341, 25.5, -7.32756], + "fZGN": [-1.13358, 25.57977, -4.23057], + "P9rX": [-6.29325, 25.5, -6.29325], + "LfAz": [-6.19398, 25.5, -6.19398], + "Aldt": [-5.36415, 25.5, -5.36415], + "arCH": [-3.09699, 25.57977, -3.09699], + "5mdt": [-8.59673, 25.5, -2.30349], + "f4nL": [-8.46114, 25.5, -2.26716], + "IW10": [-7.32756, 25.5, -1.96341], + "Vgik": [-4.23057, 25.57977, -1.13358], + "lr5A": [-8.59673, 25.5, 2.30349], + "F9rK": [-8.46114, 25.5, 2.26716], + "pQvi": [-7.32756, 25.5, 1.96341], + "54OX": [-4.23057, 25.57977, 1.13358], + "64eD": [-6.29325, 25.5, 6.29325], + "8Z7A": [-6.19398, 25.5, 6.19398], + "nnBx": [-5.36415, 25.5, 5.36415], + "sdgs": [-3.09699, 25.57977, 3.09699], + "YR9K": [-2.30349, 25.5, 8.59673], + "rBqN": [-2.26716, 25.5, 8.46114], + "G7iR": [-1.96341, 25.5, 7.32756], + "G7Yn": [-1.13358, 25.57977, 4.23057], + "orU0": [1.24674, 34.20973, 4.65289], + "YyBo": [3.40615, 34.20973, 3.40615], + "vhJJ": [0, 35.5, 0], + "90Fb": [2.45821, 30.86105, 9.17415], + "HfsY": [6.71595, 30.86105, 6.71595], + "OwBJ": [4.65289, 34.20973, 1.24674], + "9RbY": [9.17415, 30.86105, 2.45821], + "tWGi": [4.65289, 34.20973, -1.24674], + "rwOP": [9.17415, 30.86105, -2.45821], + "AYq6": [3.40615, 34.20973, -3.40615], + "Clz7": [6.71595, 30.86105, -6.71595], + "13x6": [1.24674, 34.20973, -4.65289], + "7asH": [2.45821, 30.86105, -9.17415], + "53PY": [-1.24674, 34.20973, -4.65289], + "NsXb": [-2.45821, 30.86105, -9.17415], + "cf6G": [-3.40615, 34.20973, -3.40615], + "6L0d": [-6.71595, 30.86105, -6.71595], + "8i9k": [-4.65289, 34.20973, -1.24674], + "odwY": [-9.17415, 30.86105, -2.45821], + "bedr": [-4.65289, 34.20973, 1.24674], + "mRE8": [-9.17415, 30.86105, 2.45821], + "VCA7": [-3.40615, 34.20973, 3.40615], + "g8AY": [-6.71595, 30.86105, 6.71595], + "IcjH": [-1.24674, 34.20973, 4.65289], + "Cmxu": [-2.45821, 30.86105, 9.17415] + }, + "faces": { + "ZngK3IpC": { + "uv": { + "vhJJ": [0.25, 0.75], + "orU0": [0.75, 0.25], + "YyBo": [0.25, 0.25] + }, + "vertices": ["YyBo", "orU0", "vhJJ"], + "texture": 15 + }, + "L46i6DN5": { + "uv": { + "YyBo": [1.75, 0.75], + "orU0": [1.75, 0.25], + "90Fb": [1.25, 0.25], + "HfsY": [1.25, 0.75] + }, + "vertices": ["HfsY", "90Fb", "orU0", "YyBo"], + "texture": 15 + }, + "eNbWbFkk": { + "uv": { + "C5s3": [2.75, 0.75], + "zNGN": [2.75, 0.25], + "73Hf": [2.25, 0.25], + "IS5N": [2.25, 0.75] + }, + "vertices": ["IS5N", "73Hf", "zNGN", "C5s3"], + "texture": 15 + }, + "roTqvBDD": { + "uv": { + "IS5N": [3.75, 0.75], + "73Hf": [3.75, 0.25], + "4ExO": [3.25, 0.25], + "KeJY": [3.25, 0.75] + }, + "vertices": ["KeJY", "4ExO", "73Hf", "IS5N"], + "texture": 15 + }, + "H5SeHMdG": { + "uv": { + "KeJY": [4.75, 0.75], + "4ExO": [4.75, 0.25], + "f7le": [4.25, 0.25], + "QpFb": [4.25, 0.75] + }, + "vertices": ["QpFb", "f7le", "4ExO", "KeJY"], + "texture": 15 + }, + "9fOaMI7A": { + "uv": { + "8QjC": [5.25, 0.75], + "QpFb": [5.75, 0.25], + "f7le": [5.25, 0.25] + }, + "vertices": ["f7le", "QpFb", "8QjC"], + "texture": 15 + }, + "eHg0Xk2X": { + "uv": { + "vhJJ": [6.25, 0.75], + "YyBo": [6.75, 0.25], + "OwBJ": [6.25, 0.25] + }, + "vertices": ["OwBJ", "YyBo", "vhJJ"], + "texture": 15 + }, + "sRhLlJHL": { + "uv": { + "OwBJ": [7.75, 0.75], + "YyBo": [7.75, 0.25], + "HfsY": [7.25, 0.25], + "9RbY": [7.25, 0.75] + }, + "vertices": ["9RbY", "HfsY", "YyBo", "OwBJ"], + "texture": 15 + }, + "1hmcvGBk": { + "uv": { + "KBoA": [8.75, 0.75], + "C5s3": [8.75, 0.25], + "IS5N": [8.25, 0.25], + "UZLZ": [8.25, 0.75] + }, + "vertices": ["UZLZ", "IS5N", "C5s3", "KBoA"], + "texture": 15 + }, + "O4BJvLoN": { + "uv": { + "UZLZ": [9.75, 0.75], + "IS5N": [9.75, 0.25], + "KeJY": [9.25, 0.25], + "S7bZ": [9.25, 0.75] + }, + "vertices": ["S7bZ", "KeJY", "IS5N", "UZLZ"], + "texture": 15 + }, + "kx9KAAPA": { + "uv": { + "S7bZ": [10.75, 0.75], + "KeJY": [10.75, 0.25], + "QpFb": [10.25, 0.25], + "yocC": [10.25, 0.75] + }, + "vertices": ["yocC", "QpFb", "KeJY", "S7bZ"], + "texture": 15 + }, + "7xBzzsZo": { + "uv": { + "8QjC": [11.25, 0.75], + "yocC": [11.75, 0.25], + "QpFb": [11.25, 0.25] + }, + "vertices": ["QpFb", "yocC", "8QjC"], + "texture": 15 + }, + "uVFCvy3R": { + "uv": { + "vhJJ": [12.25, 0.75], + "OwBJ": [12.75, 0.25], + "tWGi": [12.25, 0.25] + }, + "vertices": ["tWGi", "OwBJ", "vhJJ"], + "texture": 15 + }, + "WaNtzBKB": { + "uv": { + "tWGi": [13.75, 0.75], + "OwBJ": [13.75, 0.25], + "9RbY": [13.25, 0.25], + "rwOP": [13.25, 0.75] + }, + "vertices": ["rwOP", "9RbY", "OwBJ", "tWGi"], + "texture": 15 + }, + "vTSW5OcT": { + "uv": { + "W8jt": [14.75, 0.75], + "KBoA": [14.75, 0.25], + "UZLZ": [14.25, 0.25], + "TP88": [14.25, 0.75] + }, + "vertices": ["TP88", "UZLZ", "KBoA", "W8jt"], + "texture": 15 + }, + "TUIIt1x5": { + "uv": { + "TP88": [15.75, 0.75], + "UZLZ": [15.75, 0.25], + "S7bZ": [15.25, 0.25], + "OJX9": [15.25, 0.75] + }, + "vertices": ["OJX9", "S7bZ", "UZLZ", "TP88"], + "texture": 15 + }, + "VvVgk78W": { + "uv": { + "OJX9": [0.75, 1.75], + "S7bZ": [0.75, 1.25], + "yocC": [0.25, 1.25], + "PZ0f": [0.25, 1.75] + }, + "vertices": ["PZ0f", "yocC", "S7bZ", "OJX9"], + "texture": 15 + }, + "MYvVN80s": { + "uv": { + "8QjC": [1.25, 1.75], + "PZ0f": [1.75, 1.25], + "yocC": [1.25, 1.25] + }, + "vertices": ["yocC", "PZ0f", "8QjC"], + "texture": 15 + }, + "Xxx3Dir0": { + "uv": { + "vhJJ": [2.25, 1.75], + "tWGi": [2.75, 1.25], + "AYq6": [2.25, 1.25] + }, + "vertices": ["AYq6", "tWGi", "vhJJ"], + "texture": 15 + }, + "wcliUruQ": { + "uv": { + "AYq6": [3.75, 1.75], + "tWGi": [3.75, 1.25], + "rwOP": [3.25, 1.25], + "Clz7": [3.25, 1.75] + }, + "vertices": ["Clz7", "rwOP", "tWGi", "AYq6"], + "texture": 15 + }, + "AC8pSweT": { + "uv": { + "ddkb": [4.75, 1.75], + "W8jt": [4.75, 1.25], + "TP88": [4.25, 1.25], + "Phwt": [4.25, 1.75] + }, + "vertices": ["Phwt", "TP88", "W8jt", "ddkb"], + "texture": 15 + }, + "iy6mUocz": { + "uv": { + "Phwt": [5.75, 1.75], + "TP88": [5.75, 1.25], + "OJX9": [5.25, 1.25], + "qhSG": [5.25, 1.75] + }, + "vertices": ["qhSG", "OJX9", "TP88", "Phwt"], + "texture": 15 + }, + "XcdOlphk": { + "uv": { + "qhSG": [6.75, 1.75], + "OJX9": [6.75, 1.25], + "PZ0f": [6.25, 1.25], + "2KFR": [6.25, 1.75] + }, + "vertices": ["2KFR", "PZ0f", "OJX9", "qhSG"], + "texture": 15 + }, + "SmiDIWsL": { + "uv": { + "8QjC": [7.25, 1.75], + "2KFR": [7.75, 1.25], + "PZ0f": [7.25, 1.25] + }, + "vertices": ["PZ0f", "2KFR", "8QjC"], + "texture": 15 + }, + "sHO7ks0Z": { + "uv": { + "vhJJ": [8.25, 1.75], + "AYq6": [8.75, 1.25], + "13x6": [8.25, 1.25] + }, + "vertices": ["13x6", "AYq6", "vhJJ"], + "texture": 15 + }, + "X1LTFYRX": { + "uv": { + "13x6": [9.75, 1.75], + "AYq6": [9.75, 1.25], + "Clz7": [9.25, 1.25], + "7asH": [9.25, 1.75] + }, + "vertices": ["7asH", "Clz7", "AYq6", "13x6"], + "texture": 15 + }, + "2yagsWv6": { + "uv": { + "rIID": [10.75, 1.75], + "ddkb": [10.75, 1.25], + "Phwt": [10.25, 1.25], + "2eBc": [10.25, 1.75] + }, + "vertices": ["2eBc", "Phwt", "ddkb", "rIID"], + "texture": 15 + }, + "XA5lNjst": { + "uv": { + "2eBc": [11.75, 1.75], + "Phwt": [11.75, 1.25], + "qhSG": [11.25, 1.25], + "baM3": [11.25, 1.75] + }, + "vertices": ["baM3", "qhSG", "Phwt", "2eBc"], + "texture": 15 + }, + "Ygcj4wdC": { + "uv": { + "baM3": [12.75, 1.75], + "qhSG": [12.75, 1.25], + "2KFR": [12.25, 1.25], + "35RP": [12.25, 1.75] + }, + "vertices": ["35RP", "2KFR", "qhSG", "baM3"], + "texture": 15 + }, + "m7Ce9uDx": { + "uv": { + "8QjC": [13.25, 1.75], + "35RP": [13.75, 1.25], + "2KFR": [13.25, 1.25] + }, + "vertices": ["2KFR", "35RP", "8QjC"], + "texture": 15 + }, + "MLo3SzB8": { + "uv": { + "vhJJ": [14.25, 1.75], + "13x6": [14.75, 1.25], + "53PY": [14.25, 1.25] + }, + "vertices": ["53PY", "13x6", "vhJJ"], + "texture": 15 + }, + "1rfpAtcz": { + "uv": { + "53PY": [15.75, 1.75], + "13x6": [15.75, 1.25], + "7asH": [15.25, 1.25], + "NsXb": [15.25, 1.75] + }, + "vertices": ["NsXb", "7asH", "13x6", "53PY"], + "texture": 15 + }, + "a42rImDx": { + "uv": { + "aLVc": [0.75, 2.75], + "rIID": [0.75, 2.25], + "2eBc": [0.25, 2.25], + "KcNg": [0.25, 2.75] + }, + "vertices": ["KcNg", "2eBc", "rIID", "aLVc"], + "texture": 15 + }, + "3vOJocS7": { + "uv": { + "KcNg": [1.75, 2.75], + "2eBc": [1.75, 2.25], + "baM3": [1.25, 2.25], + "ar6O": [1.25, 2.75] + }, + "vertices": ["ar6O", "baM3", "2eBc", "KcNg"], + "texture": 15 + }, + "D2Af9725": { + "uv": { + "ar6O": [2.75, 2.75], + "baM3": [2.75, 2.25], + "35RP": [2.25, 2.25], + "fZGN": [2.25, 2.75] + }, + "vertices": ["fZGN", "35RP", "baM3", "ar6O"], + "texture": 15 + }, + "VxgGZCf2": { + "uv": { + "8QjC": [3.25, 2.75], + "fZGN": [3.75, 2.25], + "35RP": [3.25, 2.25] + }, + "vertices": ["35RP", "fZGN", "8QjC"], + "texture": 15 + }, + "E1Intunq": { + "uv": { + "vhJJ": [4.25, 2.75], + "53PY": [4.75, 2.25], + "cf6G": [4.25, 2.25] + }, + "vertices": ["cf6G", "53PY", "vhJJ"], + "texture": 15 + }, + "ANsPkIUD": { + "uv": { + "cf6G": [5.75, 2.75], + "53PY": [5.75, 2.25], + "NsXb": [5.25, 2.25], + "6L0d": [5.25, 2.75] + }, + "vertices": ["6L0d", "NsXb", "53PY", "cf6G"], + "texture": 15 + }, + "hky4vXZs": { + "uv": { + "P9rX": [6.75, 2.75], + "aLVc": [6.75, 2.25], + "KcNg": [6.25, 2.25], + "LfAz": [6.25, 2.75] + }, + "vertices": ["LfAz", "KcNg", "aLVc", "P9rX"], + "texture": 15 + }, + "MdnWKrBw": { + "uv": { + "LfAz": [7.75, 2.75], + "KcNg": [7.75, 2.25], + "ar6O": [7.25, 2.25], + "Aldt": [7.25, 2.75] + }, + "vertices": ["Aldt", "ar6O", "KcNg", "LfAz"], + "texture": 15 + }, + "x5VkzqFN": { + "uv": { + "Aldt": [8.75, 2.75], + "ar6O": [8.75, 2.25], + "fZGN": [8.25, 2.25], + "arCH": [8.25, 2.75] + }, + "vertices": ["arCH", "fZGN", "ar6O", "Aldt"], + "texture": 15 + }, + "yR8j2fnY": { + "uv": { + "8QjC": [9.25, 2.75], + "arCH": [9.75, 2.25], + "fZGN": [9.25, 2.25] + }, + "vertices": ["fZGN", "arCH", "8QjC"], + "texture": 15 + }, + "hyLdc1Q6": { + "uv": { + "vhJJ": [10.25, 2.75], + "cf6G": [10.75, 2.25], + "8i9k": [10.25, 2.25] + }, + "vertices": ["8i9k", "cf6G", "vhJJ"], + "texture": 15 + }, + "A0sjcu7e": { + "uv": { + "8i9k": [11.75, 2.75], + "cf6G": [11.75, 2.25], + "6L0d": [11.25, 2.25], + "odwY": [11.25, 2.75] + }, + "vertices": ["odwY", "6L0d", "cf6G", "8i9k"], + "texture": 15 + }, + "nGDnWgSP": { + "uv": { + "5mdt": [12.75, 2.75], + "P9rX": [12.75, 2.25], + "LfAz": [12.25, 2.25], + "f4nL": [12.25, 2.75] + }, + "vertices": ["f4nL", "LfAz", "P9rX", "5mdt"], + "texture": 15 + }, + "vUpqRqbF": { + "uv": { + "f4nL": [13.75, 2.75], + "LfAz": [13.75, 2.25], + "Aldt": [13.25, 2.25], + "IW10": [13.25, 2.75] + }, + "vertices": ["IW10", "Aldt", "LfAz", "f4nL"], + "texture": 15 + }, + "s05slp5K": { + "uv": { + "IW10": [14.75, 2.75], + "Aldt": [14.75, 2.25], + "arCH": [14.25, 2.25], + "Vgik": [14.25, 2.75] + }, + "vertices": ["Vgik", "arCH", "Aldt", "IW10"], + "texture": 15 + }, + "Sxc6OKkK": { + "uv": { + "8QjC": [15.25, 2.75], + "Vgik": [15.75, 2.25], + "arCH": [15.25, 2.25] + }, + "vertices": ["arCH", "Vgik", "8QjC"], + "texture": 15 + }, + "X3nCaFBv": { + "uv": { + "vhJJ": [0.25, 3.75], + "8i9k": [0.75, 3.25], + "bedr": [0.25, 3.25] + }, + "vertices": ["bedr", "8i9k", "vhJJ"], + "texture": 15 + }, + "XamBI9pA": { + "uv": { + "bedr": [1.75, 3.75], + "8i9k": [1.75, 3.25], + "odwY": [1.25, 3.25], + "mRE8": [1.25, 3.75] + }, + "vertices": ["mRE8", "odwY", "8i9k", "bedr"], + "texture": 15 + }, + "zgN1GtnK": { + "uv": { + "lr5A": [2.75, 3.75], + "5mdt": [2.75, 3.25], + "f4nL": [2.25, 3.25], + "F9rK": [2.25, 3.75] + }, + "vertices": ["F9rK", "f4nL", "5mdt", "lr5A"], + "texture": 15 + }, + "FprSWSc8": { + "uv": { + "F9rK": [3.75, 3.75], + "f4nL": [3.75, 3.25], + "IW10": [3.25, 3.25], + "pQvi": [3.25, 3.75] + }, + "vertices": ["pQvi", "IW10", "f4nL", "F9rK"], + "texture": 15 + }, + "e9rnkzEJ": { + "uv": { + "pQvi": [4.75, 3.75], + "IW10": [4.75, 3.25], + "Vgik": [4.25, 3.25], + "54OX": [4.25, 3.75] + }, + "vertices": ["54OX", "Vgik", "IW10", "pQvi"], + "texture": 15 + }, + "OedC1Ope": { + "uv": { + "8QjC": [5.25, 3.75], + "54OX": [5.75, 3.25], + "Vgik": [5.25, 3.25] + }, + "vertices": ["Vgik", "54OX", "8QjC"], + "texture": 15 + }, + "lIt5gO7w": { + "uv": { + "vhJJ": [6.25, 3.75], + "bedr": [6.75, 3.25], + "VCA7": [6.25, 3.25] + }, + "vertices": ["VCA7", "bedr", "vhJJ"], + "texture": 15 + }, + "fiLiv4eu": { + "uv": { + "VCA7": [7.75, 3.75], + "bedr": [7.75, 3.25], + "mRE8": [7.25, 3.25], + "g8AY": [7.25, 3.75] + }, + "vertices": ["g8AY", "mRE8", "bedr", "VCA7"], + "texture": 15 + }, + "iTZHiYyz": { + "uv": { + "64eD": [8.75, 3.75], + "lr5A": [8.75, 3.25], + "F9rK": [8.25, 3.25], + "8Z7A": [8.25, 3.75] + }, + "vertices": ["8Z7A", "F9rK", "lr5A", "64eD"], + "texture": 15 + }, + "4qdXLnbR": { + "uv": { + "8Z7A": [9.75, 3.75], + "F9rK": [9.75, 3.25], + "pQvi": [9.25, 3.25], + "nnBx": [9.25, 3.75] + }, + "vertices": ["nnBx", "pQvi", "F9rK", "8Z7A"], + "texture": 15 + }, + "a4mGhICC": { + "uv": { + "nnBx": [10.75, 3.75], + "pQvi": [10.75, 3.25], + "54OX": [10.25, 3.25], + "sdgs": [10.25, 3.75] + }, + "vertices": ["sdgs", "54OX", "pQvi", "nnBx"], + "texture": 15 + }, + "SUg8IVYl": { + "uv": { + "8QjC": [11.25, 3.75], + "sdgs": [11.75, 3.25], + "54OX": [11.25, 3.25] + }, + "vertices": ["54OX", "sdgs", "8QjC"], + "texture": 15 + }, + "xtL7Hkve": { + "uv": { + "vhJJ": [12.25, 3.75], + "VCA7": [12.75, 3.25], + "IcjH": [12.25, 3.25] + }, + "vertices": ["IcjH", "VCA7", "vhJJ"], + "texture": 15 + }, + "JRIElpEj": { + "uv": { + "IcjH": [13.75, 3.75], + "VCA7": [13.75, 3.25], + "g8AY": [13.25, 3.25], + "Cmxu": [13.25, 3.75] + }, + "vertices": ["Cmxu", "g8AY", "VCA7", "IcjH"], + "texture": 15 + }, + "N6zi1Z8V": { + "uv": { + "YR9K": [14.75, 3.75], + "64eD": [14.75, 3.25], + "8Z7A": [14.25, 3.25], + "rBqN": [14.25, 3.75] + }, + "vertices": ["rBqN", "8Z7A", "64eD", "YR9K"], + "texture": 15 + }, + "EeFNXyFu": { + "uv": { + "rBqN": [15.75, 3.75], + "8Z7A": [15.75, 3.25], + "nnBx": [15.25, 3.25], + "G7iR": [15.25, 3.75] + }, + "vertices": ["G7iR", "nnBx", "8Z7A", "rBqN"], + "texture": 15 + }, + "HVtNylvy": { + "uv": { + "G7iR": [0.75, 4.75], + "nnBx": [0.75, 4.25], + "sdgs": [0.25, 4.25], + "G7Yn": [0.25, 4.75] + }, + "vertices": ["G7Yn", "sdgs", "nnBx", "G7iR"], + "texture": 15 + }, + "GuhboYu6": { + "uv": { + "8QjC": [1.25, 4.75], + "G7Yn": [1.75, 4.25], + "sdgs": [1.25, 4.25] + }, + "vertices": ["sdgs", "G7Yn", "8QjC"], + "texture": 15 + }, + "FatZEx29": { + "uv": { + "vhJJ": [2.25, 4.75], + "IcjH": [2.75, 4.25], + "orU0": [2.25, 4.25] + }, + "vertices": ["orU0", "IcjH", "vhJJ"], + "texture": 15 + }, + "WQlxRTJ0": { + "uv": { + "orU0": [3.75, 4.75], + "IcjH": [3.75, 4.25], + "Cmxu": [3.25, 4.25], + "90Fb": [3.25, 4.75] + }, + "vertices": ["90Fb", "Cmxu", "IcjH", "orU0"], + "texture": 15 + }, + "KLpy0qBF": { + "uv": { + "zNGN": [4.75, 4.75], + "YR9K": [4.75, 4.25], + "rBqN": [4.25, 4.25], + "73Hf": [4.25, 4.75] + }, + "vertices": ["73Hf", "rBqN", "YR9K", "zNGN"], + "texture": 15 + }, + "xp2sa1WG": { + "uv": { + "73Hf": [5.75, 4.75], + "rBqN": [5.75, 4.25], + "G7iR": [5.25, 4.25], + "4ExO": [5.25, 4.75] + }, + "vertices": ["4ExO", "G7iR", "rBqN", "73Hf"], + "texture": 15 + }, + "LXV1I4uf": { + "uv": { + "4ExO": [6.75, 4.75], + "G7iR": [6.75, 4.25], + "G7Yn": [6.25, 4.25], + "f7le": [6.25, 4.75] + }, + "vertices": ["f7le", "G7Yn", "G7iR", "4ExO"], + "texture": 15 + }, + "33MWdMUL": { + "uv": { + "8QjC": [7.25, 4.75], + "f7le": [7.75, 4.25], + "G7Yn": [7.25, 4.25] + }, + "vertices": ["G7Yn", "f7le", "8QjC"], + "texture": 15 + }, + "nvCDOv6y": { + "uv": { + "C5s3": [4.5021, 0.9892], + "zNGN": [0.1463, 0.9892], + "HfsY": [4.6484, 0], + "90Fb": [0, 0] + }, + "vertices": ["90Fb", "HfsY", "zNGN", "C5s3"], + "texture": 15 + }, + "yfWtEI7A": { + "uv": { + "KBoA": [6.5021, 0.9892], + "C5s3": [2.1463, 0.9892], + "9RbY": [6.6484, 0], + "HfsY": [2, 0] + }, + "vertices": ["HfsY", "9RbY", "C5s3", "KBoA"], + "texture": 15 + }, + "ocFuf3xz": { + "uv": { + "W8jt": [9.5021, 0.9892], + "KBoA": [5.1463, 0.9892], + "rwOP": [9.6484, 0], + "9RbY": [5, 0] + }, + "vertices": ["9RbY", "rwOP", "KBoA", "W8jt"], + "texture": 15 + }, + "eulgYJCm": { + "uv": { + "ddkb": [4.5021, 0.9892], + "W8jt": [0.1463, 0.9892], + "Clz7": [4.6484, 0], + "rwOP": [0, 0] + }, + "vertices": ["rwOP", "Clz7", "W8jt", "ddkb"], + "texture": 15 + }, + "qSrVFTTR": { + "uv": { + "rIID": [7.5021, 0.9892], + "ddkb": [3.1463, 0.9892], + "7asH": [7.6484, 0], + "Clz7": [3, 0] + }, + "vertices": ["Clz7", "7asH", "ddkb", "rIID"], + "texture": 15 + }, + "5HJj304c": { + "uv": { + "aLVc": [10.5021, 0.9892], + "rIID": [6.1463, 0.9892], + "NsXb": [10.6484, 0], + "7asH": [6, 0] + }, + "vertices": ["7asH", "NsXb", "rIID", "aLVc"], + "texture": 15 + }, + "UY5zSthE": { + "uv": { + "P9rX": [5.5021, 0.9892], + "aLVc": [1.1463, 0.9892], + "6L0d": [5.6484, 0], + "NsXb": [1, 0] + }, + "vertices": ["NsXb", "6L0d", "aLVc", "P9rX"], + "texture": 15 + }, + "dKCOWHfj": { + "uv": { + "5mdt": [8.5021, 0.9892], + "P9rX": [4.1463, 0.9892], + "odwY": [8.6484, 0], + "6L0d": [4, 0] + }, + "vertices": ["6L0d", "odwY", "P9rX", "5mdt"], + "texture": 15 + }, + "aGdI6sMr": { + "uv": { + "lr5A": [4.5021, 1.9892], + "5mdt": [0.1463, 1.9892], + "mRE8": [4.6484, 1], + "odwY": [0, 1] + }, + "vertices": ["odwY", "mRE8", "5mdt", "lr5A"], + "texture": 15 + }, + "NgqcgSvB": { + "uv": { + "64eD": [6.5021, 1.9892], + "lr5A": [2.1463, 1.9892], + "g8AY": [6.6484, 1], + "mRE8": [2, 1] + }, + "vertices": ["mRE8", "g8AY", "lr5A", "64eD"], + "texture": 15 + }, + "cSZhnQck": { + "uv": { + "YR9K": [9.5021, 1.9892], + "64eD": [5.1463, 1.9892], + "Cmxu": [9.6484, 1], + "g8AY": [5, 1] + }, + "vertices": ["g8AY", "Cmxu", "64eD", "YR9K"], + "texture": 15 + }, + "dqNbUXu2": { + "uv": { + "zNGN": [4.5021, 1.9892], + "YR9K": [0.1463, 1.9892], + "90Fb": [4.6484, 1], + "Cmxu": [0, 1] + }, + "vertices": ["Cmxu", "90Fb", "YR9K", "zNGN"], + "texture": 15 + } + }, + "type": "mesh", + "uuid": "90cbe692-65a6-96df-2751-652a730191c2" + }, + { + "name": "cube_selection", + "color": 0, + "origin": [6.125, 11.2, -0.04], + "rotation": [0, 0, 12.5], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "SG2C": [0.35, 0.32, 1.7], + "aXfG": [0.14722, 0.014, -0.93945], + "gYNL": [-1.06944, 0.32, 1.7], + "qm42": [-1.06944, 0.014, -0.93945], + "jyuv": [0.14722, 1.54401, 1.51147], + "rkTD": [-1.06944, 1.23801, -1.41078], + "5bB4": [0.14722, 1.23801, -1.41078], + "gsUF": [-1.06944, 0.014, -1.725], + "3ZE3": [0.14722, 0.014, -1.725], + "DLfR": [-1.27222, -1.21, -1.725], + "aOPa": [-0.46111, -1.21, -1.725], + "ZHsx": [-0.46111, -1.21, -1.25367], + "U3G7": [-1.27222, -1.21, -1.25367], + "yjq6": [-1.06944, 0.32, 1.1344], + "rpzh": [0.35, 0.32, 1.1344], + "1IhL": [-1.06944, 0.32, 1.07156], + "ditf": [0.35, 0.32, 1.07156], + "cqaI": [-1.06944, 0.32, 0.44312], + "TtLA": [0.35, 0.32, 0.44312], + "X40D": [-1.06944, 0.32, -0.12248], + "kPro": [0.35, 0.32, -0.12248], + "Jqet": [-1.06944, 0.32, -0.18532], + "FbXp": [0.35, 0.32, -0.18532], + "XDyQ": [-1.06944, 0.32, -0.75092], + "4PNW": [0.14722, 1.85001, 0.47454], + "jAkr": [0.14722, 1.85001, -0.1539], + "eeZW": [-1.475, 1.54401, 1.10298], + "v2Oq": [-1.475, 1.54401, -0.1539], + "xovw": [-1.06944, -0.598, -0.18532], + "ApEB": [-1.06944, -0.598, -0.75092], + "iOyM": [0.14722, -0.598, -0.75092], + "DFFs": [0.14722, -0.598, -0.18532], + "s57i": [-1.06944, -0.598, 0.44312], + "DJ8Y": [-1.06944, -0.598, -0.12248], + "Htu6": [0.14722, -0.598, -0.12248], + "VQgu": [0.14722, -0.598, 0.44312], + "J74A": [-1.06944, -0.598, 1.07156], + "deLA": [0.14722, -0.598, 0.50596], + "gFQQ": [-1.06944, -0.598, 1.7], + "37AA": [-1.06944, -0.598, 1.1344], + "hEhj": [0.14722, -0.598, 1.1344], + "rik1": [0.14722, -0.598, 1.7], + "m70k": [-1.06944, 0.32, 0.50596], + "5jQS": [0.35, 0.32, 0.50596], + "QgB1": [0.35, 0.32, -0.75092], + "BvKq": [-1.06944, -0.598, 0.50596], + "Fugt": [0.14722, -0.598, 1.07156], + "BcrG": [0.14722, 1.85001, -0.82947], + "LJNo": [-1.475, 1.54401, -0.82947], + "pcXW": [-1.475, 1.54401, 0.47454], + "SmHE": [-1.475, 1.23801, 1.51147], + "am1B": [0.14722, 1.85001, 1.10298], + "b0wN": [-1.475, -1.975, -0.24817], + "QS4i": [-1.475, -1.975, -0.68807], + "RpTK": [-0.25833, -1.975, -0.68807], + "cV7E": [-0.25833, -1.975, -0.24817], + "2qMd": [-1.475, -1.975, 0.38028], + "P8PL": [-1.475, -1.975, -0.05963], + "0TBa": [-0.25833, -1.975, -0.05963], + "D9wR": [-0.25833, -1.975, 0.38028], + "QcTt": [-1.475, -1.975, 1.00872], + "oDy3": [-1.475, -1.975, 0.56881], + "19ji": [-0.25833, -1.975, 0.56881], + "R5vE": [-0.25833, -1.975, 1.00872], + "NR0N": [-1.475, -1.975, 1.63716], + "XL8u": [-1.475, -1.975, 1.19725], + "zpU5": [-0.25833, -1.975, 1.19725], + "GTiL": [-0.25833, -1.975, 1.63716] + }, + "faces": { + "vvIAs6ec": { + "uv": { + "aXfG": [3, 7], + "QgB1": [2.62503, 7], + "BcrG": [2.81252, 5] + }, + "vertices": ["BcrG", "QgB1", "aXfG"], + "texture": 1 + }, + "uo43jn6G": { + "uv": { + "gYNL": [1, 11], + "SG2C": [2.5, 11], + "SmHE": [1, 9], + "jyuv": [2.5, 9] + }, + "vertices": ["jyuv", "SmHE", "SG2C", "gYNL"], + "texture": 1 + }, + "5U9xU0dD": { + "uv": { + "3ZE3": [1, 11], + "gsUF": [2.5, 11], + "5bB4": [1, 9], + "rkTD": [2.5, 9] + }, + "vertices": ["rkTD", "5bB4", "gsUF", "3ZE3"], + "texture": 1 + }, + "PMT6iALM": { + "uv": { + "LJNo": [2, 6], + "qm42": [2, 8], + "gsUF": [1, 8], + "rkTD": [1, 6] + }, + "vertices": ["rkTD", "gsUF", "qm42", "LJNo"], + "texture": 1 + }, + "laujVFTj": { + "uv": { + "BcrG": [2.5, 8], + "LJNo": [1, 8], + "rkTD": [1, 7], + "5bB4": [2.5, 7] + }, + "vertices": ["5bB4", "rkTD", "LJNo", "BcrG"], + "texture": 1 + }, + "qTTfHe64": { + "uv": { + "U3G7": [2.5, 8.00004], + "ZHsx": [1.00001, 7.99996], + "aOPa": [1, 7], + "DLfR": [2.50005, 7] + }, + "vertices": ["DLfR", "aOPa", "ZHsx", "U3G7"], + "texture": 1 + }, + "G08WUC3f": { + "uv": { + "3ZE3": [1, 5], + "gsUF": [2.5, 5], + "DLfR": [2.5, 6], + "aOPa": [1, 6] + }, + "vertices": ["aOPa", "DLfR", "gsUF", "3ZE3"], + "texture": 1 + }, + "pHmNi5fh": { + "uv": { + "aXfG": [6, 11.00031], + "3ZE3": [7, 11], + "aOPa": [7, 12.74996], + "ZHsx": [6, 12.75003] + }, + "vertices": ["ZHsx", "aOPa", "3ZE3", "aXfG"], + "texture": 1 + }, + "cuft3msr": { + "uv": { + "qm42": [1, 5], + "aXfG": [2.5, 5], + "ZHsx": [2.5, 6], + "U3G7": [1, 6] + }, + "vertices": ["U3G7", "ZHsx", "aXfG", "qm42"], + "texture": 1 + }, + "azGhehvz": { + "uv": { + "gsUF": [1, 5], + "qm42": [2, 5], + "U3G7": [2, 6], + "DLfR": [1, 6] + }, + "vertices": ["DLfR", "U3G7", "qm42", "gsUF"], + "texture": 1 + }, + "udheygIe": { + "uv": { + "XDyQ": [0.37497, 10], + "LJNo": [0.18748, 5], + "qm42": [0, 10] + }, + "vertices": ["qm42", "LJNo", "XDyQ"], + "texture": 1 + }, + "8H3cL8dN": { + "uv": { + "aXfG": [0, 9], + "BcrG": [0, 7], + "5bB4": [1, 7], + "3ZE3": [1, 9] + }, + "vertices": ["3ZE3", "5bB4", "BcrG", "aXfG"], + "texture": 1 + }, + "n0zqwS3a": { + "uv": { + "qm42": [0, 7.117], + "QgB1": [0.35504, 7.99449], + "XDyQ": [0.27626, 7.10238], + "aXfG": [0.09003, 7.99449] + }, + "vertices": ["aXfG", "XDyQ", "QgB1", "qm42"], + "texture": 1 + }, + "qVUOFDNK": { + "uv": { + "GTiL": [2.2103, 7.99449], + "zpU5": [1.94526, 7.99449], + "XL8u": [1.934, 7.01463], + "NR0N": [2.2103, 7] + }, + "vertices": ["NR0N", "XL8u", "zpU5", "GTiL"], + "texture": 1 + }, + "sJ7BIjtK": { + "uv": { + "rpzh": [1.94526, 7.99449], + "ditf": [1.68022, 7.99449], + "1IhL": [1.65771, 7.02925], + "yjq6": [1.934, 7.01463] + }, + "vertices": ["yjq6", "1IhL", "ditf", "rpzh"], + "texture": 1 + }, + "Tt5do9eD": { + "uv": { + "5jQS": [1.41518, 7.99449], + "TtLA": [1.15014, 7.99449], + "cqaI": [1.10512, 7.0585], + "m70k": [1.38141, 7.04388] + }, + "vertices": ["m70k", "cqaI", "TtLA", "5jQS"], + "texture": 1 + }, + "8r7ed029": { + "uv": { + "D9wR": [1.15014, 7.99449], + "0TBa": [0.8851, 7.99449], + "P8PL": [0.82883, 7.07313], + "2qMd": [1.10512, 7.0585] + }, + "vertices": ["2qMd", "P8PL", "0TBa", "D9wR"], + "texture": 1 + }, + "hTI7CCl8": { + "uv": { + "kPro": [0.8851, 7.99449], + "FbXp": [0.62007, 7.99449], + "Jqet": [0.55255, 7.08775], + "X40D": [0.82883, 7.07313] + }, + "vertices": ["X40D", "Jqet", "FbXp", "kPro"], + "texture": 1 + }, + "9EMzfsaM": { + "uv": { + "cV7E": [0.62007, 7.99449], + "RpTK": [0.35504, 7.99449], + "QS4i": [0.27626, 7.10238], + "b0wN": [0.55255, 7.08775] + }, + "vertices": ["b0wN", "QS4i", "RpTK", "cV7E"], + "texture": 1 + }, + "1A3RrdZF": { + "uv": { + "jyuv": [0, 5], + "am1B": [0.37501, 5], + "rpzh": [0.37501, 7], + "SG2C": [0, 7] + }, + "vertices": ["SG2C", "rpzh", "am1B", "jyuv"], + "texture": 1 + }, + "Z0MHKSM1": { + "uv": { + "am1B": [0.56252, 5], + "ditf": [0.75002, 7], + "rpzh": [0.37501, 7] + }, + "vertices": ["rpzh", "ditf", "am1B"], + "texture": 1 + }, + "8RfDVw73": { + "uv": { + "4PNW": [1.31254, 5], + "TtLA": [1.50004, 7], + "5jQS": [1.12503, 7] + }, + "vertices": ["5jQS", "TtLA", "4PNW"], + "texture": 1 + }, + "b1H2Twi7": { + "uv": { + "4PNW": [1.50004, 5], + "jAkr": [1.87504, 5], + "kPro": [1.87504, 7], + "TtLA": [1.50004, 7] + }, + "vertices": ["TtLA", "kPro", "jAkr", "4PNW"], + "texture": 1 + }, + "8CzZUE6T": { + "uv": { + "jAkr": [2.06254, 5], + "FbXp": [2.25004, 7], + "kPro": [1.87504, 7] + }, + "vertices": ["kPro", "FbXp", "jAkr"], + "texture": 1 + }, + "7XOUjrqa": { + "uv": { + "jAkr": [2.25004, 5], + "BcrG": [2.62503, 5], + "QgB1": [2.62503, 7], + "FbXp": [2.25004, 7] + }, + "vertices": ["FbXp", "QgB1", "BcrG", "jAkr"], + "texture": 1 + }, + "H3nYlw5n": { + "uv": { + "pcXW": [1, 10.49996], + "v2Oq": [1, 10.12496], + "jAkr": [2.5, 10.12496], + "4PNW": [2.5, 10.49996] + }, + "vertices": ["4PNW", "jAkr", "v2Oq", "pcXW"], + "texture": 1 + }, + "3Pp5rd8r": { + "uv": { + "gYNL": [3, 10], + "yjq6": [2.62499, 10], + "eeZW": [2.62499, 5], + "SmHE": [3, 5] + }, + "vertices": ["SmHE", "eeZW", "yjq6", "gYNL"], + "texture": 1 + }, + "Ozh5CuVR": { + "uv": { + "yjq6": [2.62499, 7], + "1IhL": [2.24998, 7], + "eeZW": [2.43748, 5] + }, + "vertices": ["eeZW", "1IhL", "yjq6"], + "texture": 1 + }, + "qTnHXohn": { + "uv": { + "m70k": [1.87497, 7], + "cqaI": [1.49996, 7], + "pcXW": [1.68746, 5] + }, + "vertices": ["pcXW", "cqaI", "m70k"], + "texture": 1 + }, + "NQGq8EFs": { + "uv": { + "cqaI": [1.49996, 10], + "X40D": [1.12496, 10], + "v2Oq": [1.12496, 5], + "pcXW": [1.49996, 5] + }, + "vertices": ["pcXW", "v2Oq", "X40D", "cqaI"], + "texture": 1 + }, + "t75oHfwX": { + "uv": { + "X40D": [1.12496, 7], + "Jqet": [0.74996, 7], + "v2Oq": [0.93746, 5] + }, + "vertices": ["v2Oq", "Jqet", "X40D"], + "texture": 1 + }, + "rn9ZHqv3": { + "uv": { + "Jqet": [0.74996, 10], + "XDyQ": [0.37497, 10], + "LJNo": [0.37497, 5], + "v2Oq": [0.74996, 5] + }, + "vertices": ["v2Oq", "LJNo", "XDyQ", "Jqet"], + "texture": 1 + }, + "cWeBGtG5": { + "uv": { + "XDyQ": [0, 6], + "Jqet": [0.2767, 6], + "xovw": [0.2767, 7], + "ApEB": [0, 7] + }, + "vertices": ["ApEB", "xovw", "Jqet", "XDyQ"], + "texture": 1 + }, + "BDq08QaJ": { + "uv": { + "QgB1": [0, 4], + "XDyQ": [0, 2], + "ApEB": [2, 2], + "iOyM": [2, 4] + }, + "vertices": ["iOyM", "ApEB", "XDyQ", "QgB1"], + "texture": 1 + }, + "54OA4Vs6": { + "uv": { + "FbXp": [0, 6], + "QgB1": [0.265, 6.0001], + "iOyM": [0.265, 7.0001], + "DFFs": [0, 7] + }, + "vertices": ["DFFs", "iOyM", "QgB1", "FbXp"], + "texture": 1 + }, + "IJCofTZe": { + "uv": { + "Jqet": [2, 2], + "FbXp": [2, 4], + "DFFs": [0, 4], + "xovw": [0, 2] + }, + "vertices": ["xovw", "DFFs", "FbXp", "Jqet"], + "texture": 1 + }, + "mIvrKkMT": { + "uv": { + "X40D": [0, 6], + "cqaI": [0.2767, 6], + "s57i": [0.2767, 7], + "DJ8Y": [0.0001, 7] + }, + "vertices": ["DJ8Y", "s57i", "cqaI", "X40D"], + "texture": 1 + }, + "O7BP5dy7": { + "uv": { + "kPro": [0, 4], + "X40D": [0, 2], + "DJ8Y": [2, 2], + "Htu6": [2, 4] + }, + "vertices": ["Htu6", "DJ8Y", "X40D", "kPro"], + "texture": 1 + }, + "HxuDHg0G": { + "uv": { + "TtLA": [1, 6], + "kPro": [1.2651, 6], + "Htu6": [1.265, 7], + "VQgu": [1, 7] + }, + "vertices": ["VQgu", "Htu6", "kPro", "TtLA"], + "texture": 1 + }, + "05QRSzeb": { + "uv": { + "cqaI": [2, 2], + "TtLA": [2, 4], + "VQgu": [0, 4], + "s57i": [0, 2] + }, + "vertices": ["s57i", "VQgu", "TtLA", "cqaI"], + "texture": 1 + }, + "iCzdhyKG": { + "uv": { + "5jQS": [0, 4], + "m70k": [0, 2], + "BvKq": [2, 2], + "deLA": [2, 4] + }, + "vertices": ["deLA", "BvKq", "m70k", "5jQS"], + "texture": 1 + }, + "TUyCMWe4": { + "uv": { + "1IhL": [0.9655, 2], + "ditf": [0.9655, 4], + "Fugt": [0, 4], + "J74A": [0, 2] + }, + "vertices": ["J74A", "Fugt", "ditf", "1IhL"], + "texture": 1 + }, + "N1eMWfWU": { + "uv": { + "yjq6": [1, 6], + "gYNL": [1.2767, 6], + "gFQQ": [1.2767, 7], + "37AA": [1.0001, 7] + }, + "vertices": ["37AA", "gFQQ", "gYNL", "yjq6"], + "texture": 1 + }, + "ZgkHiEvD": { + "uv": { + "rpzh": [2, 4], + "yjq6": [2, 2], + "37AA": [5, 2], + "hEhj": [5, 4] + }, + "vertices": ["hEhj", "37AA", "yjq6", "rpzh"], + "texture": 1 + }, + "Rqvnh5JT": { + "uv": { + "SG2C": [1, 6], + "rpzh": [1.265, 6], + "hEhj": [1.265, 7], + "rik1": [1, 7] + }, + "vertices": ["rik1", "hEhj", "rpzh", "SG2C"], + "texture": 1 + }, + "NUcZO3RF": { + "uv": { + "gYNL": [2, 6], + "SG2C": [2, 8], + "rik1": [0, 8], + "gFQQ": [0, 6] + }, + "vertices": ["gFQQ", "rik1", "SG2C", "gYNL"], + "texture": 1 + }, + "duNNNzsm": { + "uv": { + "R5vE": [1.68022, 7.99449], + "19ji": [1.41518, 7.99449], + "oDy3": [1.38141, 7.04388], + "QcTt": [1.65771, 7.02925] + }, + "vertices": ["QcTt", "oDy3", "19ji", "R5vE"], + "texture": 1 + }, + "1GvS40WP": { + "uv": { + "am1B": [0.75002, 5], + "4PNW": [1.12503, 5], + "5jQS": [1.12503, 7], + "ditf": [0.75002, 7] + }, + "vertices": ["ditf", "5jQS", "4PNW", "am1B"], + "texture": 1 + }, + "ZAq6364x": { + "uv": { + "eeZW": [1, 11.24998], + "pcXW": [1, 10.87497], + "4PNW": [2.5, 10.87497], + "am1B": [2.5, 11.24998] + }, + "vertices": ["am1B", "4PNW", "pcXW", "eeZW"], + "texture": 1 + }, + "xM3u5Rgj": { + "uv": { + "v2Oq": [1, 9.74996], + "LJNo": [1, 9.37497], + "BcrG": [2.5, 9.37497], + "jAkr": [2.5, 9.74996] + }, + "vertices": ["jAkr", "BcrG", "LJNo", "v2Oq"], + "texture": 1 + }, + "sbc82oNA": { + "uv": { + "1IhL": [2.24998, 10], + "m70k": [1.87497, 10], + "pcXW": [1.87497, 5], + "eeZW": [2.24998, 5] + }, + "vertices": ["eeZW", "pcXW", "m70k", "1IhL"], + "texture": 1 + }, + "AJJPyz9R": { + "uv": { + "m70k": [1, 6], + "1IhL": [1.2766, 6], + "J74A": [1.2767, 7], + "BvKq": [1, 7] + }, + "vertices": ["BvKq", "J74A", "1IhL", "m70k"], + "texture": 1 + }, + "ZppkV46C": { + "uv": { + "ditf": [0.0001, 6], + "5jQS": [0.2651, 6], + "deLA": [0.2651, 7], + "Fugt": [0, 7] + }, + "vertices": ["Fugt", "deLA", "5jQS", "ditf"], + "texture": 1 + }, + "kCcOlvWB": { + "uv": { + "SmHE": [1, 12], + "eeZW": [1, 11.62499], + "am1B": [2.5, 11.62499], + "jyuv": [2.5, 12] + }, + "vertices": ["jyuv", "am1B", "eeZW", "SmHE"], + "texture": 1 + }, + "j8g2VQFn": { + "uv": { + "ApEB": [0, 6], + "xovw": [1.6, 6], + "b0wN": [1.6, 7], + "QS4i": [0, 7] + }, + "vertices": ["QS4i", "b0wN", "xovw", "ApEB"], + "texture": 1 + }, + "ZdfOYoQE": { + "uv": { + "iOyM": [0, 4], + "ApEB": [0, 2], + "QS4i": [7, 2], + "RpTK": [7, 4] + }, + "vertices": ["RpTK", "QS4i", "ApEB", "iOyM"], + "texture": 1 + }, + "PSd8nYdT": { + "uv": { + "DFFs": [6, 11.00031], + "iOyM": [7, 11], + "RpTK": [7, 12.74996], + "cV7E": [6, 12.75003] + }, + "vertices": ["cV7E", "RpTK", "iOyM", "DFFs"], + "texture": 1 + }, + "HIdDzpOZ": { + "uv": { + "xovw": [7, 2], + "DFFs": [7, 4], + "cV7E": [0, 4], + "b0wN": [0, 2] + }, + "vertices": ["b0wN", "cV7E", "DFFs", "xovw"], + "texture": 1 + }, + "AaDkkopW": { + "uv": { + "DJ8Y": [0, 6], + "s57i": [1.6, 6], + "2qMd": [1.6, 7], + "P8PL": [0, 7] + }, + "vertices": ["P8PL", "2qMd", "s57i", "DJ8Y"], + "texture": 1 + }, + "uDXKxApa": { + "uv": { + "Htu6": [0, 4], + "DJ8Y": [0, 2], + "P8PL": [7, 2], + "0TBa": [7, 4] + }, + "vertices": ["0TBa", "P8PL", "DJ8Y", "Htu6"], + "texture": 1 + }, + "FD3Uef8Z": { + "uv": { + "VQgu": [6, 11.00031], + "Htu6": [7, 11], + "0TBa": [7, 12.74996], + "D9wR": [6, 12.75003] + }, + "vertices": ["D9wR", "0TBa", "Htu6", "VQgu"], + "texture": 1 + }, + "znTdIdv8": { + "uv": { + "s57i": [7, 2], + "VQgu": [7, 4], + "D9wR": [0, 4], + "2qMd": [0, 2] + }, + "vertices": ["2qMd", "D9wR", "VQgu", "s57i"], + "texture": 1 + }, + "HBqfAJ9G": { + "uv": { + "BvKq": [0, 6], + "J74A": [1.6, 6], + "QcTt": [1.6, 7], + "oDy3": [0, 7] + }, + "vertices": ["oDy3", "QcTt", "J74A", "BvKq"], + "texture": 1 + }, + "xTS24TAq": { + "uv": { + "deLA": [0, 4], + "BvKq": [0, 2], + "oDy3": [7, 2], + "19ji": [7, 4] + }, + "vertices": ["19ji", "oDy3", "BvKq", "deLA"], + "texture": 1 + }, + "Ee6LZNK0": { + "uv": { + "Fugt": [6, 11.00031], + "deLA": [7, 11], + "19ji": [7, 12.74996], + "R5vE": [6, 12.75003] + }, + "vertices": ["R5vE", "19ji", "deLA", "Fugt"], + "texture": 1 + }, + "DGmdf0cv": { + "uv": { + "J74A": [3, 2], + "Fugt": [3, 4], + "R5vE": [0, 4], + "QcTt": [0, 2] + }, + "vertices": ["QcTt", "R5vE", "Fugt", "J74A"], + "texture": 1 + }, + "S8qFQBfU": { + "uv": { + "37AA": [1, 6], + "gFQQ": [2.6, 6], + "NR0N": [2.6, 7], + "XL8u": [1, 7] + }, + "vertices": ["XL8u", "NR0N", "gFQQ", "37AA"], + "texture": 1 + }, + "ZntA3gmm": { + "uv": { + "hEhj": [0, 4], + "37AA": [0, 2], + "XL8u": [7, 2], + "zpU5": [7, 4] + }, + "vertices": ["zpU5", "XL8u", "37AA", "hEhj"], + "texture": 1 + }, + "3IofQwIZ": { + "uv": { + "rik1": [6, 11.00031], + "hEhj": [7, 11], + "zpU5": [7, 12.74996], + "GTiL": [6, 12.75003] + }, + "vertices": ["GTiL", "zpU5", "hEhj", "rik1"], + "texture": 1 + }, + "QWX2zBDX": { + "uv": { + "gFQQ": [7, 6], + "rik1": [7, 8], + "GTiL": [0, 8], + "NR0N": [0, 6] + }, + "vertices": ["NR0N", "GTiL", "rik1", "gFQQ"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "5c0c8088-4fec-62c4-daa4-9a61e11c8b1a" + }, + { + "name": "cube_selection", + "color": 0, + "origin": [6.225, 11.2, 0.06], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "SG2C": [0.10991, -0.94398, 1.7], + "gYNL": [-0.82826, -0.11843, 1.7], + "jyuv": [0.10991, 1.51644, 1.50967], + "yjq6": [-0.82826, -0.11843, 1.129], + "rpzh": [0.10991, -0.94398, 1.129], + "1IhL": [-0.82826, -0.11843, 1.06555], + "ditf": [0.10991, -0.94398, 1.06555], + "cqaI": [-0.82826, -0.11843, 0.4311], + "TtLA": [0.10991, -0.94398, 0.4311], + "X40D": [-0.82826, -0.11843, -0.1399], + "kPro": [0.10991, -0.94398, -0.1399], + "Jqet": [-0.82826, -0.11843, -0.20334], + "FbXp": [0.10991, -0.94398, -0.20334], + "XDyQ": [-0.82826, -0.11843, -0.77435], + "4PNW": [0.10991, 1.85001, 0.46283], + "jAkr": [0.10991, 1.85001, -0.17162], + "eeZW": [-1.13648, 1.51644, 1.09727], + "v2Oq": [-1.13648, 1.51644, -0.17162], + "xovw": [-1.34629, -0.23699, -0.20334], + "ApEB": [-1.34629, -0.23699, -0.77435], + "iOyM": [-2.3037, -0.52648, -0.77435], + "DFFs": [-2.3037, -0.52648, -0.20334], + "s57i": [-1.34629, -0.23699, 0.4311], + "DJ8Y": [-1.34629, -0.23699, -0.1399], + "Htu6": [-2.3037, -0.52648, -0.1399], + "VQgu": [-2.3037, -0.52648, 0.4311], + "J74A": [-1.34629, -0.23699, 1.06555], + "deLA": [-2.3037, -0.52648, 0.49455], + "gFQQ": [-1.34629, -0.23699, 1.7], + "37AA": [-1.34629, -0.23699, 1.129], + "hEhj": [-2.3037, -0.52648, 1.129], + "rik1": [-2.3037, -0.52648, 1.7], + "m70k": [-0.82826, -0.11843, 0.49455], + "5jQS": [0.10991, -0.94398, 0.49455], + "QgB1": [0.10991, -0.94398, -0.77435], + "BvKq": [-1.34629, -0.23699, 0.49455], + "Fugt": [-2.3037, -0.52648, 1.06555], + "LJNo": [-1.13648, 1.51644, -0.9171], + "pcXW": [-1.13648, 1.51644, 0.46283], + "SmHE": [-1.13648, 1.18286, 1.50967], + "am1B": [0.10991, 1.85001, 1.09727], + "b0wN": [-0.93383, -0.00252, -0.26679], + "QS4i": [-0.93383, -0.00252, -0.7109], + "RpTK": [-1.06639, 0.69724, -0.7109], + "cV7E": [-1.06639, 0.69724, -0.26679], + "2qMd": [-0.93383, -0.00252, 0.36766], + "P8PL": [-0.93383, -0.00252, -0.07645], + "0TBa": [-1.06639, 0.69724, -0.07645], + "D9wR": [-1.06639, 0.69724, 0.36766], + "QcTt": [-0.93383, -0.00252, 1.00211], + "oDy3": [-0.93383, -0.00252, 0.55799], + "19ji": [-1.06639, 0.69724, 0.55799], + "R5vE": [-1.06639, 0.69724, 1.00211], + "NR0N": [-0.93383, -0.00252, 1.63656], + "XL8u": [-0.93383, -0.00252, 1.19244], + "zpU5": [-1.06639, 0.69724, 1.19244], + "GTiL": [-1.06639, 0.69724, 1.63656], + "uFwO": [-0.80973, 0.30603, -0.97451], + "zDo4": [-0.8635, 1.62503, -0.94836], + "P0uD": [0.10991, 1.84175, -0.94209], + "FdPC": [-0.8912, 0.27794, -1.56595], + "jFow": [0.08005, 0.47939, -1.27015], + "IH02": [-0.95019, 1.42954, -1.60324], + "PHtJ": [0.10991, 1.64627, -1.34946], + "hwWi": [-1.92901, 0.47534, 0.01751], + "I3aC": [-1.96368, 1.10255, 0.01854], + "LiuJ": [-1.42967, 1.18116, 0.19065], + "imCn": [-1.39501, 0.55395, 0.18962], + "sKD5": [-1.23826, 1.3576, -0.81471], + "wBr0": [-1.18626, 0.4168, -0.81543], + "uO9x": [-1.98727, 0.2989, -0.93684], + "x3rw": [-2.03927, 1.23971, -0.93612], + "imkY": [0.08005, 0.47939, -0.90075], + "BcrG": [0.10991, 1.85001, -0.9171] + }, + "faces": { + "uo43jn6G": { + "uv": { + "gYNL": [1, 11], + "SG2C": [2.5, 11], + "SmHE": [1, 9], + "jyuv": [2.5, 9] + }, + "vertices": ["jyuv", "SmHE", "SG2C", "gYNL"], + "texture": 1 + }, + "qVUOFDNK": { + "uv": { + "GTiL": [2.2103, 7.99449], + "zpU5": [1.94526, 7.99449], + "XL8u": [1.934, 7.01463], + "NR0N": [2.2103, 7] + }, + "vertices": ["NR0N", "XL8u", "zpU5", "GTiL"], + "texture": 1 + }, + "sJ7BIjtK": { + "uv": { + "rpzh": [1.94526, 7.99449], + "ditf": [1.68022, 7.99449], + "1IhL": [1.65771, 7.02925], + "yjq6": [1.934, 7.01463] + }, + "vertices": ["yjq6", "1IhL", "ditf", "rpzh"], + "texture": 1 + }, + "Tt5do9eD": { + "uv": { + "5jQS": [1.41518, 7.99449], + "TtLA": [1.15014, 7.99449], + "cqaI": [1.10512, 7.0585], + "m70k": [1.38141, 7.04388] + }, + "vertices": ["m70k", "cqaI", "TtLA", "5jQS"], + "texture": 1 + }, + "8r7ed029": { + "uv": { + "D9wR": [1.15014, 7.99449], + "0TBa": [0.8851, 7.99449], + "P8PL": [0.82883, 7.07313], + "2qMd": [1.10512, 7.0585] + }, + "vertices": ["2qMd", "P8PL", "0TBa", "D9wR"], + "texture": 1 + }, + "hTI7CCl8": { + "uv": { + "kPro": [0.8851, 7.99449], + "FbXp": [0.62007, 7.99449], + "Jqet": [0.55255, 7.08775], + "X40D": [0.82883, 7.07313] + }, + "vertices": ["X40D", "Jqet", "FbXp", "kPro"], + "texture": 1 + }, + "9EMzfsaM": { + "uv": { + "cV7E": [0.62007, 7.99449], + "RpTK": [0.35504, 7.99449], + "QS4i": [0.27626, 7.10238], + "b0wN": [0.55255, 7.08775] + }, + "vertices": ["b0wN", "QS4i", "RpTK", "cV7E"], + "texture": 1 + }, + "1A3RrdZF": { + "uv": { + "jyuv": [0, 5], + "am1B": [0.37501, 5], + "rpzh": [0.37501, 7], + "SG2C": [0, 7] + }, + "vertices": ["SG2C", "rpzh", "am1B", "jyuv"], + "texture": 1 + }, + "Z0MHKSM1": { + "uv": { + "am1B": [0.56252, 5], + "ditf": [0.75002, 7], + "rpzh": [0.37501, 7] + }, + "vertices": ["rpzh", "ditf", "am1B"], + "texture": 1 + }, + "8RfDVw73": { + "uv": { + "4PNW": [1.31254, 5], + "TtLA": [1.50004, 7], + "5jQS": [1.12503, 7] + }, + "vertices": ["5jQS", "TtLA", "4PNW"], + "texture": 1 + }, + "b1H2Twi7": { + "uv": { + "4PNW": [1.50004, 5], + "jAkr": [1.87504, 5], + "kPro": [1.87504, 7], + "TtLA": [1.50004, 7] + }, + "vertices": ["TtLA", "kPro", "jAkr", "4PNW"], + "texture": 1 + }, + "8CzZUE6T": { + "uv": { + "jAkr": [2.06254, 5], + "FbXp": [2.25004, 7], + "kPro": [1.87504, 7] + }, + "vertices": ["kPro", "FbXp", "jAkr"], + "texture": 1 + }, + "7XOUjrqa": { + "uv": { + "jAkr": [2.25004, 5], + "BcrG": [2.62503, 5], + "QgB1": [2.62503, 7], + "FbXp": [2.25004, 7] + }, + "vertices": ["FbXp", "QgB1", "BcrG", "jAkr"], + "texture": 1 + }, + "H3nYlw5n": { + "uv": { + "pcXW": [1, 10.49996], + "v2Oq": [1, 10.12496], + "jAkr": [2.5, 10.12496], + "4PNW": [2.5, 10.49996] + }, + "vertices": ["4PNW", "jAkr", "v2Oq", "pcXW"], + "texture": 1 + }, + "3Pp5rd8r": { + "uv": { + "gYNL": [3, 10], + "yjq6": [2.62499, 10], + "eeZW": [2.62499, 5], + "SmHE": [3, 5] + }, + "vertices": ["SmHE", "eeZW", "yjq6", "gYNL"], + "texture": 1 + }, + "Ozh5CuVR": { + "uv": { + "yjq6": [2.62499, 7], + "1IhL": [2.24998, 7], + "eeZW": [2.43748, 5] + }, + "vertices": ["eeZW", "1IhL", "yjq6"], + "texture": 1 + }, + "qTnHXohn": { + "uv": { + "m70k": [1.87497, 7], + "cqaI": [1.49996, 7], + "pcXW": [1.68746, 5] + }, + "vertices": ["pcXW", "cqaI", "m70k"], + "texture": 1 + }, + "NQGq8EFs": { + "uv": { + "cqaI": [1.49996, 10], + "X40D": [1.12496, 10], + "v2Oq": [1.12496, 5], + "pcXW": [1.49996, 5] + }, + "vertices": ["pcXW", "v2Oq", "X40D", "cqaI"], + "texture": 1 + }, + "t75oHfwX": { + "uv": { + "X40D": [1.12496, 7], + "Jqet": [0.74996, 7], + "v2Oq": [0.93746, 5] + }, + "vertices": ["v2Oq", "Jqet", "X40D"], + "texture": 1 + }, + "rn9ZHqv3": { + "uv": { + "Jqet": [0.74996, 10], + "XDyQ": [0.37497, 10], + "LJNo": [0.37497, 5], + "v2Oq": [0.74996, 5] + }, + "vertices": ["v2Oq", "LJNo", "XDyQ", "Jqet"], + "texture": 1 + }, + "cWeBGtG5": { + "uv": { + "XDyQ": [0, 6], + "Jqet": [0.2767, 6], + "xovw": [0.2767, 7], + "ApEB": [0, 7] + }, + "vertices": ["ApEB", "xovw", "Jqet", "XDyQ"], + "texture": 1 + }, + "BDq08QaJ": { + "uv": { + "QgB1": [0, 4], + "XDyQ": [0, 2], + "ApEB": [2, 2], + "iOyM": [2, 4] + }, + "vertices": ["iOyM", "ApEB", "XDyQ", "QgB1"], + "texture": 1 + }, + "54OA4Vs6": { + "uv": { + "FbXp": [0, 6], + "QgB1": [0.265, 6.0001], + "iOyM": [0.265, 7.0001], + "DFFs": [0, 7] + }, + "vertices": ["DFFs", "iOyM", "QgB1", "FbXp"], + "texture": 1 + }, + "IJCofTZe": { + "uv": { + "Jqet": [2, 2], + "FbXp": [2, 4], + "DFFs": [0, 4], + "xovw": [0, 2] + }, + "vertices": ["xovw", "DFFs", "FbXp", "Jqet"], + "texture": 1 + }, + "mIvrKkMT": { + "uv": { + "X40D": [0, 6], + "cqaI": [0.2767, 6], + "s57i": [0.2767, 7], + "DJ8Y": [0.0001, 7] + }, + "vertices": ["DJ8Y", "s57i", "cqaI", "X40D"], + "texture": 1 + }, + "O7BP5dy7": { + "uv": { + "kPro": [0, 4], + "X40D": [0, 2], + "DJ8Y": [2, 2], + "Htu6": [2, 4] + }, + "vertices": ["Htu6", "DJ8Y", "X40D", "kPro"], + "texture": 1 + }, + "HxuDHg0G": { + "uv": { + "TtLA": [1, 6], + "kPro": [1.2651, 6], + "Htu6": [1.265, 7], + "VQgu": [1, 7] + }, + "vertices": ["VQgu", "Htu6", "kPro", "TtLA"], + "texture": 1 + }, + "05QRSzeb": { + "uv": { + "cqaI": [2, 2], + "TtLA": [2, 4], + "VQgu": [0, 4], + "s57i": [0, 2] + }, + "vertices": ["s57i", "VQgu", "TtLA", "cqaI"], + "texture": 1 + }, + "iCzdhyKG": { + "uv": { + "5jQS": [0, 4], + "m70k": [0, 2], + "BvKq": [2, 2], + "deLA": [2, 4] + }, + "vertices": ["deLA", "BvKq", "m70k", "5jQS"], + "texture": 1 + }, + "TUyCMWe4": { + "uv": { + "1IhL": [0.9655, 2], + "ditf": [0.9655, 4], + "Fugt": [0, 4], + "J74A": [0, 2] + }, + "vertices": ["J74A", "Fugt", "ditf", "1IhL"], + "texture": 1 + }, + "N1eMWfWU": { + "uv": { + "yjq6": [1, 6], + "gYNL": [1.2767, 6], + "gFQQ": [1.2767, 7], + "37AA": [1.0001, 7] + }, + "vertices": ["37AA", "gFQQ", "gYNL", "yjq6"], + "texture": 1 + }, + "ZgkHiEvD": { + "uv": { + "rpzh": [2, 4], + "yjq6": [2, 2], + "37AA": [5, 2], + "hEhj": [5, 4] + }, + "vertices": ["hEhj", "37AA", "yjq6", "rpzh"], + "texture": 1 + }, + "Rqvnh5JT": { + "uv": { + "SG2C": [1, 6], + "rpzh": [1.265, 6], + "hEhj": [1.265, 7], + "rik1": [1, 7] + }, + "vertices": ["rik1", "hEhj", "rpzh", "SG2C"], + "texture": 1 + }, + "NUcZO3RF": { + "uv": { + "gYNL": [2, 6], + "SG2C": [2, 8], + "rik1": [0, 8], + "gFQQ": [0, 6] + }, + "vertices": ["gFQQ", "rik1", "SG2C", "gYNL"], + "texture": 1 + }, + "duNNNzsm": { + "uv": { + "R5vE": [1.68022, 7.99449], + "19ji": [1.41518, 7.99449], + "oDy3": [1.38141, 7.04388], + "QcTt": [1.65771, 7.02925] + }, + "vertices": ["QcTt", "oDy3", "19ji", "R5vE"], + "texture": 1 + }, + "1GvS40WP": { + "uv": { + "am1B": [0.75002, 5], + "4PNW": [1.12503, 5], + "5jQS": [1.12503, 7], + "ditf": [0.75002, 7] + }, + "vertices": ["ditf", "5jQS", "4PNW", "am1B"], + "texture": 1 + }, + "ZAq6364x": { + "uv": { + "eeZW": [1, 11.24998], + "pcXW": [1, 10.87497], + "4PNW": [2.5, 10.87497], + "am1B": [2.5, 11.24998] + }, + "vertices": ["am1B", "4PNW", "pcXW", "eeZW"], + "texture": 1 + }, + "xM3u5Rgj": { + "uv": { + "v2Oq": [1, 9.74996], + "LJNo": [1, 9.37497], + "BcrG": [2.5, 9.37497], + "jAkr": [2.5, 9.74996] + }, + "vertices": ["jAkr", "BcrG", "LJNo", "v2Oq"], + "texture": 1 + }, + "sbc82oNA": { + "uv": { + "1IhL": [2.24998, 10], + "m70k": [1.87497, 10], + "pcXW": [1.87497, 5], + "eeZW": [2.24998, 5] + }, + "vertices": ["eeZW", "pcXW", "m70k", "1IhL"], + "texture": 1 + }, + "AJJPyz9R": { + "uv": { + "m70k": [1, 6], + "1IhL": [1.2766, 6], + "J74A": [1.2767, 7], + "BvKq": [1, 7] + }, + "vertices": ["BvKq", "J74A", "1IhL", "m70k"], + "texture": 1 + }, + "ZppkV46C": { + "uv": { + "ditf": [0.0001, 6], + "5jQS": [0.2651, 6], + "deLA": [0.2651, 7], + "Fugt": [0, 7] + }, + "vertices": ["Fugt", "deLA", "5jQS", "ditf"], + "texture": 1 + }, + "kCcOlvWB": { + "uv": { + "SmHE": [1, 12], + "eeZW": [1, 11.62499], + "am1B": [2.5, 11.62499], + "jyuv": [2.5, 12] + }, + "vertices": ["jyuv", "am1B", "eeZW", "SmHE"], + "texture": 1 + }, + "j8g2VQFn": { + "uv": { + "ApEB": [0, 6], + "xovw": [1.6, 6], + "b0wN": [1.6, 7], + "QS4i": [0, 7] + }, + "vertices": ["QS4i", "b0wN", "xovw", "ApEB"], + "texture": 1 + }, + "ZdfOYoQE": { + "uv": { + "iOyM": [0, 4], + "ApEB": [0, 2], + "QS4i": [7, 2], + "RpTK": [7, 4] + }, + "vertices": ["RpTK", "QS4i", "ApEB", "iOyM"], + "texture": 1 + }, + "PSd8nYdT": { + "uv": { + "DFFs": [6, 11.00031], + "iOyM": [7, 11], + "RpTK": [7, 12.74996], + "cV7E": [6, 12.75003] + }, + "vertices": ["cV7E", "RpTK", "iOyM", "DFFs"], + "texture": 1 + }, + "HIdDzpOZ": { + "uv": { + "xovw": [7, 2], + "DFFs": [7, 4], + "cV7E": [0, 4], + "b0wN": [0, 2] + }, + "vertices": ["b0wN", "cV7E", "DFFs", "xovw"], + "texture": 1 + }, + "AaDkkopW": { + "uv": { + "DJ8Y": [0, 6], + "s57i": [1.6, 6], + "2qMd": [1.6, 7], + "P8PL": [0, 7] + }, + "vertices": ["P8PL", "2qMd", "s57i", "DJ8Y"], + "texture": 1 + }, + "uDXKxApa": { + "uv": { + "Htu6": [0, 4], + "DJ8Y": [0, 2], + "P8PL": [7, 2], + "0TBa": [7, 4] + }, + "vertices": ["0TBa", "P8PL", "DJ8Y", "Htu6"], + "texture": 1 + }, + "FD3Uef8Z": { + "uv": { + "VQgu": [6, 11.00031], + "Htu6": [7, 11], + "0TBa": [7, 12.74996], + "D9wR": [6, 12.75003] + }, + "vertices": ["D9wR", "0TBa", "Htu6", "VQgu"], + "texture": 1 + }, + "znTdIdv8": { + "uv": { + "s57i": [7, 2], + "VQgu": [7, 4], + "D9wR": [0, 4], + "2qMd": [0, 2] + }, + "vertices": ["2qMd", "D9wR", "VQgu", "s57i"], + "texture": 1 + }, + "HBqfAJ9G": { + "uv": { + "BvKq": [0, 6], + "J74A": [1.6, 6], + "QcTt": [1.6, 7], + "oDy3": [0, 7] + }, + "vertices": ["oDy3", "QcTt", "J74A", "BvKq"], + "texture": 1 + }, + "xTS24TAq": { + "uv": { + "deLA": [0, 4], + "BvKq": [0, 2], + "oDy3": [7, 2], + "19ji": [7, 4] + }, + "vertices": ["19ji", "oDy3", "BvKq", "deLA"], + "texture": 1 + }, + "Ee6LZNK0": { + "uv": { + "Fugt": [6, 11.00031], + "deLA": [7, 11], + "19ji": [7, 12.74996], + "R5vE": [6, 12.75003] + }, + "vertices": ["R5vE", "19ji", "deLA", "Fugt"], + "texture": 1 + }, + "DGmdf0cv": { + "uv": { + "J74A": [3, 2], + "Fugt": [3, 4], + "R5vE": [0, 4], + "QcTt": [0, 2] + }, + "vertices": ["QcTt", "R5vE", "Fugt", "J74A"], + "texture": 1 + }, + "S8qFQBfU": { + "uv": { + "37AA": [1, 6], + "gFQQ": [2.6, 6], + "NR0N": [2.6, 7], + "XL8u": [1, 7] + }, + "vertices": ["XL8u", "NR0N", "gFQQ", "37AA"], + "texture": 1 + }, + "ZntA3gmm": { + "uv": { + "hEhj": [0, 4], + "37AA": [0, 2], + "XL8u": [7, 2], + "zpU5": [7, 4] + }, + "vertices": ["zpU5", "XL8u", "37AA", "hEhj"], + "texture": 1 + }, + "3IofQwIZ": { + "uv": { + "rik1": [6, 11.00031], + "hEhj": [7, 11], + "zpU5": [7, 12.74996], + "GTiL": [6, 12.75003] + }, + "vertices": ["GTiL", "zpU5", "hEhj", "rik1"], + "texture": 1 + }, + "QWX2zBDX": { + "uv": { + "gFQQ": [7, 6], + "rik1": [7, 8], + "GTiL": [0, 8], + "NR0N": [0, 6] + }, + "vertices": ["NR0N", "GTiL", "rik1", "gFQQ"], + "texture": 1 + }, + "LPkiykfM": { + "uv": { + "PHtJ": [0, 8], + "IH02": [0.97555, 8.32384], + "FdPC": [0.66457, 9.53063], + "jFow": [0, 10.09977] + }, + "vertices": ["jFow", "FdPC", "IH02", "PHtJ"], + "texture": 1 + }, + "lCBsAgW1": { + "uv": { + "XDyQ": [0.00004, 3], + "LJNo": [1.2462, 3.0001], + "uFwO": [0, 4.00007], + "zDo4": [1.24616, 4.00007] + }, + "vertices": ["zDo4", "uFwO", "LJNo", "XDyQ"], + "texture": 1 + }, + "nCpQvssq": { + "uv": { + "QgB1": [0.00001, 2.00001], + "XDyQ": [0.87503, 2], + "imkY": [0, 2.99992], + "uFwO": [0.87503, 3] + }, + "vertices": ["uFwO", "imkY", "XDyQ", "QgB1"], + "texture": 1 + }, + "ggILVg96": { + "uv": { + "BcrG": [0.99925, 2], + "QgB1": [0.99935, 4.10127], + "P0uD": [0, 2.03686], + "imkY": [0, 4.13803] + }, + "vertices": ["imkY", "P0uD", "QgB1", "BcrG"], + "texture": 1 + }, + "E1MPoFB6": { + "uv": { + "LJNo": [0.00003, 3.07737], + "BcrG": [1.02791, 3], + "zDo4": [0, 4.07729], + "P0uD": [1.02791, 4.00001] + }, + "vertices": ["P0uD", "zDo4", "BcrG", "LJNo"], + "texture": 1 + }, + "3jltagHl": { + "uv": { + "imCn": [0.00001, 8.02389], + "LiuJ": [0.47057, 8], + "hwWi": [0, 8.52387], + "I3aC": [0.47057, 8.50008] + }, + "vertices": ["I3aC", "hwWi", "LiuJ", "imCn"], + "texture": 1 + }, + "jddiASSr": { + "uv": { + "imkY": [0.00006, 8], + "uFwO": [0.69811, 8], + "jFow": [0, 8.49998], + "FdPC": [0.69805, 8.49998] + }, + "vertices": ["FdPC", "jFow", "uFwO", "imkY"], + "texture": 1 + }, + "lGMv7vdj": { + "uv": { + "P0uD": [0.99751, 7.5], + "imkY": [0.9976, 8.05389], + "PHtJ": [0, 7.53479], + "jFow": [0, 8.08862] + }, + "vertices": ["jFow", "PHtJ", "imkY", "P0uD"], + "texture": 1 + }, + "hBH2eAfT": { + "uv": { + "zDo4": [0.00007, 7.53847], + "P0uD": [1.00559, 7.5], + "IH02": [0, 8.03847], + "PHtJ": [1.00559, 8.00003] + }, + "vertices": ["PHtJ", "IH02", "P0uD", "zDo4"], + "texture": 1 + }, + "yZseB82b": { + "uv": { + "FdPC": [0, 7.24962], + "x3rw": [0.83087, 7.12481], + "IH02": [0.94235, 7.24962], + "uO9x": [0.12411, 7.12481] + }, + "vertices": ["uO9x", "IH02", "x3rw", "FdPC"], + "texture": 1 + }, + "GtbKnaxO": { + "uv": { + "IH02": [0.23527, 8.99997], + "sKD5": [0.1177, 8.13092], + "zDo4": [0.2354, 8], + "x3rw": [0.11764, 8.88095] + }, + "vertices": ["x3rw", "zDo4", "sKD5", "IH02"], + "texture": 1 + }, + "cnFcb0TN": { + "uv": { + "zDo4": [0.94245, 8.00019], + "wBr0": [0.11145, 8.12488], + "uFwO": [0, 8], + "sKD5": [0.81826, 8.12498] + }, + "vertices": ["sKD5", "uFwO", "wBr0", "zDo4"], + "texture": 1 + }, + "JkJlzjX5": { + "uv": { + "uFwO": [0, 8], + "uO9x": [0.11765, 8.86904], + "FdPC": [0, 8.99996], + "wBr0": [0.11765, 8.11907] + }, + "vertices": ["wBr0", "FdPC", "uO9x", "uFwO"], + "texture": 1 + }, + "3xEFF5Dl": { + "uv": { + "imCn": [0.22291, 8.24977], + "wBr0": [0.11145, 8.12488], + "LiuJ": [0.69408, 8.24977], + "sKD5": [0.81826, 8.12498] + }, + "vertices": ["sKD5", "LiuJ", "wBr0", "imCn"], + "texture": 1 + }, + "AEczQLbv": { + "uv": { + "hwWi": [0.23529, 8.73812], + "uO9x": [0.11765, 8.86904], + "imCn": [0.23529, 8.23814], + "wBr0": [0.11765, 8.11907] + }, + "vertices": ["wBr0", "imCn", "uO9x", "hwWi"], + "texture": 1 + }, + "j1CKaqHy": { + "uv": { + "I3aC": [7, 12.74996], + "x3rw": [7, 11], + "hwWi": [6, 12.75003], + "uO9x": [6, 11.00031] + }, + "vertices": ["uO9x", "hwWi", "x3rw", "I3aC"], + "texture": 1 + }, + "3V03UFgu": { + "uv": { + "LiuJ": [0, 8.26185], + "sKD5": [0.1177, 8.13092], + "I3aC": [0, 8.76193], + "x3rw": [0.11764, 8.88095] + }, + "vertices": ["x3rw", "I3aC", "sKD5", "LiuJ"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "a7ff4b5e-7042-a38c-c883-f2e72ff2dd7c" + }, + { + "name": "cube_selection", + "color": 0, + "origin": [-6.125, 11.2, -0.04], + "rotation": [0, 0, -12.5], + "export": true, + "visibility": true, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "SG2C": [-0.35, 0.32, 1.7], + "aXfG": [-0.14722, 0.014, -0.93945], + "gYNL": [1.06944, 0.32, 1.7], + "qm42": [1.06944, 0.014, -0.93945], + "jyuv": [-0.14722, 1.54401, 1.51147], + "rkTD": [1.06944, 1.23801, -1.41078], + "5bB4": [-0.14722, 1.23801, -1.41078], + "gsUF": [1.06944, 0.014, -1.725], + "3ZE3": [-0.14722, 0.014, -1.725], + "DLfR": [1.27222, -1.21, -1.725], + "aOPa": [0.46111, -1.21, -1.725], + "ZHsx": [0.46111, -1.21, -1.25367], + "U3G7": [1.27222, -1.21, -1.25367], + "yjq6": [1.06944, 0.32, 1.1344], + "rpzh": [-0.35, 0.32, 1.1344], + "1IhL": [1.06944, 0.32, 1.07156], + "ditf": [-0.35, 0.32, 1.07156], + "cqaI": [1.06944, 0.32, 0.44312], + "TtLA": [-0.35, 0.32, 0.44312], + "X40D": [1.06944, 0.32, -0.12248], + "kPro": [-0.35, 0.32, -0.12248], + "Jqet": [1.06944, 0.32, -0.18532], + "FbXp": [-0.35, 0.32, -0.18532], + "XDyQ": [1.06944, 0.32, -0.75092], + "4PNW": [-0.14722, 1.85001, 0.47454], + "jAkr": [-0.14722, 1.85001, -0.1539], + "eeZW": [1.475, 1.54401, 1.10298], + "v2Oq": [1.475, 1.54401, -0.1539], + "xovw": [1.06944, -0.598, -0.18532], + "ApEB": [1.06944, -0.598, -0.75092], + "iOyM": [-0.14722, -0.598, -0.75092], + "DFFs": [-0.14722, -0.598, -0.18532], + "s57i": [1.06944, -0.598, 0.44312], + "DJ8Y": [1.06944, -0.598, -0.12248], + "Htu6": [-0.14722, -0.598, -0.12248], + "VQgu": [-0.14722, -0.598, 0.44312], + "J74A": [1.06944, -0.598, 1.07156], + "deLA": [-0.14722, -0.598, 0.50596], + "gFQQ": [1.06944, -0.598, 1.7], + "37AA": [1.06944, -0.598, 1.1344], + "hEhj": [-0.14722, -0.598, 1.1344], + "rik1": [-0.14722, -0.598, 1.7], + "m70k": [1.06944, 0.32, 0.50596], + "5jQS": [-0.35, 0.32, 0.50596], + "QgB1": [-0.35, 0.32, -0.75092], + "BvKq": [1.06944, -0.598, 0.50596], + "Fugt": [-0.14722, -0.598, 1.07156], + "BcrG": [-0.14722, 1.85001, -0.82947], + "LJNo": [1.475, 1.54401, -0.82947], + "pcXW": [1.475, 1.54401, 0.47454], + "SmHE": [1.475, 1.23801, 1.51147], + "am1B": [-0.14722, 1.85001, 1.10298], + "b0wN": [1.475, -1.975, -0.24817], + "QS4i": [1.475, -1.975, -0.68807], + "RpTK": [0.25833, -1.975, -0.68807], + "cV7E": [0.25833, -1.975, -0.24817], + "2qMd": [1.475, -1.975, 0.38028], + "P8PL": [1.475, -1.975, -0.05963], + "0TBa": [0.25833, -1.975, -0.05963], + "D9wR": [0.25833, -1.975, 0.38028], + "QcTt": [1.475, -1.975, 1.00872], + "oDy3": [1.475, -1.975, 0.56881], + "19ji": [0.25833, -1.975, 0.56881], + "R5vE": [0.25833, -1.975, 1.00872], + "NR0N": [1.475, -1.975, 1.63716], + "XL8u": [1.475, -1.975, 1.19725], + "zpU5": [0.25833, -1.975, 1.19725], + "GTiL": [0.25833, -1.975, 1.63716] + }, + "faces": { + "vvIAs6ec": { + "uv": { + "aXfG": [3, 7], + "BcrG": [2.81252, 5], + "QgB1": [2.62503, 7] + }, + "vertices": ["QgB1", "BcrG", "aXfG"], + "texture": 1 + }, + "uo43jn6G": { + "uv": { + "gYNL": [1, 11], + "SG2C": [2.5, 11], + "jyuv": [2.5, 9], + "SmHE": [1, 9] + }, + "vertices": ["SmHE", "jyuv", "SG2C", "gYNL"], + "texture": 1 + }, + "5U9xU0dD": { + "uv": { + "3ZE3": [1, 11], + "gsUF": [2.5, 11], + "rkTD": [2.5, 9], + "5bB4": [1, 9] + }, + "vertices": ["5bB4", "rkTD", "gsUF", "3ZE3"], + "texture": 1 + }, + "PMT6iALM": { + "uv": { + "LJNo": [2, 6], + "qm42": [2, 8], + "rkTD": [1, 6], + "gsUF": [1, 8] + }, + "vertices": ["gsUF", "rkTD", "qm42", "LJNo"], + "texture": 1 + }, + "laujVFTj": { + "uv": { + "BcrG": [2.5, 8], + "LJNo": [1, 8], + "5bB4": [2.5, 7], + "rkTD": [1, 7] + }, + "vertices": ["rkTD", "5bB4", "LJNo", "BcrG"], + "texture": 1 + }, + "qTTfHe64": { + "uv": { + "U3G7": [2.5, 8.00004], + "ZHsx": [1.00001, 7.99996], + "DLfR": [2.50005, 7], + "aOPa": [1, 7] + }, + "vertices": ["aOPa", "DLfR", "ZHsx", "U3G7"], + "texture": 1 + }, + "G08WUC3f": { + "uv": { + "3ZE3": [1, 5], + "gsUF": [2.5, 5], + "aOPa": [1, 6], + "DLfR": [2.5, 6] + }, + "vertices": ["DLfR", "aOPa", "gsUF", "3ZE3"], + "texture": 1 + }, + "pHmNi5fh": { + "uv": { + "aXfG": [6, 11.00031], + "3ZE3": [7, 11], + "ZHsx": [6, 12.75003], + "aOPa": [7, 12.74996] + }, + "vertices": ["aOPa", "ZHsx", "3ZE3", "aXfG"], + "texture": 1 + }, + "cuft3msr": { + "uv": { + "qm42": [1, 5], + "aXfG": [2.5, 5], + "U3G7": [1, 6], + "ZHsx": [2.5, 6] + }, + "vertices": ["ZHsx", "U3G7", "aXfG", "qm42"], + "texture": 1 + }, + "azGhehvz": { + "uv": { + "gsUF": [1, 5], + "qm42": [2, 5], + "DLfR": [1, 6], + "U3G7": [2, 6] + }, + "vertices": ["U3G7", "DLfR", "qm42", "gsUF"], + "texture": 1 + }, + "udheygIe": { + "uv": { + "XDyQ": [0.37497, 10], + "qm42": [0, 10], + "LJNo": [0.18748, 5] + }, + "vertices": ["LJNo", "qm42", "XDyQ"], + "texture": 1 + }, + "8H3cL8dN": { + "uv": { + "aXfG": [0, 9], + "BcrG": [0, 7], + "3ZE3": [1, 9], + "5bB4": [1, 7] + }, + "vertices": ["5bB4", "3ZE3", "BcrG", "aXfG"], + "texture": 1 + }, + "n0zqwS3a": { + "uv": { + "qm42": [0, 7.117], + "QgB1": [0.35504, 7.99449], + "aXfG": [0.09003, 7.99449], + "XDyQ": [0.27626, 7.10238] + }, + "vertices": ["XDyQ", "aXfG", "QgB1", "qm42"], + "texture": 1 + }, + "qVUOFDNK": { + "uv": { + "GTiL": [2.2103, 7.99449], + "zpU5": [1.94526, 7.99449], + "NR0N": [2.2103, 7], + "XL8u": [1.934, 7.01463] + }, + "vertices": ["XL8u", "NR0N", "zpU5", "GTiL"], + "texture": 1 + }, + "sJ7BIjtK": { + "uv": { + "rpzh": [1.94526, 7.99449], + "ditf": [1.68022, 7.99449], + "yjq6": [1.934, 7.01463], + "1IhL": [1.65771, 7.02925] + }, + "vertices": ["1IhL", "yjq6", "ditf", "rpzh"], + "texture": 1 + }, + "Tt5do9eD": { + "uv": { + "5jQS": [1.41518, 7.99449], + "TtLA": [1.15014, 7.99449], + "m70k": [1.38141, 7.04388], + "cqaI": [1.10512, 7.0585] + }, + "vertices": ["cqaI", "m70k", "TtLA", "5jQS"], + "texture": 1 + }, + "8r7ed029": { + "uv": { + "D9wR": [1.15014, 7.99449], + "0TBa": [0.8851, 7.99449], + "2qMd": [1.10512, 7.0585], + "P8PL": [0.82883, 7.07313] + }, + "vertices": ["P8PL", "2qMd", "0TBa", "D9wR"], + "texture": 1 + }, + "hTI7CCl8": { + "uv": { + "kPro": [0.8851, 7.99449], + "FbXp": [0.62007, 7.99449], + "X40D": [0.82883, 7.07313], + "Jqet": [0.55255, 7.08775] + }, + "vertices": ["Jqet", "X40D", "FbXp", "kPro"], + "texture": 1 + }, + "9EMzfsaM": { + "uv": { + "cV7E": [0.62007, 7.99449], + "RpTK": [0.35504, 7.99449], + "b0wN": [0.55255, 7.08775], + "QS4i": [0.27626, 7.10238] + }, + "vertices": ["QS4i", "b0wN", "RpTK", "cV7E"], + "texture": 1 + }, + "1A3RrdZF": { + "uv": { + "jyuv": [0, 5], + "am1B": [0.37501, 5], + "SG2C": [0, 7], + "rpzh": [0.37501, 7] + }, + "vertices": ["rpzh", "SG2C", "am1B", "jyuv"], + "texture": 1 + }, + "Z0MHKSM1": { + "uv": { + "am1B": [0.56252, 5], + "rpzh": [0.37501, 7], + "ditf": [0.75002, 7] + }, + "vertices": ["ditf", "rpzh", "am1B"], + "texture": 1 + }, + "8RfDVw73": { + "uv": { + "4PNW": [1.31254, 5], + "5jQS": [1.12503, 7], + "TtLA": [1.50004, 7] + }, + "vertices": ["TtLA", "5jQS", "4PNW"], + "texture": 1 + }, + "b1H2Twi7": { + "uv": { + "4PNW": [1.50004, 5], + "jAkr": [1.87504, 5], + "TtLA": [1.50004, 7], + "kPro": [1.87504, 7] + }, + "vertices": ["kPro", "TtLA", "jAkr", "4PNW"], + "texture": 1 + }, + "8CzZUE6T": { + "uv": { + "jAkr": [2.06254, 5], + "kPro": [1.87504, 7], + "FbXp": [2.25004, 7] + }, + "vertices": ["FbXp", "kPro", "jAkr"], + "texture": 1 + }, + "7XOUjrqa": { + "uv": { + "jAkr": [2.25004, 5], + "BcrG": [2.62503, 5], + "FbXp": [2.25004, 7], + "QgB1": [2.62503, 7] + }, + "vertices": ["QgB1", "FbXp", "BcrG", "jAkr"], + "texture": 1 + }, + "H3nYlw5n": { + "uv": { + "pcXW": [1, 10.49996], + "v2Oq": [1, 10.12496], + "4PNW": [2.5, 10.49996], + "jAkr": [2.5, 10.12496] + }, + "vertices": ["jAkr", "4PNW", "v2Oq", "pcXW"], + "texture": 1 + }, + "3Pp5rd8r": { + "uv": { + "gYNL": [3, 10], + "yjq6": [2.62499, 10], + "SmHE": [3, 5], + "eeZW": [2.62499, 5] + }, + "vertices": ["eeZW", "SmHE", "yjq6", "gYNL"], + "texture": 1 + }, + "Ozh5CuVR": { + "uv": { + "yjq6": [2.62499, 7], + "eeZW": [2.43748, 5], + "1IhL": [2.24998, 7] + }, + "vertices": ["1IhL", "eeZW", "yjq6"], + "texture": 1 + }, + "qTnHXohn": { + "uv": { + "m70k": [1.87497, 7], + "pcXW": [1.68746, 5], + "cqaI": [1.49996, 7] + }, + "vertices": ["cqaI", "pcXW", "m70k"], + "texture": 1 + }, + "NQGq8EFs": { + "uv": { + "cqaI": [1.49996, 10], + "X40D": [1.12496, 10], + "pcXW": [1.49996, 5], + "v2Oq": [1.12496, 5] + }, + "vertices": ["v2Oq", "pcXW", "X40D", "cqaI"], + "texture": 1 + }, + "t75oHfwX": { + "uv": { + "X40D": [1.12496, 7], + "v2Oq": [0.93746, 5], + "Jqet": [0.74996, 7] + }, + "vertices": ["Jqet", "v2Oq", "X40D"], + "texture": 1 + }, + "rn9ZHqv3": { + "uv": { + "Jqet": [0.74996, 10], + "XDyQ": [0.37497, 10], + "v2Oq": [0.74996, 5], + "LJNo": [0.37497, 5] + }, + "vertices": ["LJNo", "v2Oq", "XDyQ", "Jqet"], + "texture": 1 + }, + "cWeBGtG5": { + "uv": { + "XDyQ": [0, 6], + "Jqet": [0.2767, 6], + "ApEB": [0, 7], + "xovw": [0.2767, 7] + }, + "vertices": ["xovw", "ApEB", "Jqet", "XDyQ"], + "texture": 1 + }, + "BDq08QaJ": { + "uv": { + "QgB1": [0, 4], + "XDyQ": [0, 2], + "iOyM": [2, 4], + "ApEB": [2, 2] + }, + "vertices": ["ApEB", "iOyM", "XDyQ", "QgB1"], + "texture": 1 + }, + "54OA4Vs6": { + "uv": { + "FbXp": [0, 6], + "QgB1": [0.265, 6.0001], + "DFFs": [0, 7], + "iOyM": [0.265, 7.0001] + }, + "vertices": ["iOyM", "DFFs", "QgB1", "FbXp"], + "texture": 1 + }, + "IJCofTZe": { + "uv": { + "Jqet": [2, 2], + "FbXp": [2, 4], + "xovw": [0, 2], + "DFFs": [0, 4] + }, + "vertices": ["DFFs", "xovw", "FbXp", "Jqet"], + "texture": 1 + }, + "mIvrKkMT": { + "uv": { + "X40D": [0, 6], + "cqaI": [0.2767, 6], + "DJ8Y": [0.0001, 7], + "s57i": [0.2767, 7] + }, + "vertices": ["s57i", "DJ8Y", "cqaI", "X40D"], + "texture": 1 + }, + "O7BP5dy7": { + "uv": { + "kPro": [0, 4], + "X40D": [0, 2], + "Htu6": [2, 4], + "DJ8Y": [2, 2] + }, + "vertices": ["DJ8Y", "Htu6", "X40D", "kPro"], + "texture": 1 + }, + "HxuDHg0G": { + "uv": { + "TtLA": [1, 6], + "kPro": [1.2651, 6], + "VQgu": [1, 7], + "Htu6": [1.265, 7] + }, + "vertices": ["Htu6", "VQgu", "kPro", "TtLA"], + "texture": 1 + }, + "05QRSzeb": { + "uv": { + "cqaI": [2, 2], + "TtLA": [2, 4], + "s57i": [0, 2], + "VQgu": [0, 4] + }, + "vertices": ["VQgu", "s57i", "TtLA", "cqaI"], + "texture": 1 + }, + "iCzdhyKG": { + "uv": { + "5jQS": [0, 4], + "m70k": [0, 2], + "deLA": [2, 4], + "BvKq": [2, 2] + }, + "vertices": ["BvKq", "deLA", "m70k", "5jQS"], + "texture": 1 + }, + "TUyCMWe4": { + "uv": { + "1IhL": [0.9655, 2], + "ditf": [0.9655, 4], + "J74A": [0, 2], + "Fugt": [0, 4] + }, + "vertices": ["Fugt", "J74A", "ditf", "1IhL"], + "texture": 1 + }, + "N1eMWfWU": { + "uv": { + "yjq6": [1, 6], + "gYNL": [1.2767, 6], + "37AA": [1.0001, 7], + "gFQQ": [1.2767, 7] + }, + "vertices": ["gFQQ", "37AA", "gYNL", "yjq6"], + "texture": 1 + }, + "ZgkHiEvD": { + "uv": { + "rpzh": [2, 4], + "yjq6": [2, 2], + "hEhj": [5, 4], + "37AA": [5, 2] + }, + "vertices": ["37AA", "hEhj", "yjq6", "rpzh"], + "texture": 1 + }, + "Rqvnh5JT": { + "uv": { + "SG2C": [1, 6], + "rpzh": [1.265, 6], + "rik1": [1, 7], + "hEhj": [1.265, 7] + }, + "vertices": ["hEhj", "rik1", "rpzh", "SG2C"], + "texture": 1 + }, + "NUcZO3RF": { + "uv": { + "gYNL": [2, 6], + "SG2C": [2, 8], + "gFQQ": [0, 6], + "rik1": [0, 8] + }, + "vertices": ["rik1", "gFQQ", "SG2C", "gYNL"], + "texture": 1 + }, + "duNNNzsm": { + "uv": { + "R5vE": [1.68022, 7.99449], + "19ji": [1.41518, 7.99449], + "QcTt": [1.65771, 7.02925], + "oDy3": [1.38141, 7.04388] + }, + "vertices": ["oDy3", "QcTt", "19ji", "R5vE"], + "texture": 1 + }, + "1GvS40WP": { + "uv": { + "am1B": [0.75002, 5], + "4PNW": [1.12503, 5], + "ditf": [0.75002, 7], + "5jQS": [1.12503, 7] + }, + "vertices": ["5jQS", "ditf", "4PNW", "am1B"], + "texture": 1 + }, + "ZAq6364x": { + "uv": { + "eeZW": [1, 11.24998], + "pcXW": [1, 10.87497], + "am1B": [2.5, 11.24998], + "4PNW": [2.5, 10.87497] + }, + "vertices": ["4PNW", "am1B", "pcXW", "eeZW"], + "texture": 1 + }, + "xM3u5Rgj": { + "uv": { + "v2Oq": [1, 9.74996], + "LJNo": [1, 9.37497], + "jAkr": [2.5, 9.74996], + "BcrG": [2.5, 9.37497] + }, + "vertices": ["BcrG", "jAkr", "LJNo", "v2Oq"], + "texture": 1 + }, + "sbc82oNA": { + "uv": { + "1IhL": [2.24998, 10], + "m70k": [1.87497, 10], + "eeZW": [2.24998, 5], + "pcXW": [1.87497, 5] + }, + "vertices": ["pcXW", "eeZW", "m70k", "1IhL"], + "texture": 1 + }, + "AJJPyz9R": { + "uv": { + "m70k": [1, 6], + "1IhL": [1.2766, 6], + "BvKq": [1, 7], + "J74A": [1.2767, 7] + }, + "vertices": ["J74A", "BvKq", "1IhL", "m70k"], + "texture": 1 + }, + "ZppkV46C": { + "uv": { + "ditf": [0.0001, 6], + "5jQS": [0.2651, 6], + "Fugt": [0, 7], + "deLA": [0.2651, 7] + }, + "vertices": ["deLA", "Fugt", "5jQS", "ditf"], + "texture": 1 + }, + "kCcOlvWB": { + "uv": { + "SmHE": [1, 12], + "eeZW": [1, 11.62499], + "jyuv": [2.5, 12], + "am1B": [2.5, 11.62499] + }, + "vertices": ["am1B", "jyuv", "eeZW", "SmHE"], + "texture": 1 + }, + "j8g2VQFn": { + "uv": { + "ApEB": [0, 6], + "xovw": [1.6, 6], + "QS4i": [0, 7], + "b0wN": [1.6, 7] + }, + "vertices": ["b0wN", "QS4i", "xovw", "ApEB"], + "texture": 1 + }, + "ZdfOYoQE": { + "uv": { + "iOyM": [0, 4], + "ApEB": [0, 2], + "RpTK": [7, 4], + "QS4i": [7, 2] + }, + "vertices": ["QS4i", "RpTK", "ApEB", "iOyM"], + "texture": 1 + }, + "PSd8nYdT": { + "uv": { + "DFFs": [6, 11.00031], + "iOyM": [7, 11], + "cV7E": [6, 12.75003], + "RpTK": [7, 12.74996] + }, + "vertices": ["RpTK", "cV7E", "iOyM", "DFFs"], + "texture": 1 + }, + "HIdDzpOZ": { + "uv": { + "xovw": [7, 2], + "DFFs": [7, 4], + "b0wN": [0, 2], + "cV7E": [0, 4] + }, + "vertices": ["cV7E", "b0wN", "DFFs", "xovw"], + "texture": 1 + }, + "AaDkkopW": { + "uv": { + "DJ8Y": [0, 6], + "s57i": [1.6, 6], + "P8PL": [0, 7], + "2qMd": [1.6, 7] + }, + "vertices": ["2qMd", "P8PL", "s57i", "DJ8Y"], + "texture": 1 + }, + "uDXKxApa": { + "uv": { + "Htu6": [0, 4], + "DJ8Y": [0, 2], + "0TBa": [7, 4], + "P8PL": [7, 2] + }, + "vertices": ["P8PL", "0TBa", "DJ8Y", "Htu6"], + "texture": 1 + }, + "FD3Uef8Z": { + "uv": { + "VQgu": [6, 11.00031], + "Htu6": [7, 11], + "D9wR": [6, 12.75003], + "0TBa": [7, 12.74996] + }, + "vertices": ["0TBa", "D9wR", "Htu6", "VQgu"], + "texture": 1 + }, + "znTdIdv8": { + "uv": { + "s57i": [7, 2], + "VQgu": [7, 4], + "2qMd": [0, 2], + "D9wR": [0, 4] + }, + "vertices": ["D9wR", "2qMd", "VQgu", "s57i"], + "texture": 1 + }, + "HBqfAJ9G": { + "uv": { + "BvKq": [0, 6], + "J74A": [1.6, 6], + "oDy3": [0, 7], + "QcTt": [1.6, 7] + }, + "vertices": ["QcTt", "oDy3", "J74A", "BvKq"], + "texture": 1 + }, + "xTS24TAq": { + "uv": { + "deLA": [0, 4], + "BvKq": [0, 2], + "19ji": [7, 4], + "oDy3": [7, 2] + }, + "vertices": ["oDy3", "19ji", "BvKq", "deLA"], + "texture": 1 + }, + "Ee6LZNK0": { + "uv": { + "Fugt": [6, 11.00031], + "deLA": [7, 11], + "R5vE": [6, 12.75003], + "19ji": [7, 12.74996] + }, + "vertices": ["19ji", "R5vE", "deLA", "Fugt"], + "texture": 1 + }, + "DGmdf0cv": { + "uv": { + "J74A": [3, 2], + "Fugt": [3, 4], + "QcTt": [0, 2], + "R5vE": [0, 4] + }, + "vertices": ["R5vE", "QcTt", "Fugt", "J74A"], + "texture": 1 + }, + "S8qFQBfU": { + "uv": { + "37AA": [1, 6], + "gFQQ": [2.6, 6], + "XL8u": [1, 7], + "NR0N": [2.6, 7] + }, + "vertices": ["NR0N", "XL8u", "gFQQ", "37AA"], + "texture": 1 + }, + "ZntA3gmm": { + "uv": { + "hEhj": [0, 4], + "37AA": [0, 2], + "zpU5": [7, 4], + "XL8u": [7, 2] + }, + "vertices": ["XL8u", "zpU5", "37AA", "hEhj"], + "texture": 1 + }, + "3IofQwIZ": { + "uv": { + "rik1": [6, 11.00031], + "hEhj": [7, 11], + "GTiL": [6, 12.75003], + "zpU5": [7, 12.74996] + }, + "vertices": ["zpU5", "GTiL", "hEhj", "rik1"], + "texture": 1 + }, + "QWX2zBDX": { + "uv": { + "gFQQ": [7, 6], + "rik1": [7, 8], + "NR0N": [0, 6], + "GTiL": [0, 8] + }, + "vertices": ["GTiL", "NR0N", "rik1", "gFQQ"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "e59b8213-b69b-c95c-e4c8-7ade84e43e61" + }, + { + "name": "cube_selection", + "color": 0, + "origin": [-6.225, 11.2, 0.06], + "rotation": [0, 0, 0], + "export": true, + "visibility": false, + "locked": false, + "render_order": "default", + "allow_mirror_modeling": true, + "vertices": { + "SG2C": [-0.10991, -0.94398, 1.7], + "gYNL": [0.82826, -0.11843, 1.7], + "jyuv": [-0.10991, 1.51644, 1.50967], + "yjq6": [0.82826, -0.11843, 1.129], + "rpzh": [-0.10991, -0.94398, 1.129], + "1IhL": [0.82826, -0.11843, 1.06555], + "ditf": [-0.10991, -0.94398, 1.06555], + "cqaI": [0.82826, -0.11843, 0.4311], + "TtLA": [-0.10991, -0.94398, 0.4311], + "X40D": [0.82826, -0.11843, -0.1399], + "kPro": [-0.10991, -0.94398, -0.1399], + "Jqet": [0.82826, -0.11843, -0.20334], + "FbXp": [-0.10991, -0.94398, -0.20334], + "XDyQ": [0.82826, -0.11843, -0.77435], + "4PNW": [-0.10991, 1.85001, 0.46283], + "jAkr": [-0.10991, 1.85001, -0.17162], + "eeZW": [1.13648, 1.51644, 1.09727], + "v2Oq": [1.13648, 1.51644, -0.17162], + "xovw": [1.34629, -0.23699, -0.20334], + "ApEB": [1.34629, -0.23699, -0.77435], + "iOyM": [2.3037, -0.52648, -0.77435], + "DFFs": [2.3037, -0.52648, -0.20334], + "s57i": [1.34629, -0.23699, 0.4311], + "DJ8Y": [1.34629, -0.23699, -0.1399], + "Htu6": [2.3037, -0.52648, -0.1399], + "VQgu": [2.3037, -0.52648, 0.4311], + "J74A": [1.34629, -0.23699, 1.06555], + "deLA": [2.3037, -0.52648, 0.49455], + "gFQQ": [1.34629, -0.23699, 1.7], + "37AA": [1.34629, -0.23699, 1.129], + "hEhj": [2.3037, -0.52648, 1.129], + "rik1": [2.3037, -0.52648, 1.7], + "m70k": [0.82826, -0.11843, 0.49455], + "5jQS": [-0.10991, -0.94398, 0.49455], + "QgB1": [-0.10991, -0.94398, -0.77435], + "BvKq": [1.34629, -0.23699, 0.49455], + "Fugt": [2.3037, -0.52648, 1.06555], + "LJNo": [1.13648, 1.51644, -0.9171], + "pcXW": [1.13648, 1.51644, 0.46283], + "SmHE": [1.13648, 1.18286, 1.50967], + "am1B": [-0.10991, 1.85001, 1.09727], + "b0wN": [0.93383, -0.00252, -0.26679], + "QS4i": [0.93383, -0.00252, -0.7109], + "RpTK": [1.06639, 0.69724, -0.7109], + "cV7E": [1.06639, 0.69724, -0.26679], + "2qMd": [0.93383, -0.00252, 0.36766], + "P8PL": [0.93383, -0.00252, -0.07645], + "0TBa": [1.06639, 0.69724, -0.07645], + "D9wR": [1.06639, 0.69724, 0.36766], + "QcTt": [0.93383, -0.00252, 1.00211], + "oDy3": [0.93383, -0.00252, 0.55799], + "19ji": [1.06639, 0.69724, 0.55799], + "R5vE": [1.06639, 0.69724, 1.00211], + "NR0N": [0.93383, -0.00252, 1.63656], + "XL8u": [0.93383, -0.00252, 1.19244], + "zpU5": [1.06639, 0.69724, 1.19244], + "GTiL": [1.06639, 0.69724, 1.63656], + "uFwO": [0.80973, 0.30603, -0.97451], + "zDo4": [0.8635, 1.62503, -0.94836], + "P0uD": [-0.10991, 1.84175, -0.94209], + "FdPC": [0.8912, 0.27794, -1.56595], + "jFow": [-0.08005, 0.47939, -1.27015], + "IH02": [0.95019, 1.42954, -1.60324], + "PHtJ": [-0.10991, 1.64627, -1.34946], + "hwWi": [1.92901, 0.47534, 0.01751], + "I3aC": [1.96368, 1.10255, 0.01854], + "LiuJ": [1.42967, 1.18116, 0.19065], + "imCn": [1.39501, 0.55395, 0.18962], + "sKD5": [1.23826, 1.3576, -0.81471], + "wBr0": [1.18626, 0.4168, -0.81543], + "uO9x": [1.98727, 0.2989, -0.93684], + "x3rw": [2.03927, 1.23971, -0.93612], + "imkY": [-0.08005, 0.47939, -0.90075], + "BcrG": [-0.10991, 1.85001, -0.9171] + }, + "faces": { + "uo43jn6G": { + "uv": { + "gYNL": [1, 11], + "SG2C": [2.5, 11], + "jyuv": [2.5, 9], + "SmHE": [1, 9] + }, + "vertices": ["SmHE", "jyuv", "SG2C", "gYNL"], + "texture": 1 + }, + "qVUOFDNK": { + "uv": { + "GTiL": [2.2103, 7.99449], + "zpU5": [1.94526, 7.99449], + "NR0N": [2.2103, 7], + "XL8u": [1.934, 7.01463] + }, + "vertices": ["XL8u", "NR0N", "zpU5", "GTiL"], + "texture": 1 + }, + "sJ7BIjtK": { + "uv": { + "rpzh": [1.94526, 7.99449], + "ditf": [1.68022, 7.99449], + "yjq6": [1.934, 7.01463], + "1IhL": [1.65771, 7.02925] + }, + "vertices": ["1IhL", "yjq6", "ditf", "rpzh"], + "texture": 1 + }, + "Tt5do9eD": { + "uv": { + "5jQS": [1.41518, 7.99449], + "TtLA": [1.15014, 7.99449], + "m70k": [1.38141, 7.04388], + "cqaI": [1.10512, 7.0585] + }, + "vertices": ["cqaI", "m70k", "TtLA", "5jQS"], + "texture": 1 + }, + "8r7ed029": { + "uv": { + "D9wR": [1.15014, 7.99449], + "0TBa": [0.8851, 7.99449], + "2qMd": [1.10512, 7.0585], + "P8PL": [0.82883, 7.07313] + }, + "vertices": ["P8PL", "2qMd", "0TBa", "D9wR"], + "texture": 1 + }, + "hTI7CCl8": { + "uv": { + "kPro": [0.8851, 7.99449], + "FbXp": [0.62007, 7.99449], + "X40D": [0.82883, 7.07313], + "Jqet": [0.55255, 7.08775] + }, + "vertices": ["Jqet", "X40D", "FbXp", "kPro"], + "texture": 1 + }, + "9EMzfsaM": { + "uv": { + "cV7E": [0.62007, 7.99449], + "RpTK": [0.35504, 7.99449], + "b0wN": [0.55255, 7.08775], + "QS4i": [0.27626, 7.10238] + }, + "vertices": ["QS4i", "b0wN", "RpTK", "cV7E"], + "texture": 1 + }, + "1A3RrdZF": { + "uv": { + "jyuv": [0, 5], + "am1B": [0.37501, 5], + "SG2C": [0, 7], + "rpzh": [0.37501, 7] + }, + "vertices": ["rpzh", "SG2C", "am1B", "jyuv"], + "texture": 1 + }, + "Z0MHKSM1": { + "uv": { + "am1B": [0.56252, 5], + "rpzh": [0.37501, 7], + "ditf": [0.75002, 7] + }, + "vertices": ["ditf", "rpzh", "am1B"], + "texture": 1 + }, + "8RfDVw73": { + "uv": { + "4PNW": [1.31254, 5], + "5jQS": [1.12503, 7], + "TtLA": [1.50004, 7] + }, + "vertices": ["TtLA", "5jQS", "4PNW"], + "texture": 1 + }, + "b1H2Twi7": { + "uv": { + "4PNW": [1.50004, 5], + "jAkr": [1.87504, 5], + "TtLA": [1.50004, 7], + "kPro": [1.87504, 7] + }, + "vertices": ["kPro", "TtLA", "jAkr", "4PNW"], + "texture": 1 + }, + "8CzZUE6T": { + "uv": { + "jAkr": [2.06254, 5], + "kPro": [1.87504, 7], + "FbXp": [2.25004, 7] + }, + "vertices": ["FbXp", "kPro", "jAkr"], + "texture": 1 + }, + "7XOUjrqa": { + "uv": { + "jAkr": [2.25004, 5], + "BcrG": [2.62503, 5], + "FbXp": [2.25004, 7], + "QgB1": [2.62503, 7] + }, + "vertices": ["QgB1", "FbXp", "BcrG", "jAkr"], + "texture": 1 + }, + "H3nYlw5n": { + "uv": { + "pcXW": [1, 10.49996], + "v2Oq": [1, 10.12496], + "4PNW": [2.5, 10.49996], + "jAkr": [2.5, 10.12496] + }, + "vertices": ["jAkr", "4PNW", "v2Oq", "pcXW"], + "texture": 1 + }, + "3Pp5rd8r": { + "uv": { + "gYNL": [3, 10], + "yjq6": [2.62499, 10], + "SmHE": [3, 5], + "eeZW": [2.62499, 5] + }, + "vertices": ["eeZW", "SmHE", "yjq6", "gYNL"], + "texture": 1 + }, + "Ozh5CuVR": { + "uv": { + "yjq6": [2.62499, 7], + "eeZW": [2.43748, 5], + "1IhL": [2.24998, 7] + }, + "vertices": ["1IhL", "eeZW", "yjq6"], + "texture": 1 + }, + "qTnHXohn": { + "uv": { + "m70k": [1.87497, 7], + "pcXW": [1.68746, 5], + "cqaI": [1.49996, 7] + }, + "vertices": ["cqaI", "pcXW", "m70k"], + "texture": 1 + }, + "NQGq8EFs": { + "uv": { + "cqaI": [1.49996, 10], + "X40D": [1.12496, 10], + "pcXW": [1.49996, 5], + "v2Oq": [1.12496, 5] + }, + "vertices": ["v2Oq", "pcXW", "X40D", "cqaI"], + "texture": 1 + }, + "t75oHfwX": { + "uv": { + "X40D": [1.12496, 7], + "v2Oq": [0.93746, 5], + "Jqet": [0.74996, 7] + }, + "vertices": ["Jqet", "v2Oq", "X40D"], + "texture": 1 + }, + "rn9ZHqv3": { + "uv": { + "Jqet": [0.74996, 10], + "XDyQ": [0.37497, 10], + "v2Oq": [0.74996, 5], + "LJNo": [0.37497, 5] + }, + "vertices": ["LJNo", "v2Oq", "XDyQ", "Jqet"], + "texture": 1 + }, + "cWeBGtG5": { + "uv": { + "XDyQ": [0, 6], + "Jqet": [0.2767, 6], + "ApEB": [0, 7], + "xovw": [0.2767, 7] + }, + "vertices": ["xovw", "ApEB", "Jqet", "XDyQ"], + "texture": 1 + }, + "BDq08QaJ": { + "uv": { + "QgB1": [0, 4], + "XDyQ": [0, 2], + "iOyM": [2, 4], + "ApEB": [2, 2] + }, + "vertices": ["ApEB", "iOyM", "XDyQ", "QgB1"], + "texture": 1 + }, + "54OA4Vs6": { + "uv": { + "FbXp": [0, 6], + "QgB1": [0.265, 6.0001], + "DFFs": [0, 7], + "iOyM": [0.265, 7.0001] + }, + "vertices": ["iOyM", "DFFs", "QgB1", "FbXp"], + "texture": 1 + }, + "IJCofTZe": { + "uv": { + "Jqet": [2, 2], + "FbXp": [2, 4], + "xovw": [0, 2], + "DFFs": [0, 4] + }, + "vertices": ["DFFs", "xovw", "FbXp", "Jqet"], + "texture": 1 + }, + "mIvrKkMT": { + "uv": { + "X40D": [0, 6], + "cqaI": [0.2767, 6], + "DJ8Y": [0.0001, 7], + "s57i": [0.2767, 7] + }, + "vertices": ["s57i", "DJ8Y", "cqaI", "X40D"], + "texture": 1 + }, + "O7BP5dy7": { + "uv": { + "kPro": [0, 4], + "X40D": [0, 2], + "Htu6": [2, 4], + "DJ8Y": [2, 2] + }, + "vertices": ["DJ8Y", "Htu6", "X40D", "kPro"], + "texture": 1 + }, + "HxuDHg0G": { + "uv": { + "TtLA": [1, 6], + "kPro": [1.2651, 6], + "VQgu": [1, 7], + "Htu6": [1.265, 7] + }, + "vertices": ["Htu6", "VQgu", "kPro", "TtLA"], + "texture": 1 + }, + "05QRSzeb": { + "uv": { + "cqaI": [2, 2], + "TtLA": [2, 4], + "s57i": [0, 2], + "VQgu": [0, 4] + }, + "vertices": ["VQgu", "s57i", "TtLA", "cqaI"], + "texture": 1 + }, + "iCzdhyKG": { + "uv": { + "5jQS": [0, 4], + "m70k": [0, 2], + "deLA": [2, 4], + "BvKq": [2, 2] + }, + "vertices": ["BvKq", "deLA", "m70k", "5jQS"], + "texture": 1 + }, + "TUyCMWe4": { + "uv": { + "1IhL": [0.9655, 2], + "ditf": [0.9655, 4], + "J74A": [0, 2], + "Fugt": [0, 4] + }, + "vertices": ["Fugt", "J74A", "ditf", "1IhL"], + "texture": 1 + }, + "N1eMWfWU": { + "uv": { + "yjq6": [1, 6], + "gYNL": [1.2767, 6], + "37AA": [1.0001, 7], + "gFQQ": [1.2767, 7] + }, + "vertices": ["gFQQ", "37AA", "gYNL", "yjq6"], + "texture": 1 + }, + "ZgkHiEvD": { + "uv": { + "rpzh": [2, 4], + "yjq6": [2, 2], + "hEhj": [5, 4], + "37AA": [5, 2] + }, + "vertices": ["37AA", "hEhj", "yjq6", "rpzh"], + "texture": 1 + }, + "Rqvnh5JT": { + "uv": { + "SG2C": [1, 6], + "rpzh": [1.265, 6], + "rik1": [1, 7], + "hEhj": [1.265, 7] + }, + "vertices": ["hEhj", "rik1", "rpzh", "SG2C"], + "texture": 1 + }, + "NUcZO3RF": { + "uv": { + "gYNL": [2, 6], + "SG2C": [2, 8], + "gFQQ": [0, 6], + "rik1": [0, 8] + }, + "vertices": ["rik1", "gFQQ", "SG2C", "gYNL"], + "texture": 1 + }, + "duNNNzsm": { + "uv": { + "R5vE": [1.68022, 7.99449], + "19ji": [1.41518, 7.99449], + "QcTt": [1.65771, 7.02925], + "oDy3": [1.38141, 7.04388] + }, + "vertices": ["oDy3", "QcTt", "19ji", "R5vE"], + "texture": 1 + }, + "1GvS40WP": { + "uv": { + "am1B": [0.75002, 5], + "4PNW": [1.12503, 5], + "ditf": [0.75002, 7], + "5jQS": [1.12503, 7] + }, + "vertices": ["5jQS", "ditf", "4PNW", "am1B"], + "texture": 1 + }, + "ZAq6364x": { + "uv": { + "eeZW": [1, 11.24998], + "pcXW": [1, 10.87497], + "am1B": [2.5, 11.24998], + "4PNW": [2.5, 10.87497] + }, + "vertices": ["4PNW", "am1B", "pcXW", "eeZW"], + "texture": 1 + }, + "xM3u5Rgj": { + "uv": { + "v2Oq": [1, 9.74996], + "LJNo": [1, 9.37497], + "jAkr": [2.5, 9.74996], + "BcrG": [2.5, 9.37497] + }, + "vertices": ["BcrG", "jAkr", "LJNo", "v2Oq"], + "texture": 1 + }, + "sbc82oNA": { + "uv": { + "1IhL": [2.24998, 10], + "m70k": [1.87497, 10], + "eeZW": [2.24998, 5], + "pcXW": [1.87497, 5] + }, + "vertices": ["pcXW", "eeZW", "m70k", "1IhL"], + "texture": 1 + }, + "AJJPyz9R": { + "uv": { + "m70k": [1, 6], + "1IhL": [1.2766, 6], + "BvKq": [1, 7], + "J74A": [1.2767, 7] + }, + "vertices": ["J74A", "BvKq", "1IhL", "m70k"], + "texture": 1 + }, + "ZppkV46C": { + "uv": { + "ditf": [0.0001, 6], + "5jQS": [0.2651, 6], + "Fugt": [0, 7], + "deLA": [0.2651, 7] + }, + "vertices": ["deLA", "Fugt", "5jQS", "ditf"], + "texture": 1 + }, + "kCcOlvWB": { + "uv": { + "SmHE": [1, 12], + "eeZW": [1, 11.62499], + "jyuv": [2.5, 12], + "am1B": [2.5, 11.62499] + }, + "vertices": ["am1B", "jyuv", "eeZW", "SmHE"], + "texture": 1 + }, + "j8g2VQFn": { + "uv": { + "ApEB": [0, 6], + "xovw": [1.6, 6], + "QS4i": [0, 7], + "b0wN": [1.6, 7] + }, + "vertices": ["b0wN", "QS4i", "xovw", "ApEB"], + "texture": 1 + }, + "ZdfOYoQE": { + "uv": { + "iOyM": [0, 4], + "ApEB": [0, 2], + "RpTK": [7, 4], + "QS4i": [7, 2] + }, + "vertices": ["QS4i", "RpTK", "ApEB", "iOyM"], + "texture": 1 + }, + "PSd8nYdT": { + "uv": { + "DFFs": [6, 11.00031], + "iOyM": [7, 11], + "cV7E": [6, 12.75003], + "RpTK": [7, 12.74996] + }, + "vertices": ["RpTK", "cV7E", "iOyM", "DFFs"], + "texture": 1 + }, + "HIdDzpOZ": { + "uv": { + "xovw": [7, 2], + "DFFs": [7, 4], + "b0wN": [0, 2], + "cV7E": [0, 4] + }, + "vertices": ["cV7E", "b0wN", "DFFs", "xovw"], + "texture": 1 + }, + "AaDkkopW": { + "uv": { + "DJ8Y": [0, 6], + "s57i": [1.6, 6], + "P8PL": [0, 7], + "2qMd": [1.6, 7] + }, + "vertices": ["2qMd", "P8PL", "s57i", "DJ8Y"], + "texture": 1 + }, + "uDXKxApa": { + "uv": { + "Htu6": [0, 4], + "DJ8Y": [0, 2], + "0TBa": [7, 4], + "P8PL": [7, 2] + }, + "vertices": ["P8PL", "0TBa", "DJ8Y", "Htu6"], + "texture": 1 + }, + "FD3Uef8Z": { + "uv": { + "VQgu": [6, 11.00031], + "Htu6": [7, 11], + "D9wR": [6, 12.75003], + "0TBa": [7, 12.74996] + }, + "vertices": ["0TBa", "D9wR", "Htu6", "VQgu"], + "texture": 1 + }, + "znTdIdv8": { + "uv": { + "s57i": [7, 2], + "VQgu": [7, 4], + "2qMd": [0, 2], + "D9wR": [0, 4] + }, + "vertices": ["D9wR", "2qMd", "VQgu", "s57i"], + "texture": 1 + }, + "HBqfAJ9G": { + "uv": { + "BvKq": [0, 6], + "J74A": [1.6, 6], + "oDy3": [0, 7], + "QcTt": [1.6, 7] + }, + "vertices": ["QcTt", "oDy3", "J74A", "BvKq"], + "texture": 1 + }, + "xTS24TAq": { + "uv": { + "deLA": [0, 4], + "BvKq": [0, 2], + "19ji": [7, 4], + "oDy3": [7, 2] + }, + "vertices": ["oDy3", "19ji", "BvKq", "deLA"], + "texture": 1 + }, + "Ee6LZNK0": { + "uv": { + "Fugt": [6, 11.00031], + "deLA": [7, 11], + "R5vE": [6, 12.75003], + "19ji": [7, 12.74996] + }, + "vertices": ["19ji", "R5vE", "deLA", "Fugt"], + "texture": 1 + }, + "DGmdf0cv": { + "uv": { + "J74A": [3, 2], + "Fugt": [3, 4], + "QcTt": [0, 2], + "R5vE": [0, 4] + }, + "vertices": ["R5vE", "QcTt", "Fugt", "J74A"], + "texture": 1 + }, + "S8qFQBfU": { + "uv": { + "37AA": [1, 6], + "gFQQ": [2.6, 6], + "XL8u": [1, 7], + "NR0N": [2.6, 7] + }, + "vertices": ["NR0N", "XL8u", "gFQQ", "37AA"], + "texture": 1 + }, + "ZntA3gmm": { + "uv": { + "hEhj": [0, 4], + "37AA": [0, 2], + "zpU5": [7, 4], + "XL8u": [7, 2] + }, + "vertices": ["XL8u", "zpU5", "37AA", "hEhj"], + "texture": 1 + }, + "3IofQwIZ": { + "uv": { + "rik1": [6, 11.00031], + "hEhj": [7, 11], + "GTiL": [6, 12.75003], + "zpU5": [7, 12.74996] + }, + "vertices": ["zpU5", "GTiL", "hEhj", "rik1"], + "texture": 1 + }, + "QWX2zBDX": { + "uv": { + "gFQQ": [7, 6], + "rik1": [7, 8], + "NR0N": [0, 6], + "GTiL": [0, 8] + }, + "vertices": ["GTiL", "NR0N", "rik1", "gFQQ"], + "texture": 1 + }, + "LPkiykfM": { + "uv": { + "PHtJ": [0, 8], + "IH02": [0.97555, 8.32384], + "jFow": [0, 10.09977], + "FdPC": [0.66457, 9.53063] + }, + "vertices": ["FdPC", "jFow", "IH02", "PHtJ"], + "texture": 1 + }, + "lCBsAgW1": { + "uv": { + "XDyQ": [0.00004, 3], + "LJNo": [1.2462, 3.0001], + "zDo4": [1.24616, 4.00007], + "uFwO": [0, 4.00007] + }, + "vertices": ["uFwO", "zDo4", "LJNo", "XDyQ"], + "texture": 1 + }, + "nCpQvssq": { + "uv": { + "QgB1": [0.00001, 2.00001], + "XDyQ": [0.87503, 2], + "uFwO": [0.87503, 3], + "imkY": [0, 2.99992] + }, + "vertices": ["imkY", "uFwO", "XDyQ", "QgB1"], + "texture": 1 + }, + "ggILVg96": { + "uv": { + "BcrG": [0.99925, 2], + "QgB1": [0.99935, 4.10127], + "imkY": [0, 4.13803], + "P0uD": [0, 2.03686] + }, + "vertices": ["P0uD", "imkY", "QgB1", "BcrG"], + "texture": 1 + }, + "E1MPoFB6": { + "uv": { + "LJNo": [0.00003, 3.07737], + "BcrG": [1.02791, 3], + "P0uD": [1.02791, 4.00001], + "zDo4": [0, 4.07729] + }, + "vertices": ["zDo4", "P0uD", "BcrG", "LJNo"], + "texture": 1 + }, + "3jltagHl": { + "uv": { + "imCn": [0.00001, 8.02389], + "LiuJ": [0.47057, 8], + "I3aC": [0.47057, 8.50008], + "hwWi": [0, 8.52387] + }, + "vertices": ["hwWi", "I3aC", "LiuJ", "imCn"], + "texture": 1 + }, + "jddiASSr": { + "uv": { + "imkY": [0.00006, 8], + "uFwO": [0.69811, 8], + "FdPC": [0.69805, 8.49998], + "jFow": [0, 8.49998] + }, + "vertices": ["jFow", "FdPC", "uFwO", "imkY"], + "texture": 1 + }, + "lGMv7vdj": { + "uv": { + "P0uD": [0.99751, 7.5], + "imkY": [0.9976, 8.05389], + "jFow": [0, 8.08862], + "PHtJ": [0, 7.53479] + }, + "vertices": ["PHtJ", "jFow", "imkY", "P0uD"], + "texture": 1 + }, + "hBH2eAfT": { + "uv": { + "zDo4": [0.00007, 7.53847], + "P0uD": [1.00559, 7.5], + "PHtJ": [1.00559, 8.00003], + "IH02": [0, 8.03847] + }, + "vertices": ["IH02", "PHtJ", "P0uD", "zDo4"], + "texture": 1 + }, + "yZseB82b": { + "uv": { + "FdPC": [0, 7.24962], + "x3rw": [0.83087, 7.12481], + "uO9x": [0.12411, 7.12481], + "IH02": [0.94235, 7.24962] + }, + "vertices": ["IH02", "uO9x", "x3rw", "FdPC"], + "texture": 1 + }, + "GtbKnaxO": { + "uv": { + "IH02": [0.23527, 8.99997], + "sKD5": [0.1177, 8.13092], + "x3rw": [0.11764, 8.88095], + "zDo4": [0.2354, 8] + }, + "vertices": ["zDo4", "x3rw", "sKD5", "IH02"], + "texture": 1 + }, + "cnFcb0TN": { + "uv": { + "zDo4": [0.94245, 8.00019], + "wBr0": [0.11145, 8.12488], + "sKD5": [0.81826, 8.12498], + "uFwO": [0, 8] + }, + "vertices": ["uFwO", "sKD5", "wBr0", "zDo4"], + "texture": 1 + }, + "JkJlzjX5": { + "uv": { + "uFwO": [0, 8], + "uO9x": [0.11765, 8.86904], + "wBr0": [0.11765, 8.11907], + "FdPC": [0, 8.99996] + }, + "vertices": ["FdPC", "wBr0", "uO9x", "uFwO"], + "texture": 1 + }, + "3xEFF5Dl": { + "uv": { + "imCn": [0.22291, 8.24977], + "wBr0": [0.11145, 8.12488], + "sKD5": [0.81826, 8.12498], + "LiuJ": [0.69408, 8.24977] + }, + "vertices": ["LiuJ", "sKD5", "wBr0", "imCn"], + "texture": 1 + }, + "AEczQLbv": { + "uv": { + "hwWi": [0.23529, 8.73812], + "uO9x": [0.11765, 8.86904], + "wBr0": [0.11765, 8.11907], + "imCn": [0.23529, 8.23814] + }, + "vertices": ["imCn", "wBr0", "uO9x", "hwWi"], + "texture": 1 + }, + "j1CKaqHy": { + "uv": { + "I3aC": [7, 12.74996], + "x3rw": [7, 11], + "uO9x": [6, 11.00031], + "hwWi": [6, 12.75003] + }, + "vertices": ["hwWi", "uO9x", "x3rw", "I3aC"], + "texture": 1 + }, + "3V03UFgu": { + "uv": { + "LiuJ": [0, 8.26185], + "sKD5": [0.1177, 8.13092], + "x3rw": [0.11764, 8.88095], + "I3aC": [0, 8.76193] + }, + "vertices": ["I3aC", "x3rw", "sKD5", "LiuJ"], + "texture": 1 + } + }, + "type": "mesh", + "uuid": "92f7a675-d5dd-e014-4501-2f70b0840d8f" + } + ], + "outliner": [ + { + "name": "root", + "origin": [0, 0, 0], + "color": 0, + "uuid": "8ca6699e-74b1-10dc-5d18-29f7e8345ef5", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + { + "name": "Head", + "origin": [0, 22.5, 0], + "color": 0, + "uuid": "9b1cdac1-623c-a07f-13cf-50b4cba2d280", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "8cf37dda-a1f4-41c9-00ea-784d1ef19a8d", + "7564b320-32ad-f191-5c63-fdfa5abfafd5", + "f2ee2225-6cf0-0d4a-cde5-856d38b66daa", + { + "name": "Eyes", + "origin": [0, 25.245, -3.78], + "color": 0, + "uuid": "a1dd5a7e-241b-749a-81e9-19c48e29f67d", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["8dee770f-2330-9d98-92fa-7c0c3210c4fd"] + }, + "13b888c6-ccc6-3eba-eac8-25aa02e3ae0a", + "d10a4c76-5e2b-18bf-de9f-e3dc84e195ec", + "6ee6c485-55e3-677f-8a8a-6437317da917", + { + "name": "HelmetPivot", + "origin": [0, 21.6, 0], + "color": 0, + "uuid": "95e8d8bb-c005-1f2b-4ff0-56a7861dac90", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [] + }, + { + "name": "HelmetItemPivot", + "origin": [0, 21.6, 0], + "color": 0, + "uuid": "895f5668-c8b7-aeb4-0085-2a456ba3451a", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [] + }, + { + "name": "LeftSpyglassPivot", + "origin": [-1.8, 26.1, -3.6], + "color": 0, + "uuid": "652f5f01-1c60-78ed-cfd0-b0f7a02f265c", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [] + }, + { + "name": "RightSpyglassPivot", + "origin": [1.8, 26.1, -3.6], + "color": 0, + "uuid": "37b6d76a-b922-bdc1-c509-f5907127af15", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [] + } + ] + }, + { + "name": "Body", + "origin": [0, 21.6, 0], + "color": 0, + "uuid": "3a163167-946a-9709-bfaa-60c63fb36d88", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "9b7ace10-f4a4-74b2-a33d-8dc435a7d04c", + { + "name": "Soul", + "origin": [0, 9.9, 0], + "color": 0, + "uuid": "b33cae38-ac70-cdf3-afad-6ac181356290", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["ca491d2b-d46d-f1b3-8cf1-309423ed2497"] + }, + "4aaa3c6a-3bda-cbba-c5b6-8ea6c46c0453", + { + "name": "Skirt", + "origin": [0, 14.4, 0], + "color": 0, + "uuid": "d9627f7e-c2cc-0b7d-f0e3-267976830e09", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["46e46f49-fca6-eb7f-d115-7473d8719233"] + }, + { + "name": "RightParrotPivot", + "origin": [5.4, 21.6, 0], + "color": 0, + "uuid": "631e98c5-9485-a328-a01e-92a96e0240ad", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [] + }, + { + "name": "LeftParrotPivot", + "origin": [-5.4, 21.6, 0], + "color": 0, + "uuid": "3439f3f1-52a6-6cb0-fe3b-0ce070dc05dc", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [] + }, + { + "name": "Elytra", + "origin": [0, 19.8, 0], + "rotation": [-10, 0, 0], + "color": 0, + "uuid": "c56023b1-aaaf-4adf-71e3-0e8ffb7a0893", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + { + "name": "LeftElytra", + "origin": [-4.5, 19.8, 0.9], + "color": 0, + "uuid": "b203159a-d56c-966f-1094-04ea3db06a88", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["9d5d4d0c-3741-bd02-c98e-a172432aa02f"] + }, + { + "name": "RightElytra", + "origin": [4.5, 19.8, 0], + "color": 0, + "uuid": "5a9f667b-4ce8-7e3d-384d-dc7bba759a87", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["96a3cb8c-5a5d-c76f-8090-446b052c4253"] + } + ] + } + ] + }, + { + "name": "LeftArm", + "origin": [-4.05, 20.7, 0.135], + "color": 0, + "uuid": "4532a408-8267-4ac1-f89b-9c02843401c5", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "b4aa1095-c834-139c-8b5f-93abfd983a84", + { + "name": "LeftForeArm", + "origin": [-5.04, 16.74, 0], + "color": 0, + "uuid": "39b8f506-2d25-9ffc-4844-a483667159b6", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "fcd91531-57f5-3dad-6808-1c446c0006ae", + "db44415d-1faa-cca8-069a-d3e7cf83a414", + { + "name": "LeftHand", + "origin": [-4.95, 12.6, -0.09], + "color": 0, + "uuid": "97179e6c-ca07-eedf-6655-10644ba0253b", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + { + "name": "LeftHandPlain", + "origin": [-6.525, 11.7, 0.36], + "color": 0, + "uuid": "57cf0e3b-4824-33b7-034f-40841a713813", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["e59b8213-b69b-c95c-e4c8-7ade84e43e61"] + }, + { + "name": "LeftHandFist", + "origin": [-6.525, 11.7, 0.36], + "color": 0, + "uuid": "9d791a47-f1e1-c409-d6bb-5347c8460983", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["92f7a675-d5dd-e014-4501-2f70b0840d8f"] + }, + { + "name": "LeftItemPivot", + "origin": [-4.95, 10.8, -0.99], + "color": 0, + "uuid": "9df644d4-b183-5aa8-8c3e-e33b2353ed95", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [] + } + ] + } + ] + } + ] + }, + { + "name": "RightArm", + "origin": [4.05, 20.7, 0.135], + "color": 0, + "uuid": "703b9bfd-bdc6-385a-89b3-b900d1de58f5", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "5b436543-2419-e70e-86f7-2277ab9225f9", + { + "name": "RightForeArm", + "origin": [5.04, 16.74, 0], + "color": 0, + "uuid": "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "1671bdb4-27ee-e3a7-78c8-f18091c01495", + "3772a39b-fac7-715e-f228-1ac66979af34", + { + "name": "RightHand", + "origin": [4.95, 12.6, -0.09], + "color": 0, + "uuid": "0fe9582e-afee-9945-c051-79e1996ab231", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + { + "name": "RightHandPlain", + "origin": [6.925, 11.7, 0.36], + "color": 0, + "uuid": "41da1498-ef5d-9fde-e6fb-f0064efa0c2c", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["5c0c8088-4fec-62c4-daa4-9a61e11c8b1a"] + }, + { + "name": "RightHandFist", + "origin": [6.925, 11.7, 0.36], + "color": 0, + "uuid": "1dba5304-1caa-6e07-c0a6-d7664f2c5ed4", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["a7ff4b5e-7042-a38c-c883-f2e72ff2dd7c"] + }, + { + "name": "RightCamera", + "origin": [3.73333, 13.44444, 0], + "color": 0, + "uuid": "569881c8-a2cc-6fe1-d699-56c17335934f", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [] + }, + { + "name": "RightItemPivot", + "origin": [4.95, 10.8, -0.99], + "color": 0, + "uuid": "d5c28e0c-2ec5-296a-42c7-59967676aebe", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [] + } + ] + } + ] + } + ] + }, + { + "name": "RightArmPivot", + "origin": [3.6, 20.7, 0], + "color": 0, + "uuid": "c875d215-80f4-5cda-951f-10027c6965b5", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [] + }, + { + "name": "RightLeg", + "origin": [1.8, 10.8, 0], + "color": 0, + "uuid": "02123f94-db06-5dae-758f-a4b6191791e5", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "952d1c26-5c46-044f-47a3-1bbb6da6bc21", + { + "name": "RightForeLeg", + "origin": [1.78633, 7.2, 0.74376], + "color": 0, + "uuid": "9d530b83-521c-52ff-34ec-05833bb4753c", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "02c1d309-dc14-6511-c2fa-60a9333aff71", + "03a7b0ca-adbc-e921-e466-02042f51f0fb", + { + "name": "RightShoe", + "origin": [1.78633, 0, 0.74372], + "rotation": [0, -10, 0], + "color": 0, + "uuid": "ee63e079-5cf9-5d1f-d8a3-5114116d8c24", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["841507ff-09dc-0d69-b367-522f44abd3cd"] + } + ] + } + ] + }, + { + "name": "LeftLeg", + "origin": [-1.8, 10.8, 0], + "color": 0, + "uuid": "4ef21934-9598-a1cc-d2cb-2a978ecab20f", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "bfdad83a-2e41-be24-903c-5ebd81b969b3", + { + "name": "LeftForeLeg", + "origin": [-1.78633, 7.2, 0.74372], + "color": 0, + "uuid": "80ca9439-0183-c534-a9eb-ada28e85b1ec", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "fa408760-0e21-5c7c-f5f2-34ce3493f337", + "8cdada64-4e60-bfe3-2585-54e6850be9c4", + { + "name": "LeftShoe", + "origin": [-1.78632, 0, 0.74376], + "rotation": [0, 10, 0], + "color": 0, + "uuid": "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["88ccf0b1-c887-5a42-45aa-2a7eb359c98b"] + } + ] + } + ] + } + ] + }, + { + "name": "tauntfx", + "origin": [0, 17, 8], + "color": 0, + "uuid": "f54dd531-dc13-462e-aea3-bf2d6416fae6", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": [ + { + "name": "BILLBOARD", + "origin": [0, 17, 8], + "color": 0, + "uuid": "30bd9725-0e69-e05e-3f77-7d0d549067b2", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["dfc0856f-b7a6-f459-fca5-ee1e02e12260"] + } + ] + }, + { + "name": "ItemRapier", + "origin": [-0.11135, -0.36238, 0.35379], + "rotation": [0, 90, 0], + "color": 0, + "uuid": "75a5d04b-35c1-0375-d9d2-2259afee73cd", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["7cb50623-ba66-d366-b484-d07c84a26131"] + }, + { + "name": "ItemNoodle", + "origin": [0, 0, 0], + "color": 0, + "uuid": "04969ffd-f6c4-a9dc-6979-b17da8176de3", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["c1a191fa-bda9-da93-b666-4ee63af908b3"] + }, + "58a66c62-16cb-55b7-2195-1e1a1280b174", + "3ff463ae-9682-6417-285e-b19d1b2220eb", + { + "name": "symbols", + "origin": [0, 13, 8], + "color": 0, + "uuid": "257888ea-540d-c844-892e-76855e5ac593", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": [ + { + "name": "s1", + "origin": [-6, 15, 8], + "color": 0, + "uuid": "cd23c28a-f1a0-ae4e-00cd-c519e5e71ed0", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["b92e3959-84e9-137a-08fd-f02494193524"] + }, + { + "name": "s2", + "origin": [2, 15, 8], + "color": 0, + "uuid": "43622244-f03f-dc0d-a522-2d01c2ca50e1", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["27fc6f62-950d-dcda-085c-84309264ffe8"] + }, + { + "name": "s3", + "origin": [10, 15, 8], + "color": 0, + "uuid": "8091a46a-25d6-0558-047c-e2098bb1126c", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["8bf93158-6028-7e7d-537e-e421536deee4"] + }, + { + "name": "s4", + "origin": [18, 15, 8], + "color": 0, + "uuid": "8af6dfdb-3ff0-e614-572d-238ed04ce4ef", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["1579092f-ba31-f220-1b8d-ba5d4a99f28f"] + }, + { + "name": "sx1", + "origin": [-6, 11, 8], + "color": 0, + "uuid": "34dfaf06-1387-a2c6-f3e6-99793044e82d", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["941a4272-5b70-00ad-45a4-aacc85f521f0"] + }, + { + "name": "sx2", + "origin": [-2, 11, 8], + "color": 0, + "uuid": "bb176c22-6ae6-6c8d-3125-6dc4a4b34b04", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["be7264de-a991-9452-4993-b0bb19ad56d3"] + }, + { + "name": "sx3", + "origin": [2, 11, 8], + "color": 0, + "uuid": "dd3dbc09-2543-5b44-0d51-139155e860e2", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["dacb6415-2bc6-9d5f-844e-37615bc10066"] + }, + { + "name": "sx4", + "origin": [6, 11, 8], + "color": 0, + "uuid": "0062d29b-c2f9-6c29-ecdb-744857789699", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": ["363579ea-e5bc-b6a8-7cb3-1ff461c918c0"] + } + ] + }, + { + "name": "Add", + "origin": [0, 0, 0], + "color": 0, + "uuid": "978c98e0-27e4-ef8d-fe67-675c0a0cb1d2", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + { + "name": "cracks", + "origin": [0, 0, -13], + "color": 0, + "uuid": "4e86d352-c1b0-ba95-6122-3030f58ec345", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [] + }, + { + "name": "fountain_start", + "origin": [0, -8, -13], + "color": 0, + "uuid": "7c7e536c-89b4-51d2-510c-fc1007e0df3b", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "f82444f6-5fc6-10b8-7fe9-a96098de936d", + { + "name": "fountain_start_outer", + "origin": [0, 0, 1], + "color": 0, + "uuid": "e176ebd4-d1b9-3b0e-6f2d-715c145489b0", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["1ec366b1-93b9-555f-aeb7-e8056b56f334"] + } + ] + }, + { + "name": "fountain", + "origin": [0, -8.48884, -13], + "color": 0, + "uuid": "fe5e6be7-280c-dde4-b847-12a2b028e66d", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": true, + "children": [ + "b377a19e-e6a7-3f1c-6037-2542bb7d7e02", + { + "name": "fountain_outer", + "origin": [0, 0, 1], + "color": 0, + "uuid": "1cfee186-c51f-d061-4633-d959b4c13feb", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["2d870819-ae69-45d2-650f-00e0da1ac58c"] + } + ] + }, + { + "name": "fountain_cap", + "origin": [0, 25.98684, -13], + "color": 0, + "uuid": "846f9d7a-ba3e-d736-4c01-93392d16f75d", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "97919864-37c1-e7f5-3b2d-f51ec27c0d8b", + { + "name": "fountain_cap_outer", + "origin": [0, 0, 1], + "color": 0, + "uuid": "6af3251f-172d-e94a-3ac9-ea1c807c6f13", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["0f6507ac-1f14-fe6c-9de2-db4412df2ba5"] + } + ] + }, + { + "name": "fountain_cap2", + "origin": [0, 34.98684, -13], + "color": 0, + "uuid": "8ecb49a9-4063-567f-d5d6-13e34c61fda2", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": [ + "95f99834-7054-ac76-4284-fe8ffa6abc74", + { + "name": "fountain_cap_outer2", + "origin": [0, 0, 1], + "color": 0, + "uuid": "4fbde781-6ae6-10b2-3675-cb7c7b74bcbb", + "export": true, + "mirror_uv": false, + "isOpen": true, + "locked": false, + "visibility": true, + "autouv": 0, + "selected": false, + "children": ["90cbe692-65a6-96df-2751-652a730191c2"] + } + ] + } + ] + }, + { + "name": "RipeCamera", + "origin": [3.73333, 13.44444, 0], + "color": 0, + "uuid": "cfaeacce-4968-d72b-9a37-e2f0fb4255e8", + "export": true, + "mirror_uv": false, + "isOpen": false, + "locked": false, + "visibility": false, + "autouv": 0, + "selected": false, + "children": [ + "28edf6c3-9e51-9aa6-e986-06718e224cf4", + "6f8d85c8-d224-3d60-439e-e6026a8bb67a", + "bb3d788f-0b96-faf1-c93e-ec31a94c8ac5", + "fcf1645a-dea9-04d1-2e0d-fe655d4bafcc", + "8999e835-8300-56d0-e735-274e3f8c42a3", + "9b51edf7-90e0-226b-2ced-771b9667b3c6", + "a1daae99-e186-4045-047f-33a8f6ec8b68", + "5640faf0-69c0-0cca-307d-37e784b29730", + "a85c0339-e7a5-65d2-88a1-21b5f2347100" + ] + } + ], + "textures": [ + { + "path": "/home/akirapink/.local/share/PrismLauncher/instances/Workzone 1.21.8/.minecraft/figura/avatars/Akira Eiko Olivia Pink/camera.png", + "name": "camera.png", + "folder": "", + "namespace": "", + "id": "11", + "group": "", + "width": 32, + "height": 32, + "uv_width": 32, + "uv_height": 32, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "double", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "bdf66bbf-25dc-ec31-2ce8-7208db05773d", + "relative_path": "camera.png" + }, + { + "path": "/home/akirapink/.local/share/PrismLauncher/instances/Workzone 1.21.8/.minecraft/figura/avatars/Akira Eiko Olivia Pink/akiracombined_v4.png", + "name": "akiracombined_v4.png", + "folder": "", + "namespace": "", + "id": "0", + "group": "", + "width": 36, + "height": 60, + "uv_width": 36, + "uv_height": 60, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "52081aa1-5867-5eef-7a66-414d06fb2d1a", + "relative_path": "akiracombined_v4.png" + }, + { + "path": "/home/akirapink/.local/share/PrismLauncher/instances/Workzone 1.21.8/.minecraft/figura/avatars/Akira Eiko Olivia Pink/akiracombined_happy.png", + "name": "akiracombined_happy.png", + "folder": "", + "namespace": "", + "id": "2", + "group": "", + "width": 36, + "height": 60, + "uv_width": 36, + "uv_height": 60, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "b5355e7f-d38e-c607-c3ee-656e49a085cf", + "relative_path": "akiracombined_happy.png" + }, + { + "path": "/home/akirapink/.local/share/PrismLauncher/instances/Workzone 1.21.8/.minecraft/figura/avatars/Akira Eiko Olivia Pink/akiracombined_angry.png", + "name": "akiracombined_angry.png", + "folder": "", + "namespace": "", + "id": "3", + "group": "", + "width": 36, + "height": 60, + "uv_width": 36, + "uv_height": 60, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "6b8a8767-a86c-34b9-aa8b-5f4b7309a54b", + "relative_path": "akiracombined_angry.png" + }, + { + "path": "/home/akirapink/.local/share/PrismLauncher/instances/Workzone 1.21.8/.minecraft/figura/avatars/Akira Eiko Olivia Pink/akiracombined_fear.png", + "name": "akiracombined_fear.png", + "folder": "", + "namespace": "", + "id": "10", + "group": "", + "width": 36, + "height": 60, + "uv_width": 36, + "uv_height": 20, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "ffee4cdd-91a0-124d-3400-77ff9eb61339", + "relative_path": "akiracombined_fear.png" + }, + { + "path": "/home/akirapink/.local/share/PrismLauncher/instances/Workzone 1.21.8/.minecraft/figura/avatars/Akira Eiko Olivia Pink/akiracombined_glad.png", + "name": "akiracombined_glad.png", + "folder": "", + "namespace": "", + "id": "12", + "group": "", + "width": 36, + "height": 60, + "uv_width": 36, + "uv_height": 60, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "3f69d676-b711-fe59-54e8-4b8265529c0f", + "relative_path": "akiracombined_glad.png" + }, + { + "path": "/home/akirapink/.local/share/PrismLauncher/instances/Workzone 1.21.8/.minecraft/figura/avatars/Akira Eiko Olivia Pink/akiracombined_sleep.png", + "name": "akiracombined_sleep.png", + "folder": "", + "namespace": "", + "id": "16", + "group": "", + "width": 36, + "height": 60, + "uv_width": 36, + "uv_height": 60, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "db6f1fca-abee-6441-3dff-ca1dddde8398", + "relative_path": "akiracombined_sleep.png" + }, + { + "path": "/home/akirapink/.local/share/PrismLauncher/instances/Workzone 1.21.8/.minecraft/figura/avatars/Akira Eiko Olivia Pink/akiracombined_guilt.png", + "name": "akiracombined_guilt.png", + "folder": "", + "namespace": "", + "id": "0", + "group": "", + "width": 36, + "height": 60, + "uv_width": 36, + "uv_height": 60, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "550dddf8-21e4-d8a6-81e3-fc1c33149c72", + "relative_path": "akiracombined_guilt.png" + }, + { + "path": "/home/akirapink/.local/share/PrismLauncher/instances/Workzone 1.21.8/.minecraft/figura/avatars/Akira Eiko Olivia Pink/taunt3.png", + "name": "taunt3.png", + "folder": "", + "namespace": "", + "id": "7", + "group": "", + "width": 134, + "height": 139, + "uv_width": 134, + "uv_height": 139, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "emissive", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "ccc1942d-32f3-f6af-250b-556c6ae9ebd9", + "relative_path": "taunt3.png" + }, + { + "path": "/home/akirapink/.local/share/PrismLauncher/instances/Workzone 1.21.8/.minecraft/figura/avatars/Akira Eiko Olivia Pink/rose_gold_rapier_handheld.png", + "name": "rose_gold_rapier_handheld.png", + "folder": "", + "namespace": "", + "id": "13", + "group": "", + "width": 32, + "height": 32, + "uv_width": 32, + "uv_height": 32, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "6629243c-2f5d-9495-7332-75c6226f0a17", + "relative_path": "rose_gold_rapier_handheld.png" + }, + { + "path": "/home/akirapink/.local/share/PrismLauncher/instances/Workzone 1.21.8/.minecraft/figura/avatars/Akira Eiko Olivia Pink/rose_gold_rapier_upright.png", + "name": "rose_gold_rapier_upright.png", + "folder": "", + "namespace": "", + "id": "15", + "group": "", + "width": 16, + "height": 48, + "uv_width": 16, + "uv_height": 48, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "e3a315de-2418-ffdb-3473-6efe647b17f7", + "relative_path": "rose_gold_rapier_upright.png" + }, + { + "path": "/home/akirapink/.local/share/PrismLauncher/instances/Workzone 1.21.8/.minecraft/figura/avatars/Akira Eiko Olivia Pink/pool_noodle.png", + "name": "pool_noodle.png", + "folder": "", + "namespace": "", + "id": "17", + "group": "", + "width": 16, + "height": 16, + "uv_width": 16, + "uv_height": 16, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "508eff81-d8fb-f577-2a5d-b544765c0d6f", + "relative_path": "pool_noodle.png" + }, + { + "path": "/home/akirapink/.local/share/PrismLauncher/instances/Workzone 1.21.8/.minecraft/figura/avatars/Akira Eiko Olivia Pink/elytra.png", + "name": "elytra.png", + "folder": "", + "namespace": "", + "id": "18", + "group": "", + "width": 64, + "height": 32, + "uv_width": 64, + "uv_height": 32, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "90877fad-1768-1aa0-9198-8f4a69765cbb", + "relative_path": "elytra.png" + }, + { + "path": "/home/akirapink/.local/share/PrismLauncher/instances/Workzone 1.21.8/.minecraft/figura/avatars/Akira Eiko Olivia Pink/symbol_x_e.png", + "name": "symbol_x_e.png", + "folder": "", + "namespace": "", + "id": "14", + "group": "", + "width": 16, + "height": 16, + "uv_width": 8, + "uv_height": 8, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "0047fbb1-c53b-41a6-715e-eb68adbb14f5", + "relative_path": "symbol_x_e.png" + }, + { + "path": "/home/akirapink/.local/share/PrismLauncher/instances/Workzone 1.21.8/.minecraft/figura/avatars/Akira Eiko Olivia Pink/symbol_e.png", + "name": "symbol_e.png", + "folder": "", + "namespace": "", + "id": "19", + "group": "", + "width": 16, + "height": 16, + "uv_width": 8, + "uv_height": 8, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "2b0a7aa0-be38-ae46-8b6d-da97ef9cee44", + "relative_path": "symbol_e.png" + }, + { + "path": "/home/akirapink/.local/share/PrismLauncher/instances/Workzone 1.21.8/.minecraft/figura/avatars/Akira Eiko Olivia Pink/fountain_outer.png", + "name": "fountain_outer.png", + "folder": "", + "namespace": "", + "id": "20", + "group": "", + "width": 1, + "height": 1, + "uv_width": 1, + "uv_height": 1, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "964f96ef-46ab-a4d0-2f49-e34bb52901d1", + "relative_path": "fountain_outer.png" + }, + { + "path": "/home/akirapink/.local/share/PrismLauncher/instances/Workzone 1.21.8/.minecraft/figura/avatars/Akira Eiko Olivia Pink/fountain_inner_e.png", + "name": "fountain_inner_e.png", + "folder": "", + "namespace": "", + "id": "21", + "group": "", + "width": 1, + "height": 1, + "uv_width": 8, + "uv_height": 8, + "particle": false, + "use_as_default": false, + "layers_enabled": false, + "sync_to_project": "", + "render_mode": "default", + "render_sides": "auto", + "pbr_channel": "color", + "frame_time": 1, + "frame_order_type": "loop", + "frame_order": "", + "frame_interpolate": false, + "visible": true, + "internal": false, + "saved": true, + "uuid": "1ce5fc68-bc3c-9c96-56aa-f2f54dbdbafe", + "relative_path": "fountain_inner_e.png" + } + ], + "animations": [ + { + "uuid": "dfe4e14e-e510-f422-0338-7a0576138b7a", + "name": "animation2", + "loop": "once", + "override": false, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-40", + "z": "0" + } + ], + "uuid": "4df13930-1a09-0cec-34ab-5c92d36cd608", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-30" + } + ], + "uuid": "3417a133-d05f-7ea3-d757-817ef87e7082", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "75" + } + ], + "uuid": "f4776505-8831-b7b0-d30c-e64276d61e17", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "d1172a47-17e3-21a6-b75e-3285e2e625ef", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-47.5" + } + ], + "uuid": "5fa3ffb5-1f63-b52f-ea84-38edffd1afc1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "25", + "z": "0" + } + ], + "uuid": "6f84f80e-cd15-7971-25ac-f2308b68ce01", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "45", + "y": "0", + "z": "0" + } + ], + "uuid": "41f639b6-4636-a0f8-6b97-9bd17a22654c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "2a415bfe-b8e6-9601-ed92-a5cdf8d7ff08", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "47e21b4e-026e-ef62-4622-0f7934bb2d24", + "name": "walk", + "loop": "loop", + "override": true, + "length": 1, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "6bb137e5-c326-85ea-0852-2f8b99ecdb3d", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "c755c55a-3a92-b28b-563a-874730bf3f4f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca4ae983-67b3-318d-b9f0-ccda30bd3089", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "628b8198-fffb-2f7f-7368-fdf47d5c7aa9", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "190b3330-6bbf-7089-c591-4ae34720d875", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "4fae9932-bad9-cf68-9971-72d26308ac2a", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "0" + } + ], + "uuid": "372a08ff-f23a-20bd-bafb-b1ef4f2bf94b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "3375dbc8-24dc-27d4-f061-e008bd9835bc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "0" + } + ], + "uuid": "5717fe2b-6bb4-86e5-daea-ba0845e2e53d", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-15", + "y": "0", + "z": "0" + } + ], + "uuid": "08228c7a-4dce-5911-305f-f8e2961290ea", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "71e11e12-8913-8071-3783-e18ab9ffc129", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15", + "y": "0", + "z": "0" + } + ], + "uuid": "cc9b0825-f5c1-c4d3-36f7-d5d22bc87209", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "525d1bb3-e43b-15a5-d353-5fc77cf44f99", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "816f120d-9bf2-dc5c-ff19-9ce7f1b012f2", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4a45e73e-064f-991f-6d29-491421b99451", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "3991e535-9280-9dfc-72eb-30060d875118", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "a98386cd-3b15-4db8-7e06-8616d7ffdba8", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "63fda6e2-d812-8cdb-097b-4794ee19bea8", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "dec6a01b-8225-c331-d365-bb5933b68213", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c73383b-fd4e-dcd8-f095-ef4efd52a3f7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a4d7abf4-7577-df51-7390-05d9ad7502f0", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5414a5e5-7e6e-b538-51f0-f731df81a97d", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9e9e2992-2ad7-6f9d-f278-ded34f103699", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a0f34ebc-9b99-5370-e6ce-25847fceff0f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "813a0c59-8976-b6a5-755f-3a1e8c2da857", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "557be9d2-12ee-95e1-af76-b8b0ba34704d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "d728b8cd-3d6e-1d00-4ade-b87ff5fd9ad3", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "213efa5e-2c7f-3e6b-7ed4-f1a4b9dfa86a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "59dbacab-42ef-14e8-7897-c117881f9182", + "time": 0.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "71314692-8827-878f-449c-b94ea0222155", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c9ecd96d-522b-1157-66fe-bd98b610bb63", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0782d3a1-605f-3c57-c98c-2284141dffd0", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "05253eca-4880-4ca1-d18c-117b923a179f", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7ec5e551-ff87-554b-096f-e7104363f7d0", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "f96154fc-75ea-8796-9f8b-0e917bc11c6a", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "55da1b6c-85f1-b4ba-62c3-da2c023862ae", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-15", + "y": "0", + "z": "0" + } + ], + "uuid": "a95673a2-04f3-8a65-a8d4-08a1e4eb9fc0", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15", + "y": "0", + "z": "0" + } + ], + "uuid": "a9fb05f2-21cb-9bc0-952a-dd1c304b1faf", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "bbd0f890-7a9c-fe21-3e78-393e68f82584", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "62fc40de-555b-8232-c7aa-d02a10a28735", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3fcabf74-e3bb-11a8-391a-7b714f257cd2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4d59c77f-8606-d85c-0e44-76d4dd1bcdb6", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-1" + } + ], + "uuid": "13c2e9bb-0631-03e8-8213-7fdf91e93347", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dca8bc08-bd8c-ed8b-28fe-2ac894e6b207", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7070fe4e-97df-4eb7-fd3a-87bc374f0801", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1.2" + } + ], + "uuid": "6670dabe-a487-5009-e0cc-3c93a2a30df5", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "67b30998-0198-783e-b780-224d73aa257e", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "59ba4472-d621-3439-a089-223559f3280f", + "time": 1, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "c95741d7-4e3a-89ee-2c1e-4d4e4eb0fea1", + "name": "sprint", + "loop": "loop", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "markers": [ + { + "color": 0, + "time": 0.75 + } + ], + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "5ad4b02d-adab-5aa4-3e7f-579327b646f2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca4ae983-67b3-318d-b9f0-ccda30bd3089", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "190b3330-6bbf-7089-c591-4ae34720d875", + "time": 0.33333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "7018513a-94cc-4abe-9378-e15d33b9391c", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "ade18367-6bd7-fd0d-3bdd-f4fd47296dd7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "2ea88e7f-a48b-d737-cb84-89c071fcfe05", + "time": 0.45833, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c5b2c5d9-148b-08bc-d190-c76ba90dc96f", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "12.5" + } + ], + "uuid": "1566a452-3604-1937-9f85-181e69473d04", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "12.5" + } + ], + "uuid": "80b7c133-f9b6-1b66-1880-9e96f78f9e6f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-82.5", + "y": "0", + "z": "12.5" + } + ], + "uuid": "0b0d4ac1-5bb3-b9e0-9826-50726cb6482f", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-60", + "y": "0", + "z": "12.5" + } + ], + "uuid": "698b468d-bea0-834f-29b7-dac5070fc10d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-60", + "y": "0", + "z": "12.5" + } + ], + "uuid": "15428192-6bdb-b36f-1a7d-9d72c24882a2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-75", + "y": "0", + "z": "0" + } + ], + "uuid": "525d1bb3-e43b-15a5-d353-5fc77cf44f99", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4a45e73e-064f-991f-6d29-491421b99451", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "816f120d-9bf2-dc5c-ff19-9ce7f1b012f2", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "c6c6ba99-8621-204b-eed5-7ca34c9335c9", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "10bb9ccd-3d42-6029-4a9e-b41a94ed000f", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "f02420e5-9975-31d2-b0c9-fb3a7ac03eaf", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "53a0b4fb-2094-54f8-8e58-3b054257ec5a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "1fc4d470-4fa0-150b-9cf7-735333d46ac2", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "3991e535-9280-9dfc-72eb-30060d875118", + "time": 0.45833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "a98386cd-3b15-4db8-7e06-8616d7ffdba8", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "63fda6e2-d812-8cdb-097b-4794ee19bea8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "54.78", + "y": "0", + "z": "0" + } + ], + "uuid": "cbc1a7cb-2376-30e7-0f3d-8daa2ca39804", + "time": 0.33333, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9e9e2992-2ad7-6f9d-f278-ded34f103699", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-75", + "y": "0", + "z": "0" + } + ], + "uuid": "38615f94-ed54-acfd-0092-d3355ed400e2", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "813a0c59-8976-b6a5-755f-3a1e8c2da857", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "b097f599-9634-da25-2a0b-cc8ea6301ea7", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "5fb1b451-651a-475c-f308-c7db4eed1dda", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "829e21d7-be40-b7b6-90af-a578292c2cd5", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "265c3ca5-e561-3e07-af2f-3caa6b339978", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "9ddc607d-2529-38c4-e179-589f31d15a96", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "557be9d2-12ee-95e1-af76-b8b0ba34704d", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "d728b8cd-3d6e-1d00-4ade-b87ff5fd9ad3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "213efa5e-2c7f-3e6b-7ed4-f1a4b9dfa86a", + "time": 0.45833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "54.78", + "y": "0", + "z": "0" + } + ], + "uuid": "138d035e-7915-8e29-7b9c-3b832a84672c", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "10", + "y": "0", + "z": "0" + } + ], + "uuid": "23815ee1-c736-d5d3-1d1f-fd884841d66b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "111674c6-f4c5-eb59-654e-83725ceebc85", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "0e638bfb-11c8-bc83-a40e-842f47fabf6b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "-12.5" + } + ], + "uuid": "dbce26c8-4f58-75f2-e924-9cb92b58e28a", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-82.5", + "y": "0", + "z": "12.5" + } + ], + "uuid": "e9652221-9854-1e2b-964d-f9585186e51c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "-12.5" + } + ], + "uuid": "d981fb0c-9367-86e0-c9d0-69df7700d116", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-82.5", + "y": "0", + "z": "12.5" + } + ], + "uuid": "00ddadf9-52ca-8ea9-84c2-5f066f1846d1", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-10", + "y": "0", + "z": "0" + } + ], + "uuid": "646a46c7-7e09-ac6f-181e-cae74c45cfa7", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-1" + } + ], + "uuid": "ed65ca71-19a5-3802-3294-be36a6cfce96", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "0.7", + "z": "1.5" + } + ], + "uuid": "6939c9a1-6b52-aa11-b864-5361fb41de01", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "57529a98-2fa6-3d9e-0d4a-906e82c0e931", + "name": "sprint_older", + "loop": "loop", + "override": true, + "length": 0.79167, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "markers": [ + { + "color": 0, + "time": 0.75 + } + ], + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "5ad4b02d-adab-5aa4-3e7f-579327b646f2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca4ae983-67b3-318d-b9f0-ccda30bd3089", + "time": 0.20833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "190b3330-6bbf-7089-c591-4ae34720d875", + "time": 0.58333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "7018513a-94cc-4abe-9378-e15d33b9391c", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "ade18367-6bd7-fd0d-3bdd-f4fd47296dd7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5", + "z": "0" + } + ], + "uuid": "2ea88e7f-a48b-d737-cb84-89c071fcfe05", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-80" + } + ], + "uuid": "79bd6a5e-7c72-3634-c04d-1a5504482dff", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-87.5" + } + ], + "uuid": "0c25b4d5-093b-1b64-0cb7-36a5c44bd079", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-80" + } + ], + "uuid": "b6724395-2832-b072-e4f7-58cd774f86e3", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2.5" + } + ], + "uuid": "c299a195-4337-8eba-a578-ff4d1d9dd276", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8e4917db-c17f-c350-d4f9-7df6b5485525", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "13390083-32bb-13fb-0642-3bde4b064c49", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-75", + "y": "0", + "z": "0" + } + ], + "uuid": "525d1bb3-e43b-15a5-d353-5fc77cf44f99", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4a45e73e-064f-991f-6d29-491421b99451", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "816f120d-9bf2-dc5c-ff19-9ce7f1b012f2", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "c6c6ba99-8621-204b-eed5-7ca34c9335c9", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "10bb9ccd-3d42-6029-4a9e-b41a94ed000f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "f02420e5-9975-31d2-b0c9-fb3a7ac03eaf", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "53a0b4fb-2094-54f8-8e58-3b054257ec5a", + "time": 0.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "1fc4d470-4fa0-150b-9cf7-735333d46ac2", + "time": 0.20833, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "3991e535-9280-9dfc-72eb-30060d875118", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "a98386cd-3b15-4db8-7e06-8616d7ffdba8", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "63fda6e2-d812-8cdb-097b-4794ee19bea8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "54.78", + "y": "0", + "z": "0" + } + ], + "uuid": "cbc1a7cb-2376-30e7-0f3d-8daa2ca39804", + "time": 0.58333, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9e9e2992-2ad7-6f9d-f278-ded34f103699", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-75", + "y": "0", + "z": "0" + } + ], + "uuid": "38615f94-ed54-acfd-0092-d3355ed400e2", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "813a0c59-8976-b6a5-755f-3a1e8c2da857", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "b097f599-9634-da25-2a0b-cc8ea6301ea7", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "5fb1b451-651a-475c-f308-c7db4eed1dda", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "829e21d7-be40-b7b6-90af-a578292c2cd5", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "265c3ca5-e561-3e07-af2f-3caa6b339978", + "time": 0.20833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0.22" + } + ], + "uuid": "9ddc607d-2529-38c4-e179-589f31d15a96", + "time": 0.625, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "557be9d2-12ee-95e1-af76-b8b0ba34704d", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "d728b8cd-3d6e-1d00-4ade-b87ff5fd9ad3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "213efa5e-2c7f-3e6b-7ed4-f1a4b9dfa86a", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "54.78", + "y": "0", + "z": "0" + } + ], + "uuid": "138d035e-7915-8e29-7b9c-3b832a84672c", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-15" + } + ], + "uuid": "456a10c7-91bc-d007-d954-1b1b18d06ba5", + "time": 0.20833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-35" + } + ], + "uuid": "045f4f5d-e490-af8d-cba9-51b7f4724cb5", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-40" + } + ], + "uuid": "4c533678-4796-34d0-1550-f8c817f2cbf8", + "time": 0.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-40" + } + ], + "uuid": "84a56d9e-03be-2a3c-5f8c-72260d7c6f06", + "time": 0.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-40" + } + ], + "uuid": "fb594db7-55ef-ff08-f9c1-4809831b7972", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "80" + } + ], + "uuid": "450dcaae-ffb8-a414-3906-bc927aa2246c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "87.5" + } + ], + "uuid": "7ccb1c34-892d-e4de-03ef-87b4c642c420", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "80" + } + ], + "uuid": "846820d6-8e8b-d638-1e88-00472d784eff", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2.5" + } + ], + "uuid": "f415c654-77b6-82c1-7628-76f4b2b4c4c6", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ef5d0f67-d1ea-efca-a879-67e2ef3663e3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f96d91f6-4f0b-3f8e-ff1c-2e8111620d29", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + } + ] + } + } + }, + { + "uuid": "3c072359-f9ba-f341-d4ed-c926bec0c1f7", + "name": "sit", + "loop": "loop", + "override": true, + "length": 2, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "45b60604-826c-127d-6b64-3e56dc19068c", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c049f0f3-aeb5-9dd3-9419-5ce02ecf8e21", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a82826d2-326f-3049-4711-5565e8e7fe56", + "time": 2, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "899f45ee-fab5-6c78-bc2c-6381441324e6", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84c0b993-f6f5-6a18-a9e5-485e81037672", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "e211a5ac-8df6-3e30-148c-01a291c206a5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "-2" + } + ], + "uuid": "dcf6cc37-0eee-03ab-8695-abbc39ac5aa2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-160.27126444785472", + "y": "68.69403741183623", + "z": "-71.446979487112" + } + ], + "uuid": "fb78b4be-1d39-e6d2-5c3e-e8da24f405b7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "-1", + "z": "-1" + } + ], + "uuid": "a96d7180-61bd-62c4-b92e-4ba84f2fe1e3", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-135", + "y": "0", + "z": "0" + } + ], + "uuid": "8de9690b-63d0-e56f-4a69-72e0162c29ad", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "-3" + } + ], + "uuid": "fd826736-1b28-fb58-f1d5-9a409a09b780", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "107.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3411dcc8-c5f0-b933-3cb5-c02d3e903446", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "6a371a42-64c4-2c76-0106-17f76271eed4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-135", + "y": "0", + "z": "0" + } + ], + "uuid": "e83d9aed-8c8e-93c9-a5bc-fdd162a5c6a6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "-3" + } + ], + "uuid": "6739ba2b-9750-6ebc-6601-1a980b4e5003", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "107.5", + "y": "0", + "z": "0" + } + ], + "uuid": "d1a64128-1062-a381-6c51-365ca96cb95f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1.3000000000000003" + } + ], + "uuid": "f06382c5-821a-5c99-95d7-d8473c8e7166", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-65", + "y": "0", + "z": "0" + } + ], + "uuid": "c64a5219-dc7f-f756-717a-2f3873df21e3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "-1" + } + ], + "uuid": "2a6fb0f1-4f1d-3e87-60ce-c4a4409de468", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-160.32641", + "y": "-77.97514", + "z": "129.07584" + } + ], + "uuid": "3a36d8c3-1be8-15c7-d5ae-f3cd205bb2e3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1" + } + ], + "uuid": "cf6b1508-16de-a71b-5d1c-a226865d54b8", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-87.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c5cb83b1-0ca9-c843-f8f5-b0260b111862", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "9f409726-8ed9-d1f7-abda-5e5b2e5f8370", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "0fe9582e-afee-9945-c051-79e1996ab231": { + "name": "RightHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "21.9999000983", + "y": "46.5056567762", + "z": "-18.4888924123" + } + ], + "uuid": "89f12832-3160-c7cc-64fd-0f50c1cfedd5", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0.5" + } + ], + "uuid": "7af52b44-a326-2864-849c-985c230a3d0c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "f95e7de6-0331-4c7f-88de-901a3d3aafb7", + "name": "sit_emote", + "loop": "loop", + "override": false, + "length": 4, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "45b60604-826c-127d-6b64-3e56dc19068c", + "time": 2.45833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c049f0f3-aeb5-9dd3-9419-5ce02ecf8e21", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a82826d2-326f-3049-4711-5565e8e7fe56", + "time": 4.45833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-11", + "z": "0" + } + ], + "uuid": "3949d09a-29e1-3053-98f0-06208647ebd1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "682ffc0f-a5e7-482a-b8c5-8f569d918f5f", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84c0b993-f6f5-6a18-a9e5-485e81037672", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "e211a5ac-8df6-3e30-148c-01a291c206a5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dcf6cc37-0eee-03ab-8695-abbc39ac5aa2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fb78b4be-1d39-e6d2-5c3e-e8da24f405b7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-96.60139441617054", + "y": "5.426770158390573", + "z": "-7.540367186791209" + } + ], + "uuid": "47a9dc69-b9f3-a7d0-4f7a-8a25192a6762", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "2", + "z": "-1" + } + ], + "uuid": "0c21aa35-fa40-1768-fd7d-d047cee061c9", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "27.673889233549673", + "y": "21.915455570267696", + "z": "-96.60562441079342" + } + ], + "uuid": "704122b0-7f7b-4f57-5a89-fe668927f094", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "b78a9441-1f2a-8e92-13e7-b572c4a98585", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-86.10943275837872", + "y": "-33.854937900673576", + "z": "5.682570018300794" + } + ], + "uuid": "ab6d4c05-8eb9-55c0-6f59-6910e2f76f50", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "-2" + } + ], + "uuid": "9c000610-3b2c-faf8-3fe3-5da8a7127f1d", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "143.68712264787146", + "y": "-14.087419469977103", + "z": "-51.94712911146026" + } + ], + "uuid": "1e4dcef5-46be-8431-c57a-367e5baff27a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1.3" + } + ], + "uuid": "e5515ae6-7ccf-7129-65a7-01a2f6ece4d6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "-32.5" + } + ], + "uuid": "00665345-46b1-7d26-38a6-1c6b61db0c93", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "115", + "y": "60", + "z": "0" + } + ], + "uuid": "09c4f59c-9073-320f-e8f0-ad5c0b081934", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "180.00000000000227", + "y": "82.5", + "z": "90.00000000000364" + } + ], + "uuid": "d7fb0cf1-df61-462a-5a82-a6659bf8557c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c64a5219-dc7f-f756-717a-2f3873df21e3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2a6fb0f1-4f1d-3e87-60ce-c4a4409de468", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d09adcb9-bab5-8c18-9b26-f972dfc98653", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-60", + "y": "0", + "z": "0" + } + ], + "uuid": "63ff61de-e0f2-6ff5-3975-2839cd32621a", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "8f2a012f-1706-1f0f-b0e3-a7bf06200152", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.3000000000000003", + "y": "1", + "z": "1.1" + } + ], + "uuid": "c227c293-82a4-9f0e-0121-5c67067fdc3d", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "f3c6ff59-57f3-486b-d4e3-796f773b3d5d", + "name": "sit_emote2", + "loop": "hold", + "override": false, + "length": 1, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-7", + "z": "0" + } + ], + "uuid": "3949d09a-29e1-3053-98f0-06208647ebd1", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-12", + "z": "0" + } + ], + "uuid": "18cdebb9-8aaf-29b5-922f-4fbd801b17c9", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-9", + "z": "0" + } + ], + "uuid": "4bf7e122-0910-b4b6-5a75-fc84149bd36c", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-10", + "z": "0" + } + ], + "uuid": "da59f1ad-b9ac-a18e-7a7c-fc23338e5f6f", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-10", + "z": "0" + } + ], + "uuid": "2b6edfcb-ea3c-3049-216c-12e4c32886f8", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-17", + "z": "0" + } + ], + "uuid": "5e4fc510-9501-05e9-335c-95ce608b72e7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.6000000000000003", + "y": "0.7", + "z": "1" + } + ], + "uuid": "ba29ca86-2c69-1839-a973-07ff3136036e", + "time": 0.08333, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.25", + "z": "1" + } + ], + "uuid": "f29c01c3-eade-2f64-fcbe-987bf1b8b641", + "time": 0.16667, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.3000000000000003", + "y": "0.9", + "z": "1" + } + ], + "uuid": "fdbbf9aa-d4ba-0a44-684b-cc769ba626aa", + "time": 0.25, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1\n", + "z": "1" + } + ], + "uuid": "1c784972-3f64-c2d9-4db8-b0967c07891b", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.1", + "z": "1" + } + ], + "uuid": "5c4a563e-f048-7c75-428f-5be11251a7ac", + "time": 0.375, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.5500000000000003", + "z": "1" + } + ], + "uuid": "46227ed3-05bc-c304-bf87-e6161b08ec69", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84c0b993-f6f5-6a18-a9e5-485e81037672", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "e211a5ac-8df6-3e30-148c-01a291c206a5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dcf6cc37-0eee-03ab-8695-abbc39ac5aa2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fb78b4be-1d39-e6d2-5c3e-e8da24f405b7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-96.60139441617054", + "y": "5.426770158390573", + "z": "-7.540367186791209" + } + ], + "uuid": "47a9dc69-b9f3-a7d0-4f7a-8a25192a6762", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "2", + "z": "-1" + } + ], + "uuid": "0c21aa35-fa40-1768-fd7d-d047cee061c9", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "27.673889233549673", + "y": "21.915455570267696", + "z": "-96.60562441079342" + } + ], + "uuid": "704122b0-7f7b-4f57-5a89-fe668927f094", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "b78a9441-1f2a-8e92-13e7-b572c4a98585", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-86.10943275837872", + "y": "-33.854937900673576", + "z": "5.682570018300794" + } + ], + "uuid": "ab6d4c05-8eb9-55c0-6f59-6910e2f76f50", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "-2" + } + ], + "uuid": "9c000610-3b2c-faf8-3fe3-5da8a7127f1d", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "143.68712264787146", + "y": "-14.087419469977103", + "z": "-51.94712911146026" + } + ], + "uuid": "1e4dcef5-46be-8431-c57a-367e5baff27a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1.3" + } + ], + "uuid": "e5515ae6-7ccf-7129-65a7-01a2f6ece4d6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "-32.5" + } + ], + "uuid": "00665345-46b1-7d26-38a6-1c6b61db0c93", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "115", + "y": "60", + "z": "0" + } + ], + "uuid": "09c4f59c-9073-320f-e8f0-ad5c0b081934", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "180.00000000000227", + "y": "82.5", + "z": "90.00000000000364" + } + ], + "uuid": "d7fb0cf1-df61-462a-5a82-a6659bf8557c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c64a5219-dc7f-f756-717a-2f3873df21e3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2a6fb0f1-4f1d-3e87-60ce-c4a4409de468", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d09adcb9-bab5-8c18-9b26-f972dfc98653", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + } + } + }, + { + "uuid": "f99872e7-f2bd-e73b-4f83-082c1623d28b", + "name": "followMe", + "loop": "once", + "override": false, + "length": 1.375, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9887f18d-8d35-6cf1-7e2f-004a182ed804", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0.7340404134620258", + "y": "24.874691603068186", + "z": "0.46394336388129886" + } + ], + "uuid": "a301e9b0-bd77-f7aa-69aa-12b45109bb2e", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0.7340404134620258", + "y": "24.874691603068186", + "z": "0.46394336388129886" + } + ], + "uuid": "86494bd4-7bf3-dd74-e4de-fbe10b2f4ccc", + "time": 0.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7e177ca-90a1-003a-26ac-3c9045a57cc5", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fd11d9d5-1bf1-e60a-4653-5723e7b64e60", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "12d5d418-e4ae-a422-f62a-e40539931954", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "c9639672-905c-99d3-1a7c-77f2c45ba3b3", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "c04b8863-b977-afdb-b3fe-6359ecc5c567", + "time": 0.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "82360ee6-bd9c-a3a2-7bcb-b38adf942506", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7e74412c-c6a0-968d-4185-f48aead2da70", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "3602a1be-1956-0578-3e2a-f4295a97a960", + "time": 0.375, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73537b14-ba1a-8945-763c-1b1acc5c70c6", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.139296625613042", + "y": "40.79237202269042", + "z": "1.366426829135773" + } + ], + "uuid": "3c01d642-23de-db77-55b0-6f7b9acde257", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5d72c177-a7db-d56d-a96f-88d01cb4b5de", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "b3bb1bfa-40a9-8bd9-a35a-8aa4b5ea8969", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.139296625613042", + "y": "40.79237202269042", + "z": "1.366426829135773" + } + ], + "uuid": "9bb51ae4-35d8-d622-2d10-a0b4780e3c7d", + "time": 1.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c66e9215-c99a-1c72-b3fb-c556fc523865", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5\n", + "z": "-3" + } + ], + "uuid": "03750fe2-3cb7-acd5-8172-bc16f0dfbdc7", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b94d417e-1e40-5063-695a-8c2b7900f837", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "2.5" + } + ], + "uuid": "2fefd0fd-8f00-3c1f-9d80-324dbbb4baa0", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "031ec465-a678-6aa3-a9d7-74ca0b4d6b36", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "2.5" + } + ], + "uuid": "cc36ea97-9657-6587-7458-779dd372be5b", + "time": 1.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5\n", + "z": "-3" + } + ], + "uuid": "1bdb1338-35c9-0b0f-804a-cb529ce10693", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "348ee9c0-cc61-f6c6-510d-6a76ebf3598e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f72330bc-8125-b922-1fe1-c8d2c4d799f9", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-197.90654906124183", + "y": "67.58109425245863", + "z": "-117.15317596551813" + } + ], + "uuid": "394f8bfd-ad27-5c9a-3e9d-f767aecaf941", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-197.90654906124183", + "y": "67.58109425245863", + "z": "-117.15317596551813" + } + ], + "uuid": "8ef5b0e8-2c51-ed8c-e1e3-a427d6d88f7c", + "time": 0.79167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-120.70533623040757", + "y": "33.15221974766706", + "z": "20.488613927605456" + } + ], + "uuid": "a1be318f-e8cc-95c8-aa31-ad94345c26e2", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-197.90654906124183", + "y": "67.58109425245863", + "z": "-117.15317596551813" + } + ], + "uuid": "7a23199d-ba66-827e-9140-2a86faae3c52", + "time": 0.66667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-214.08915231876986", + "y": "72.05925312606412", + "z": "-134.5891257222278" + } + ], + "uuid": "f80b279e-5624-07c4-8aa9-d023e4a59224", + "time": 0.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-74.56834248387258", + "y": "-9.935578431269278", + "z": "-5.267040957668087" + } + ], + "uuid": "87bb9ffc-84f7-8f3b-4850-0eafd866272c", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-74.56834248387258", + "y": "-9.935578431269278", + "z": "-5.267040957668087" + } + ], + "uuid": "5bf5c788-e523-f564-fa4b-55a2e11785fc", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "23444864-78a8-958a-6067-77cce11ed1cd", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4b900c7f-97c2-5d28-4e90-7ca809243ce4", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "1", + "z": "-3" + } + ], + "uuid": "cd9cb512-72a4-6c3d-b26a-a731727c42b4", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "-1" + } + ], + "uuid": "ed0ea3bd-52ec-7ed5-334b-5934920cc468", + "time": 0.66667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "019b9018-b03f-328d-aeba-b34849091478", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "baa5fabe-a082-5797-c4eb-99bab945f2a6", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "-1" + } + ], + "uuid": "3413a02e-75f0-9d40-c2bd-61c545d86e20", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c6b981f9-34ff-efcb-56b5-035a8a27895f", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "27.5" + } + ], + "uuid": "276e3817-fce1-f03d-c446-c0848a02fc30", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "27.5" + } + ], + "uuid": "eddb6f0c-4617-085e-e706-de951368d386", + "time": 0.625, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "27.5" + } + ], + "uuid": "9a1d21a9-a7b6-9520-e723-7d26afbda307", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "35", + "y": "0", + "z": "0" + } + ], + "uuid": "be3f2767-f830-7138-8c13-2c52b9cd56c4", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e3701295-2bef-3486-5627-f1093df46512", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "35", + "y": "0", + "z": "0" + } + ], + "uuid": "8cce4ab1-df91-00c3-7658-070a91fef1c0", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "37cae762-0256-6c8a-99f3-bf6aa74e332f", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b6cfe578-17a1-9e58-721c-c40669a7355e", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "2c632e65-449e-92cc-26cc-d89dbee36156", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "49553c7d-e181-7aae-3054-36f3b6665957", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2cbf1a5b-f7d5-adb5-bc9d-9f97996fe194", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "8f00bcee-faf3-23a6-9e64-83e9fae97625", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "83f76423-e8df-4b7a-9480-466812dfecbe", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1.75" + } + ], + "uuid": "6c4c7063-57e5-e235-71ee-51bbb7fb54ae", + "time": 1, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "62209f28-238b-7531-a2b4-419c65adab32", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0648fe03-ecac-ea4b-7415-a71929be5ccb", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "5e4b4f54-6f22-0adb-41b8-95315a39ea31", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "152840cc-d193-9370-3c0f-e803e8f05b0e", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "ba42dc85-cc69-9ce3-88b1-c34bca6169f3", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "b4e0eba7-9c7f-58f2-1b33-7cff567e13b2", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "60448a49-11dd-32bc-2a26-2200e6b11eac", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1f38b79d-a16f-29be-4d11-f991549f8ad2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "8631caa9-ed85-284a-c798-9458d296e893", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3783524-f952-58c0-3ad7-59f26c59e83b", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "bf5ec198-c16b-2171-661f-aa80fce74376", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "ddd535ff-404d-115e-3e62-47039f69a819", + "time": 1, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "74138584-550c-acf3-7418-f44444a13e97", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "c6d7784c-15bd-6596-c27c-4b7c80804ab4", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "23c920ce-e9f2-3ad7-5769-4d5ddea625f7", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15.54376576204426", + "y": "43.2517878454892", + "z": "0.762357985920171" + } + ], + "uuid": "77a62a19-88cd-1843-5e53-40545e247b79", + "time": 0.83333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "83a7c14b-e28e-d108-bd14-eeca060ca57d", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15.54376576204426", + "y": "43.2517878454892", + "z": "0.762357985920171" + } + ], + "uuid": "9bdb6c46-1df5-0a81-5788-d5d33f2e9e8c", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15.001975664013571", + "y": "51.05934394980068", + "z": "-2.1762636138515745" + } + ], + "uuid": "b3644f7a-5de1-79ff-4e3b-b8e718eaf680", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "41020bdb-9ffa-222f-1fec-5768a68bad7c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5\n", + "z": "-2.5" + } + ], + "uuid": "ac978271-fa68-2077-7ef7-e237148a253a", + "time": 0.20833, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.5\n", + "z": "-2.5" + } + ], + "uuid": "6d3d5627-f8d3-a155-a8b3-d94743d40e0b", + "time": 0.375, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "02f405d5-4085-ef63-9628-3a364458fe0a", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "0", + "z": "5.5" + } + ], + "uuid": "1b7ae221-c820-b462-a759-4dda1d4f4ed3", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "0", + "z": "5.5" + } + ], + "uuid": "b853c2f1-9021-4616-3536-a827bbdeec7e", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a68d313a-5342-3a2e-fdab-800924c64c12", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "55", + "y": "0", + "z": "0" + } + ], + "uuid": "570854d0-67c7-2a29-10f0-32e59861be19", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "77af74be-76e1-0502-aec3-f00d1f1e9a71", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "e41b49a5-9f00-2f3c-aa97-7080ac552946", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "eefce315-639f-0b97-ac0a-c870a8f2ec7f", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "55", + "y": "0", + "z": "0" + } + ], + "uuid": "ae4869c1-f4d6-e1ff-fea0-18e3ecfeffe5", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9b1a1557-7f58-7c7d-3d86-737c1f30da5c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3acff622-10ed-1a85-3714-8e34e256890f", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "db6281b2-f2c9-de3c-791a-b87493c57139", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "98b956bc-7609-8acc-dcc3-8eb998fba242", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "7adff1fc-3e1a-5755-741b-2d757c2e3082", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "fcf40e36-99ac-6f66-f16e-50979388f006", + "time": 1, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "34b030fe-7f4b-f5a2-03a2-c0152dc3cc65", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "882a27c2-5cf1-db1d-df8d-23b55438c53a", + "time": 1.375, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "943a50b7-947d-ae8f-6741-bc3fd5c1dcec", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ef36528e-da27-d092-e377-82e996061766", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "e162f8f2-f64a-1cd8-771e-4c4178cba7fb", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "0a8729a6-ff9b-f8ab-cd72-522cf53ddc35", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "16a1181a-45f2-5201-d591-721a8d9aae8c", + "time": 1, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7ef186c9-b6a2-da3b-1169-990c0ab8ff0f", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "616dea91-4707-2e0f-acbc-c3b4990364da", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "a5850138-894b-e2e4-c2d2-458868e06a5b", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3d06af5f-5f5a-5e4c-7a11-54c33d1d3309", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fe3322a6-f350-6fa6-d6d6-d36c3c7305e7", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "bfb1f2a3-40b7-8363-c8c9-df3eb392d8d4", + "time": 1, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "2f08abdb-8345-b201-0dc4-4d954c194f5e", + "name": "clap", + "loop": "once", + "override": true, + "length": 2.53333, + "snapping": 60, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f78104f5-827f-1cfc-5dc3-6d529cf6282b", + "time": 0.18333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.19132", + "y": "31.94715", + "z": "6.31274" + } + ], + "uuid": "695eeaec-4ea3-219b-f55a-7fc02a8e6149", + "time": 0.43333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1900d0a4-26a6-f3f5-5e5c-4e5c04468ecb", + "time": 2.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.19132", + "y": "31.94715", + "z": "6.31274" + } + ], + "uuid": "b3bd1e0e-33d6-6ef6-da85-d6389d0312ce", + "time": 0.63333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.19132", + "y": "31.94715", + "z": "6.31274" + } + ], + "uuid": "0dd46afb-b028-c740-7213-ff04a4152d39", + "time": 0.83333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.19132", + "y": "31.94715", + "z": "6.31274" + } + ], + "uuid": "db2e0314-4bd1-abca-35b6-adab26afac3e", + "time": 1.03333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.19132", + "y": "31.94715", + "z": "6.31274" + } + ], + "uuid": "fe72dec6-d02f-9ba7-5c7e-59f564cb47aa", + "time": 1.23333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.19132", + "y": "31.94715", + "z": "6.31274" + } + ], + "uuid": "8f1b16cd-62c7-313c-afe7-743ce0b6f405", + "time": 1.43333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.19132", + "y": "31.94715", + "z": "6.31274" + } + ], + "uuid": "e3595c95-49da-86e6-e2e6-579fd9545469", + "time": 1.63333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.19132", + "y": "31.94715", + "z": "6.31274" + } + ], + "uuid": "c87242f8-87dd-4c1a-5896-8e6ef7474b5d", + "time": 1.83333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-78.19132", + "y": "31.94715", + "z": "6.31274" + } + ], + "uuid": "ae52c019-305b-48f7-67cf-bd7b917b6a8b", + "time": 2.03333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "5.35798", + "z": "-5.00284" + } + ], + "uuid": "4e176262-47c6-4026-9f98-a2a298540e63", + "time": 0.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "5.35798", + "z": "-5.00284" + } + ], + "uuid": "ff9b5f0a-4724-aed2-d007-ce0c4668f20c", + "time": 0.73333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "5.35798", + "z": "-5.00284" + } + ], + "uuid": "fa9def47-85d8-98c3-47da-dba7365e39ef", + "time": 0.93333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "5.35798", + "z": "-5.00284" + } + ], + "uuid": "ebc092df-3ad0-1d51-27b3-c06123982f45", + "time": 1.13333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "5.35798", + "z": "-5.00284" + } + ], + "uuid": "97282ede-816d-d88c-b2f5-e0069698b0ef", + "time": 1.33333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "5.35798", + "z": "-5.00284" + } + ], + "uuid": "fbf99c80-dbc5-72a0-5c6e-b0ab35d92ac9", + "time": 1.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "5.35798", + "z": "-5.00284" + } + ], + "uuid": "0401e06d-dd32-6626-1bc8-45646d87764f", + "time": 1.73333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "5.35798", + "z": "-5.00284" + } + ], + "uuid": "bb5dabfa-7bcc-5153-746f-1bae15d2d0e1", + "time": 1.93333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "5.35798", + "z": "-5.00284" + } + ], + "uuid": "13f8a05c-622c-d91e-a76e-4eddc47e3cf4", + "time": 2.13333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e54fab22-bbd7-f84e-02c3-091bba0c607d", + "time": 0.43333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5a0ad8d0-ac33-a5d1-cda9-7cdd9efc679a", + "time": 0.63333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1728225a-c76d-0578-00eb-25066f4c9ee6", + "time": 0.83333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f9bb99aa-79d8-026b-8ffc-69a464b5d6b5", + "time": 1.03333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "df98b001-7b92-f831-3d92-be4507b7e26a", + "time": 1.23333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "22500e70-b7dd-2c8a-9589-9180c0ab366b", + "time": 1.43333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bf95953d-b36d-91bf-3f6b-8820033ff065", + "time": 1.63333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f5e7652b-37d3-6113-0c91-175e6f69dca5", + "time": 1.83333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0619d8de-15a1-3284-d542-9bddff9db47f", + "time": 2.03333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1a991faa-16b9-1608-0294-98b3b6c56688", + "time": 2.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "75c3d9eb-e469-fe08-0852-13143cd4ef40", + "time": 0.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "59d07490-64dd-40af-ce0d-07a463379e42", + "time": 0.73333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "d0e6ac53-af6d-ac7e-846c-f03489be0e9b", + "time": 0.93333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "aeade8d4-d07e-cd51-195a-1578fe28041c", + "time": 1.13333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "2c21bb99-f9e2-71e9-1e58-e6869ebb2715", + "time": 1.33333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "1e5fb9f9-1631-b66e-346c-c87ebe8706e5", + "time": 1.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "99ced2ed-3cc7-7719-1d89-ff9151769524", + "time": 1.73333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "0443085b-6a70-0291-0eed-78673e6dce18", + "time": 1.93333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "6e625e84-3758-b12c-6a83-8d9cdb04aaac", + "time": 2.13333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "77d488d1-9458-58c6-e241-75599906ba19", + "time": 0.18333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80", + "y": "-35", + "z": "0" + } + ], + "uuid": "82bbdf59-bb08-0e30-adb3-7b60cda04bdd", + "time": 0.43333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8aeb6d8b-7275-cc98-8b08-40f2afbc4a41", + "time": 2.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80", + "y": "-35", + "z": "0" + } + ], + "uuid": "8cdeb588-8a6a-9c22-bb3b-bc622658bb53", + "time": 0.63333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80", + "y": "-35", + "z": "0" + } + ], + "uuid": "d360cf51-fff2-c80a-7bd0-897fc4fa36d9", + "time": 0.83333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80", + "y": "-35", + "z": "0" + } + ], + "uuid": "7393f14f-adf1-5ea6-cabc-b432212699c4", + "time": 1.03333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80", + "y": "-35", + "z": "0" + } + ], + "uuid": "0174391b-5142-927b-c2bd-1d62656b73c4", + "time": 1.23333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80", + "y": "-35", + "z": "0" + } + ], + "uuid": "0d43ae72-7b98-9431-50e1-5f420928454b", + "time": 1.43333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80", + "y": "-35", + "z": "0" + } + ], + "uuid": "0fcf716e-aee1-73d0-f93c-957cde63188b", + "time": 1.63333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80", + "y": "-35", + "z": "0" + } + ], + "uuid": "e5585907-f80f-9bd1-5ebe-a6cabfe27988", + "time": 1.83333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-80", + "y": "-35", + "z": "0" + } + ], + "uuid": "f503e8c9-06a0-d249-7d58-2d79bbfc0507", + "time": 2.03333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "-5.35798", + "z": "5.00284" + } + ], + "uuid": "98a38b33-7197-b6c4-241d-88dc1507b869", + "time": 0.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "-5.35798", + "z": "5.00284" + } + ], + "uuid": "4038b1c3-cad6-a5c4-617f-9cf0d0b40e19", + "time": 0.73333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "-5.35798", + "z": "5.00284" + } + ], + "uuid": "af253282-94a5-9ccb-8dc1-f39a9e94ebb1", + "time": 0.93333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "-5.35798", + "z": "5.00284" + } + ], + "uuid": "bf7eaa6a-c061-d687-1995-ddbc09552b20", + "time": 1.13333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "-5.35798", + "z": "5.00284" + } + ], + "uuid": "b09a5354-7473-0347-e845-b73f624008fa", + "time": 1.33333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "-5.35798", + "z": "5.00284" + } + ], + "uuid": "1c50fcdf-b344-d762-3a83-6f4be3a05dea", + "time": 1.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "-5.35798", + "z": "5.00284" + } + ], + "uuid": "a69da435-e001-c02f-7666-31018d660adf", + "time": 1.73333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "-5.35798", + "z": "5.00284" + } + ], + "uuid": "8d9bb6e6-aa4c-adfa-624c-6f76ee7287f5", + "time": 1.93333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-81.78613", + "y": "-5.35798", + "z": "5.00284" + } + ], + "uuid": "94a14c23-ba20-6e41-851f-89e5b9eedb19", + "time": 2.13333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3eb12c22-3350-ea40-82f8-591b7bdac147", + "time": 0.43333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0d88a6bf-3412-4531-6cd4-11738a55699d", + "time": 0.63333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fd5351df-736c-0900-c37e-0baa3d807699", + "time": 0.83333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "25ab2be7-b89a-2ab5-4fc5-2aba9f02a025", + "time": 1.03333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2a43d3ce-e77e-ba8c-d9e8-5eae00a6cd04", + "time": 1.23333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "56c8c5c6-7ec2-4e2f-c300-95ff358e95b0", + "time": 1.43333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "422b63e0-7339-251d-6b44-298391be90b6", + "time": 1.63333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cbd3889d-c0d1-0403-1cba-1ae2c5bc0a16", + "time": 1.83333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9aa24d7b-d139-3184-ca95-f5ea809f4b07", + "time": 2.03333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "29985837-27c6-dd85-0945-19d95b5a4d57", + "time": 2.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-20" + } + ], + "uuid": "e42959e4-22dc-e91b-236d-be3c6c449f88", + "time": 0.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-20" + } + ], + "uuid": "0620e6e0-9701-6bf0-9261-37e29e0ecf9b", + "time": 0.73333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-20" + } + ], + "uuid": "a33bcb5c-434c-1ce8-b368-f21f8bdb886d", + "time": 0.93333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-20" + } + ], + "uuid": "d6aa8a54-46b7-d816-d42f-bd96a7d59eac", + "time": 1.13333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-20" + } + ], + "uuid": "184e8bea-9f43-c8f0-606a-8e675b253ea9", + "time": 1.33333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-20" + } + ], + "uuid": "60126251-891a-0147-20d5-0fd57330972f", + "time": 1.53333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-20" + } + ], + "uuid": "b4d01b35-02e9-553e-3377-bbbf347c6b97", + "time": 1.73333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-20" + } + ], + "uuid": "53e4df5b-1ed0-f18b-951b-f3aa83cdd656", + "time": 1.93333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-20" + } + ], + "uuid": "d0be5f3a-b960-8212-5285-ed912a8f09d9", + "time": 2.13333, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + } + } + }, + { + "uuid": "a744e70f-1914-3caf-f9f2-2a837bbbeda4", + "name": "wave", + "loop": "once", + "override": false, + "length": 1.79167, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-7.5" + } + ], + "uuid": "fbf9bb0c-ca98-b7c4-dd2d-62b2508f2d65", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7c49791f-30aa-3980-ae97-7c674489c16b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8dba4889-5451-0f9a-14aa-c19b994f9798", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-7.5" + } + ], + "uuid": "72178732-c646-78cd-77f2-d160f8ecaf36", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "0" + } + ], + "uuid": "4dcd1858-4b7e-195a-6ce8-2c0287bb39f5", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "95ee3234-13ad-bed7-51c5-362c09f52d68", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c1ed3963-107d-6b31-ae28-45618a3bba09", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "0" + } + ], + "uuid": "1ea437d7-7f58-c3a3-e13e-554c9a493ef8", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-5" + } + ], + "uuid": "146e5194-74ad-5691-25e5-3f66e9648927", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "00ba43c2-0c33-8511-ee34-2c5c843bbb36", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bb6db12c-33a1-03b7-5c78-5e2c00609e08", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-5" + } + ], + "uuid": "4fc9fcfa-b266-94c9-cd3d-0853c4d2b817", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "ea91c4db-3a89-20ec-89d8-52c5ad1a5423", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "26bc77fc-9318-359e-5b09-72fa3946804c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9af0934a-8a39-5295-6f9a-3c38af15ff44", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "d7cdea44-6104-431e-a07f-b1a3afdbb035", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "f81dc3c7-77dc-3a00-af08-10607e7bc843", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115" + } + ], + "uuid": "fb0cf5f8-8850-120f-9208-a28d121b0716", + "time": 0.29167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d8102de7-586c-2345-680d-784b2f4363ed", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "382fc072-1206-bcd1-5cab-a0cd6543432a", + "time": 0.66667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115\n" + } + ], + "uuid": "d4fda29f-d347-ebf7-90a5-edc78ca36e8e", + "time": 0.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "c89e9b58-2084-cdca-c606-9dcffe382396", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115\n" + } + ], + "uuid": "26bcf4f9-9583-f211-a21f-af500968f238", + "time": 0.54167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9254c77c-28ee-0efc-d0cf-42985284d7b2", + "time": 1.66667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "bb261ab3-cbd9-bcef-1f72-3b8b81d5ed00", + "time": 0.91667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115\n" + } + ], + "uuid": "35292b51-de25-61a9-41a1-06cf2e0da61f", + "time": 1.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "30adc32b-0bcd-df2f-d072-0bb16f14197d", + "time": 1.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115\n" + } + ], + "uuid": "79c2edb9-386e-de4d-2529-b96e2c08f056", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.99999879258166", + "z": "-115\n" + } + ], + "uuid": "7d713123-a19e-78c0-b868-a58dc9a2a0e6", + "time": 1.29167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-89.9999991462264", + "z": "-150" + } + ], + "uuid": "65cbf914-8b60-b758-9096-bade2c1ffc14", + "time": 1.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2", + "z": "0" + } + ], + "uuid": "f26813fd-4d51-2b38-9362-7dd6a90c5c8e", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4a14476e-3a87-9399-7433-71ba342c3fa7", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "aa041bd6-eedd-cedc-1e15-af3032cff0cb", + "time": 1.66667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2", + "z": "0" + } + ], + "uuid": "530164e4-7f6f-e1a8-5c89-8add456c773b", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "aa33bd55-e6c1-875a-6ef7-72d08dbe3c4e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "954ac53c-1b5e-1b20-bffa-962dd8cc6492", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0\n\n", + "z": "0" + } + ], + "uuid": "31cfdbc1-3975-c4ee-820d-5c3f5fc1873f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0\n", + "y": "0", + "z": "0" + } + ], + "uuid": "5fcfc295-d3ca-ddbd-b055-9a6b65ea5661", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0\n", + "y": "0", + "z": "0" + } + ], + "uuid": "e41a5bc7-f55d-53a3-7ebd-bcb31c34d26d", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0\n", + "z": "0" + } + ], + "uuid": "083ebb2c-b339-196c-7609-c8576d39927a", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0\n", + "z": "0" + } + ], + "uuid": "85f601b8-b74a-25a0-24b7-9d93f15f26f5", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "544a47ef-3151-3c19-8551-8f54c38f902f", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "95a03ee5-c52b-9f66-30c3-734f37d0ba46", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2.5\n" + } + ], + "uuid": "90d33293-fe43-3edc-623e-f46f3d0df698", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2.5\n" + } + ], + "uuid": "45cf7d7f-255f-a390-368d-23ff6c6ede98", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3178b6d3-2042-0802-c607-1befb5d9e09f", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cffd18b1-0e36-85a4-32c0-ffa2bc97c75a", + "time": 1.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "-1", + "z": "0" + } + ], + "uuid": "30053a7c-e691-5849-ba43-8add2c8b0153", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "-1", + "z": "0" + } + ], + "uuid": "e4bda781-7786-0b9c-b962-5c94d0861efc", + "time": 1.54167, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "c70d65ff-0518-8da8-ff84-1179c183d4ef", + "name": "elytra", + "loop": "loop", + "override": true, + "length": 0.54167, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "676f73ba-7120-ba5f-b1f6-96da235316ac": { + "name": "RightArmLower", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "1089e166-f458-a8d7-0105-15b904d2e0a6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.929896064562854", + "y": "-1.7081840554196788", + "z": "-4.699856911810457" + } + ], + "uuid": "a298f9b0-f55b-ae1f-e6f8-bef92266c6c7", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "b1602645-bd60-af43-75f0-36b41c96b6d6", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.929896064562854", + "y": "-1.7081840554196788", + "z": "-4.699856911810457" + } + ], + "uuid": "e8ef99f2-5e21-5df8-9105-c9cda71e371a", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "707ed181-3b32-0882-b413-e80fac5a29cb", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "08b1889c-f605-17bb-c427-cb3c97b0d7d6": { + "name": "LeftArmLower", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "651021d1-4a85-0501-ef67-55d9b5f737d4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.929896064562854", + "y": "1.7081840554196788", + "z": "4.699856911810457" + } + ], + "uuid": "785fabc9-c478-7d42-df89-eaab9dea98c8", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "1daa91fc-19ff-9589-1c8d-1c692ad9e4bd", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "cd3741de-807a-6f11-4a74-33b8e1942f99", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "c15b36c1-20bf-940d-62b2-cff67b5329ef": { + "name": "LLL", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3d103cc1-d42d-017e-5b13-819322a05ab1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "157615d3-1412-db1c-85ef-cd259943d5f6", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "-85", + "z": "-20" + } + ], + "uuid": "f03646c9-8407-830d-63e3-cbbfee0fb77e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-90", + "z": "-110" + } + ], + "uuid": "f986bb28-1972-9d37-c5c9-9b831a885235", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "-85", + "z": "-20" + } + ], + "uuid": "01dfa058-2e65-faca-0b62-c2fddb50b903", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "0" + } + ], + "uuid": "a2b728c3-1cf6-437a-c1f5-f46ca575e725", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "37eda337-5d97-3288-1fef-dcfb75e37d80", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4fe77a49-9c15-6919-0c98-a58d65ea3765", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "9236a4e0-cfcd-0901-bf6d-22da353e2452", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "6d01fbb0-015a-3585-818d-5307e80dfb70", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9c3dfefb-c145-0726-6f2f-05a5a04f9f0c", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "d6cddb9b-7427-cf0f-9782-4875d0845d0e", + "time": 0.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "10.78", + "y": "0", + "z": "0" + } + ], + "uuid": "7bfb4fe9-0013-defb-76c0-0f9de15e47fc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "10.78", + "y": "0", + "z": "0" + } + ], + "uuid": "c4f0a7a4-b5ef-3ac7-8b4d-376dbb742d95", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "2.5", + "z": "0" + } + ], + "uuid": "b7606192-0d27-974c-360f-577b83d4f9d1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-2.5", + "z": "0" + } + ], + "uuid": "52a7ff92-652f-3ee5-aad1-343451ef51d6", + "time": 0.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "2.5", + "z": "0" + } + ], + "uuid": "bfed4ebd-3eae-3d71-9953-3d8cc4db994c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "85", + "z": "20" + } + ], + "uuid": "9135accd-0077-6738-9c33-0c14c061e288", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "90", + "z": "110" + } + ], + "uuid": "23ee2180-b567-a958-1f26-75b235510122", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "85", + "z": "20" + } + ], + "uuid": "1c792fdb-b66a-0d8d-cc01-2417dfaa6ad1", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "3a11a8e8-3f94-5a20-6a68-52137a18af0a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + } + } + }, + { + "uuid": "ca5d1fd6-c676-6f79-9532-a0ca36899738", + "name": "elytradown", + "loop": "loop", + "override": true, + "length": 0.25, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "676f73ba-7120-ba5f-b1f6-96da235316ac": { + "name": "RightArmLower", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "1089e166-f458-a8d7-0105-15b904d2e0a6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.929896064562854", + "y": "-1.7081840554196788", + "z": "-4.699856911810457" + } + ], + "uuid": "a298f9b0-f55b-ae1f-e6f8-bef92266c6c7", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "b1602645-bd60-af43-75f0-36b41c96b6d6", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "707ed181-3b32-0882-b413-e80fac5a29cb", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "08b1889c-f605-17bb-c427-cb3c97b0d7d6": { + "name": "LeftArmLower", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "651021d1-4a85-0501-ef67-55d9b5f737d4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.929896064562854", + "y": "1.7081840554196788", + "z": "4.699856911810457" + } + ], + "uuid": "785fabc9-c478-7d42-df89-eaab9dea98c8", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "1daa91fc-19ff-9589-1c8d-1c692ad9e4bd", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "cd3741de-807a-6f11-4a74-33b8e1942f99", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "5cba2b77-6bed-3ec1-60a1-9f361cd7c418": { + "name": "RRL", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9213920a-c6e9-c3dc-823d-8dcbe146ee63", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "d9b5b5fe-d976-6ac4-8428-fb30a50b61ef", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "c15b36c1-20bf-940d-62b2-cff67b5329ef": { + "name": "LLL", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3d103cc1-d42d-017e-5b13-819322a05ab1", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "157615d3-1412-db1c-85ef-cd259943d5f6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "1.7139436140287216", + "y": "4.697763659989505", + "z": "0.07030897931554136" + } + ], + "uuid": "f03646c9-8407-830d-63e3-cbbfee0fb77e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "1.7139436140287216", + "y": "4.697763659989505", + "z": "0.07030897931554136" + } + ], + "uuid": "194c2fe2-8ad5-cad6-5bd7-a0a4e4b9c91b", + "time": 0.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "1.5070097180978337", + "y": "4.768035963348666", + "z": "-2.4372550646980926" + } + ], + "uuid": "32185d45-95e8-7b04-61c8-bba21e604cd1", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "4.171539289556604", + "y": "4.7121636670044245", + "z": "-0.44353414376741057" + } + ], + "uuid": "27c752e9-a7ec-73d6-6af8-a968aad5b4c5", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "0" + } + ], + "uuid": "a2b728c3-1cf6-437a-c1f5-f46ca575e725", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "16\n", + "y": "0", + "z": "0" + } + ], + "uuid": "37eda337-5d97-3288-1fef-dcfb75e37d80", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "14", + "y": "0", + "z": "0" + } + ], + "uuid": "5ffdef7b-2332-058c-6784-5fa7878eef7e", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "16", + "y": "0", + "z": "0" + } + ], + "uuid": "e2157d09-afa5-cd37-edfe-4845c585bbc1", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "16\n", + "y": "0", + "z": "0" + } + ], + "uuid": "a7c1e886-6dc5-2e6d-ccad-d648d146d41b", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "14", + "y": "0", + "z": "0" + } + ], + "uuid": "d9ca9c36-bb36-d2d4-10dd-d548579d845e", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "16", + "y": "0", + "z": "0" + } + ], + "uuid": "ae10e99f-1acb-c0a5-1a72-edd087025ee6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "b7606192-0d27-974c-360f-577b83d4f9d1", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "52a7ff92-652f-3ee5-aad1-343451ef51d6", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "bfed4ebd-3eae-3d71-9953-3d8cc4db994c", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-358.0824266447744", + "y": "-4.618537953409941", + "z": "-362.57733562522526" + } + ], + "uuid": "9135accd-0077-6738-9c33-0c14c061e288", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-358.0824266447744", + "y": "-4.618537953409941", + "z": "-362.57733562522526" + } + ], + "uuid": "81f95a84-2fdd-edcb-31f0-0878782368ac", + "time": 0.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-358.2860559702208", + "y": "-4.697764794083923", + "z": "-360.07030901336475" + } + ], + "uuid": "eb2d9cad-23ff-78ee-2626-bb1ea08e1e28", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-360.62415380575715", + "y": "-4.6347728995687065", + "z": "-362.06360263126004" + } + ], + "uuid": "fd33e3fd-a00b-7771-5b63-31e7d5ce9822", + "time": 0.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "3a11a8e8-3f94-5a20-6a68-52137a18af0a", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "e6e30e03-879e-b600-df0a-80f85cc8ac1c", + "name": "jumpup", + "loop": "hold", + "override": true, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "13.802858297169948", + "y": "-10.547935953487286", + "z": "-14.04397327585233" + } + ], + "uuid": "2ce88a47-e760-d023-f435-fee15a942e01", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5.001415129035649", + "y": "-21.469023519779256", + "z": "13.124268122792381" + } + ], + "uuid": "57bd311c-c651-cb95-d7e8-00b3ddc080f1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7b14a130-b86f-c7b6-acaf-391e3615e38c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "c4bee500-dfc3-288e-e5be-f1abcb841f50", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "6d2f6d31-a7a4-97b4-9a64-3f0daf236c3b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "331a6bfb-9c77-3901-1736-91a8522d3e70", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "79d43228-ea3b-a486-b935-03a3b8b95e5c", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "13.802858297169948", + "y": "10.547935953487286", + "z": "14.04397327585233" + } + ], + "uuid": "99e5ad07-48b6-b8ac-9153-2dfc358f5f46", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5.001415129035649", + "y": "21.469023519779256", + "z": "-13.124268122792381" + } + ], + "uuid": "d300bf2c-7f4c-5b80-7be9-b0f4df223e1b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "9dcf4fa5-5f02-bf18-4da5-baf3e1853a15", + "name": "jumpdown", + "loop": "hold", + "override": true, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "24.66569435017618", + "y": "-4.208542519128969", + "z": "-23.420532526717125" + } + ], + "uuid": "b40dc0a0-efb9-9f8c-fd76-8538f1d6151e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.50141512903565", + "y": "21.469023519779057", + "z": "13.124268122792273" + } + ], + "uuid": "ebade1bc-8d9b-7452-656f-c651843ad881", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "1080d370-979f-afd0-1990-df7136997d28", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "95", + "y": "0", + "z": "0" + } + ], + "uuid": "2afc1367-c16d-0bc7-c13c-41b0556b534e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "9a87c967-985b-57c4-92d9-8ffe83c78122", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a728401b-c01f-1b6d-1de3-bf6ff7a33eaf", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "70", + "y": "0", + "z": "0" + } + ], + "uuid": "7b335476-00b3-7443-15a4-076d16f1a5fe", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.721658181035764", + "y": "-0.9658317366702249", + "z": "13.738468230615126" + } + ], + "uuid": "8075c8e1-0ef5-49d4-e14c-baf6cde73d84", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.5", + "y": "0", + "z": "-27.5" + } + ], + "uuid": "ffda97cd-4f5d-df11-e7ab-14464d7a742f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "00ff7364-0308-06c2-58f5-ac544767e0ec", + "name": "walkjumpup", + "loop": "hold", + "override": true, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "13.802858297169948", + "y": "-10.547935953487286", + "z": "-14.04397327585233" + } + ], + "uuid": "2ce88a47-e760-d023-f435-fee15a942e01", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5.001415129035649", + "y": "-21.469023519779256", + "z": "13.124268122792381" + } + ], + "uuid": "57bd311c-c651-cb95-d7e8-00b3ddc080f1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7b14a130-b86f-c7b6-acaf-391e3615e38c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "c4bee500-dfc3-288e-e5be-f1abcb841f50", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "6d2f6d31-a7a4-97b4-9a64-3f0daf236c3b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "331a6bfb-9c77-3901-1736-91a8522d3e70", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "79d43228-ea3b-a486-b935-03a3b8b95e5c", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "13.802858297169948", + "y": "10.547935953487286", + "z": "14.04397327585233" + } + ], + "uuid": "99e5ad07-48b6-b8ac-9153-2dfc358f5f46", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5.001415129035649", + "y": "21.469023519779256", + "z": "-13.124268122792381" + } + ], + "uuid": "d300bf2c-7f4c-5b80-7be9-b0f4df223e1b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "560f42bd-c89e-2397-0435-1df56a6c0423", + "name": "walkjumpdown", + "loop": "hold", + "override": true, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "24.66569435017618", + "y": "-4.208542519128969", + "z": "-23.420532526717125" + } + ], + "uuid": "b40dc0a0-efb9-9f8c-fd76-8538f1d6151e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.50141512903565", + "y": "21.469023519779057", + "z": "13.124268122792273" + } + ], + "uuid": "ebade1bc-8d9b-7452-656f-c651843ad881", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "1080d370-979f-afd0-1990-df7136997d28", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "95", + "y": "0", + "z": "0" + } + ], + "uuid": "2afc1367-c16d-0bc7-c13c-41b0556b534e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "9a87c967-985b-57c4-92d9-8ffe83c78122", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a728401b-c01f-1b6d-1de3-bf6ff7a33eaf", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "70", + "y": "0", + "z": "0" + } + ], + "uuid": "7b335476-00b3-7443-15a4-076d16f1a5fe", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.721658181035764", + "y": "-0.9658317366702249", + "z": "13.738468230615126" + } + ], + "uuid": "8075c8e1-0ef5-49d4-e14c-baf6cde73d84", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.5", + "y": "0", + "z": "-27.5" + } + ], + "uuid": "ffda97cd-4f5d-df11-e7ab-14464d7a742f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "77066a60-fda8-8b84-a0e9-5a4f71ca5138", + "name": "sprintjumpup", + "loop": "hold", + "override": true, + "length": 0.125, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "24.66569435017618", + "y": "-4.208542519128969", + "z": "-23.420532526717125" + } + ], + "uuid": "8cc15b94-f5fb-11c8-2021-1aa81459686b", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "13.802858297169948", + "y": "-10.547935953487286", + "z": "-14.04397327585233" + } + ], + "uuid": "2ce88a47-e760-d023-f435-fee15a942e01", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.50141512903565", + "y": "21.469023519779057", + "z": "13.124268122792273" + } + ], + "uuid": "33cbf45a-a330-0e48-08bb-5fc52f9cf3e4", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "5.001415129035649", + "y": "-21.469023519779256", + "z": "13.124268122792381" + } + ], + "uuid": "57bd311c-c651-cb95-d7e8-00b3ddc080f1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "ab9a172f-64ce-599a-2323-b583f1ec1ab7", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7b14a130-b86f-c7b6-acaf-391e3615e38c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "95", + "y": "0", + "z": "0" + } + ], + "uuid": "7ceb5601-93ac-b15c-8d3f-1b89244e71a5", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "c4bee500-dfc3-288e-e5be-f1abcb841f50", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "40e6845f-0f1b-fbd2-14f9-def847e3bf2d", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "6d2f6d31-a7a4-97b4-9a64-3f0daf236c3b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "33a14844-1e2d-f8b8-60a4-07b859b55d3f", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "331a6bfb-9c77-3901-1736-91a8522d3e70", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "70", + "y": "0", + "z": "0" + } + ], + "uuid": "92750794-713d-7646-aca2-67ac972f8b5a", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "79d43228-ea3b-a486-b935-03a3b8b95e5c", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.721658181035764", + "y": "-0.9658317366702249", + "z": "13.738468230615126" + } + ], + "uuid": "9b2c2034-98fa-42c8-f7bd-e7cd6adbf5af", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "13.802858297169948", + "y": "10.547935953487286", + "z": "14.04397327585233" + } + ], + "uuid": "99e5ad07-48b6-b8ac-9153-2dfc358f5f46", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.5", + "y": "0", + "z": "-27.5" + } + ], + "uuid": "28740c2c-e4a2-bfd8-4058-0ac4c1213372", + "time": 0.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "5.001415129035649", + "y": "21.469023519779256", + "z": "-13.124268122792381" + } + ], + "uuid": "d300bf2c-7f4c-5b80-7be9-b0f4df223e1b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "bf6dcac1-b395-d956-47c7-4ceab6652f18", + "name": "sprintjumpdown", + "loop": "hold", + "override": true, + "length": 0.125, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "3.8127287490247355", + "y": "0.6361567838706286", + "z": "-119.31164662559311" + } + ], + "uuid": "813e4c9e-18c6-8c70-9d9d-c24d7c79502d", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "0" + } + ], + "uuid": "3ee8ea06-e880-4a74-dc17-3aab7f3fb417", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.022554035987469", + "y": "-18.96262467773522", + "z": "-25.027422340612247" + } + ], + "uuid": "c495a61e-d4a9-6af7-2ac3-a69714ae71e6", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-54.53", + "y": "-4.27", + "z": "-6.19" + } + ], + "uuid": "bbb61508-3a9c-c319-eaf4-634a726db49f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "6ecb351a-4131-44ff-5aad-cf1d40550d10", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "40e6845f-0f1b-fbd2-14f9-def847e3bf2d", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-29.53", + "y": "4.27", + "z": "6.19" + } + ], + "uuid": "b5bb7c64-4ad7-b2d3-cf3e-98355b795405", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "475d3f28-89d3-aac3-fa64-f7bb61f3a94e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "3.8127287490247355", + "y": "-0.6361567838706286", + "z": "119.31164662559311" + } + ], + "uuid": "e5c8e2be-02c2-fae5-3a1f-5c7afa8f6595", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "49343306-3155-5106-2124-a19916469d00", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.022554035987469", + "y": "18.96262467773522", + "z": "25.027422340612247" + } + ], + "uuid": "8d73697d-9369-3831-e6bb-e325ebb14849", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "-0.5" + } + ], + "uuid": "7ac34beb-3fc7-0dd9-fc2f-ef37c29e695f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "0fe9582e-afee-9945-c051-79e1996ab231": { + "name": "RightHand", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "-0.5" + } + ], + "uuid": "0aade466-b4e4-af33-2c53-30c9db4ae4a4", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "bda332b6-1719-7432-6b65-f5327eb80c3a", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "93e93f98-3606-59fe-6804-809edd0ba99d", + "name": "sprintjumpdown-normal", + "loop": "hold", + "override": true, + "length": 0.125, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "33.04", + "y": "-7.66", + "z": "-106.78" + } + ], + "uuid": "9b2a3d76-e697-ac99-6138-647c4423af39", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-28.75", + "y": "0", + "z": "13.75" + } + ], + "uuid": "729197d1-4aa9-3e64-4d81-1ab685ff4a04", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-54.53", + "y": "-4.27", + "z": "-6.19" + } + ], + "uuid": "bbb61508-3a9c-c319-eaf4-634a726db49f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "6ecb351a-4131-44ff-5aad-cf1d40550d10", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "40e6845f-0f1b-fbd2-14f9-def847e3bf2d", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-29.53", + "y": "4.27", + "z": "6.19" + } + ], + "uuid": "b5bb7c64-4ad7-b2d3-cf3e-98355b795405", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "475d3f28-89d3-aac3-fa64-f7bb61f3a94e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "33.04", + "y": "7.66", + "z": "106.78" + } + ], + "uuid": "c42b9ee2-0927-dd7b-b6f1-c91947adb3e4", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-28.75", + "y": "0", + "z": "-13.75" + } + ], + "uuid": "8d73697d-9369-3831-e6bb-e325ebb14849", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "5f3ca93c-a7f8-6686-07d3-b89d0dbf8124", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "716cda05-671d-49f2-62b3-c3f82648c23a", + "name": "climbdown", + "loop": "loop", + "override": true, + "length": 1, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-63.150945046339075", + "y": "0", + "z": "0" + } + ], + "uuid": "c32562a2-294a-8a4a-6526-7d298fa217c4", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "9911e52c-d821-8da7-10b5-414932ecf3d4", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1.05" + } + ], + "uuid": "1521282a-7af4-927b-b881-b7723733ba93", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-124", + "y": "0", + "z": "0" + } + ], + "uuid": "d13bd5ac-ee7f-77b5-4a7d-b8510f1cdc36", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "9283c5aa-d1b0-38ab-f0ba-30e819ee9355", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-124", + "y": "0", + "z": "0" + } + ], + "uuid": "abbb2f20-ae15-27d1-2252-f453c10417d1", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "0793a453-8795-1c57-0280-ccbf27d7f6e9", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-43.5", + "y": "0", + "z": "0" + } + ], + "uuid": "81df479c-37af-5ba3-b0c0-0cb72454f694", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2.5", + "z": "-2" + } + ], + "uuid": "8ac44326-d7d0-0661-39a2-6100831e7603", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0bd87b3e-b076-d3cf-b8a6-468b492cc14a", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "64577bb7-5591-f74e-4efe-c55931257854", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-43.5", + "y": "0", + "z": "0" + } + ], + "uuid": "2c2cc988-fb97-885e-00cd-9b0e5f009953", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2.5", + "z": "-2" + } + ], + "uuid": "88c2085c-a84c-afd7-af3c-cd2e8ed5bf39", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "34e7ff8a-dfdf-ec81-0889-74f0e405b5e1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5794fd30-12ae-e30e-9cae-823fe1a9d5c5", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "6" + } + ], + "uuid": "78a4e81b-8537-25e7-3147-9ea82f19f1c5", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "1c9fffc8-3a44-a8fc-7673-9e5faf0323ac", + "name": "crouch", + "loop": "hold", + "override": false, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "-3" + } + ], + "uuid": "4b569acd-c608-df6f-3da2-c4b862fe959d", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "1c3f7051-7cc7-623f-2941-1eabe1167044", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-2" + } + ], + "uuid": "0e1e279a-b0e6-73d2-715a-7b7dad4dea51", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-2" + } + ], + "uuid": "e1f281e2-be01-69a5-d61a-1e0ca773e590", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "20cb3517-cb5f-13f6-3824-2f4d84ada274", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "2336055b-9af8-8092-a33c-1efbc7e4ae22", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "5aafa2a5-f030-6650-9770-0f0dbff165b7", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "acae99d5-af76-d05f-e411-3637afb3c46b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "1" + } + ], + "uuid": "86f279b7-9445-ecb8-45ef-e0c82f00b202", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "85efa497-707f-7cf5-537c-59e0e81c49a1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-2" + } + ], + "uuid": "a519eb49-f6b7-32ba-98ad-dcb9e3d553ce", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-15", + "y": "0", + "z": "0" + } + ], + "uuid": "581a775e-fd06-c77b-aeff-87d0628fa5b2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-1" + } + ], + "uuid": "1dfd9a1d-3f74-5153-a3c8-d9d0a0e6e46b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "0.9", + "z": "1.2" + } + ], + "uuid": "3ff919fe-36b7-e88e-b82c-8154e9a344b3", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "fffbc67c-31aa-79be-859e-fbf0e08fe395", + "name": "taunt_01", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d67ee13a-82ec-d373-0580-b508bc4a1cc9", + "time": 0.5, + "color": -1, + "interpolation": "step" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-90" + } + ], + "uuid": "9c9dede5-5352-c6dd-af20-cb44653a942c", + "time": 0, + "color": -1, + "interpolation": "step" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "90" + } + ], + "uuid": "b4afdef1-26ad-5336-07b9-a8a1ffb8699d", + "time": 0, + "color": -1, + "interpolation": "step" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f06aec1c-da33-c2b4-696c-baef4b1a9448", + "time": 0.5, + "color": -1, + "interpolation": "step" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"01_whiphard\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "0a759990-4b4a-8568-1592-19ceaa9a366c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "eac464eb-5e04-8a69-4daf-652bac173e5d", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "28b54a84-efa5-cca9-b35e-822782450099", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "48312170-72b2-b235-3306-6571a332876c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b1213fd4-78a2-5728-2fdd-1a5756374769", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b1b6e005-f476-3be6-511f-82f55101bd8f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6858d788-d497-7794-09cd-c60ec31d2b1e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "542beea5-23b5-8f93-403c-80894374e4a7", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "20dcabb9-ad25-b967-9f66-94dc2ce3aec5", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cb91806b-f77e-ef26-58d6-53808a718d05", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c6845a72-cce2-43c7-d77f-20fb53c8b413", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d5de15f2-87af-4a3b-9ce0-9322085f927e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5d310e25-e14b-594b-86cb-e67915237cf3", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "357a46c0-7efb-d633-28f7-0aa66c605622", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2319240d-bf0f-e392-f720-cd4e8b02b1e0", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3d504884-325f-2267-001c-38013f784064", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "f54dd531-dc13-462e-aea3-bf2d6416fae6": { + "name": "tauntfx", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "30fcf5cc-70d4-2176-b1cf-68eefd8860be", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4884befd-d4a1-386a-e34a-83cc547edbd3", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "c27bde55-3cdc-a8ac-5a7b-d6e6e13c3bba", + "name": "taunt_02", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-0.40718", + "y": "14.64954", + "z": "10.16335" + } + ], + "uuid": "938e11a7-7087-81a3-c6e6-fb4ed651c344", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-0.40718226894477993", + "y": "14.649537871770917", + "z": "10.16334723213322" + } + ], + "uuid": "6c50af10-cbb2-b485-1ebe-048b5d867676", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6c6d5c53-b990-e878-ca20-26b31873ed2b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-158.92117", + "y": "76.62619", + "z": "-170.9567" + } + ], + "uuid": "db167eda-ae34-a1fb-f6e4-0c2223fc14be", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-158.92117000079134", + "y": "76.62618546362955", + "z": "-170.95670462344424" + } + ], + "uuid": "94d37b5f-6da8-0337-bd1b-4205f3f50c52", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9fe7a425-e376-e8df-44b7-c72c9a5a8026", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-35" + } + ], + "uuid": "fe17f80f-6c4f-ddaf-4ff1-f0ada8ad5710", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-35" + } + ], + "uuid": "02cc904b-e92b-2efa-28b6-8c0383ded3d0", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4bd78b48-d0a5-3fb6-bc15-bc065250a06b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-32.5" + } + ], + "uuid": "a7dc2fc6-4cb8-7670-ea81-375fde747748", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-32.5" + } + ], + "uuid": "1fae4ddc-33bc-90b8-373b-5d9336d5c6c3", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "02b3ad46-a6a0-4719-222a-194f24b3c860", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-77.48114", + "y": "70.6043", + "z": "-13.08622" + } + ], + "uuid": "1a319ba8-b278-f7c8-7c2e-1b2b2b98e673", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-77.48113951676123", + "y": "70.60430463832517", + "z": "-13.086220609780867" + } + ], + "uuid": "8470b71c-a880-db09-c070-a8c4042c58ad", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fb17a0a2-1ded-e717-e7fd-3c4f4410a698", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.56806", + "y": "0.72488", + "z": "-1.46692" + } + ], + "uuid": "853e1fbe-7712-08aa-58ce-f98f1ff2a72e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.5680627290992987", + "y": "0.7248831681849013", + "z": "-1.4669182418561957" + } + ], + "uuid": "3d35855c-8924-b647-4e88-8bb5c3660584", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5908b6b9-e5c4-108e-8fb1-3147ea5a51b8", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-113.26676", + "y": "1.08541", + "z": "26.006" + } + ], + "uuid": "cf063e6b-50b4-245a-9193-b537c324398d", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-113.26676365351477", + "y": "1.085405588168669", + "z": "26.00599521131562" + } + ], + "uuid": "d55a8422-6a39-1690-fc94-275feba14246", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ee4a7e98-7a84-f93e-2d4a-227e51965e96", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "26.16179", + "y": "10.10288", + "z": "-8.92254" + } + ], + "uuid": "7f19a75e-fba1-9a8b-0f61-876bd5025279", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "26.161787849433495", + "y": "10.102883306288277", + "z": "-8.922543491028591" + } + ], + "uuid": "4fd3353a-4b4a-906a-f952-e3bbee617a8b", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e9c702f6-c241-2d77-0844-aab03b18cf94", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.08681", + "y": "-3.21132", + "z": "-14.65993" + } + ], + "uuid": "ca4fa4d9-d434-af1a-ea01-082cda536d22", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-12.086807439427048", + "y": "-3.2113158158967963", + "z": "-14.659929312859731" + } + ], + "uuid": "29cba6dd-d673-2c87-30ae-c88e2e307818", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bb1390c3-a4fe-b935-4093-5abdb8dcdd1f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-26.16179", + "y": "10.10288", + "z": "8.92254" + } + ], + "uuid": "02bb750a-cb73-6ddb-13e6-e8fc17531f58", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-26.161787849433495", + "y": "10.102883306288277", + "z": "8.922543491028591" + } + ], + "uuid": "1265ed6e-2dc4-c338-1316-0c1d415d90da", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c7c549ce-a180-0062-3ca6-66b8147283f0", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7d9d33a5-88bc-5e32-ef81-928c03e6679f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c7c087c2-6fb4-4dcb-0876-3c66db4b93fa", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ee0ea64e-dc6a-45cc-d936-fe0b0edc1b40", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"02_swing\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "c4f0d970-7eca-69ec-f25d-bbe901dc81b6", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "a20898ff-9c74-eb8a-cc42-5f4343d0be09", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "17eaee90-00c2-207d-0019-00cc2be9a775", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "77eaf050-fd4f-5647-0a73-80fae0984089", + "name": "taunt_03", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-10", + "y": "0", + "z": "0" + } + ], + "uuid": "bfe95a9e-6595-17ca-ea26-2b3ea7ab383f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66845e4d-ed2c-2ad1-d13a-be03d961a83b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10", + "y": "0", + "z": "0" + } + ], + "uuid": "5976c269-fa38-2803-c74e-6bc95b1df300", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.8822", + "z": "-2.24221" + } + ], + "uuid": "ed773946-911a-5c0b-6c64-94dc7dba1d62", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "88e0be3f-c10f-3ad5-108b-29ded8f589c8", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.8822013886853135", + "z": "-2.242207558424727" + } + ], + "uuid": "47d867b5-d694-8af0-658d-c08342ba979e", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-40.78035852152243", + "y": "-59.884716682026465", + "z": "4.775119455341155" + } + ], + "uuid": "22937713-0d1e-d240-1eab-ced2c2e3e01f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "aa83ab60-c979-50f8-38b4-5f88ac5e1ee2", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-40.78035852152243", + "y": "-59.884716682026465", + "z": "4.775119455341155" + } + ], + "uuid": "f3805411-601e-144e-5864-18f152629829", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "180332d0-47bc-881b-8f9e-9144bd6007b6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "aeb341c5-18f0-cdc4-6973-1cd3d53a745d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "8c0bb6b1-cc3d-49fc-4ccd-c97a44d10a42", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-65.55184511312063", + "y": "1.9735060013249495", + "z": "47.67257456579728" + } + ], + "uuid": "6adb419a-df0b-5291-66e1-9fb9f07a3e59", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cd510693-fe65-c11c-302e-6857162a7520", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-65.55184511312063", + "y": "1.9735060013249495", + "z": "47.67257456579728" + } + ], + "uuid": "22d25147-ae19-6787-cfeb-27fe36961057", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3375b54d-d202-21e9-5984-45b1e619b79f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "232bc670-17ae-cf95-4547-5e78fa074e15", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5f884917-cb06-fa33-a194-e1a6ac52afae", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-33.45915645934019", + "y": "62.90951801648089", + "z": "3.5575079776940584" + } + ], + "uuid": "40914255-247c-72b0-fbab-b48418746b89", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "98c34e6d-aa18-f91d-f462-2c6df23bf99f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-33.45915645934019", + "y": "62.90951801648089", + "z": "3.5575079776940584" + } + ], + "uuid": "0fb3af24-8c6a-bcab-6803-77decb93acde", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4c6e63b7-44f8-0d5f-93be-4e35b14e7693", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "51ba4766-cef7-650e-da1d-209ae5af89fa", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "98ee2d59-8dec-2847-dcde-5f549b7544fa", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-65.55184511312063", + "y": "-1.9735060013249495", + "z": "-47.67257456579728" + } + ], + "uuid": "bd8a8727-7a29-627c-4b71-d806f8d978bc", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "54659bef-9a34-4a46-d28a-8cb2ed9581df", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-65.55184511312063", + "y": "-1.9735060013249495", + "z": "-47.67257456579728" + } + ], + "uuid": "f2a0c4c2-3986-ae74-b99b-c1ee8fd906f1", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "12.43167", + "y": "-15.67862", + "z": "1.35033" + } + ], + "uuid": "fd2168c4-91e8-11ad-2c76-8501503eb26f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "515d4e6f-fc75-f54b-9a4f-bd3dd59f5b1f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "12.431669935921182", + "y": "-15.678617244982796", + "z": "1.3503260156117722" + } + ], + "uuid": "b738e7be-692c-16d6-8a9e-54fc3c82f4b0", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.31389", + "y": "0.03358", + "z": "-0.94886" + } + ], + "uuid": "b4178bd9-dab7-992d-ad55-83c87be0a137", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.3138907440624811", + "y": "0.03358330416529601", + "z": "-0.9488649864302315" + } + ], + "uuid": "b642639b-474f-0c59-eadf-97a53bd187a6", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f2da94f4-4727-92cb-4f8e-19aca478b65d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "7.47235", + "y": "7.97856", + "z": "10.73326" + } + ], + "uuid": "2c826d33-9e68-ec16-04ac-4b9128559f00", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1ec224d4-9d95-4ef0-b034-a4f85fd93040", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.472345186297844", + "y": "7.97856022096812", + "z": "10.733255307695345" + } + ], + "uuid": "741cf3b2-abd5-40dd-367d-62dbfde556cc", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "-32.5" + } + ], + "uuid": "0415fdd1-a4cd-0eb7-5b2e-2cf659f43128", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "798258b9-6d07-1e32-9f3d-dfd8cbb93af6", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "-32.5" + } + ], + "uuid": "c0f0fc26-a1de-35b4-1953-962b64de9d00", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "92.5", + "y": "0", + "z": "0" + } + ], + "uuid": "b9ee0bec-97c0-451b-1b84-cd405d1cbdc2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a87073ce-b4b6-0ade-befb-33a5bfe5566f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "92.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a795d5ff-ce80-a69b-359b-aa8961b49ecd", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "9808ab8a-3ecd-5eee-ed86-85cc825caaff", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "516719d6-ea5a-126b-cb35-10664c7ab1a1", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "89665146-821c-a86c-9047-a830c1bbf4d1", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.36155", + "z": "-3.14154" + } + ], + "uuid": "44837f5d-cc47-e12a-3205-785417c2164f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.3615469981854483", + "z": "-3.1415416228506494" + } + ], + "uuid": "f90d1624-f6a1-16c8-1414-00ab4f2efb90", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9f9ce6ff-ee02-fdc1-730c-fc978b007c4d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "8bbaca34-5738-6b41-01e7-a022307e05fc", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "525c0f8d-2064-9bcc-534e-8c2ddb6fd04c", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e23403e3-48b3-4fd6-8fa4-b2a4a713af69", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "14e581f0-40d0-5215-b817-23d26ac5543a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "1ae2ed68-907d-71ee-204b-726dea241d1f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ecd8a56a-25cb-b0a3-a5de-8ce54a808fcc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"03_punchspin\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "8542f7c0-362a-4199-739c-0b26c5412540", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "d90f3239-a653-2775-287e-261f4f66178e", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "ec6b96e4-250e-4e65-a285-41f8c39f9f5c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "5ba22f9d-de10-1e01-2950-180be69d8959", + "name": "taunt_04", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "3.23124", + "y": "37.12192", + "z": "16.73357" + } + ], + "uuid": "a2c1529c-1609-6d0b-e518-dd1aca854649", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "3.231235661361552", + "y": "37.121918440150694", + "z": "16.73357452867458" + } + ], + "uuid": "de36e352-5ad8-4db2-2b1a-105764f40c4e", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c133651f-8345-d685-57f8-aaaa0987c34c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1.69191", + "y": "-1.54459", + "z": "0.6492" + } + ], + "uuid": "56138f60-316b-cf7b-28a9-45005d754488", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1.6919082809336152", + "y": "-1.5445857551215307", + "z": "0.6491950545813154" + } + ], + "uuid": "9eecb923-917a-8141-8e60-664cf9814e95", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fe98ef04-6f8e-a00b-d8b5-0b2e7ec01745", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "60.76984", + "y": "51.55735", + "z": "142.18089" + } + ], + "uuid": "b68ce4ef-d785-55f2-5c03-806cda6c492b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "60.76983509096908", + "y": "51.557345763810645", + "z": "142.180885464742" + } + ], + "uuid": "aafdb5ac-b9d8-50f8-b2c9-2d48133852de", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "deca67fb-ee2f-fd69-d9ca-c921bed1321a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-5", + "y": "-0.58", + "z": "-4.06" + } + ], + "uuid": "c73b4435-9c46-0d51-d758-a771ed4b2919", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-5", + "y": "-0.58", + "z": "-4.06" + } + ], + "uuid": "4c1c5788-e863-6a6a-5db3-b2b2cc566eb7", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a58509fb-e734-5f57-79d7-86d943705a3f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-46.52796", + "y": "28.46857", + "z": "59.9369" + } + ], + "uuid": "0ff13a9f-67d5-04d5-05d2-15d84e69f182", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-46.52795567823114", + "y": "28.46856533631535", + "z": "59.93690486825244" + } + ], + "uuid": "7819481d-0d1c-2fc3-1f78-0180b35292c8", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6295cdf3-bb3e-1926-8e2b-b127e8c59992", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.72464", + "y": "-1.51439", + "z": "-1.19707" + } + ], + "uuid": "2896f0ee-4c35-62e6-4a71-6048eb23d74f", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.7246399285040697", + "y": "-1.5143944338956068", + "z": "-1.1970666938743035" + } + ], + "uuid": "c34cbebb-d071-e514-acfb-7ef793b76aa0", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d6b8fc6f-045d-e581-2064-d05ab54135cc", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "35", + "y": "0", + "z": "45" + } + ], + "uuid": "c24f6de4-772e-1a80-6dc3-8275a64eda67", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "35", + "y": "0", + "z": "45" + } + ], + "uuid": "2c8292f2-a041-a2aa-b123-c81e4fbed08f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b94ac9a5-0d86-1174-3444-b942bc83fe41", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.72", + "y": "1.06", + "z": "0.7" + } + ], + "uuid": "a08d42dc-ec3b-6f10-0fc0-337a8252bc61", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e5de860b-9220-fb34-effa-1298d15e8bda", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.72", + "y": "1.06", + "z": "0.7000000000000002" + } + ], + "uuid": "0f2274de-769c-deda-0da5-47b645bc4a34", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-30.44729231315887", + "y": "23.035681366224708", + "z": "-56.34819461704137" + } + ], + "uuid": "ef27c70f-513b-734d-c27c-4c7b2bc292a7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-30.44729231315887", + "y": "23.035681366224708", + "z": "-56.34819461704137" + } + ], + "uuid": "17d7f2e2-e8d9-8f93-1ce0-a5c514bce96e", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f79268a4-22ee-ce50-833a-bda9bda6666e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "6.444904403094814", + "y": "-0.6427876096865379", + "z": "4.891666962570148" + } + ], + "uuid": "9ec0244c-526d-611c-6c94-3f3d4ff90cac", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "6.444904403094814", + "y": "-0.6427876096865379", + "z": "4.891666962570148" + } + ], + "uuid": "ee1ef654-bd81-3fd0-3349-6788ed801ca0", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "edb2d3a8-350d-cc9f-08b0-8ec59b1a779a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "e255cf1f-3f41-d09f-f2cd-af98b5bc7af3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "06314a80-3e74-bd8a-1403-aed94c3cdb38", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ab4390ae-f39a-8003-d14f-9e48899f8306", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.59117", + "z": "-0.12326" + } + ], + "uuid": "90015d83-6841-17ad-1e92-c1058436ba01", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.5911679471944826", + "z": "-0.12325683343243876" + } + ], + "uuid": "c10dd60b-4c99-076b-3033-67c69aabfcf1", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "479f7b70-ff2d-22f0-d681-69f4c6331667", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "82.49999999999636", + "y": "70.00000000000091", + "z": "89.99999999999727" + } + ], + "uuid": "0f71a84a-f363-3a3e-0ae1-dc9855f716f0", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "82.49999999999636", + "y": "70.00000000000091", + "z": "89.99999999999727" + } + ], + "uuid": "f06f1f9e-a3f0-fdbe-4af4-9bd527803014", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5197e81c-fe06-fa45-a361-e251d231fd23", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "-2", + "z": "-1" + } + ], + "uuid": "6deffdfa-f0b8-d87e-ec2e-869fac5c7aa9", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "-2", + "z": "-1" + } + ], + "uuid": "d2fd453e-10fe-b5e5-fa15-3829d26dc731", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "35bd3225-b9df-713c-d71c-df45eda775cc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "56394390-ade4-9a53-7ebc-554342e4d709", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "7effff3a-20b3-e901-c2b3-cd04b70630de", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "923dea88-0975-758a-9d39-a173a907f026", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-18.44937", + "y": "65.06363", + "z": "2.5801" + } + ], + "uuid": "791f4493-fcc1-b6bb-8058-7a2efc14418a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-18.449366771983478", + "y": "65.06362839848543", + "z": "2.5800951631508724" + } + ], + "uuid": "d723b23e-f598-8e8f-b1ef-4ac0ec23c73b", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f2e889c0-0e6f-b860-0ca0-b42d0ecc8915", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.57585", + "y": "0.03496", + "z": "-1.63876" + } + ], + "uuid": "b6eee6ec-bac9-3064-6079-0b853c6ed7b9", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.5758493092037753", + "y": "0.03496397882806679", + "z": "-1.6387629073566519" + } + ], + "uuid": "8b236d2b-353f-b514-2012-1af41058e1fe", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "58c4bae3-0ad9-f577-ef80-b8b42267f698", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "27a02ce9-e9bd-e61f-30cb-fb74d4a089e0", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "21a0eb2f-6319-a421-d6ee-c0fef0281335", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "49f8fd6f-602e-7241-648f-09b5c004224b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-22.5", + "y": "67.5", + "z": "0" + } + ], + "uuid": "d9d54721-ca57-1242-cfcd-3cc209159976", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-22.5", + "y": "67.5", + "z": "0" + } + ], + "uuid": "34834fe1-3fd6-917c-1bc5-d2ff6fb4aa05", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6319bb16-e444-cc84-c21f-2e276c1359ed", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1.3912385709912793", + "y": "-1", + "z": "0.20664665970876483" + } + ], + "uuid": "39b83e2b-d42e-5f63-01cb-94a07c2dfc6a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1.3912385709912793", + "y": "-1", + "z": "0.20664665970876483" + } + ], + "uuid": "19bd9868-6e36-f462-cf53-5533c7be30a7", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d7fd4103-3c0e-ba5d-cba5-eca505eec534", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "744b2432-9978-f890-ac4a-21d061b72776", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "5d05fcad-aba5-acf1-5847-7056cee104a9", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c1bb2bf-1d21-cf8d-65e5-ebc8b27b8546", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b724b5fc-7b7f-5926-9084-9a689e7a77b1", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ecd8a56a-25cb-b0a3-a5de-8ce54a808fcc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"04_coin\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "8542f7c0-362a-4199-739c-0b26c5412540", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "9d02dae3-a84d-5b59-240a-f7a294a64e1b", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "e4d54c48-e6f2-d745-ae14-2dd78281b580", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0.5", + "y": "0", + "z": "0" + } + ], + "uuid": "ef900b7a-e102-5de4-4251-e82a6b356e7e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.4999999999999999", + "y": "0", + "z": "0" + } + ], + "uuid": "1a6a598e-7c30-b9d6-3d92-d2e6bd5555c6", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0845fc7b-ef2b-ded6-ff8b-4e5e23c908e3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "3ce30010-7854-b968-24ab-4052b2f705ee", + "name": "taunt_05", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c133651f-8345-d685-57f8-aaaa0987c34c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "5f071e87-ae82-d5a0-b388-9232970c8b23", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7fb52abd-41a1-98aa-5fdd-518468949a46", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fe98ef04-6f8e-a00b-d8b5-0b2e7ec01745", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-4.3663", + "z": "-3.04504" + } + ], + "uuid": "4f257409-ab9c-f92a-ced2-e9e84a5c4565", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-4.366296471811529", + "z": "-3.0450415319180357" + } + ], + "uuid": "676851fb-78c8-5220-231c-30156ffe85d6", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "deca67fb-ee2f-fd69-d9ca-c921bed1321a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "de7b8cee-924d-bdf7-2c0b-a31c85f05f4e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "bce1e587-18a8-35e0-caf4-b7f367239837", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a58509fb-e734-5f57-79d7-86d943705a3f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.60876", + "z": "-0.79335" + } + ], + "uuid": "52973355-f663-d124-d377-c2461a9c967f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.6087614290087205", + "z": "-0.7933533402912352" + } + ], + "uuid": "ed3bdd1b-fb44-c0b4-6667-6a23e538b54f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6295cdf3-bb3e-1926-8e2b-b127e8c59992", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "42.5" + } + ], + "uuid": "d7a8e43c-6ea7-8f82-b1ef-b7486824d74b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "42.5" + } + ], + "uuid": "8c6e6171-790f-d248-1f2c-0c3f02239326", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-6.87500000000011", + "y": "0", + "z": "46.48437" + } + ], + "uuid": "b58bc7c5-4439-fef5-6e34-87a1279b9802", + "time": 0.33333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-6.84909", + "y": "-0.59777", + "z": "41.52015" + } + ], + "uuid": "2f43219e-768a-8541-3dc6-825cb6700021", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "af3805ba-39e5-2ba7-298b-a3544743527d", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d6b8fc6f-045d-e581-2064-d05ab54135cc", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b94ac9a5-0d86-1174-3444-b942bc83fe41", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-37.5", + "z": "0" + } + ], + "uuid": "1428324a-a377-7f6f-c2db-0738440e3c68", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-37.5", + "z": "0" + } + ], + "uuid": "0370c24a-4b71-7bba-2ee9-9fe776de1e08", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f4e4263b-7ab7-e98b-bd69-dd7769c7ca3b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e5de860b-9220-fb34-effa-1298d15e8bda", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f79268a4-22ee-ce50-833a-bda9bda6666e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "dc37c357-03ed-2f68-b8bb-a6872e32f535", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7f42ac6f-96c8-33b1-1049-f0adbec9e0a2", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "edb2d3a8-350d-cc9f-08b0-8ec59b1a779a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.60876", + "z": "-0.79335" + } + ], + "uuid": "760cdd7b-fc66-70b1-06e0-786aa1f13e2c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.6087614290087205", + "z": "-0.7933533402912352" + } + ], + "uuid": "4c0073f7-be28-7c90-d0a5-d046ea1ff959", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ab4390ae-f39a-8003-d14f-9e48899f8306", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "-42.5" + } + ], + "uuid": "e6105ba6-9c48-ff35-eea3-124143071341", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "-42.5" + } + ], + "uuid": "e698f343-d4c3-3b0b-1e06-300702c7e2a8", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-6.875", + "y": "0", + "z": "-46.48437" + } + ], + "uuid": "fc22d178-c198-de8b-615c-8ef6099d0cdf", + "time": 0.33333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-6.84909", + "y": "0.59777", + "z": "-41.52015" + } + ], + "uuid": "92ddd376-ef6f-9dc6-cc43-d6000d3bddd0", + "time": 0.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2980157e-92ab-186c-483b-50bd6aab8d37", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "479f7b70-ff2d-22f0-d681-69f4c6331667", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5197e81c-fe06-fa45-a361-e251d231fd23", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "-57.5", + "z": "0" + } + ], + "uuid": "8790e957-425f-115e-d7ef-cbc728f1f85d", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "-57.5", + "z": "0" + } + ], + "uuid": "fe1fbcc8-ee4a-7481-3447-31e1ce6d5565", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "35bd3225-b9df-713c-d71c-df45eda775cc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.83058", + "y": "-0.17365", + "z": "0.52914" + } + ], + "uuid": "69d797ef-ec3e-2624-309d-97c0e9b84c35", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.8305784346607055", + "y": "-0.17364817766693036", + "z": "0.529136819990375" + } + ], + "uuid": "1ce4870a-209e-8d07-4f72-ee2aa9d1b92a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "923dea88-0975-758a-9d39-a173a907f026", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "6769a3c8-b04c-efc7-620e-1d535ed885e7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "df0327fe-c184-bb8c-c968-7dc87a9ee6fe", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f2e889c0-0e6f-b860-0ca0-b42d0ecc8915", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "57.5", + "z": "0" + } + ], + "uuid": "3a47c590-d939-6272-d2e7-374350f4eea8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "57.5", + "z": "0" + } + ], + "uuid": "23b3f735-2f00-cab4-af89-1dad8297e2f0", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "58c4bae3-0ad9-f577-ef80-b8b42267f698", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.83058", + "y": "-0.17365", + "z": "0.52914" + } + ], + "uuid": "07e4c97b-2b18-025b-ec3a-76b2e9cf5d5c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.8305784346607055", + "y": "-0.17364817766693036", + "z": "0.529136819990375" + } + ], + "uuid": "5aeced99-a547-294d-0060-28cde6e8c4a5", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "49f8fd6f-602e-7241-648f-09b5c004224b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "0ae00ec7-a12d-f0b6-1ccb-679707f36a9b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "effe1b80-4e4b-6683-805c-92b233f4d056", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6319bb16-e444-cc84-c21f-2e276c1359ed", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "574dbf2d-df7f-5d2e-dfa9-dad553f8a7b8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "f144c8cc-4a5f-862d-a6a5-33dffc919241", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d7fd4103-3c0e-ba5d-cba5-eca505eec534", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.5", + "z": "-2.59808" + } + ], + "uuid": "a9be3091-5ffb-41a6-ea0f-95be3d283a92", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.4999999999999998", + "z": "-2.598076211353316" + } + ], + "uuid": "5878b327-b76c-0c59-eb83-05818df3a904", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c1bb2bf-1d21-cf8d-65e5-ebc8b27b8546", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-45", + "y": "0", + "z": "0" + } + ], + "uuid": "8efd112f-ce35-7ddc-30ca-42654dcc90c5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-45", + "y": "0", + "z": "0" + } + ], + "uuid": "0d3ebb1b-019b-528c-6c08-5fed17984af7", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0.3" + } + ], + "uuid": "e8e271d8-4958-a30c-e3d3-1a5e4f4443eb", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0.30000000000000027" + } + ], + "uuid": "ab71160c-88a6-80ef-34d5-924df7127cf7", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a03b7dc1-e5c3-2bad-dca2-29f1e402331d", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "1", + "z": "1.2000000000000002" + } + ], + "uuid": "c2de6f75-3b71-e875-471f-b1e413c5b668", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "1", + "z": "1.2000000000000002" + } + ], + "uuid": "7e490f24-3192-adc9-784a-3f8c199eb0d0", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b2526763-01b6-427b-1b92-de1189fd76f9", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ecd8a56a-25cb-b0a3-a5de-8ce54a808fcc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "7fcf9afc-3bfe-7c49-7dde-bf627c34a8af", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "6efd1b6d-6882-354e-94dc-3a6ac6af4201", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.35626", + "y": "-0.8893", + "z": "-2.02045" + } + ], + "uuid": "c845788f-9ab6-557c-991b-195f9f31be02", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.3562600156573883", + "y": "-0.8893012765514173", + "z": "-2.0204509498544674" + } + ], + "uuid": "356205df-a1d6-a493-ce61-7e2089d80dae", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_fear\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"05_grab\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "046d7559-ed81-9558-321e-e5f318664af2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "bfba185f-3a58-0370-fab0-10dfaa9d6517", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "29ad1997-3485-4883-3685-7c0b86dcd2fd", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "56ce3dec-f6b0-7756-b95b-40fd1ba2c9c8", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0845fc7b-ef2b-ded6-ff8b-4e5e23c908e3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "e6d43835-a542-625c-c4c5-2b4e99902c1e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "ad50111f-3e72-cd94-32a7-141b63681667", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.35626", + "y": "-0.8893", + "z": "-2.02045" + } + ], + "uuid": "e19d6566-99c0-9936-2435-6b1109be4e93", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.3562600156573883", + "y": "-0.8893012765514173", + "z": "-2.0204509498544674" + } + ], + "uuid": "13e5311f-a4a6-3b6d-77d8-b7ba1b4209c6", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "ad6f2d93-7592-0c6c-0b0b-951c2c72ba92", + "name": "taunt_06", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ec18fbf9-aaf5-508c-a8dd-69f013b6bd05", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-45" + } + ], + "uuid": "934e67f3-a643-8afb-bec1-f3a4246fee91", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-45" + } + ], + "uuid": "3071dc66-b597-4a24-7d16-5b2936f8e531", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1b87a533-b4d0-eebc-1efc-9fe1057af7ea", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.9063077870366498", + "y": "-3.251045386486889", + "z": "0" + } + ], + "uuid": "61a55f07-8ef6-7434-a342-3a0bd80b4b38", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.9063077870366498", + "y": "-3.251045386486889", + "z": "0" + } + ], + "uuid": "f3d32844-978c-b2c8-1b20-653206bd02d8", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "97c80102-b79e-90ab-d23a-05c825da05db", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "92.42075240220265", + "y": "78.2545984554713", + "z": "-26.70205794591584" + } + ], + "uuid": "d6ecf6dc-0fe1-82dc-44ed-c323d0009943", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "92.42075240220265", + "y": "78.2545984554713", + "z": "-26.70205794591584" + } + ], + "uuid": "3f345725-f670-1fc5-fda5-b5d0d8e57a1c", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73c0d2bf-0eee-1df6-a16d-276dca8cd1fc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.55039750273341", + "y": "-1.7479518639240812", + "z": "-3.6698382142891255" + } + ], + "uuid": "285dd041-419b-f45b-ec22-2297a40882db", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.55039750273341", + "y": "-1.7479518639240812", + "z": "-3.6698382142891255" + } + ], + "uuid": "788145de-50b7-0677-a85f-d79040dd0661", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2897905c-001c-4aee-2939-93bec37e6e29", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "52b1d1f7-fcac-4bd2-50fa-999a7486e407", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-67.5", + "y": "0", + "z": "0" + } + ], + "uuid": "dcc82062-af29-3a53-126a-b1cf83676d3d", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "33db609d-34fa-0df0-49b2-a1a36b20dff6", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "745e072f-4fcf-e3af-0b3d-24ffbe2dc4b0", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c4a5e2e5-106b-c8d9-6df4-24093fd8a942", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2ee0730f-3e9c-c0e0-a792-e2e2fea0d72e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-137.5", + "z": "0" + } + ], + "uuid": "ce6f711d-3f25-83ba-e582-1f356a87bdb0", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-137.5", + "z": "0" + } + ], + "uuid": "aa4f6f8a-b9df-a8a1-8e61-0eddf21175fb", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6259b0a6-1869-4126-c25f-eb5b2e482bc2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6d47908a-0659-c4c7-2b9d-834c31628845", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "87d5c995-1423-839b-7793-aa8c6a74db90", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b8297c91-6f04-cd07-2d95-dd84a551e19f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-5.9999", + "y": "26.74612", + "z": "-36.22626" + } + ], + "uuid": "95098cac-7854-3965-e1d2-e945d039cf6c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-5.999901378061622", + "y": "26.746116009672278", + "z": "-36.22626192240341" + } + ], + "uuid": "669440ab-2748-336c-080c-3fab847d4860", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c92e0cd-037b-73bf-8d00-ed37303c8a10", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.8755996952517124", + "y": "-4.146263187639438", + "z": "3.8913747875785405" + } + ], + "uuid": "c0444313-2aaf-4077-97c2-dd68fe6f2367", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.8755996952517124", + "y": "-4.146263187639438", + "z": "3.8913747875785405" + } + ], + "uuid": "f17bb6bc-274a-d2e4-fe11-6e270ce1800a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c1385604-8011-b280-e2ed-c61fd473c5ee", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-47.703723333499056", + "y": "25.230977910745423", + "z": "21.197478164293898" + } + ], + "uuid": "7f688028-ac25-456e-c5de-38c1ff42d0f4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-47.703723333499056", + "y": "25.230977910745423", + "z": "21.197478164293898" + } + ], + "uuid": "0cb4b9aa-238a-b25c-4003-cf255c9d0082", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7fe1966-347d-b492-e086-d70e25322102", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1.074599216693647", + "y": "-1.0268483635335866", + "z": "-1.338214841417399" + } + ], + "uuid": "e2a0a7be-5aeb-fc73-7aa1-cc6f392b71ab", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1.074599216693647", + "y": "-1.0268483635335866", + "z": "-1.338214841417399" + } + ], + "uuid": "3d53d454-ee70-8bb1-21ca-cb46340b796a", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8382de98-2b7e-ec42-461a-6913ade62eba", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-31.329834089688575", + "y": "87.25982814300642", + "z": "64.88382775687023" + } + ], + "uuid": "0c8a311d-a782-0c53-28e3-987af47ae8a5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-31.329834089688575", + "y": "87.25982814300642", + "z": "64.88382775687023" + } + ], + "uuid": "b193adba-7533-6394-c91c-e8e8b24f6164", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "33462968-2cb9-a24a-abdc-afa71f09228c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ea587e0b-af4a-2ff8-da47-18ef26a68ba4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0999aac7-7c65-8b9b-2819-12714dc7f28f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b3d4cd72-b84f-96f5-12b2-405485abdb17", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "47.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a5e48a18-7285-4f69-e02c-a87b5eb0d6cd", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "47.5", + "y": "0", + "z": "0" + } + ], + "uuid": "885c1591-14bc-53f5-1a98-57f4e583465a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6064caf3-14e2-bb0e-868f-acdb70de1955", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25.81373192803585", + "y": "65.57867803922", + "z": "-37.05786528372573" + } + ], + "uuid": "10c2525a-63dd-3bde-8770-71da24029ce2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25.81373192803585", + "y": "65.57867803922", + "z": "-37.05786528372573" + } + ], + "uuid": "70a357e8-3f58-d1ad-105f-deee2ee80564", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e4fd6d55-9de3-cd4b-29a1-e696c5ccffe4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9199ff8f-2139-cf28-06c3-86179c71a5f5", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fa6486dd-2f9d-bd6d-9e5b-308460165ceb", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ecaa4225-8bd9-8f1e-4218-2bbcf27d9729", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "72.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a7fdc75e-a85e-ac5d-016a-3ae9f111b37b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "72.5", + "y": "0", + "z": "0" + } + ], + "uuid": "20fc982a-c594-eddf-4c94-6a1a258122ed", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c81f1fd-6144-cded-f0b3-cdd141721b4e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "32.5", + "y": "55", + "z": "0" + } + ], + "uuid": "8e71da76-ecd8-faeb-4211-d10849af4cc8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "32.5", + "y": "55", + "z": "0" + } + ], + "uuid": "aaf58252-2bfd-6060-cdef-5e50f4b275b6", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a641ffb4-91ea-9394-66cd-84a782d7786b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.5014715088009969", + "y": "-2.7613821083194194", + "z": "-0.3511341306598551" + } + ], + "uuid": "feb897aa-9050-9ae9-0230-c6706d39950a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.5014715088009969", + "y": "-2.7613821083194194", + "z": "-0.3511341306598551" + } + ], + "uuid": "c3e7d757-29a6-b577-bf23-df35c42e751f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f8c747a8-f43c-6194-bfef-4ed613b97380", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "0.9", + "z": "1" + } + ], + "uuid": "42deadbd-2da0-b871-7152-901bff522293", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "0.9", + "z": "1" + } + ], + "uuid": "e0849e04-d87f-9556-ae5a-1ed77fd5d760", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4fc65f28-83bc-ded9-e796-ddcb4723e757", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-72.5", + "y": "0", + "z": "0" + } + ], + "uuid": "e4b5a728-c996-5475-93b0-987c04b929c7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-72.5", + "y": "0", + "z": "0" + } + ], + "uuid": "d523aac4-728c-a315-d3ab-f4aa36471364", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a0b6f7a9-1a1e-6068-6dee-277845b42554", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "39a5aa9d-09ca-411b-95f8-6f8fde35d2be", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "a029eeab-d9fc-a24f-82bc-97313e5482d0", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1.2000000000000002" + } + ], + "uuid": "6c058406-a82e-d483-ce1d-3f824d56e97a", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1.2000000000000002" + } + ], + "uuid": "bb7c2a12-776f-38c1-5777-52befa0a443b", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9835a4a0-d116-c2e3-0bd7-0ec2f991971b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "0" + } + ], + "uuid": "a92a3296-dc0d-0c61-da9e-2b2fdbc7769a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "0" + } + ], + "uuid": "2f825337-fae4-ed39-307e-d9371eb3f37f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "987befe9-00b9-a7cc-e987-b01852b33de9", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.15737869562426265", + "y": "0.42261826174069944", + "z": "-0.89253893528903" + } + ], + "uuid": "0a41c75f-1a5d-3e47-0e7e-ced5dc438c8d", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.15737869562426265", + "y": "0.42261826174069944", + "z": "-0.89253893528903" + } + ], + "uuid": "ef41f59f-ceb9-f20d-9f75-b914efb83c34", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"06_bookspin\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "d226ac99-9c40-96a3-cfe8-78327feef74c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "57a8024a-6e58-35fb-b976-e34847e65636", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "47febe45-2e8f-c430-5ffd-efc3665ace13", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66b88688-8e4d-7b13-0ca3-df91d690716a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c6b32aa4-4ea7-5431-9be0-816bcebd4ef1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dfc372ff-cbdf-0292-27a6-8214d12e2886", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1bd1bbe3-6c84-2cdb-2758-b18107bde80b", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e1531181-c477-0636-e9e1-212ac3bdf790", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "56039745-30d8-12b1-1428-558a4d02f7cd", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "30131b5a-2d21-75ad-a3af-067474cf3599", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "38fd6f3a-7050-2ad3-d2e2-e8c4bd30712e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "87391f1e-29fa-56d5-3a23-3a3c574a0cbb", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "ec2caf93-9e6a-15ff-fffb-987386daeaef", + "name": "taunt_07", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ec18fbf9-aaf5-508c-a8dd-69f013b6bd05", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "24.73157", + "y": "29.24226", + "z": "-12.56901" + } + ], + "uuid": "66624447-9ee2-97f0-a6b7-bf36addc1ef8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "24.73156993209568", + "y": "29.242257042411893", + "z": "-12.569010189898108" + } + ], + "uuid": "a2381439-ab87-2d4a-2384-2afb5b962c30", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1b87a533-b4d0-eebc-1efc-9fe1057af7ea", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.42129", + "y": "-2.58786", + "z": "-2.31851" + } + ], + "uuid": "acf299c4-fccb-d2cf-f8b8-8071d4265deb", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.42128720261281466", + "y": "-2.5878600003099947", + "z": "-2.3185119606571414" + } + ], + "uuid": "ce94c25f-873b-8728-7a1c-2e66914ec52d", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "97c80102-b79e-90ab-d23a-05c825da05db", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-43.5811", + "y": "-2.02261", + "z": "26.26467" + } + ], + "uuid": "adaaa93c-93a0-5e8a-9dec-3e2a3cbd07fd", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-43.58110022812889", + "y": "-2.0226135468883513", + "z": "26.264667945072688" + } + ], + "uuid": "c71d82ca-4e30-bca4-fdf0-86c598d5e083", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73c0d2bf-0eee-1df6-a16d-276dca8cd1fc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1.19494", + "y": "-0.21814", + "z": "-0.72425" + } + ], + "uuid": "020d9f09-4604-b177-988e-1cbc7a14ce34", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1.194941698836523", + "y": "-0.21813625824086447", + "z": "-0.7242450615795452" + } + ], + "uuid": "fb824f61-6127-fb5c-b985-ea97b1221a73", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2897905c-001c-4aee-2939-93bec37e6e29", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-8.03415", + "y": "-2.33179", + "z": "76.22888" + } + ], + "uuid": "3b3f2a71-a58b-8ab6-76ca-606b6fe30248", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-8.034150465810548", + "y": "-2.331788034927507", + "z": "76.22887637178242" + } + ], + "uuid": "502b87d9-cce8-ade3-641e-e618e5ebbaca", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "33db609d-34fa-0df0-49b2-a1a36b20dff6", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84d0ce30-a7f2-9f6e-aa52-5d7d37a6beae", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2ee0730f-3e9c-c0e0-a792-e2e2fea0d72e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "-50" + } + ], + "uuid": "4f70cb47-8d34-e8e5-bd26-51d41927139e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "-50" + } + ], + "uuid": "71c6e597-3585-c9c2-3d72-59eb93a47707", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6259b0a6-1869-4126-c25f-eb5b2e482bc2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "fb8fabec-b830-3f22-11af-eabcaf7435b6", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "0" + } + ], + "uuid": "191877b6-a113-3b6c-023a-d90b14d9ec1c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b8297c91-6f04-cd07-2d95-dd84a551e19f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.18944", + "y": "20.25437", + "z": "-14.97401" + } + ], + "uuid": "fc0bef5b-122e-b7ee-01c1-bb3eba258292", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.189442401430824", + "y": "20.254370018410555", + "z": "-14.974010652715606" + } + ], + "uuid": "bab8e9d5-8bac-4a34-40ec-e2928930a58f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c92e0cd-037b-73bf-8d00-ed37303c8a10", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dc3fc571-072d-0c37-0e2a-5bdc568b7440", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c1385604-8011-b280-e2ed-c61fd473c5ee", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-82.5" + } + ], + "uuid": "d4d9ffcb-e762-1f55-e41d-030b46481636", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-82.5" + } + ], + "uuid": "6706caa3-f0e5-5a25-fd78-12b9a80cf2ca", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7fe1966-347d-b492-e086-d70e25322102", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fac44d1a-102e-f1a8-dd13-2429074625d5", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8382de98-2b7e-ec42-461a-6913ade62eba", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-107.79024", + "y": "-31.96184", + "z": "23.81841" + } + ], + "uuid": "13c853a3-05be-4435-9c24-3c789eacc86f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-107.79023814347875", + "y": "-31.961838472937416", + "z": "23.818407330724767" + } + ], + "uuid": "60fcfca3-eab7-4129-83cd-d05c32d9010c", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "33462968-2cb9-a24a-abdc-afa71f09228c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "89d7b31e-f52a-0ab4-998f-4ad5ad377c60", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b3d4cd72-b84f-96f5-12b2-405485abdb17", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "120", + "y": "0", + "z": "0" + } + ], + "uuid": "c4ac6e25-3cdc-b89f-442f-5d63e8886048", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "120", + "y": "0", + "z": "0" + } + ], + "uuid": "decf2f6b-a785-1d36-f314-dbc2288abd21", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c8e78545-2aae-288a-6b0a-dcc0d23aa9c1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0e48ef73-7a10-ad35-6cb7-e6f460ca1dd7", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6064caf3-14e2-bb0e-868f-acdb70de1955", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-7.5" + } + ], + "uuid": "01409e87-5135-75a1-7c31-f5062dbf4bd6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-7.5" + } + ], + "uuid": "ef30f010-bc86-b322-ea34-ecb5ed476f2b", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e4fd6d55-9de3-cd4b-29a1-e696c5ccffe4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.95372", + "y": "-0.30071", + "z": "0" + } + ], + "uuid": "df0017ec-5ca0-432c-7dc5-e2477480b5ad", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.9537169507482268", + "y": "-0.30070579950427306", + "z": "0" + } + ], + "uuid": "ba5222cc-7a6f-25bf-a805-2c971d35acf6", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ecaa4225-8bd9-8f1e-4218-2bbcf27d9729", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ef495fc7-2d4b-966d-14be-89f31c257833", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "94b84d4e-24eb-1a23-4525-6e22a9d57d09", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c81f1fd-6144-cded-f0b3-cdd141721b4e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "40", + "y": "0", + "z": "0" + } + ], + "uuid": "1c35e06b-cc9f-3b18-217b-65b1cc650983", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "40", + "y": "0", + "z": "0" + } + ], + "uuid": "992a85ba-d6ad-761f-eb9f-f265ce0836b1", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a641ffb4-91ea-9394-66cd-84a782d7786b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.16232", + "z": "-2.94092" + } + ], + "uuid": "7a8c1108-c41b-b562-da98-394f52ef68f2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.16231838594064", + "z": "-2.940920939043474" + } + ], + "uuid": "a8295186-431f-597b-ffd0-4545be7cb7aa", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f8c747a8-f43c-6194-bfef-4ed613b97380", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "6a937d65-11c9-7e7e-01bb-e91cf3959cad", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4fc65f28-83bc-ded9-e796-ddcb4723e757", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-105", + "y": "0", + "z": "0" + } + ], + "uuid": "a11a9740-cd3d-8854-5219-0037786591dd", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-105", + "y": "0", + "z": "0" + } + ], + "uuid": "54759e61-d028-5362-cc04-7f296c098033", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.41662", + "z": "-1.24709" + } + ], + "uuid": "0a98a2a7-e09a-6974-d015-d50e257cd260", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.4166193600193162", + "z": "-1.247090270839863" + } + ], + "uuid": "92f915d2-3738-2fa6-472a-732b51b111e3", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "a029eeab-d9fc-a24f-82bc-97313e5482d0", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f55fd3b4-8f4f-00f6-e833-47f9311a3c79", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "9d0fae41-b1ac-d295-1b97-70a84f7a1f98", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9835a4a0-d116-c2e3-0bd7-0ec2f991971b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bc7bb7d5-b346-93b0-9adf-6904f097c9b5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "987befe9-00b9-a7cc-e987-b01852b33de9", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "da925ed9-821d-183e-6e0c-41eb27c29302", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_fear\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"07_magnifyclose\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "d226ac99-9c40-96a3-cfe8-78327feef74c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "0251ce0a-791f-a850-9933-d096a8bf3909", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "51b50cdb-301c-2183-2dd3-39c835e55bb8", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66b88688-8e4d-7b13-0ca3-df91d690716a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0fe7cbd8-8ac5-aa60-2ca2-e9b7b1499276", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1bd1bbe3-6c84-2cdb-2758-b18107bde80b", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6cb18883-16ee-779f-7006-ea2b9a83e9c2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "30131b5a-2d21-75ad-a3af-067474cf3599", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9a68304a-0e06-1aba-ce12-2469c0560c9d", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "e9f03085-f4ee-b062-948c-d30d7c44ba51", + "name": "taunt_08", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ec18fbf9-aaf5-508c-a8dd-69f013b6bd05", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "82.5", + "y": "0", + "z": "0" + } + ], + "uuid": "5ce694bb-305e-a9c6-ec27-9fd32b12c461", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "82.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7d820818-5936-ef06-2b24-63c68d61fa41", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1b87a533-b4d0-eebc-1efc-9fe1057af7ea", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-5" + } + ], + "uuid": "c6331e3b-d58c-02e7-f60a-8908f9fc61d5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-5" + } + ], + "uuid": "d1df0a9b-ad40-3d31-d8c9-7971bd8c3274", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "97c80102-b79e-90ab-d23a-05c825da05db", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "16.73957752738761", + "y": "-58.52505111081473", + "z": "-104.425400140683" + } + ], + "uuid": "7628d063-3f8f-d3df-f86b-42c985bd54db", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "16.73957752738761", + "y": "-58.52505111081473", + "z": "-104.425400140683" + } + ], + "uuid": "b79b9027-0a60-7e11-9dd8-086853daa947", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73c0d2bf-0eee-1df6-a16d-276dca8cd1fc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-4" + } + ], + "uuid": "1e3bffe6-3c98-6bcd-3f91-8639176864d6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-4" + } + ], + "uuid": "a10ddfa5-d8b7-0501-0d76-4f82a411fe4f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2897905c-001c-4aee-2939-93bec37e6e29", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-22.5", + "z": "0" + } + ], + "uuid": "4fe71507-63a2-7d24-177c-78f41e88d36b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-22.5", + "z": "0" + } + ], + "uuid": "b08ab2ef-1962-605b-c8ce-a48ac77eff88", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "33db609d-34fa-0df0-49b2-a1a36b20dff6", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84d0ce30-a7f2-9f6e-aa52-5d7d37a6beae", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2ee0730f-3e9c-c0e0-a792-e2e2fea0d72e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-30", + "z": "0" + } + ], + "uuid": "6114b1c4-09df-f456-fbb0-9e91d30af755", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-30", + "z": "0" + } + ], + "uuid": "6b8ba97d-d254-8dc6-ffd1-a9fcfaff5422", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6259b0a6-1869-4126-c25f-eb5b2e482bc2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3d47b6fb-347b-b218-4ca8-0097ef279fbd", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b8297c91-6f04-cd07-2d95-dd84a551e19f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "596e952f-c693-0c5d-359a-2406e819b0f4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c810292f-cbd3-a5f8-e407-0734cfa9cb6b", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c92e0cd-037b-73bf-8d00-ed37303c8a10", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-4" + } + ], + "uuid": "d3f447bb-1210-5ee4-c1d7-15e19fff12a7", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-4" + } + ], + "uuid": "344883fc-52e7-af09-565d-0b5e901f8188", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c1385604-8011-b280-e2ed-c61fd473c5ee", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-102.5" + } + ], + "uuid": "4d8874ed-316a-d870-d6e3-5f96dd23741c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-102.5" + } + ], + "uuid": "00a8a0e8-5272-247f-5da9-55930828cdad", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7fe1966-347d-b492-e086-d70e25322102", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "-1", + "z": "0" + } + ], + "uuid": "31b79165-fc1f-11db-90cf-16c57a3a6f3f", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "-1", + "z": "0" + } + ], + "uuid": "c9aa1ff1-2395-3f5d-f7bc-940fa5d05eb2", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8382de98-2b7e-ec42-461a-6913ade62eba", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.46207", + "y": "-0.43399", + "z": "-9.99067" + } + ], + "uuid": "8b94f974-0386-b093-2c8b-8afbb141e6e8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.4620664797216705", + "y": "-0.4339868564493372", + "z": "-9.990674059621597" + } + ], + "uuid": "a9504162-d2df-e1f6-d2ad-95cb77ee9ef0", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "33462968-2cb9-a24a-abdc-afa71f09228c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "89d7b31e-f52a-0ab4-998f-4ad5ad377c60", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b3d4cd72-b84f-96f5-12b2-405485abdb17", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "43.3833", + "y": "21.63168", + "z": "-21.30838" + } + ], + "uuid": "79379fc4-010f-1168-3720-619388a32577", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "43.38329582234837", + "y": "21.631684913565095", + "z": "-21.308378976236327" + } + ], + "uuid": "b33d9d28-6371-8124-8cec-07365d31baaf", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8866ea2c-861c-7bce-18c7-a509101d4337", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6064caf3-14e2-bb0e-868f-acdb70de1955", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.89341", + "y": "14.2906", + "z": "18.07779" + } + ], + "uuid": "dfef10e7-a8e6-6f46-e09f-c5287d815783", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.893408651529171", + "y": "14.290604655088828", + "z": "18.077786856120838" + } + ], + "uuid": "f8998019-b2fb-25cc-3f80-20b09d941378", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e4fd6d55-9de3-cd4b-29a1-e696c5ccffe4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "355d3621-36a3-37bf-0c3b-304b421449bc", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ecaa4225-8bd9-8f1e-4218-2bbcf27d9729", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.47178", + "y": "0.65182", + "z": "-14.95744" + } + ], + "uuid": "15291a19-e79b-192d-aa1f-98eef75a1399", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.4717833073355", + "y": "0.6518169913756537", + "z": "-14.957438388617902" + } + ], + "uuid": "e67b8a7f-3110-9bc1-74fa-1fa5a61f908e", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "ff4a4fbb-3b5c-0cc2-f360-536834c0b995", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "1ee2c1b2-9618-e855-4b3c-3cd448558076", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c81f1fd-6144-cded-f0b3-cdd141721b4e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "a09ae656-ea62-863c-d79d-e540ffc7c2cc", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "30", + "y": "0", + "z": "0" + } + ], + "uuid": "3595c819-353b-633f-cd60-4ee0ab95ff30", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a641ffb4-91ea-9394-66cd-84a782d7786b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-5" + } + ], + "uuid": "2d146899-9480-0c6f-8a44-42f61d660558", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-5" + } + ], + "uuid": "65b91499-ed91-47e3-faa7-57c2803ae01b", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f8c747a8-f43c-6194-bfef-4ed613b97380", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "6a937d65-11c9-7e7e-01bb-e91cf3959cad", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4fc65f28-83bc-ded9-e796-ddcb4723e757", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "0" + } + ], + "uuid": "1fda9388-dd28-5804-a7f3-bb1629de2217", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "0" + } + ], + "uuid": "40e6179a-55a1-05c0-0b40-bd63b43b1f82", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "993ab6be-41c8-5434-6a79-d9b853b4907c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "a029eeab-d9fc-a24f-82bc-97313e5482d0", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b5cd954c-c6a5-1653-f38d-6c151a37e550", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9835a4a0-d116-c2e3-0bd7-0ec2f991971b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bc7bb7d5-b346-93b0-9adf-6904f097c9b5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "987befe9-00b9-a7cc-e987-b01852b33de9", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "da925ed9-821d-183e-6e0c-41eb27c29302", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"08_menudecision\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "fba26c63-6cf1-46af-eaf4-a86c3d805575", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "9cbc023e-59ad-51c0-4bbf-177727cbe9d0", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "2031ceba-7404-69fc-2c99-882c72549e19", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66b88688-8e4d-7b13-0ca3-df91d690716a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0fe7cbd8-8ac5-aa60-2ca2-e9b7b1499276", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1bd1bbe3-6c84-2cdb-2758-b18107bde80b", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6cb18883-16ee-779f-7006-ea2b9a83e9c2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "30131b5a-2d21-75ad-a3af-067474cf3599", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9a68304a-0e06-1aba-ce12-2469c0560c9d", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "c4396fec-a3d9-5b40-c24c-838e23ab2db4", + "name": "taunt_09", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "45" + } + ], + "uuid": "d4f89ecf-3bcd-bc3e-b769-ce78976fcbff", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "45" + } + ], + "uuid": "b91da01f-a11e-26ef-880f-8b4740bac840", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bab6a6db-87e3-e13b-c3e8-70ec65acc9e3", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "3", + "y": "-1", + "z": "-0.30000000000000004" + } + ], + "uuid": "9fa8e855-2b2b-f097-6be0-d1c0bef46010", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "3", + "y": "-1", + "z": "-0.30000000000000004" + } + ], + "uuid": "e4ef9c27-19a5-bffb-f9f7-43b5dc06be00", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "44fcb25a-921e-d13c-abcf-5f2a9b824c6f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.880447015797927", + "y": "9.961558098090336", + "z": "-5.076733016569506" + } + ], + "uuid": "61f1528d-407d-11da-436e-77a0068604a8", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10.880447015797927", + "y": "9.961558098090336", + "z": "-5.076733016569506" + } + ], + "uuid": "be8fc9a3-bfb3-e4ff-bb6c-b9d35d888b9b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0e43ba8f-5f26-b1ab-888b-5a70bb9a85dd", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "c0d0f289-878b-c532-aed8-57f4f7b18792", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "4275f489-5352-f8bd-6c33-92d14a2b9996", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "661fbf1e-89d9-f316-df35-1149b0c8680e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.3000000000000003", + "z": "1" + } + ], + "uuid": "5e44700a-8183-0ec5-3bcc-d4c1c54f356e", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.3000000000000003", + "z": "1" + } + ], + "uuid": "36e3e945-a60b-d37b-11c6-06bebe7a923a", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "2d90ba58-8f07-21fb-a25c-4e4b57a396b9", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "15" + } + ], + "uuid": "ada124d7-0ca4-b740-ee4c-9a894ee9f15b", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "15" + } + ], + "uuid": "f8cec802-1dc2-1455-76e8-b750af0e9c83", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c7c0f613-623b-b621-3ae3-9641a3450bf1", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1.068216004938062", + "y": "-0.910363046914318", + "z": "-0.17364817766692967" + } + ], + "uuid": "196509a0-f0f6-5177-94a9-220c2b83e226", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1.068216004938062", + "y": "-0.910363046914318", + "z": "-0.17364817766692967" + } + ], + "uuid": "5e9c1f19-45dc-d93e-d8da-11dec38cb838", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d450e099-fc2d-f389-8f30-c5bf575db5c5", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "0.7000000000000001", + "z": "1" + } + ], + "uuid": "e7021ad8-1f29-927c-8c13-85e297ce6c8e", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "0.7000000000000001", + "z": "1" + } + ], + "uuid": "5f3f1264-6fe9-2903-b8cd-e4acfd48a97b", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "bdfa0ce0-5bd9-f900-41b2-f6db9563ce8d", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2ee0730f-3e9c-c0e0-a792-e2e2fea0d72e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-30", + "z": "0" + } + ], + "uuid": "6114b1c4-09df-f456-fbb0-9e91d30af755", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-30", + "z": "0" + } + ], + "uuid": "6b8ba97d-d254-8dc6-ffd1-a9fcfaff5422", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6259b0a6-1869-4126-c25f-eb5b2e482bc2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3d47b6fb-347b-b218-4ca8-0097ef279fbd", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "95" + } + ], + "uuid": "527659a4-6204-ad75-9999-2e1718cff02a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "95" + } + ], + "uuid": "a2f30d4f-72d8-c553-a4a0-87989cf7b188", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bdda1c4c-fde8-f67e-dfbf-a36c83599a37", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "4", + "y": "2", + "z": "-1" + } + ], + "uuid": "028871c3-26a7-ecc0-4416-1011343c9513", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "4", + "y": "2", + "z": "-1" + } + ], + "uuid": "52f30450-8f4b-ce07-7be1-49af9ffe4b72", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8b746961-d7fd-2fd9-66f0-46cb202a698e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-15" + } + ], + "uuid": "7cc68821-6f9c-c87b-2759-3755f3481336", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-15" + } + ], + "uuid": "9b72d2fb-9a8a-3fa5-a638-570dc646677f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e2336a75-44a1-77db-8303-a9548d42ed9c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "952f9648-d784-36cf-e5e5-fabb1215e109", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "13417853-e063-e6d0-5cf0-e348dbc068c0", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dcb4678d-2e7e-71b3-adfa-257a4391c969", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-47.5", + "y": "-70", + "z": "0" + } + ], + "uuid": "974b63d4-5316-d383-396b-02bbd9080de0", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-47.5", + "y": "-70", + "z": "0" + } + ], + "uuid": "3e19deb6-985d-0a94-6cca-91fc5fd5d63d", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ed491dd2-0ddc-7224-6d37-4917cc1f9977", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "0", + "z": "0" + } + ], + "uuid": "c3f28917-e1cc-08bb-2dd5-c59a1b4df687", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "0", + "z": "0" + } + ], + "uuid": "a22909c3-0495-812f-4701-c86fe0269008", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "07b8b8df-78f0-ee26-99be-91e024dd2527", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "60", + "y": "0", + "z": "0" + } + ], + "uuid": "a35faeed-2354-d7d8-89e8-d8dd96a52c2d", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "60", + "y": "0", + "z": "0" + } + ], + "uuid": "f9e8dc62-255f-4025-2757-b5dccbc1934f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "82b036ff-97b9-ef9e-e151-296bf40adbf0", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "87235d4d-0908-733e-ebe9-ed636967d323", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f98a83bc-708f-427b-e132-a20f1bb48867", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f3e16a94-7ad0-26a3-2e84-5a4f0febc090", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-32.5", + "y": "-87.50000000000136", + "z": "0" + } + ], + "uuid": "cabf64b5-b8bd-f304-2055-119faef345b6", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-32.5", + "y": "-87.50000000000136", + "z": "0" + } + ], + "uuid": "ee41db3c-46fe-bb8c-d31a-73d08a965cc8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "29bc02c9-8bcd-2561-fa71-4cdc91d3301d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "1" + } + ], + "uuid": "48e9e824-83c6-9860-fb71-5395140df674", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "1" + } + ], + "uuid": "1df2b0af-9d2e-62f9-8929-b5726d031aca", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bd27f2ff-2bcd-311f-27f7-ba70e4dcf09d", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "95", + "y": "0", + "z": "0" + } + ], + "uuid": "20a6ddc2-df50-8a24-332a-96943422aa7d", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "95", + "y": "0", + "z": "0" + } + ], + "uuid": "20fd2c85-547d-e5cd-2de4-1077eee5a8dc", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c075f4d9-2a30-cd77-5327-766b378907f3", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.9396926207859086", + "z": "0.3420201433256687" + } + ], + "uuid": "a183cc8d-e9f9-ef83-6272-2e29c19e93c8", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.9396926207859086", + "z": "0.3420201433256687" + } + ], + "uuid": "3e7591b1-2617-fd52-d690-185b983b95ca", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "29cc5049-c771-5942-4e4d-66131ad8e74a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "15.287219665766315", + "y": "-33.64240951068314", + "z": "10.131585896556317" + } + ], + "uuid": "0957ba5c-566c-2186-c45e-dd7f94117b00", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15.287219665766315", + "y": "-33.64240951068314", + "z": "10.131585896556317" + } + ], + "uuid": "38cd3d8d-98b9-0808-0434-b4270c03c1ac", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "133bc9e7-9548-4d9c-5f09-af901ecc86fb", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "3", + "y": "0", + "z": "-1" + } + ], + "uuid": "19644b2d-e643-e5b8-1106-9f02dfa9c522", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "3", + "y": "0", + "z": "-1" + } + ], + "uuid": "5e344e7b-5110-2b2c-d70d-5d03e958bdb1", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "da6f028d-4b13-5259-49a8-7b56781ab61c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "6843f76a-1992-5f3b-38f8-b4c67c00c7fc", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "c9e2c673-52ca-89af-4060-d4bb689b3f91", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "0f52767e-e34e-bfb1-05fc-6e17a577dd45", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-30", + "y": "0", + "z": "0" + } + ], + "uuid": "a44173be-a261-8df0-1011-e21cfbf139f7", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-30", + "y": "0", + "z": "0" + } + ], + "uuid": "ec1d0f96-0b7e-8af5-24db-d042edad1916", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a7e6a2fc-c19a-4fe1-d327-26f46f228470", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "db4d4739-4ec1-70b4-f892-615dc4860363", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9f30e619-881a-161f-0914-d8ae35b6b144", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a5f78ab7-02ed-bba4-f43d-84c6adcdcd6a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "344e292f-408f-7a2c-1b9c-141af8160737", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "710dcd72-3875-324f-4ace-77d91d621425", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "4fde1142-2f6b-cfaa-5ef5-94f328861622", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "0b92e786-1a89-0d66-598e-a467c7aee52a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "77365f50-1ef2-9225-e826-e3ef9bf74462", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ad4935d9-5131-21de-3797-e0ba2935e730", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "dd95b2b6-e7bb-bf7c-e12c-b07b90f7222a", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "925ac5bb-5736-99e6-cd50-8f32bac6d586", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bf10f00f-5363-3358-c329-881aaba2589e", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"01_whiphard\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "1c644343-ae80-a7f3-7b77-39bba97863d9", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "4b698b7a-d1a7-5739-6584-3b5b6b096632", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "756d7905-2682-6857-40cf-f46d35b18e8a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "-0.5", + "y": "0", + "z": "0" + } + ], + "uuid": "0f1d638f-c7be-e933-4b54-263904cfad99", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.5", + "y": "0", + "z": "0" + } + ], + "uuid": "db613322-6a5c-b119-b17a-ac46591d029e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f9de4c88-f547-3f32-84a5-621aaed48653", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "03b751d2-67a3-de42-e4bb-14680b3f1c0e", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e46c0ce2-956a-9493-9da3-2e443fe2ac22", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ecb0661c-3a3d-cb65-c0df-0673bbac27e7", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "cc35afdc-8445-a920-e90a-1c843868dc4c", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "6a808952-3371-6248-593b-d3d697a33cb1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "93fd1e62-51f3-0171-2529-efaf53c30adb", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "6f6140aa-785f-c26c-beea-c8cdf2c2b91f", + "name": "taunt_10", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-30.36119", + "y": "40.78947", + "z": "-20.94102" + } + ], + "uuid": "942a2230-3711-f4cd-7618-d5752d5c3604", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "41bec06d-9680-80fe-b1f9-ec75603abe77", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-30.36119340482128", + "y": "40.78947094092564", + "z": "-20.941020472243054" + } + ], + "uuid": "cf4e99c4-f9bc-7c3d-ab91-36de55fdaf4f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.62359", + "z": "3.91969" + } + ], + "uuid": "3918dbeb-3d8e-ebe4-2cf3-8b757434e1d3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "80c2b44c-2713-8a91-b71e-741bd6b0741c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.6236", + "z": "3.9197" + } + ], + "uuid": "9b93838f-0215-fc58-9130-b5e50038ef77", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-212.12362", + "y": "-44.221", + "z": "130.98797" + } + ], + "uuid": "03faac9a-0543-974f-953e-a88a39cc4185", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ea280803-08b4-bac8-4b68-bdece334f0da", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-212.12361811589108", + "y": "-44.220998921801765", + "z": "130.98797101662421" + } + ], + "uuid": "5f1431f1-a364-46e0-9def-a94b4c57cf44", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.61416", + "y": "-2.68202", + "z": "3.52556" + } + ], + "uuid": "1a423e5f-c492-b4ce-44e5-e7de3a36f8af", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8ccf6d19-9d80-4000-28a4-b70d5c7b209b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.6141573275002972", + "y": "-2.6820230589023533", + "z": "3.5255585498745807" + } + ], + "uuid": "46036843-90bb-db3a-6a8b-994fcdad7d5f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-10", + "y": "0", + "z": "125" + } + ], + "uuid": "794b8721-f540-516d-f907-9bc74ccc3eef", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca86a6f6-6558-5484-b677-e9f0ef277a06", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10", + "y": "0", + "z": "125" + } + ], + "uuid": "e7db2588-d3be-a05b-8011-430c65d45919", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84d0ce30-a7f2-9f6e-aa52-5d7d37a6beae", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0a27ccde-7ee7-2c9a-b83d-0a20a988eb94", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9cc4f6aa-ebd5-2a89-39e2-e33dc6ac08a0", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73fcdb54-8786-6049-421d-f68b080ec275", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8fe5eb94-0dcb-11ca-81a3-746a37db9c8a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "64c52ea0-40b7-d679-7fec-0d3837f7a43d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3d47b6fb-347b-b218-4ca8-0097ef279fbd", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "45db5aa3-ea0e-80ec-b93e-4a8229d375bc", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "79b36ad7-0116-731b-8327-804057f339ed", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-120.89216", + "y": "32.29068", + "z": "9.27906" + } + ], + "uuid": "95ecf5b9-0a04-b6e4-c64f-0e20922b0730", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ad1cc7a2-fd04-fa9a-659a-33323707625d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-120.89215950355856", + "y": "32.290678097244836", + "z": "9.279057565341645" + } + ], + "uuid": "8f3a05ca-968d-7d5c-b5b0-c691d0893c97", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dc3fc571-072d-0c37-0e2a-5bdc568b7440", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7aa1d257-3ec1-487e-2c9b-8c4bc89d0da4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1ac26d7f-bb51-c0da-3f25-a321e81ef050", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0b26c13a-bba3-bb52-e932-5e39af892d59", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "12aa8f1b-de7b-d057-bc45-3a121783bbce", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "372a699a-b3be-cab6-ff78-cc6169dc154c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fac44d1a-102e-f1a8-dd13-2429074625d5", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "48d23818-a08d-1837-89e5-16103f9183c2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6913dc75-8503-ef31-8974-0ce1c29d871e", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-88.54702", + "y": "27.39522", + "z": "-13.50909" + } + ], + "uuid": "4bbd04ec-9925-5a2c-b923-5158d86544ed", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3e4685c-93e1-245f-6857-ead77aa319e9", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-88.54701779646666", + "y": "27.395215597256538", + "z": "-13.509091040289604" + } + ], + "uuid": "e575f48f-01a4-0b96-cc4f-e02e21ad6f30", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "89d7b31e-f52a-0ab4-998f-4ad5ad377c60", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f624f767-b5f9-501d-9a9f-e7d2f317a9ff", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e5417df9-329a-3d11-367b-53bc1b1cb4ac", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7ff45b74-99d4-3ead-c810-c0e4b8254566", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66877b8c-2a8a-f600-74d2-55332245b2f4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "12.5", + "y": "0", + "z": "0" + } + ], + "uuid": "70660f51-d1df-47e5-470f-adbe6c78dd6e", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2.90312", + "z": "0.55522" + } + ], + "uuid": "c7381c02-6c93-bd8f-fe8e-8d57dc531f78", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2075332d-31eb-d8ca-20ad-32e9cce035a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2.903120076873177", + "z": "0.5552242233796888" + } + ], + "uuid": "5ea71ea3-aaae-4132-8924-65037d0e73d0", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "47.37353", + "y": "23.33702", + "z": "23.28697" + } + ], + "uuid": "b1a5547f-604b-4d45-fa3b-45c5025f35f1", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "99c6da90-e985-6780-b081-6359f8f60a68", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "47.37352617775423", + "y": "23.337018562383037", + "z": "23.286968075155073" + } + ], + "uuid": "d52e9279-605d-cdd5-8c84-62581a77e63d", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "355d3621-36a3-37bf-0c3b-304b421449bc", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5f511d99-da81-a68d-e286-c1f9f74d8987", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b555ce55-1574-a715-bae1-6d1040ac2238", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "35", + "y": "0", + "z": "0" + } + ], + "uuid": "ab10e105-6b9c-adcf-9c9e-d7f1daa7b299", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7b066be-e63a-4645-5259-87a3fe6eae92", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "35", + "y": "0", + "z": "0" + } + ], + "uuid": "70adec03-36a7-26e4-3af4-099695b03544", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "22fc8739-db87-20af-005c-30a1ad59bb78", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27fdc3bf-865e-cf54-bc33-4a062815e98c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6080078f-2db1-ff8f-8473-9e1958173e3a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "94d4ea80-b213-b34b-1f2a-5f984a249cc8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "25a5f160-773b-a451-c010-e3ab9c484e53", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "375339db-1fcc-5da6-5260-ec5b00168de2", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.55406", + "z": "2.53293" + } + ], + "uuid": "dcee0dfe-d9b2-c51a-9846-1aa9e0912c1e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8405f81c-1273-b3dd-bc63-2d1edcb2cb54", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.5540558194295588", + "z": "2.532934484244752" + } + ], + "uuid": "9b701346-7010-b4cc-12b4-c2264500d9f3", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "6a937d65-11c9-7e7e-01bb-e91cf3959cad", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "824ae08d-7766-9978-f030-e0f1afb5be53", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "a15a8605-9a60-109d-f32d-883333118e1a", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "6cbcc4a8-4214-97a1-dafc-1ffb6e8af566", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "67f08c91-2c7f-ebcc-6bed-ed654d3f4a87", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "be5456bf-b1d1-e56d-39e7-f9abbbc33701", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2.08513", + "z": "-0.55331" + } + ], + "uuid": "221ec0f3-2849-385e-bc7d-35c2b1186198", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27491c6a-8e07-2d89-2b1a-81e9d1c4b9a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2.085129830728699", + "z": "-0.5533103598706802" + } + ], + "uuid": "47643561-f57c-1d61-7bbc-53f62470b5a1", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "0.8", + "z": "1.2" + } + ], + "uuid": "cf6ba49f-44cc-6a9c-4773-77e8fe47da12", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f0e3f2c7-b9f8-2a2e-da5c-729ea2c8c7a5", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "0.7999999999999999", + "z": "1.2000000000000002" + } + ], + "uuid": "4ae67a95-f5c3-0ca7-7159-8451d191e828", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "32.5", + "y": "0", + "z": "0" + } + ], + "uuid": "329b57a6-03ea-af2d-3080-ad1d736b0f49", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3b43f3d-fde2-81da-bbb2-773bc07f742a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "32.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4893ecbb-5092-7301-6ada-22dfffcc8a9e", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.0933", + "y": "0.84339", + "z": "-0.52914" + } + ], + "uuid": "a9e7519e-da4d-65ea-19b3-c0d4ae935fe9", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bbbb90e9-f728-b57b-afe7-98210354a38c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.09330109785058135", + "y": "0.8433914458128857", + "z": "-0.5291368199903751" + } + ], + "uuid": "e0af8d43-f463-cfcd-5823-8cafc0412c44", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "77967132-a36c-ae84-7af1-57675ea37ef4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"02_swing\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "d934d154-75cb-2512-0222-f8978460de73", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "b937bf57-9702-e4bb-d4f1-5eef33b72610", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "80451365-bbc4-f38e-2f5b-736fe60aecdd", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0fe7cbd8-8ac5-aa60-2ca2-e9b7b1499276", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e4803eb9-d16b-3b8d-c5d7-44dd672d1d72", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9297dfb1-97b0-b0a9-23fa-8d048e252309", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "5a4b8e86-a37f-20d6-a0e1-fec1ba47ea7b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c2aab87e-923b-a032-9183-ed1717ce6045", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "85", + "y": "0", + "z": "0" + } + ], + "uuid": "2419e1ba-a4f5-6205-acbd-017b010e5ca1", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.54923", + "y": "1.73092", + "z": "3.11484" + } + ], + "uuid": "e8bdec12-1db3-1302-ea6c-f292b5351c37", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6fd8ec7d-0f61-1c2a-3339-876816078aa1", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.5492310535779457", + "y": "1.730922167940515", + "z": "3.114844088926083" + } + ], + "uuid": "c58f5c19-ea91-ad92-bfc2-e061e79ac993", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-135", + "z": "0" + } + ], + "uuid": "1f800817-ff44-0d06-ff4e-ec8773af0846", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-135", + "z": "0" + } + ], + "uuid": "0720c789-6058-9676-c6ae-8935e08af9ad", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d773b4a5-6e83-678e-47e2-95b1ee70dcd4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "0", + "z": "-4" + } + ], + "uuid": "1cb7fb10-9b9e-2bcf-b60e-9e340d1fee09", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "1fced0a9-2439-fe7c-688e-e5ffef3f2bad", + "name": "taunt_11", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0cfc60e9-de84-b123-035b-a35df7b0ac72", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "41bec06d-9680-80fe-b1f9-ec75603abe77", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "f57ffe52-47cd-7f14-d9fe-7e4b642238c0", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "bbc16ba6-c293-a1e0-b40f-424ad825933f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c053e6aa-9a12-3a66-3bb1-2e7f05405c72", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "80c2b44c-2713-8a91-b71e-741bd6b0741c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cf42347c-f25a-83d1-fbe1-246ec9c9289b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ea280803-08b4-bac8-4b68-bdece334f0da", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15.45672062917447", + "y": "16.152640041761515", + "z": "-28.35638330254642" + } + ], + "uuid": "a5b51832-022f-99a6-2ed3-4097c47f9550", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15.45672062917447", + "y": "16.152640041761515", + "z": "-28.35638330254642" + } + ], + "uuid": "18b03a65-c698-0d6f-584e-c82111677859", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7c2c3a14-b8c0-875c-821f-60abeba44208", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8ccf6d19-9d80-4000-28a4-b70d5c7b209b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6ed58450-4574-cabb-9ab2-ab77cae1e079", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca86a6f6-6558-5484-b677-e9f0ef277a06", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "-61.95323556855146", + "z": "97.80643428638405" + } + ], + "uuid": "194ecb76-1c2d-3c91-8860-c0ee2a41d7d8", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "-61.95323556855146", + "z": "97.80643428638405" + } + ], + "uuid": "ae92aa89-ceeb-0dc8-551e-c43ee5450247", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84d0ce30-a7f2-9f6e-aa52-5d7d37a6beae", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0a27ccde-7ee7-2c9a-b83d-0a20a988eb94", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9cc4f6aa-ebd5-2a89-39e2-e33dc6ac08a0", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "10b6252b-074f-0ebe-8d76-a6a75ab705a9", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "90ab77a7-25b4-a6a1-1ca8-d0b60821be7f", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73fcdb54-8786-6049-421d-f68b080ec275", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8fe5eb94-0dcb-11ca-81a3-746a37db9c8a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "64c52ea0-40b7-d679-7fec-0d3837f7a43d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3d47b6fb-347b-b218-4ca8-0097ef279fbd", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "45db5aa3-ea0e-80ec-b93e-4a8229d375bc", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "79b36ad7-0116-731b-8327-804057f339ed", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9ada7589-3da5-02d4-9be2-ed19cbcaef5e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ad1cc7a2-fd04-fa9a-659a-33323707625d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15.45672062917447", + "y": "-16.152640041761515", + "z": "28.35638330254642" + } + ], + "uuid": "3020ae28-1a3d-917a-9e75-897b0c7cdb15", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15.45672062917447", + "y": "-16.152640041761515", + "z": "28.35638330254642" + } + ], + "uuid": "2d7076f4-51ba-89e4-5dd4-693439d5f1dd", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dc3fc571-072d-0c37-0e2a-5bdc568b7440", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7aa1d257-3ec1-487e-2c9b-8c4bc89d0da4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1ac26d7f-bb51-c0da-3f25-a321e81ef050", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0b26c13a-bba3-bb52-e932-5e39af892d59", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "12aa8f1b-de7b-d057-bc45-3a121783bbce", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "372a699a-b3be-cab6-ff78-cc6169dc154c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "61.95323556855146", + "z": "-97.80643428638405" + } + ], + "uuid": "665b0964-7c89-a3f5-6233-38f3d0f03159", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "61.95323556855146", + "z": "-97.80643428638405" + } + ], + "uuid": "b73e77a8-492e-253e-79f0-966152b85cfb", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fac44d1a-102e-f1a8-dd13-2429074625d5", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "48d23818-a08d-1837-89e5-16103f9183c2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6913dc75-8503-ef31-8974-0ce1c29d871e", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "cb42be35-bec9-e574-ec7f-d11740e816e1", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "d8c4c82f-a9af-5a51-6146-f32c4878ecd6", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3761481e-a7e8-3183-42ef-b8744fc45551", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3e4685c-93e1-245f-6857-ead77aa319e9", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "35", + "z": "0" + } + ], + "uuid": "e78a68bb-7a46-3ab5-f8b7-ae09aa815514", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "35", + "z": "0" + } + ], + "uuid": "c6a5bffc-8abe-6abe-bc87-a17774a3b0af", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "89d7b31e-f52a-0ab4-998f-4ad5ad377c60", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f624f767-b5f9-501d-9a9f-e7d2f317a9ff", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e5417df9-329a-3d11-367b-53bc1b1cb4ac", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "505e8d1c-debd-3d96-eeb9-2426d2d45f9f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66877b8c-2a8a-f600-74d2-55332245b2f4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8866ea2c-861c-7bce-18c7-a509101d4337", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2075332d-31eb-d8ca-20ad-32e9cce035a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4d43debc-b170-940a-b9ff-bb35ecdbf608", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "99c6da90-e985-6780-b081-6359f8f60a68", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-35\n", + "z": "0" + } + ], + "uuid": "a1c5bc72-17ec-ad42-cd55-45f8e912e151", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-35\n", + "z": "0" + } + ], + "uuid": "af2cf313-fa2c-9b4c-dd99-6b7f77a4851c", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "355d3621-36a3-37bf-0c3b-304b421449bc", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5f511d99-da81-a68d-e286-c1f9f74d8987", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b555ce55-1574-a715-bae1-6d1040ac2238", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9beafc7f-599c-443c-be4a-1120bc288444", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7b066be-e63a-4645-5259-87a3fe6eae92", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "22fc8739-db87-20af-005c-30a1ad59bb78", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27fdc3bf-865e-cf54-bc33-4a062815e98c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6080078f-2db1-ff8f-8473-9e1958173e3a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ee96a3c0-6a1a-0ff8-8227-ae99dc84a97b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "25a5f160-773b-a451-c010-e3ab9c484e53", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "d59ae665-6a97-b3ef-bd15-b5ba2f604892", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "26288ea9-fb02-7bcd-a186-9c4e61b58407", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5cf8bd28-3f33-987c-24fe-20d9463c24d8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8405f81c-1273-b3dd-bc63-2d1edcb2cb54", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "6a937d65-11c9-7e7e-01bb-e91cf3959cad", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "824ae08d-7766-9978-f030-e0f1afb5be53", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "a15a8605-9a60-109d-f32d-883333118e1a", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "71779ff6-2459-0614-0fbc-b468550591c4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "67f08c91-2c7f-ebcc-6bed-ed654d3f4a87", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "22bd6b39-ad43-22e1-973e-364bd0fd0560", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "5c956304-94b8-f6c2-82f4-6e634c0f307a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "993ab6be-41c8-5434-6a79-d9b853b4907c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27491c6a-8e07-2d89-2b1a-81e9d1c4b9a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b5cd954c-c6a5-1653-f38d-6c151a37e550", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f0e3f2c7-b9f8-2a2e-da5c-729ea2c8c7a5", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bc7bb7d5-b346-93b0-9adf-6904f097c9b5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3b43f3d-fde2-81da-bbb2-773bc07f742a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "da925ed9-821d-183e-6e0c-41eb27c29302", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bbbb90e9-f728-b57b-afe7-98210354a38c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "77967132-a36c-ae84-7af1-57675ea37ef4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"03_punchspin\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "f641076f-277c-b356-1193-6683b5598534", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "443b3bee-c258-42f5-9475-3a9f735dcf55", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "a0765b3f-de7d-045c-bbd5-a2574cf8616e", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0fe7cbd8-8ac5-aa60-2ca2-e9b7b1499276", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e4803eb9-d16b-3b8d-c5d7-44dd672d1d72", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9297dfb1-97b0-b0a9-23fa-8d048e252309", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b3289893-5a86-7124-e2cc-b4633b872a26", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6cb18883-16ee-779f-7006-ea2b9a83e9c2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c2aab87e-923b-a032-9183-ed1717ce6045", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9a68304a-0e06-1aba-ce12-2469c0560c9d", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6fd8ec7d-0f61-1c2a-3339-876816078aa1", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-180", + "y": "15", + "z": "-180" + } + ], + "uuid": "2c8a5278-d47a-2614-d56b-b7d62ff4274d", + "time": 0, + "color": -1, + "interpolation": "step" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d773b4a5-6e83-678e-47e2-95b1ee70dcd4", + "time": 0.5, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bead5c35-910c-abf2-2a14-306fc4dc5040", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "0fe9582e-afee-9945-c051-79e1996ab231": { + "name": "RightHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "614fea28-c5d5-996d-7c13-434e513e00ea", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3c13eff-724a-652d-bda5-49f135d25e57", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "afd09ef8-5340-6135-f75f-ada3f02705a8", + "name": "taunt_12", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "41bec06d-9680-80fe-b1f9-ec75603abe77", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "10" + } + ], + "uuid": "856f62bd-f44e-322c-5a99-8ece57117c8b", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "10" + } + ], + "uuid": "6fd14044-3ce7-6c95-d735-d7ca3da5c5fd", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "80c2b44c-2713-8a91-b71e-741bd6b0741c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ea280803-08b4-bac8-4b68-bdece334f0da", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-175.77995", + "y": "-2.68407", + "z": "32.40109" + } + ], + "uuid": "0cba33ff-1dd3-2a92-9409-bc758dbb117c", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-175.77995307005267", + "y": "-2.6840711386680596", + "z": "32.40109132255475" + } + ], + "uuid": "e59448a2-a5ac-f86d-545f-76837acf97f3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8ccf6d19-9d80-4000-28a4-b70d5c7b209b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2", + "z": "0" + } + ], + "uuid": "69ef6b23-ae16-5344-55b2-0592f1d57034", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2", + "z": "0" + } + ], + "uuid": "4480cd3a-daaa-64c5-70ce-80f08e5ba330", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.3000000000000003", + "z": "1" + } + ], + "uuid": "d969d661-c9e1-c04b-f97e-477941c52ef4", + "time": 0.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.3000000000000003", + "z": "1" + } + ], + "uuid": "9b783cee-e2cb-9a02-291f-6b09ef5dc8d7", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca86a6f6-6558-5484-b677-e9f0ef277a06", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "82.5" + } + ], + "uuid": "b5f85955-877f-a507-d909-41f9a5201baa", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "82.5" + } + ], + "uuid": "4e919804-0abe-7fce-c340-f60c68810d73", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0a27ccde-7ee7-2c9a-b83d-0a20a988eb94", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9cc4f6aa-ebd5-2a89-39e2-e33dc6ac08a0", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "-1", + "z": "0" + } + ], + "uuid": "4592ba17-fbd5-4a8b-9a54-36c34c9b3a4a", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2", + "y": "-1", + "z": "0" + } + ], + "uuid": "e82e42a0-40f8-1fe4-61bc-c6e0843410ab", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.7000000000000001", + "y": "0.9", + "z": "1" + } + ], + "uuid": "312eed81-0edb-5b54-a08b-1ea74921ad2a", + "time": 0.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.7000000000000001", + "y": "0.9", + "z": "1" + } + ], + "uuid": "66f2724f-2f6a-ff62-aef4-219b7477c4ca", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8fe5eb94-0dcb-11ca-81a3-746a37db9c8a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "64c52ea0-40b7-d679-7fec-0d3837f7a43d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "45db5aa3-ea0e-80ec-b93e-4a8229d375bc", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "79b36ad7-0116-731b-8327-804057f339ed", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ad1cc7a2-fd04-fa9a-659a-33323707625d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-175.11794022903405", + "y": "1.08088913633037", + "z": "-12.45392054358581" + } + ], + "uuid": "951e05e0-d5ce-58e9-815d-d3b67fcc70ed", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-175.11794022903405", + "y": "1.08088913633037", + "z": "-12.45392054358581" + } + ], + "uuid": "b141accc-a162-f527-3ff1-2ce27b5563f2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7aa1d257-3ec1-487e-2c9b-8c4bc89d0da4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1ac26d7f-bb51-c0da-3f25-a321e81ef050", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "0" + } + ], + "uuid": "c5ab6a48-2c0f-05c7-a752-bc538e644897", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "0" + } + ], + "uuid": "b5b36abe-72f0-d2b2-251b-971a5d2a69f3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.3", + "z": "1" + } + ], + "uuid": "6f14ca84-9781-8260-25c3-3dc8c64fb7fe", + "time": 0.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1.3000000000000003", + "z": "1" + } + ], + "uuid": "837e2183-0887-05d2-c584-afcdab422166", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "12aa8f1b-de7b-d057-bc45-3a121783bbce", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "372a699a-b3be-cab6-ff78-cc6169dc154c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-80" + } + ], + "uuid": "be762eef-ef99-872b-242c-5c98c711ce61", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-80" + } + ], + "uuid": "d388e6a7-2f72-7cd0-df78-19b837892210", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "48d23818-a08d-1837-89e5-16103f9183c2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6913dc75-8503-ef31-8974-0ce1c29d871e", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "-1", + "z": "0" + } + ], + "uuid": "0bd0875e-e5a6-3437-e837-040fb2885891", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "-1", + "z": "0" + } + ], + "uuid": "e89af55f-8482-dda8-f20e-07cf21ff69f9", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.7", + "y": "0.9", + "z": "1" + } + ], + "uuid": "a84e9517-5885-45d0-7f1e-4cdcb00bd7de", + "time": 0.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.7000000000000001", + "y": "0.9", + "z": "1" + } + ], + "uuid": "d68ebf30-9ed8-d3d5-6eee-ca9062a0f287", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3e4685c-93e1-245f-6857-ead77aa319e9", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-11.20818489887506", + "y": "67.79329975317705", + "z": "-20.023124829469452" + } + ], + "uuid": "22cf52e1-6176-8775-7215-99edc9825610", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-11.20818489887506", + "y": "67.79329975317705", + "z": "-20.023124829469452" + } + ], + "uuid": "b73d8799-1b36-c3b6-2d4c-cc68f9546e78", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f624f767-b5f9-501d-9a9f-e7d2f317a9ff", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e5417df9-329a-3d11-367b-53bc1b1cb4ac", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.5", + "y": "0", + "z": "-0.5" + } + ], + "uuid": "95d33788-6edb-85ff-89f8-f27111b94d8e", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.5", + "y": "0", + "z": "-0.5" + } + ], + "uuid": "cfd7911f-7bea-057d-ddc2-5383e66ae1a6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66877b8c-2a8a-f600-74d2-55332245b2f4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2075332d-31eb-d8ca-20ad-32e9cce035a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "99c6da90-e985-6780-b081-6359f8f60a68", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-68.61942717052762", + "y": "-85.24628360378938", + "z": "42.08753857630609" + } + ], + "uuid": "1bba6498-3ac5-69d4-043f-3e608c629c2f", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-68.61942717052762", + "y": "-85.24628360378938", + "z": "42.08753857630609" + } + ], + "uuid": "1e791a6c-074c-05a7-58df-86f445fae9b8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5f511d99-da81-a68d-e286-c1f9f74d8987", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b555ce55-1574-a715-bae1-6d1040ac2238", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "42317071-3045-6044-12b0-e03c5aaed79d", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "4a66e883-489b-a808-962b-dfe8143003d3", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7b066be-e63a-4645-5259-87a3fe6eae92", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27fdc3bf-865e-cf54-bc33-4a062815e98c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6080078f-2db1-ff8f-8473-9e1958173e3a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "25a5f160-773b-a451-c010-e3ab9c484e53", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "15" + } + ], + "uuid": "ee7e677c-cdab-5515-4dd1-8b2748896e85", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "15" + } + ], + "uuid": "0c8e97e0-a740-0aae-b4b9-6cdb7a83c89c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8405f81c-1273-b3dd-bc63-2d1edcb2cb54", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ed42e178-0e1d-a432-de5c-0a9f0856ca39", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b4a475c1-1285-e77d-f315-a6f592f0086b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "824ae08d-7766-9978-f030-e0f1afb5be53", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "a15a8605-9a60-109d-f32d-883333118e1a", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "67f08c91-2c7f-ebcc-6bed-ed654d3f4a87", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-0.5808401430422236", + "y": "1.064039915441299", + "z": "-17.356306958215555" + } + ], + "uuid": "510db19c-693c-4791-d76a-40357614374c", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-0.5808401430422236", + "y": "1.064039915441299", + "z": "-17.356306958215555" + } + ], + "uuid": "63f23bb5-baec-f3f9-8c92-cefef9e699a0", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27491c6a-8e07-2d89-2b1a-81e9d1c4b9a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f0e3f2c7-b9f8-2a2e-da5c-729ea2c8c7a5", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3b43f3d-fde2-81da-bbb2-773bc07f742a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-5", + "y": "0", + "z": "0" + } + ], + "uuid": "fcfa1b3a-d50d-f2bd-ef52-34831f1d0374", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-5", + "y": "0", + "z": "0" + } + ], + "uuid": "18c055ed-d919-7354-adb6-d549b0d424ea", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bbbb90e9-f728-b57b-afe7-98210354a38c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "77967132-a36c-ae84-7af1-57675ea37ef4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nsounds[\"04_coin\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "aa8995b9-60af-bb4d-a4b4-12f9b2c2c102", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "7c9dd473-0d27-16b0-0581-aa7ba9435226", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "a957079d-6f9f-b464-797c-c64b7ac372ed", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e4803eb9-d16b-3b8d-c5d7-44dd672d1d72", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9297dfb1-97b0-b0a9-23fa-8d048e252309", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c2aab87e-923b-a032-9183-ed1717ce6045", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6fd8ec7d-0f61-1c2a-3339-876816078aa1", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d773b4a5-6e83-678e-47e2-95b1ee70dcd4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "db399086-5797-9e0e-ba8e-1ef16894e749", + "name": "taunt_13", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "41bec06d-9680-80fe-b1f9-ec75603abe77", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "80c2b44c-2713-8a91-b71e-741bd6b0741c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ea280803-08b4-bac8-4b68-bdece334f0da", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8ccf6d19-9d80-4000-28a4-b70d5c7b209b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca86a6f6-6558-5484-b677-e9f0ef277a06", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0a27ccde-7ee7-2c9a-b83d-0a20a988eb94", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9cc4f6aa-ebd5-2a89-39e2-e33dc6ac08a0", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8fe5eb94-0dcb-11ca-81a3-746a37db9c8a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "64c52ea0-40b7-d679-7fec-0d3837f7a43d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "45db5aa3-ea0e-80ec-b93e-4a8229d375bc", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "79b36ad7-0116-731b-8327-804057f339ed", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ad1cc7a2-fd04-fa9a-659a-33323707625d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7aa1d257-3ec1-487e-2c9b-8c4bc89d0da4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1ac26d7f-bb51-c0da-3f25-a321e81ef050", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "12aa8f1b-de7b-d057-bc45-3a121783bbce", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "372a699a-b3be-cab6-ff78-cc6169dc154c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "48d23818-a08d-1837-89e5-16103f9183c2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6913dc75-8503-ef31-8974-0ce1c29d871e", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3e4685c-93e1-245f-6857-ead77aa319e9", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f624f767-b5f9-501d-9a9f-e7d2f317a9ff", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e5417df9-329a-3d11-367b-53bc1b1cb4ac", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66877b8c-2a8a-f600-74d2-55332245b2f4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2075332d-31eb-d8ca-20ad-32e9cce035a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "99c6da90-e985-6780-b081-6359f8f60a68", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5f511d99-da81-a68d-e286-c1f9f74d8987", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b555ce55-1574-a715-bae1-6d1040ac2238", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7b066be-e63a-4645-5259-87a3fe6eae92", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27fdc3bf-865e-cf54-bc33-4a062815e98c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6080078f-2db1-ff8f-8473-9e1958173e3a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "25a5f160-773b-a451-c010-e3ab9c484e53", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8405f81c-1273-b3dd-bc63-2d1edcb2cb54", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "824ae08d-7766-9978-f030-e0f1afb5be53", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "a15a8605-9a60-109d-f32d-883333118e1a", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "67f08c91-2c7f-ebcc-6bed-ed654d3f4a87", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27491c6a-8e07-2d89-2b1a-81e9d1c4b9a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f0e3f2c7-b9f8-2a2e-da5c-729ea2c8c7a5", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3b43f3d-fde2-81da-bbb2-773bc07f742a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bbbb90e9-f728-b57b-afe7-98210354a38c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "77967132-a36c-ae84-7af1-57675ea37ef4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\n1sounds[\"04_coin\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\nsounds[\"00_taunt\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play() \n" + } + ], + "uuid": "aa8995b9-60af-bb4d-a4b4-12f9b2c2c102", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "7c9dd473-0d27-16b0-0581-aa7ba9435226", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "a957079d-6f9f-b464-797c-c64b7ac372ed", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e4803eb9-d16b-3b8d-c5d7-44dd672d1d72", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9297dfb1-97b0-b0a9-23fa-8d048e252309", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c2aab87e-923b-a032-9183-ed1717ce6045", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6fd8ec7d-0f61-1c2a-3339-876816078aa1", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d773b4a5-6e83-678e-47e2-95b1ee70dcd4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "549faa5f-1940-6330-30ce-aa8d7a03ae15", + "name": "taunt_unused", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ec18fbf9-aaf5-508c-a8dd-69f013b6bd05", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0cfc60e9-de84-b123-035b-a35df7b0ac72", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "3.616441573003158", + "y": "-19.68349807941331", + "z": "-10.627584138330803" + } + ], + "uuid": "3453e10f-0e90-dda2-fadd-a05afd9ca63c", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "3.616441573003158", + "y": "-19.68349807941331", + "z": "-10.627584138330803" + } + ], + "uuid": "80c75381-451f-54e7-2f78-b0a8735ad38e", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1b87a533-b4d0-eebc-1efc-9fe1057af7ea", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c053e6aa-9a12-3a66-3bb1-2e7f05405c72", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-3", + "z": "-4" + } + ], + "uuid": "b166415b-7386-eeb8-16e9-b3cae153cd99", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-3", + "z": "-4" + } + ], + "uuid": "a18538d4-4b3e-a385-e037-81b638980bc8", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "97c80102-b79e-90ab-d23a-05c825da05db", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cf42347c-f25a-83d1-fbe1-246ec9c9289b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-46.15734", + "y": "11.55763", + "z": "-46.77247" + } + ], + "uuid": "5c289a91-ade4-07b0-2267-f61e5232bb6e", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-46.1573372899702", + "y": "11.557633730890757", + "z": "-46.7724707940788" + } + ], + "uuid": "6186200d-0acd-b252-dcbb-5ee40fb17bd6", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73c0d2bf-0eee-1df6-a16d-276dca8cd1fc", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7c2c3a14-b8c0-875c-821f-60abeba44208", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "5208766b-346e-884e-669d-40ec7b591b8b", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "ba83dccb-4bbc-aa04-dcbd-4a65b224f274", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2897905c-001c-4aee-2939-93bec37e6e29", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6ed58450-4574-cabb-9ab2-ab77cae1e079", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-34.00238", + "y": "21.07593", + "z": "-8.0634" + } + ], + "uuid": "d1e0e290-f839-3176-30f4-b1e85bdbf0dc", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-34.002384070967764", + "y": "21.075927274087007", + "z": "-8.063398680195405" + } + ], + "uuid": "656fc737-aa9e-1912-febb-5480fd3196ef", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "33db609d-34fa-0df0-49b2-a1a36b20dff6", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84d0ce30-a7f2-9f6e-aa52-5d7d37a6beae", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2ee0730f-3e9c-c0e0-a792-e2e2fea0d72e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73fcdb54-8786-6049-421d-f68b080ec275", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-75" + } + ], + "uuid": "4b691dbe-daae-cc66-8e1f-ee1a1db3c91f", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-75" + } + ], + "uuid": "d951160f-fcc7-6fd4-a0a7-54ea8cd8af97", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6259b0a6-1869-4126-c25f-eb5b2e482bc2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3d47b6fb-347b-b218-4ca8-0097ef279fbd", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b8297c91-6f04-cd07-2d95-dd84a551e19f", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9ada7589-3da5-02d4-9be2-ed19cbcaef5e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-1059.43709", + "y": "51.65173", + "z": "-1008.2091" + } + ], + "uuid": "4e443233-ee09-761f-a935-2eb9392dc85b", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-1059.4370921230334", + "y": "51.6517320537223", + "z": "-1008.2091049559085" + } + ], + "uuid": "1542d6ca-9a3d-ae58-6d40-cc4db5c206c2", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c92e0cd-037b-73bf-8d00-ed37303c8a10", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dc3fc571-072d-0c37-0e2a-5bdc568b7440", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.36922", + "y": "-1.99839", + "z": "-1.63484" + } + ], + "uuid": "d3382c22-e22a-a66b-4f73-0052ca9b6218", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.36922211981623476", + "y": "-1.9983896090633304", + "z": "-1.634836115010569" + } + ], + "uuid": "413a3816-5afc-b4db-ebc4-f3af5916a7b1", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c1385604-8011-b280-e2ed-c61fd473c5ee", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0b26c13a-bba3-bb52-e932-5e39af892d59", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7fe1966-347d-b492-e086-d70e25322102", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fac44d1a-102e-f1a8-dd13-2429074625d5", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.60764", + "y": "-0.75721", + "z": "-0.23961" + } + ], + "uuid": "ea0ec284-f93e-fbab-4a4e-34a738b9eb99", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.607637279404815", + "y": "-0.7572070767186294", + "z": "-0.2396129788737299" + } + ], + "uuid": "41c14d9e-2eb7-acc4-c395-121fb6654527", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8382de98-2b7e-ec42-461a-6913ade62eba", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3761481e-a7e8-3183-42ef-b8744fc45551", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-49.88818", + "y": "61.28939", + "z": "-5.46983" + } + ], + "uuid": "e0d1b53a-3bbe-70bb-0911-166da12b8275", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-49.888181189105126", + "y": "61.289388395929564", + "z": "-5.469834773929506" + } + ], + "uuid": "3308f4b1-374c-f7f1-9a2e-e23ddd490e2a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "33462968-2cb9-a24a-abdc-afa71f09228c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "89d7b31e-f52a-0ab4-998f-4ad5ad377c60", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b3d4cd72-b84f-96f5-12b2-405485abdb17", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "505e8d1c-debd-3d96-eeb9-2426d2d45f9f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "8417fb34-1f2c-5f80-f48c-93f115ba1e30", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3fb41a49-5ee6-66d3-a502-30a12ab1f0cd", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8866ea2c-861c-7bce-18c7-a509101d4337", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "b2c9f182-1904-e80e-49ce-c5fa0086ce77", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "bd911d6b-554b-58ad-f564-705284e8786f", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6064caf3-14e2-bb0e-868f-acdb70de1955", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4d43debc-b170-940a-b9ff-bb35ecdbf608", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15", + "y": "-17.5", + "z": "-10" + } + ], + "uuid": "b5e6790f-0380-85e4-764b-53861d9ed421", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-15", + "y": "-17.5", + "z": "-10" + } + ], + "uuid": "67787163-76c6-2b76-151f-92457ef447b8", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e4fd6d55-9de3-cd4b-29a1-e696c5ccffe4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "355d3621-36a3-37bf-0c3b-304b421449bc", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.14891", + "y": "-0.62172", + "z": "-0.1925" + } + ], + "uuid": "8d10997d-1650-8630-8cc3-9ecc07f0d272", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.14890617635233186", + "y": "-0.6217200897058953", + "z": "-0.19249763551343724" + } + ], + "uuid": "d52e358d-2630-d3dd-7a81-50183e3eabb2", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ecaa4225-8bd9-8f1e-4218-2bbcf27d9729", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9beafc7f-599c-443c-be4a-1120bc288444", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "9.91615", + "y": "1.29876", + "z": "2.61267" + } + ], + "uuid": "db0e7ad1-6ed8-5909-8974-afd6417833ed", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "9.91615385274099", + "y": "1.2987564674722307", + "z": "2.6126737486461025" + } + ], + "uuid": "52789cff-cf95-f21e-c83c-4751119964c4", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "22fc8739-db87-20af-005c-30a1ad59bb78", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b2576839-785b-b390-49ed-55aae9a6bf62", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ac2e63c5-c8e8-757d-fd59-aeafba5782e7", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3c81f1fd-6144-cded-f0b3-cdd141721b4e", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ee96a3c0-6a1a-0ff8-8227-ae99dc84a97b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "37.21256", + "y": "-0.61762", + "z": "1.52784" + } + ], + "uuid": "adce7c1d-6d1a-3dfa-06b9-b37adfc63ddf", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "37.21255675607199", + "y": "-0.6176160868731131", + "z": "1.5278418018233424" + } + ], + "uuid": "e1d8b348-d14f-48e6-b01a-bb0946c25f78", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a641ffb4-91ea-9394-66cd-84a782d7786b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5cf8bd28-3f33-987c-24fe-20d9463c24d8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.03017", + "y": "-2.41915", + "z": "-3.1854" + } + ], + "uuid": "38e91e9c-8ab4-ecc4-3294-29c5f774bc83", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.030173638149666133", + "y": "-2.4191501899255123", + "z": "-3.1854045127964783" + } + ], + "uuid": "8a2a8d97-2ae2-1d33-3d2b-60535bcf501e", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f8c747a8-f43c-6194-bfef-4ed613b97380", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "6a937d65-11c9-7e7e-01bb-e91cf3959cad", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4fc65f28-83bc-ded9-e796-ddcb4723e757", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "71779ff6-2459-0614-0fbc-b468550591c4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-69.84126", + "y": "7.04533", + "z": "2.57816" + } + ], + "uuid": "b0159f15-2e27-d0f3-0694-95382750c529", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-69.84126256694617", + "y": "7.045326183131692", + "z": "2.578161780461869" + } + ], + "uuid": "026fb184-0531-006d-4938-5933b28531d2", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "993ab6be-41c8-5434-6a79-d9b853b4907c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.28171", + "z": "-0.59767" + } + ], + "uuid": "732bf336-2799-1222-78f0-fe67e53c9a02", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.2817127641115769", + "z": "-0.5976724774602395" + } + ], + "uuid": "dceb9b81-4123-b8c0-502f-23ac379959ab", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "a029eeab-d9fc-a24f-82bc-97313e5482d0", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b5cd954c-c6a5-1653-f38d-6c151a37e550", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9835a4a0-d116-c2e3-0bd7-0ec2f991971b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bc7bb7d5-b346-93b0-9adf-6904f097c9b5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "10", + "y": "0", + "z": "0" + } + ], + "uuid": "28917871-7030-9543-2423-c16ad5bf0ac8", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "10", + "y": "0", + "z": "0" + } + ], + "uuid": "badd2040-0370-fa1e-2966-8ef5a8c0ddca", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "987befe9-00b9-a7cc-e987-b01852b33de9", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "da925ed9-821d-183e-6e0c-41eb27c29302", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])" + } + ], + "uuid": "4202a2ca-aa07-9b6a-4514-348e37be30ce", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "" + } + ], + "uuid": "d226ac99-9c40-96a3-cfe8-78327feef74c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66b88688-8e4d-7b13-0ca3-df91d690716a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0fe7cbd8-8ac5-aa60-2ca2-e9b7b1499276", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.5", + "y": "0", + "z": "0" + } + ], + "uuid": "74994db2-1e51-ac47-4df5-8597be2b941e", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3c13863e-e4b8-1a14-cf27-4709b919f329", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1bd1bbe3-6c84-2cdb-2758-b18107bde80b", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6cb18883-16ee-779f-7006-ea2b9a83e9c2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10", + "y": "0", + "z": "0" + } + ], + "uuid": "9cfea522-d70c-c5ac-0213-14e8f0b0c876", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10", + "y": "0", + "z": "0" + } + ], + "uuid": "9de23aff-e7c1-c158-b7f9-f3194cdc7424", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "30131b5a-2d21-75ad-a3af-067474cf3599", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9a68304a-0e06-1aba-ce12-2469c0560c9d", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.17101", + "y": "0.17365", + "z": "-0.96985" + } + ], + "uuid": "12a6a2de-6686-0f10-6141-8bd72d72bff9", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.17101007166283436", + "y": "0.17364817766693033", + "z": "-0.9698463103929542" + } + ], + "uuid": "0fbc4eee-28db-00c8-a9ba-91889862b4c1", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "97e65169-0cd2-7aaf-dd0b-44d4a1a5fe55", + "name": "taunt_unused2", + "loop": "once", + "override": true, + "length": 0.75, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0cfc60e9-de84-b123-035b-a35df7b0ac72", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "41bec06d-9680-80fe-b1f9-ec75603abe77", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-6.503710829625106", + "y": "5.903162520769911", + "z": "19.14314484150009" + } + ], + "uuid": "18cd39f6-2b23-ab64-1ea2-03bcd28bf459", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-8.767196229572164", + "y": "0.3646791660262352", + "z": "-20.54911708885038" + } + ], + "uuid": "e66ed6c2-1848-bfb0-d59a-322e8ea31c9d", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c053e6aa-9a12-3a66-3bb1-2e7f05405c72", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "80c2b44c-2713-8a91-b71e-741bd6b0741c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.8190778623577284", + "y": "-0.9785712245610795", + "z": "-0.30854232193591413" + } + ], + "uuid": "b08fd3cf-2b31-accb-99cc-f0e85e3c6ed3", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.8190778623577284", + "y": "-0.9785712245610795", + "z": "-0.30854232193591413" + } + ], + "uuid": "a33d3ce1-249c-e1eb-3c71-c615e85d02ee", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cf42347c-f25a-83d1-fbe1-246ec9c9289b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ea280803-08b4-bac8-4b68-bdece334f0da", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "19.931269891290867", + "y": "10.012689784736722", + "z": "-8.799142093730097" + } + ], + "uuid": "4abf35ac-c2c0-a659-9a24-a6a5bb0e77f9", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "8.925891025992769", + "y": "20.424543137769433", + "z": "-48.951660903395805" + } + ], + "uuid": "00c4232f-6151-b27f-8485-db8687003613", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7c2c3a14-b8c0-875c-821f-60abeba44208", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8ccf6d19-9d80-4000-28a4-b70d5c7b209b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.241737923276973", + "y": "-1.9005442636140621", + "z": "-0.6021150931387865" + } + ], + "uuid": "7b0968e6-346c-5820-1ab9-0b28e9ec8b64", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-3.1874872599181128", + "y": "0.022016954287080504", + "z": "-1.241893613929629" + } + ], + "uuid": "f3cc2325-0055-20e9-dfae-f76cfa50383a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6ed58450-4574-cabb-9ab2-ab77cae1e079", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca86a6f6-6558-5484-b677-e9f0ef277a06", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "-61.95323556855146", + "z": "97.80643428638405" + } + ], + "uuid": "4cb3a021-7624-72a0-007a-19a955f743fc", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "-61.95323556855146", + "z": "97.80643428638405" + } + ], + "uuid": "786b3187-8758-025e-49fa-8d4c48438245", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84d0ce30-a7f2-9f6e-aa52-5d7d37a6beae", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0a27ccde-7ee7-2c9a-b83d-0a20a988eb94", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "f90cb53b-725c-67ce-14b1-c49097667ea9", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "98951b2d-6997-f573-8f59-45581e215fdd", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9cc4f6aa-ebd5-2a89-39e2-e33dc6ac08a0", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73fcdb54-8786-6049-421d-f68b080ec275", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8fe5eb94-0dcb-11ca-81a3-746a37db9c8a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "64c52ea0-40b7-d679-7fec-0d3837f7a43d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3d47b6fb-347b-b218-4ca8-0097ef279fbd", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "45db5aa3-ea0e-80ec-b93e-4a8229d375bc", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "79b36ad7-0116-731b-8327-804057f339ed", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9ada7589-3da5-02d4-9be2-ed19cbcaef5e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ad1cc7a2-fd04-fa9a-659a-33323707625d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "8.925891025992769", + "y": "-20.424543137769433", + "z": "48.951660903395805" + } + ], + "uuid": "5269579d-41b1-5a70-dec7-62bd25e54bbb", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "19.931269891290867", + "y": "-10.012689784736722", + "z": "8.799142093730097" + } + ], + "uuid": "d448e8ae-b987-52f9-b925-b50eeac6bc5a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dc3fc571-072d-0c37-0e2a-5bdc568b7440", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7aa1d257-3ec1-487e-2c9b-8c4bc89d0da4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.1765708946258147", + "y": "0.5090732430708135", + "z": "0.058168495400380826" + } + ], + "uuid": "618f9c39-8794-5799-a6ad-6241f6017fcb", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.9860932630105697", + "y": "-3.1708119367770733", + "z": "1.400971011863849" + } + ], + "uuid": "e5048d75-c4cf-bff2-0955-e2da144a552d", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1ac26d7f-bb51-c0da-3f25-a321e81ef050", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0b26c13a-bba3-bb52-e932-5e39af892d59", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "12aa8f1b-de7b-d057-bc45-3a121783bbce", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "61.95323556855146", + "z": "-97.80643428638405" + } + ], + "uuid": "3ca85fb4-cab2-77fc-8af2-e7235879636a", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "61.95323556855146", + "z": "-97.80643428638405" + } + ], + "uuid": "e87d134c-a50d-e859-e3e3-48d4a5ce31e4", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "372a699a-b3be-cab6-ff78-cc6169dc154c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fac44d1a-102e-f1a8-dd13-2429074625d5", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "48d23818-a08d-1837-89e5-16103f9183c2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "3af66629-2b55-7cfb-2fe3-b9b8970e441c", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "15ae3505-518c-537e-061b-db23dbe98847", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6913dc75-8503-ef31-8974-0ce1c29d871e", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3761481e-a7e8-3183-42ef-b8744fc45551", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3e4685c-93e1-245f-6857-ead77aa319e9", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "35", + "z": "0" + } + ], + "uuid": "dc313edd-2ca3-00b7-87e0-6ba253df6233", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "35", + "z": "0" + } + ], + "uuid": "de399624-9a77-fc76-7415-fd51ea8018ba", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "89d7b31e-f52a-0ab4-998f-4ad5ad377c60", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f624f767-b5f9-501d-9a9f-e7d2f317a9ff", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e5417df9-329a-3d11-367b-53bc1b1cb4ac", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "505e8d1c-debd-3d96-eeb9-2426d2d45f9f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66877b8c-2a8a-f600-74d2-55332245b2f4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8866ea2c-861c-7bce-18c7-a509101d4337", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2075332d-31eb-d8ca-20ad-32e9cce035a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4d43debc-b170-940a-b9ff-bb35ecdbf608", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "99c6da90-e985-6780-b081-6359f8f60a68", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-35\n", + "z": "0" + } + ], + "uuid": "1ebf4684-02bb-421e-ce54-78dee1a5baaf", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-35\n", + "z": "0" + } + ], + "uuid": "82a85213-b784-7c77-184a-c732d407348d", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "355d3621-36a3-37bf-0c3b-304b421449bc", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5f511d99-da81-a68d-e286-c1f9f74d8987", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b555ce55-1574-a715-bae1-6d1040ac2238", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9beafc7f-599c-443c-be4a-1120bc288444", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7b066be-e63a-4645-5259-87a3fe6eae92", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "22fc8739-db87-20af-005c-30a1ad59bb78", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27fdc3bf-865e-cf54-bc33-4a062815e98c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6080078f-2db1-ff8f-8473-9e1958173e3a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ee96a3c0-6a1a-0ff8-8227-ae99dc84a97b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "25a5f160-773b-a451-c010-e3ab9c484e53", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "4e84b597-d07b-6c03-b07f-b131a84cc2aa", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-20" + } + ], + "uuid": "94d919dc-4270-57ec-7eda-4d3bee35dd74", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5cf8bd28-3f33-987c-24fe-20d9463c24d8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8405f81c-1273-b3dd-bc63-2d1edcb2cb54", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.819077862357725", + "y": "-1.026060429977006", + "z": "0" + } + ], + "uuid": "8ce345c3-265d-78e1-0ea6-9e0c7a0bdc34", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.819077862357725", + "y": "-1.026060429977006", + "z": "0" + } + ], + "uuid": "929911dd-be30-e780-3b54-bfb872287744", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "6a937d65-11c9-7e7e-01bb-e91cf3959cad", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "824ae08d-7766-9978-f030-e0f1afb5be53", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "a15a8605-9a60-109d-f32d-883333118e1a", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "71779ff6-2459-0614-0fbc-b468550591c4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "67f08c91-2c7f-ebcc-6bed-ed654d3f4a87", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-20" + } + ], + "uuid": "792e9281-bc52-c18a-a2aa-693bbcfb77e3", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "61ff89dc-ead4-66dd-59e6-29215361d9bf", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "993ab6be-41c8-5434-6a79-d9b853b4907c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27491c6a-8e07-2d89-2b1a-81e9d1c4b9a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b5cd954c-c6a5-1653-f38d-6c151a37e550", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f0e3f2c7-b9f8-2a2e-da5c-729ea2c8c7a5", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bc7bb7d5-b346-93b0-9adf-6904f097c9b5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3b43f3d-fde2-81da-bbb2-773bc07f742a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "da925ed9-821d-183e-6e0c-41eb27c29302", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bbbb90e9-f728-b57b-afe7-98210354a38c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])" + } + ], + "uuid": "d226ac99-9c40-96a3-cfe8-78327feef74c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "" + } + ], + "uuid": "f9250ffb-950c-70f9-0a00-601ee68ce649", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "77967132-a36c-ae84-7af1-57675ea37ef4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0fe7cbd8-8ac5-aa60-2ca2-e9b7b1499276", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e4803eb9-d16b-3b8d-c5d7-44dd672d1d72", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9297dfb1-97b0-b0a9-23fa-8d048e252309", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b3289893-5a86-7124-e2cc-b4633b872a26", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6cb18883-16ee-779f-7006-ea2b9a83e9c2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c2aab87e-923b-a032-9183-ed1717ce6045", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9a68304a-0e06-1aba-ce12-2469c0560c9d", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6fd8ec7d-0f61-1c2a-3339-876816078aa1", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2c8a5278-d47a-2614-d56b-b7d62ff4274d", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d773b4a5-6e83-678e-47e2-95b1ee70dcd4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bead5c35-910c-abf2-2a14-306fc4dc5040", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "0fe9582e-afee-9945-c051-79e1996ab231": { + "name": "RightHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "614fea28-c5d5-996d-7c13-434e513e00ea", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3c13eff-724a-652d-bda5-49f135d25e57", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "5de81ff7-d5db-82f2-dff9-414b2c8d3dc1", + "name": "taunt_unused3", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ec18fbf9-aaf5-508c-a8dd-69f013b6bd05", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0cfc60e9-de84-b123-035b-a35df7b0ac72", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2df6d062-43f1-c350-b40a-0acaea9785ea", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "10" + } + ], + "uuid": "6c09b2c8-7f33-b2ba-ac3a-a2e7896e7942", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "10" + } + ], + "uuid": "4c3d48b8-b546-3808-66f5-cf7e95148150", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c053e6aa-9a12-3a66-3bb1-2e7f05405c72", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "3", + "y": "-5", + "z": "-5" + } + ], + "uuid": "d84d65d3-31c8-865d-cc73-35d290d2ca77", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "51c6cf6a-43b5-37ca-37e8-926dd1c763c4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "3", + "y": "-5", + "z": "-5" + } + ], + "uuid": "6b9f9bdd-0680-eac1-09df-06ca54e7f2b4", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cf42347c-f25a-83d1-fbe1-246ec9c9289b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "-90" + } + ], + "uuid": "c9cd50f6-5894-7a4a-a920-45ed5a498f5f", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "46b2a561-b926-cabe-1612-c5904e130227", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "-90" + } + ], + "uuid": "089ff2d1-75a2-4c8c-bb2e-b4ab30123706", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7c2c3a14-b8c0-875c-821f-60abeba44208", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.43288", + "y": "-3.95259", + "z": "-4" + } + ], + "uuid": "be3c52ba-84cb-248a-b527-e69605d57f2e", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c83cca21-7e87-0622-e730-95bde20b2e8b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.432879227876205", + "y": "-3.9525920142398663", + "z": "-4" + } + ], + "uuid": "d929be32-a619-415b-9942-fdd7828ea7b8", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6ed58450-4574-cabb-9ab2-ab77cae1e079", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-143.20667", + "y": "-7.35559", + "z": "47.06283" + } + ], + "uuid": "2fab4ec8-4259-927c-ae67-3cbba957ed85", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b224992b-bfa6-956f-b11b-5d77a628da7d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-143.20666616339167", + "y": "-7.35558728703154", + "z": "47.062828526646626" + } + ], + "uuid": "a06cd4f5-508f-2765-1849-793961cf376a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84d0ce30-a7f2-9f6e-aa52-5d7d37a6beae", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1.14715", + "y": "-1.61341", + "z": "0.28449" + } + ], + "uuid": "e6e07171-f651-3dbc-0fc6-2e83c8a3cfcb", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "39140889-429c-e28b-38d2-2a897e2d18fb", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1.1471528727020983", + "y": "-1.6134145682231948", + "z": "0.28448851944583664" + } + ], + "uuid": "9184acd8-6ccc-a6dd-4d50-f5d9d037124e", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73fcdb54-8786-6049-421d-f68b080ec275", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.45208", + "y": "-30.66101", + "z": "-10.44153" + } + ], + "uuid": "1694e766-072a-d586-3a83-2a02ada4728c", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6c472d2e-34b4-e3d2-9af0-74d61a59745a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.4520765883030435", + "y": "-30.66101201830452", + "z": "-10.441532675924464" + } + ], + "uuid": "e13f97f4-8242-9634-3daa-c0e4af4709b7", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6259b0a6-1869-4126-c25f-eb5b2e482bc2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3d47b6fb-347b-b218-4ca8-0097ef279fbd", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fa1ef393-2290-1fd8-b588-25da736ce170", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9ada7589-3da5-02d4-9be2-ed19cbcaef5e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "62.5" + } + ], + "uuid": "6425f828-3442-5d06-79a6-09435918b138", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9f1463ef-cba0-1153-676f-2dc54e655d90", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "62.5" + } + ], + "uuid": "5a5d41bd-bf71-1fb3-1b5e-6c7b9c5b3dfb", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dc3fc571-072d-0c37-0e2a-5bdc568b7440", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.30874", + "y": "-4.43505", + "z": "-2" + } + ], + "uuid": "880139a4-aea6-a71b-9715-599b078c0b36", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5364610f-f280-7570-dff7-6f64677e5c53", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.30874306617517", + "y": "-4.435054165891108", + "z": "-2" + } + ], + "uuid": "c737f16c-6ea9-8367-11c4-1b53cd29a120", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c1385604-8011-b280-e2ed-c61fd473c5ee", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0b26c13a-bba3-bb52-e932-5e39af892d59", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "16bfd6f3-1cc6-546e-5b1f-5ab9f134de82", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7fe1966-347d-b492-e086-d70e25322102", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fac44d1a-102e-f1a8-dd13-2429074625d5", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "87866e2d-2606-bd13-a059-ee59e48fc479", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3761481e-a7e8-3183-42ef-b8744fc45551", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "67.5", + "z": "0" + } + ], + "uuid": "793e0ad3-1f12-e9a1-0968-ccb4fad1c7e1", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e717633a-94d7-7484-be2e-82faafa6f701", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "67.5", + "z": "0" + } + ], + "uuid": "74e33563-511e-bd8b-e211-61ee67785d1c", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "33462968-2cb9-a24a-abdc-afa71f09228c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "89d7b31e-f52a-0ab4-998f-4ad5ad377c60", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "33e67b41-ca62-b06e-3456-55275d675452", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "505e8d1c-debd-3d96-eeb9-2426d2d45f9f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "908e711d-a361-6858-46c5-b01b74254149", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1951fd7c-91d1-7d3a-d06f-30316b010238", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9d3e9ee0-2386-d747-2cf3-163b7d8ef909", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8866ea2c-861c-7bce-18c7-a509101d4337", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.36603", + "z": "-0.36603" + } + ], + "uuid": "ff4bb965-c3b8-dea5-7554-2c214ef84a98", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f02ea2d1-7c59-f3f5-381e-6e5b07917e31", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.3660254037844386", + "z": "-0.36602540378443876" + } + ], + "uuid": "4aa5f310-9bc5-5133-b2b0-de8c4e2d5a50", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4d43debc-b170-940a-b9ff-bb35ecdbf608", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "-70", + "z": "0" + } + ], + "uuid": "501e1730-2d7e-8a44-a634-bf48035a2cd0", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1d4b2292-7513-9f0e-9829-30037391641b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "-70", + "z": "0" + } + ], + "uuid": "fcde3d97-cb45-e539-673c-1f533c2f447b", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e4fd6d55-9de3-cd4b-29a1-e696c5ccffe4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "355d3621-36a3-37bf-0c3b-304b421449bc", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1080d942-e9aa-dcb0-bbd2-9fc85333bb38", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9beafc7f-599c-443c-be4a-1120bc288444", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "90", + "y": "0", + "z": "0" + } + ], + "uuid": "38395a99-a1ae-524b-4f46-392e4a5eef0d", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fbab0569-3456-36b6-a0d7-2424b1824014", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "90", + "y": "0", + "z": "0" + } + ], + "uuid": "6b192be6-42cc-eeb4-0523-b9f97c11dc16", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "22fc8739-db87-20af-005c-30a1ad59bb78", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b76c3938-b03a-0e39-9b1b-bd6b7dcabc14", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ee96a3c0-6a1a-0ff8-8227-ae99dc84a97b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "32.44548", + "y": "1.29256", + "z": "15.16955" + } + ], + "uuid": "01d0016b-fa6a-00ec-44f7-c99e76a3c9a9", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "99dae464-dc63-ec17-4fb7-1f6e6d247b1b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "32.44547918394119", + "y": "1.292562968951188", + "z": "15.169550609715316" + } + ], + "uuid": "3c8fffa4-bbd3-925f-0584-2b3310bf7c59", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5cf8bd28-3f33-987c-24fe-20d9463c24d8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "3.2642", + "y": "-2.88014", + "z": "-3.61923" + } + ], + "uuid": "1c535a01-4dd4-3b79-c9f6-bd9887e3df5c", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "17c8355c-8f41-8b52-f089-0fbd17c67c15", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "3.2642046858350464", + "y": "-2.8801444529444797", + "z": "-3.619226865229767" + } + ], + "uuid": "8a53d04a-4dfe-577b-0854-06a43e989776", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f8c747a8-f43c-6194-bfef-4ed613b97380", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "6a937d65-11c9-7e7e-01bb-e91cf3959cad", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "fa8e0ad6-29de-6db7-5e28-dc7bdbd1bf70", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "71779ff6-2459-0614-0fbc-b468550591c4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-33.410302834881804", + "y": "-5.808792307250769", + "z": "-10.135383704886863" + } + ], + "uuid": "a217ce2e-69ba-3ef3-06ce-d40df6703042", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "925b29c9-b741-e516-34b6-6e8372dbadca", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-33.410302834881804", + "y": "-5.808792307250769", + "z": "-10.135383704886863" + } + ], + "uuid": "caf8bce5-98d0-7f95-bd59-e0f983b277e5", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "993ab6be-41c8-5434-6a79-d9b853b4907c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.66615", + "y": "0.89845", + "z": "0.03775" + } + ], + "uuid": "1a3aa9cd-12e0-2d4b-31f2-982a89cec9f8", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f2509d33-a4bc-c071-3dd5-d0b77aa037eb", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.6661491891061698", + "y": "0.8984540043125622", + "z": "0.037750366584156536" + } + ], + "uuid": "04912577-ce6a-6359-23b0-de4df06fb0be", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b5cd954c-c6a5-1653-f38d-6c151a37e550", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "0.8999999999999999", + "z": "1.1" + } + ], + "uuid": "cce98ed2-0208-f6e4-becd-dcebb90d3a2b", + "time": 0.08333, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "1949b320-7a0e-f85d-163c-60bbe54bdb5d", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "0.8999999999999999", + "z": "1.1" + } + ], + "uuid": "0bf73bb1-e77c-2d06-e078-78462fd2ebe7", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9835a4a0-d116-c2e3-0bd7-0ec2f991971b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bc7bb7d5-b346-93b0-9adf-6904f097c9b5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b09953ce-3c70-6e73-8e61-b59cebf05c22", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "987befe9-00b9-a7cc-e987-b01852b33de9", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "da925ed9-821d-183e-6e0c-41eb27c29302", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d17f2510-ba69-5dc1-2e9b-01a4d706bead", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_glad\"])\n" + } + ], + "uuid": "1f7b11e2-bbc0-aaa8-f4db-09043814cb91", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_glad\"])\nsounds:playSound(\"menu_decision\", player:getPos(), 0.8, 1)\n" + } + ], + "uuid": "ffb0fd4a-c89b-732b-2786-99dec9d10b95", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_glad\"])\n" + } + ], + "uuid": "a4671404-d1a1-3467-fbb8-9653352415f4", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_glad\"])\nsounds:playSound(\"08_menu_decision\", player:getPos(), 0.8, 1)\n" + } + ], + "uuid": "04daf86c-8195-98c6-3f30-5cdda18fc16b", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66b88688-8e4d-7b13-0ca3-df91d690716a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0fe7cbd8-8ac5-aa60-2ca2-e9b7b1499276", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1f690761-d2e7-c9f3-1241-3af176bf267d", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6cb18883-16ee-779f-7006-ea2b9a83e9c2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "84fdfdc3-110a-d60d-74fa-9157c8bb14f1", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "85eb8e9e-25b2-104e-f51e-16818757e1f1", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "07f80571-f214-eb3d-6eb2-d80a160f8056", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9a68304a-0e06-1aba-ce12-2469c0560c9d", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.16043", + "y": "0.38268", + "z": "0.90984" + } + ], + "uuid": "ee36d23d-21be-e40b-ecf1-9d736f396939", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0670d4b9-9c9c-058f-2891-c217882de5b8", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.16042999720436046", + "y": "0.3826834323650897", + "z": "0.9098437264664097" + } + ], + "uuid": "e3c41546-3cd1-6930-a357-f0ffa1fe7ad7", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "f3947557-7523-f316-443c-f020ad15fb5f", + "name": "taunt_unused4", + "loop": "once", + "override": true, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0cfc60e9-de84-b123-035b-a35df7b0ac72", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "41bec06d-9680-80fe-b1f9-ec75603abe77", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "f57ffe52-47cd-7f14-d9fe-7e4b642238c0", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "bbc16ba6-c293-a1e0-b40f-424ad825933f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c053e6aa-9a12-3a66-3bb1-2e7f05405c72", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "80c2b44c-2713-8a91-b71e-741bd6b0741c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cf42347c-f25a-83d1-fbe1-246ec9c9289b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ea280803-08b4-bac8-4b68-bdece334f0da", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15.45672062917447", + "y": "16.152640041761515", + "z": "-28.35638330254642" + } + ], + "uuid": "a5b51832-022f-99a6-2ed3-4097c47f9550", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15.45672062917447", + "y": "16.152640041761515", + "z": "-28.35638330254642" + } + ], + "uuid": "18b03a65-c698-0d6f-584e-c82111677859", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7c2c3a14-b8c0-875c-821f-60abeba44208", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8ccf6d19-9d80-4000-28a4-b70d5c7b209b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6ed58450-4574-cabb-9ab2-ab77cae1e079", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ca86a6f6-6558-5484-b677-e9f0ef277a06", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "-61.95323556855146", + "z": "97.80643428638405" + } + ], + "uuid": "194ecb76-1c2d-3c91-8860-c0ee2a41d7d8", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "-61.95323556855146", + "z": "97.80643428638405" + } + ], + "uuid": "ae92aa89-ceeb-0dc8-551e-c43ee5450247", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84d0ce30-a7f2-9f6e-aa52-5d7d37a6beae", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0a27ccde-7ee7-2c9a-b83d-0a20a988eb94", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9cc4f6aa-ebd5-2a89-39e2-e33dc6ac08a0", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "10b6252b-074f-0ebe-8d76-a6a75ab705a9", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "90ab77a7-25b4-a6a1-1ca8-d0b60821be7f", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73fcdb54-8786-6049-421d-f68b080ec275", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8fe5eb94-0dcb-11ca-81a3-746a37db9c8a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "64c52ea0-40b7-d679-7fec-0d3837f7a43d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3d47b6fb-347b-b218-4ca8-0097ef279fbd", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "45db5aa3-ea0e-80ec-b93e-4a8229d375bc", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "79b36ad7-0116-731b-8327-804057f339ed", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9ada7589-3da5-02d4-9be2-ed19cbcaef5e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ad1cc7a2-fd04-fa9a-659a-33323707625d", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15.45672062917447", + "y": "-16.152640041761515", + "z": "28.35638330254642" + } + ], + "uuid": "3020ae28-1a3d-917a-9e75-897b0c7cdb15", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15.45672062917447", + "y": "-16.152640041761515", + "z": "28.35638330254642" + } + ], + "uuid": "2d7076f4-51ba-89e4-5dd4-693439d5f1dd", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dc3fc571-072d-0c37-0e2a-5bdc568b7440", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7aa1d257-3ec1-487e-2c9b-8c4bc89d0da4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1ac26d7f-bb51-c0da-3f25-a321e81ef050", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0b26c13a-bba3-bb52-e932-5e39af892d59", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "12aa8f1b-de7b-d057-bc45-3a121783bbce", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "372a699a-b3be-cab6-ff78-cc6169dc154c", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "61.95323556855146", + "z": "-97.80643428638405" + } + ], + "uuid": "665b0964-7c89-a3f5-6233-38f3d0f03159", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.802601335657073", + "y": "61.95323556855146", + "z": "-97.80643428638405" + } + ], + "uuid": "b73e77a8-492e-253e-79f0-966152b85cfb", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fac44d1a-102e-f1a8-dd13-2429074625d5", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "48d23818-a08d-1837-89e5-16103f9183c2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6913dc75-8503-ef31-8974-0ce1c29d871e", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "cb42be35-bec9-e574-ec7f-d11740e816e1", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.9661628701163023", + "y": "0.46771270445968505", + "z": "0.40200533768771585" + } + ], + "uuid": "d8c4c82f-a9af-5a51-6146-f32c4878ecd6", + "time": 0.41667, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3761481e-a7e8-3183-42ef-b8744fc45551", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3e4685c-93e1-245f-6857-ead77aa319e9", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "35", + "z": "0" + } + ], + "uuid": "e78a68bb-7a46-3ab5-f8b7-ae09aa815514", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "35", + "z": "0" + } + ], + "uuid": "c6a5bffc-8abe-6abe-bc87-a17774a3b0af", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "89d7b31e-f52a-0ab4-998f-4ad5ad377c60", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f624f767-b5f9-501d-9a9f-e7d2f317a9ff", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e5417df9-329a-3d11-367b-53bc1b1cb4ac", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "505e8d1c-debd-3d96-eeb9-2426d2d45f9f", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66877b8c-2a8a-f600-74d2-55332245b2f4", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8866ea2c-861c-7bce-18c7-a509101d4337", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2075332d-31eb-d8ca-20ad-32e9cce035a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4d43debc-b170-940a-b9ff-bb35ecdbf608", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "99c6da90-e985-6780-b081-6359f8f60a68", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-35\n", + "z": "0" + } + ], + "uuid": "a1c5bc72-17ec-ad42-cd55-45f8e912e151", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-35\n", + "z": "0" + } + ], + "uuid": "af2cf313-fa2c-9b4c-dd99-6b7f77a4851c", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "355d3621-36a3-37bf-0c3b-304b421449bc", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5f511d99-da81-a68d-e286-c1f9f74d8987", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b555ce55-1574-a715-bae1-6d1040ac2238", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9beafc7f-599c-443c-be4a-1120bc288444", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7b066be-e63a-4645-5259-87a3fe6eae92", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "22fc8739-db87-20af-005c-30a1ad59bb78", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27fdc3bf-865e-cf54-bc33-4a062815e98c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6080078f-2db1-ff8f-8473-9e1958173e3a", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ee96a3c0-6a1a-0ff8-8227-ae99dc84a97b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "25a5f160-773b-a451-c010-e3ab9c484e53", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "d59ae665-6a97-b3ef-bd15-b5ba2f604892", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-2.5", + "y": "0", + "z": "0" + } + ], + "uuid": "26288ea9-fb02-7bcd-a186-9c4e61b58407", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5cf8bd28-3f33-987c-24fe-20d9463c24d8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8405f81c-1273-b3dd-bc63-2d1edcb2cb54", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "6a937d65-11c9-7e7e-01bb-e91cf3959cad", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "824ae08d-7766-9978-f030-e0f1afb5be53", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "a15a8605-9a60-109d-f32d-883333118e1a", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "71779ff6-2459-0614-0fbc-b468550591c4", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "67f08c91-2c7f-ebcc-6bed-ed654d3f4a87", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "22bd6b39-ad43-22e1-973e-364bd0fd0560", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "5c956304-94b8-f6c2-82f4-6e634c0f307a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "993ab6be-41c8-5434-6a79-d9b853b4907c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27491c6a-8e07-2d89-2b1a-81e9d1c4b9a3", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b5cd954c-c6a5-1653-f38d-6c151a37e550", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f0e3f2c7-b9f8-2a2e-da5c-729ea2c8c7a5", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bc7bb7d5-b346-93b0-9adf-6904f097c9b5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3b43f3d-fde2-81da-bbb2-773bc07f742a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "da925ed9-821d-183e-6e0c-41eb27c29302", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bbbb90e9-f728-b57b-afe7-98210354a38c", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "" + } + ], + "uuid": "f9250ffb-950c-70f9-0a00-601ee68ce649", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "77967132-a36c-ae84-7af1-57675ea37ef4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "9958c336-cf46-decc-0056-cbf7955f075e", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_happy\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nsounds[\"04_coin\"]:subtitle(\"akirapink taunts\"):pos(player:getPos(), 0.8, 1):play()\n" + } + ], + "uuid": "aa8995b9-60af-bb4d-a4b4-12f9b2c2c102", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "a1dd5a7e-241b-749a-81e9-19c48e29f67d": { + "name": "Eyes", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0fe7cbd8-8ac5-aa60-2ca2-e9b7b1499276", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e4803eb9-d16b-3b8d-c5d7-44dd672d1d72", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9297dfb1-97b0-b0a9-23fa-8d048e252309", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b3289893-5a86-7124-e2cc-b4633b872a26", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6cb18883-16ee-779f-7006-ea2b9a83e9c2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c2aab87e-923b-a032-9183-ed1717ce6045", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9a68304a-0e06-1aba-ce12-2469c0560c9d", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6fd8ec7d-0f61-1c2a-3339-876816078aa1", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2c8a5278-d47a-2614-d56b-b7d62ff4274d", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d773b4a5-6e83-678e-47e2-95b1ee70dcd4", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bead5c35-910c-abf2-2a14-306fc4dc5040", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "0fe9582e-afee-9945-c051-79e1996ab231": { + "name": "RightHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "614fea28-c5d5-996d-7c13-434e513e00ea", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c3c13eff-724a-652d-bda5-49f135d25e57", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "0e70788a-c661-8b5b-0d36-e9e8bf14d836", + "name": "taunt_effect", + "loop": "once", + "override": false, + "length": 0.5, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink.tauntfx:setVisible(true)\nmodels.akira_eiko_olivia_pink.tauntfx:setPrimaryTexture(\"Custom\", textures[\"taunt3\"])\n" + } + ], + "uuid": "020fc7aa-4275-9bc2-94a7-f6b1daf6cd53", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink.tauntfx:setVisible(false)\n" + } + ], + "uuid": "a15a6288-7be1-7cef-ea1a-ff323aa72fb2", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink.tauntfx:setVisible(false)\n" + } + ], + "uuid": "0f011f7c-4d72-259b-466d-ff1ec123e891", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink.tauntfx:setVisible(true)\nmodels.akira_eiko_olivia_pink.tauntfx:setPrimaryTexture(\"Custom\", textures[\"taunt3\"])\n" + } + ], + "uuid": "c81b53f4-37c2-837c-fb92-ac23ed0a2672", + "time": 0.04167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink.tauntfx:setVisible(true)\nmodels.akira_eiko_olivia_pink.tauntfx:setPrimaryTexture(\"Custom\", textures[\"taunt3\"])\n" + } + ], + "uuid": "77fca4e3-223a-271c-7875-56cdfa7db054", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + } + ] + }, + "f54dd531-dc13-462e-aea3-bf2d6416fae6": { + "name": "tauntfx", + "type": "bone", + "keyframes": [ + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "f49679dd-e8ae-88c4-880c-d4b09ef50379", + "time": 0.125, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.2", + "y": "0.2", + "z": "1" + } + ], + "uuid": "5f380102-ba4f-9b19-c9d3-f70e5c0710b1", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.2", + "y": "0.2", + "z": "1" + } + ], + "uuid": "31be5377-ace4-8da9-377f-0a7738a4fe5a", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.2", + "y": "0.2", + "z": "1" + } + ], + "uuid": "e854fe15-95cf-6e8e-3cfe-01718e298090", + "time": 0.45833, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + } + ] + } + } + }, + { + "uuid": "18404143-4c8c-9460-e8be-e3f672cfb9a1", + "name": "spyglog", + "loop": "hold", + "override": false, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "d2c73f9a-0086-c16e-855d-3ca1f7c220f1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-12.5" + } + ], + "uuid": "3aae9e24-2a13-a944-c001-f2a6dd73c5a3", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.56229743168842", + "y": "-4.2453", + "z": "-11.76782" + } + ], + "uuid": "4d2f793c-2ff0-0057-9d6d-270f01145b07", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "0", + "z": "0" + } + ], + "uuid": "0f2f957f-3751-455b-624f-247a6899fa9b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-32.9338", + "y": "-26.94622", + "z": "-18.89595" + } + ], + "uuid": "03139a11-c655-0481-01ec-32ea3d1d9820", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6b600c6c-e559-3dfb-5396-68a03edef977", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "17059338-787e-3f11-e1a2-ef948c7a4acc", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "458fc697-8c1b-c13d-2f3a-15f61840f187", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-0.29409", + "y": "-0.99321", + "z": "-1.66786" + } + ], + "uuid": "55ddc88a-24ac-2c5c-a00d-b737b62b9028", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "f402a4bb-e557-5c75-ee75-cb89b7e18ec7", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "39c987af-cf81-e765-293f-d68b7b5455ea", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "cfaeacce-4968-d72b-9a37-e2f0fb4255e8": { + "name": "RipeCamera", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "151.51949", + "y": "-0.13264", + "z": "20.07729" + } + ], + "uuid": "bb8e30f9-ce82-d434-7291-3994a3a8e00f", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1.52136", + "y": "-4.17991", + "z": "-0.46241" + } + ], + "uuid": "7d747abb-8645-4f31-8478-086c665262ba", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "7981c3ce-5587-e07c-1403-b1c7046bc35c", + "name": "spyglog2", + "loop": "hold", + "override": true, + "length": 0.25, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "0", + "z": "0" + } + ], + "uuid": "0f2f957f-3751-455b-624f-247a6899fa9b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-32.9338", + "y": "-26.94622", + "z": "-18.89595" + } + ], + "uuid": "03139a11-c655-0481-01ec-32ea3d1d9820", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "cfaeacce-4968-d72b-9a37-e2f0fb4255e8": { + "name": "RipeCamera", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "151.51949", + "y": "-0.13264", + "z": "20.07729" + } + ], + "uuid": "bb8e30f9-ce82-d434-7291-3994a3a8e00f", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1.52136", + "y": "-4.17991", + "z": "-0.46241" + } + ], + "uuid": "7d747abb-8645-4f31-8478-086c665262ba", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "0fe9582e-afee-9945-c051-79e1996ab231": { + "name": "RightHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-23.83613", + "y": "3.9733", + "z": "11.42727" + } + ], + "uuid": "c32bfbed-44fa-9d43-1f37-b383cc70160e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "dc69535f-8097-c7c6-74a8-b01e5f0624c1", + "name": "spyglassL", + "loop": "hold", + "override": false, + "length": 0.04167, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "31a2b9d8-e17c-0510-66c2-52b79bf002d4", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-32.93379627566355", + "y": "26.94622", + "z": "18.89595" + } + ], + "uuid": "7a684547-8f19-6a03-32f4-f2c63cef18d9", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-19.56229743168842", + "y": "-4.245301306521469", + "z": "-11.76782246222956" + } + ], + "uuid": "4d2f793c-2ff0-0057-9d6d-270f01145b07", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9638ea0a-6e1c-f5c6-6168-089ca9a797f5", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "12.5" + } + ], + "uuid": "c0499526-9c8f-c956-c16d-8ecd4c4f6e6e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "6290eb75-48e0-25fc-444b-5cf7fb54d01d", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "4dcf7f0d-5259-3432-ca1e-6109b4984fb2", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f40d0485-8070-7481-cd1f-39f3b3085c7f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "e2631d6c-a355-ec07-9490-2d7fee83faf5", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-37.5", + "y": "0", + "z": "0" + } + ], + "uuid": "ab9b46fd-b880-726c-69b8-adf7a51b1b9c", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.29409", + "y": "-0.9932127269163483", + "z": "-1.66786495129749" + } + ], + "uuid": "39a804c5-c626-f3a4-9e12-0260ffa29e50", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "23f3c5ec-42a7-b084-4f7a-541e0d2a8b18", + "name": "attackR", + "loop": "once", + "override": true, + "length": 0.25, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "9f8036e9-3072-e455-2672-09c4400623cc", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "fe94a616-9042-9316-dc7e-c01aa0b4c5b4", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "0e74b196-b406-ed39-d8d0-56f12d3dd758", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "023cbade-d0ad-470b-65c8-2140169e2f43", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "deedeaf5-d8aa-9434-d4d2-baf0d736e4d9", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "89564cbf-71ee-e468-9006-0718fe7a8a28", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "47.5", + "y": "0", + "z": "0" + } + ], + "uuid": "b4794697-6085-e0d2-0ae7-015f0d533d9c", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "47.5", + "y": "0", + "z": "0" + } + ], + "uuid": "0c19f845-725e-d6de-e0fc-e9c7c099d229", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "b4a52734-c287-4dbf-f8d3-af10bb00bc9a", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "0073bd25-e00a-50f0-569a-1bd5f3e38da7", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "0" + } + ], + "uuid": "b768c63d-f82f-8474-ae9e-ab8e661b5680", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "0" + } + ], + "uuid": "0b96796a-3d5b-0c4d-2928-7fed2c66f03a", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "85e097ab-c6a2-39aa-359b-7c41d8fe2ad7", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "dc4e891f-e038-b25e-5fbd-9495f2dfd50b", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1" + } + ], + "uuid": "917c9b9f-dc00-d5db-20ad-b569ba56e101", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1" + } + ], + "uuid": "530f3477-2342-5796-58c9-cb5502e51a4a", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "f165209c-8e5b-1fb7-76b2-f0c6f4179fe3", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "8c297b2e-c351-7751-f6c4-505507e63b7f", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "ef3a53d3-8405-0fef-04b9-dd6e1166e983", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "db21c900-0c68-cf64-577b-24480fbbd2d7", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "55", + "y": "0", + "z": "0" + } + ], + "uuid": "885537a1-fa78-cb84-8d6c-1e6548e9621e", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "55", + "y": "0", + "z": "0" + } + ], + "uuid": "c74b5121-4c27-7cec-5535-be590bca2b7b", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1" + } + ], + "uuid": "eef66488-1da4-1e36-0429-142fc3fcd166", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1" + } + ], + "uuid": "449c59c4-57f6-73f5-24c9-306a263f6f44", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "2d6a455b-ea63-0353-7537-98c0325507d8", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a9a0c460-3177-e1f1-a338-6507de4dba40", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "76ffce52-b0d2-51a4-760f-6d82ce5bd489", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "019f77d4-9f63-bdc5-b9b9-120e37a85e3d", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-35", + "y": "0", + "z": "0" + } + ], + "uuid": "e569f9fe-977b-fb76-7ae3-9cec2921484a", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-35", + "y": "0", + "z": "0" + } + ], + "uuid": "557a3427-46d2-ca92-57da-92153efc1a5e", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "aeaae414-bc3a-bac8-63b8-db58153738c4", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "f6b2ab64-ec07-c5cd-aa6d-171acd53beee", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-97.5", + "y": "0", + "z": "0" + } + ], + "uuid": "f906a117-a936-0729-04a3-7e382065be36", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "0" + } + ], + "uuid": "7c304134-63d4-c3bb-5baa-d38544b7df1e", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-5" + } + ], + "uuid": "5088f63e-c25b-f873-d75a-45c6f3806199", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-2" + } + ], + "uuid": "e41a33f0-38ee-04f3-1be9-65f42cda325f", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "4f0974ae-819a-e4c8-a322-fef01114cc7e", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "7396e187-51af-4e83-5d54-aa86ead3b0ca", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "d5c28e0c-2ec5-296a-42c7-59967676aebe": { + "name": "RightItemPivot", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "90", + "y": "0", + "z": "0" + } + ], + "uuid": "13a57209-c8e2-26be-7c73-35053e43403f", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "45", + "y": "0", + "z": "0" + } + ], + "uuid": "a974d441-7a55-7823-68f8-a3a78dd2d7a4", + "time": 0.25, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "f32467b1-8943-0045-2ba3-2307abff9a71", + "name": "attackL", + "loop": "once", + "override": true, + "length": 0.33333, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "bde49d4b-107b-7b8a-fef3-4d44ebc599bf", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "57d87a70-8004-b32e-df10-8f5391e02396", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "cadbf4d2-c951-087f-de93-0e1c9f6aa3c5", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "e8138226-7fc4-3e4e-b42e-094be418177f", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "c6d07754-a192-1811-63ad-1748d3409f69", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "fbde5ee4-2704-25e7-0a3d-1793aafaf398", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-97.5", + "y": "0", + "z": "0" + } + ], + "uuid": "5eb0601e-286f-8714-24bf-0b865e71f7ef", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-25", + "y": "0", + "z": "0" + } + ], + "uuid": "6208fe43-888f-1979-4f7d-48d2fef47ef8", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-5" + } + ], + "uuid": "782d140e-7bf5-0921-0592-5e3110e8437b", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-2" + } + ], + "uuid": "c17cc431-0711-71d5-ea70-2ead7aa4b95a", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "f702dbc5-d023-4848-b4f4-8e78540c2897", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "0f24299e-b4e9-9f5c-ad13-023760344d52", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "55", + "y": "0", + "z": "0" + } + ], + "uuid": "4d11b5b5-fb78-c704-5380-49f3ee89cfa6", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "55", + "y": "0", + "z": "0" + } + ], + "uuid": "548623b7-7c52-bdda-529c-a904e1b06e8f", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1" + } + ], + "uuid": "8bf0ae45-716e-bc1c-5f87-81e226ce918f", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1" + } + ], + "uuid": "65336a59-fa0e-165d-8b9c-edcd4c4f7f4b", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "731de1ce-93ca-0567-e24c-e207f4e14ccb", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "857e67d2-1945-d172-52d8-fd3516314dcc", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "0" + } + ], + "uuid": "36ad6bb8-620f-1d9c-f91e-199f4c3cc638", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-27.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3e755cb9-1a71-224b-2a0c-a03ea13d1289", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "aa840502-d58b-8b25-77ed-89d3022aa5c6", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "f05b54ad-eb21-2168-411d-43a337c4e239", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1" + } + ], + "uuid": "d7db17cb-8ceb-4d0b-fd39-ffce1d5f8b5a", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1" + } + ], + "uuid": "dd6f0266-02dd-fcba-bdc4-c27f0cbec806", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "673be0b4-28bd-fe6e-7b6b-285e48fc5da1", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "20", + "y": "0", + "z": "0" + } + ], + "uuid": "3fe8dbae-87c2-0eab-85dc-bdd7ea22b14a", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "46d5658c-65e0-6407-5e03-5b3cf74f06dd", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "01132bb6-eb6b-adf4-cb1c-df7b95339b56", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-35", + "y": "0", + "z": "0" + } + ], + "uuid": "6ea5223e-2a75-aec5-d572-1eeb944f23c8", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-35", + "y": "0", + "z": "0" + } + ], + "uuid": "49ca3314-4fb2-8b85-5a94-01967000d96f", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "643ba79a-cc39-a1c5-c45a-14a98363bd6f", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "a1d8b7d1-d7d5-bbe8-de5d-1fb85670d2b0", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "47.5", + "y": "0", + "z": "0" + } + ], + "uuid": "8d263f8b-0a85-2fbe-3a85-5c8966e22fe2", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "47.5", + "y": "0", + "z": "0" + } + ], + "uuid": "0be4efb0-df10-b663-de7d-11acd7a53755", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "8befb119-b02b-769e-4937-7d04e2334dd4", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "874a6953-c2b5-ad3f-0ba7-1afa717a7fa6", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-35", + "y": "0", + "z": "0" + } + ], + "uuid": "f92126c9-7dff-6020-659d-4a84dfb0b036", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-35", + "y": "0", + "z": "0" + } + ], + "uuid": "e8b03927-50dc-51e5-b394-bb50a67b549e", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "7ee53e66-d838-810f-c946-4d8840c31c31", + "time": 0.08333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "0" + } + ], + "uuid": "47b662bc-2e8d-2432-4716-e39b21f36787", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bbd0e445-5146-a329-c36c-6a3ceddc7cd5", + "time": 0.33333, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9df644d4-b183-5aa8-8c3e-e33b2353ed95": { + "name": "LeftItemPivot", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1fa045b6-7f3c-4b6f-d11f-c10c6b44dfb4", + "time": 0.33333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "90", + "y": "0", + "z": "0" + } + ], + "uuid": "1ff1aeb1-ec24-ed24-7cb9-7d75a9a1d6d3", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "45", + "y": "0", + "z": "0" + } + ], + "uuid": "9f7bf003-19cd-1e61-0ea8-0a4e29422d2a", + "time": 0.25, + "color": -1, + "interpolation": "linear" + } + ] + }, + "d5c28e0c-2ec5-296a-42c7-59967676aebe": { + "name": "RightItemPivot", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "45", + "y": "0", + "z": "0" + } + ], + "uuid": "7aa1e8ca-1735-2206-7dbd-d79e65bb55ed", + "time": 0.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "90", + "y": "0", + "z": "0" + } + ], + "uuid": "972fd571-894e-4b27-0390-b45dc9e4429b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "0fa2cd06-6240-90b3-1825-6504a833ebdb", + "name": "afk_start", + "loop": "loop", + "override": true, + "length": 2.125, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "90", + "y": "0", + "z": "0" + } + ], + "uuid": "9572f7b0-bc5e-b966-5098-ed7948a59a9b", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "be11dd31-439e-bcc0-0b99-eccd52d5b192", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b4052b5b-d79a-c37d-c159-1a29dd3da9c8", + "time": 1.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "6337b59c-5f92-2e60-e5ea-520273366260", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "14" + } + ], + "uuid": "272e3ff8-9a15-ef73-6611-a51461960f37", + "time": 1.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "19" + } + ], + "uuid": "ea048fc6-ff1c-1b29-e278-8bd801b8f75a", + "time": 1.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "15" + } + ], + "uuid": "37242eca-172c-504f-1378-0200bfca6921", + "time": 1.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "17" + } + ], + "uuid": "9462178a-9039-9b75-db90-00f3c5002a5e", + "time": 1.875, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d265bb37-bed4-71e2-4914-5c2b1ed322ea", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fe47a50a-851f-cd12-af30-08189f5ff782", + "time": 1.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.2", + "y": "1.2", + "z": "0.8" + } + ], + "uuid": "27f9d6d8-8d56-ec4d-1029-d50ba8630bf3", + "time": 1.375, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.8", + "y": "0.8", + "z": "1.2" + } + ], + "uuid": "d812c492-bc63-42b8-750f-4f523cd43111", + "time": 1.5, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "1.1", + "z": "0.9" + } + ], + "uuid": "ea49108a-328a-2a18-bc88-3fa14cfe871b", + "time": 1.625, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.9", + "y": "0.9", + "z": "1.1" + } + ], + "uuid": "9509c290-5316-2439-83ef-368dd39354ab", + "time": 1.75, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "164b7c96-9574-25ee-bea6-af6430bb742c", + "time": 1.875, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "3e4c2146-fab9-8979-b908-89a6b06e32c0", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "3e478c55-9032-088f-3729-77fdb2dc3af0", + "time": 1.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c28c465a-05b2-29bb-b396-30298da1da1b", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "25" + } + ], + "uuid": "6ee3a78b-af63-12cf-6c04-a6557bd3ef39", + "time": 1.25, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-449.99998614642845", + "y": "-85", + "z": "339.99999" + } + ], + "uuid": "5e014a81-89fd-2090-c3fe-0bf5f7049ba6", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "eef178b0-2249-6ad2-4b74-66deed1abb98", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "14ffbf64-8ec4-b88d-9f0b-8e2e38a78640", + "time": 1.25, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-449.99999", + "y": "85", + "z": "-339.99999" + } + ], + "uuid": "302b4eb4-29ac-4ab0-b645-df4a2daa5d20", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b651d2b5-0715-b697-7a84-805d2a010423", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "27ec4edb-eca9-5e0a-a600-9fdfa65cee5c", + "time": 1.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "17799bb0-8660-5ac3-c6e6-bfdbe5af588c", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5bf0cf55-dc2d-a74f-91a9-3aa5d3314a31", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e0ceb289-c7be-b008-21d9-bc7157e150da", + "time": 1.25, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "17.5" + } + ], + "uuid": "ca203144-0b7d-14b1-48e3-5b5c3cda4cc1", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "62d8b275-061b-3418-ab53-b3bcb2990690", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1ce22c85-8689-170e-4d42-92c957aa7b0b", + "time": 1.25, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-25" + } + ], + "uuid": "c7520bbc-c8fe-e8f9-7de4-e9f8af5c00ef", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "60288599-2edd-34b0-94da-357d510e3b45", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "941d9890-606e-dbfd-a9c4-9e44fb901d68", + "time": 1.25, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_sleep\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nsounds:playSound(\"08_menudecision\", player:getPos(), 0.8, 0.2)" + } + ], + "uuid": "0739da13-ec47-b986-81e1-3a6d441d90e7", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "68f1ec84-a904-2f2f-8acd-06e534371413", + "name": "afk_start_and_loop", + "loop": "loop", + "override": true, + "length": 14, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "60", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "90", + "y": "0", + "z": "0" + } + ], + "uuid": "16167284-b7d3-a5bd-6227-189062d0d9e0", + "time": 2.66667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73a5db2f-6ee3-7175-305d-b08cd07b8529", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "28ec0915-f6d6-9b10-7803-12c35dd5bb53", + "time": 2.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b04bc2f5-0bd1-74c2-a00f-294655fbad78", + "time": 1.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "15" + } + ], + "uuid": "f98921df-c795-498e-92e1-024be9a269ad", + "time": 5.29167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "19" + } + ], + "uuid": "c28e4e6a-6377-6347-679c-60901f5257cc", + "time": 9.66667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "19" + } + ], + "uuid": "ea048fc6-ff1c-1b29-e278-8bd801b8f75a", + "time": 3.29167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "dfb9d7c7-fb7c-25da-5a9b-e6d3d05daef8", + "time": 2.66667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "14" + } + ], + "uuid": "7c0e3733-4beb-6f02-5b06-bdff395e806a", + "time": 2.79167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "19" + } + ], + "uuid": "12e86de2-049f-07db-0d0e-44789f23f638", + "time": 2.91667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "15" + } + ], + "uuid": "f39de5bc-af2e-b96d-ab1a-e8782d2a8cd3", + "time": 3.04167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "17" + } + ], + "uuid": "0eebea51-b60b-8984-1f67-2f706bbd01de", + "time": 3.16667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c4cdcad5-2637-5215-4f54-07ebb3174f96", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "38727e01-fa20-9cee-bbb6-2405c8273f78", + "time": 2.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "15" + } + ], + "uuid": "69c5708b-4889-672c-6002-e2677a480c7c", + "time": 14, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "717a552c-d73c-eff5-c7c4-cdcf7bc45d20", + "time": 1.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.8999999999999999", + "y": "0.8999999999999999", + "z": "1.1" + } + ], + "uuid": "977f5411-606c-c7bc-0644-6aa1aa9699ef", + "time": 5.29167, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "1.1", + "z": "0.9" + } + ], + "uuid": "cdf59c44-0c39-08c5-cf40-e3e682ba0403", + "time": 9.66667, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.8999999999999999", + "y": "0.8999999999999999", + "z": "1.1" + } + ], + "uuid": "84f78604-3b6e-9594-8213-d79ecab79ad7", + "time": 14, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "1.1", + "z": "0.9" + } + ], + "uuid": "ea49108a-328a-2a18-bc88-3fa14cfe871b", + "time": 3.29167, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.2000000000000002", + "y": "1.2000000000000002", + "z": "0.8" + } + ], + "uuid": "3c247ba5-36c3-f258-5c81-dcb7e6198645", + "time": 2.66667, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.7999999999999999", + "y": "0.7999999999999999", + "z": "1.2000000000000002" + } + ], + "uuid": "c2502a7e-79be-ee7c-dc95-d1799adb0aeb", + "time": 2.79167, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "1.1", + "z": "0.9" + } + ], + "uuid": "9fe4557a-8348-5321-b1bb-04d009a2c65a", + "time": 2.91667, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.8999999999999999", + "y": "0.8999999999999999", + "z": "1.1" + } + ], + "uuid": "c7f8f9b3-b777-a652-ff2e-deecf15598c3", + "time": 3.04167, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "741b9066-91e3-9b34-a9cf-267def03542d", + "time": 3.16667, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "1f9d38fe-f257-a637-5723-f3e700ff76df", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "a3b96ba1-cf03-a85e-86da-ca81e0214b29", + "time": 2.45833, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "cfc5947d-44f7-7c7d-a73d-a5c2f75bab1c", + "time": 1.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "759a13eb-f490-c1ec-ddfb-8c20f3518869", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "25" + } + ], + "uuid": "17812e35-8e5f-1620-469f-1290b95f4fcb", + "time": 2.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "25" + } + ], + "uuid": "be6f9c33-2e7b-196b-3a35-ac797f95c88b", + "time": 1.25, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-449.99998614642845", + "y": "-84.99999999999955", + "z": "339.99998619914504" + } + ], + "uuid": "5e014a81-89fd-2090-c3fe-0bf5f7049ba6", + "time": 3.29167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-449.99998614642845", + "y": "-84.99999999999955", + "z": "339.99998619914504" + } + ], + "uuid": "a06abe0f-af4e-2d09-694f-cee786b3403b", + "time": 2.66667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "88a89960-df33-804c-d06b-4b08ea3805b6", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dc2cad15-61c1-1742-f50b-de896f512510", + "time": 2.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "42541515-e9a9-f60f-76ad-189ee204d55c", + "time": 1.25, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-449.99998614642845", + "y": "84.99999999999955", + "z": "-339.99998619914504" + } + ], + "uuid": "302b4eb4-29ac-4ab0-b645-df4a2daa5d20", + "time": 2.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-449.99998614642845", + "y": "84.99999999999955", + "z": "-339.99998619914504" + } + ], + "uuid": "29756cab-e90d-5f4b-1d3f-829da9040d1f", + "time": 2.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "aaaaaa01-1791-6853-e89f-39582fd626d1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a5d49e17-6e57-6f21-4f4d-7faf1d36993c", + "time": 2.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "34c4b10d-fd6c-4c5e-8de5-1d4a23a5cdd6", + "time": 1.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "17799bb0-8660-5ac3-c6e6-bfdbe5af588c", + "time": 2.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "80696928-9a6b-fc20-0f13-8d3a48e892b8", + "time": 2.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2c53ee81-e1e2-7b01-6491-d8fab76e4640", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9debe943-7df2-552d-b8f4-e176e6332847", + "time": 2.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f8792fda-f612-6563-5bef-cd553b58b19e", + "time": 1.25, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "17.5" + } + ], + "uuid": "ca203144-0b7d-14b1-48e3-5b5c3cda4cc1", + "time": 2.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "17.5" + } + ], + "uuid": "c1097064-f1bd-8c67-c29b-ba1a2e43a3fa", + "time": 2.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4c1e66ec-e389-b531-7f8c-b82d1caed417", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8a165d3c-0cf5-f68b-e0b1-b1dd627cfa12", + "time": 2.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "46f1ba3e-df21-ee85-f41f-ead09fabc718", + "time": 1.25, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-25" + } + ], + "uuid": "c7520bbc-c8fe-e8f9-7de4-e9f8af5c00ef", + "time": 2.625, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-25" + } + ], + "uuid": "ced322e0-4bb0-91de-d30d-03cbe0295ff1", + "time": 2.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f2010956-fe89-a897-34d6-d36e3f5f5c20", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a46ce1a5-8f68-a490-2bf0-0982cb8eba20", + "time": 2.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f4b933ad-c40d-1887-ef67-ec8d97ae0cbb", + "time": 1.25, + "color": -1, + "interpolation": "linear" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_sleep\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nsounds:playSound(\"08_menudecision\", player:getPos(), 0.8, 0.7)" + } + ], + "uuid": "705862ff-adf8-6c1c-691e-12783ed7c8c4", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "f11599b1-1e20-e340-fb35-f3ea946775a1", + "name": "afk_loop", + "loop": "loop", + "override": true, + "length": 6, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "90", + "y": "0", + "z": "0" + } + ], + "uuid": "9572f7b0-bc5e-b966-5098-ed7948a59a9b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "19" + } + ], + "uuid": "ea048fc6-ff1c-1b29-e278-8bd801b8f75a", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "15" + } + ], + "uuid": "f98921df-c795-498e-92e1-024be9a269ad", + "time": 2, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "19" + } + ], + "uuid": "c28e4e6a-6377-6347-679c-60901f5257cc", + "time": 4, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "15" + } + ], + "uuid": "5f3db477-f4b4-f07d-1f81-68bf32906814", + "time": 6, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "1.1", + "z": "0.9" + } + ], + "uuid": "ea49108a-328a-2a18-bc88-3fa14cfe871b", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.8999999999999999", + "y": "0.8999999999999999", + "z": "1.1" + } + ], + "uuid": "977f5411-606c-c7bc-0644-6aa1aa9699ef", + "time": 2, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "1.1", + "z": "0.9" + } + ], + "uuid": "cdf59c44-0c39-08c5-cf40-e3e682ba0403", + "time": 4, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.8999999999999999", + "y": "0.8999999999999999", + "z": "1.1" + } + ], + "uuid": "84f78604-3b6e-9594-8213-d79ecab79ad7", + "time": 6, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-449.99998614642845", + "y": "-84.99999999999955", + "z": "339.99998619914504" + } + ], + "uuid": "5e014a81-89fd-2090-c3fe-0bf5f7049ba6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-449.99998614642845", + "y": "84.99999999999955", + "z": "-339.99998619914504" + } + ], + "uuid": "302b4eb4-29ac-4ab0-b645-df4a2daa5d20", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "17799bb0-8660-5ac3-c6e6-bfdbe5af588c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "17.5" + } + ], + "uuid": "ca203144-0b7d-14b1-48e3-5b5c3cda4cc1", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-25" + } + ], + "uuid": "c7520bbc-c8fe-e8f9-7de4-e9f8af5c00ef", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_sleep\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera\n" + } + ], + "uuid": "6d6d759b-819b-eb2e-6a53-91f7e0d26594", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "2b8fd24f-b248-2f4d-87e0-fe0217166595", + "name": "afk_end", + "loop": "once", + "override": true, + "length": 1.25, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "90", + "y": "0", + "z": "0" + } + ], + "uuid": "9572f7b0-bc5e-b966-5098-ed7948a59a9b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "be11dd31-439e-bcc0-0b99-eccd52d5b192", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "20" + } + ], + "uuid": "6337b59c-5f92-2e60-e5ea-520273366260", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d265bb37-bed4-71e2-4914-5c2b1ed322ea", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.2000000000000002", + "y": "1.2000000000000002", + "z": "0.8" + } + ], + "uuid": "27f9d6d8-8d56-ec4d-1029-d50ba8630bf3", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "3e4c2146-fab9-8979-b908-89a6b06e32c0", + "time": 0.5, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + } + ] + }, + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c28c465a-05b2-29bb-b396-30298da1da1b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-449.99998614642845", + "y": "-84.99999999999955", + "z": "339.99998619914504" + } + ], + "uuid": "5e014a81-89fd-2090-c3fe-0bf5f7049ba6", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "eef178b0-2249-6ad2-4b74-66deed1abb98", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-449.99998614642845", + "y": "84.99999999999955", + "z": "-339.99998619914504" + } + ], + "uuid": "302b4eb4-29ac-4ab0-b645-df4a2daa5d20", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b651d2b5-0715-b697-7a84-805d2a010423", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "17799bb0-8660-5ac3-c6e6-bfdbe5af588c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5bf0cf55-dc2d-a74f-91a9-3aa5d3314a31", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "17.5" + } + ], + "uuid": "ca203144-0b7d-14b1-48e3-5b5c3cda4cc1", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "62d8b275-061b-3418-ab53-b3bcb2990690", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-25" + } + ], + "uuid": "c7520bbc-c8fe-e8f9-7de4-e9f8af5c00ef", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "60288599-2edd-34b0-94da-357d510e3b45", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\nsounds:playSound(\"08_menudecision\", player:getPos(), 0.8, 0.2)" + } + ], + "uuid": "0739da13-ec47-b986-81e1-3a6d441d90e7", + "time": 0.5, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "4b1b0f07-b041-5b06-fc70-690b8fa887ed", + "name": "offering", + "loop": "hold", + "override": false, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "" + }, + { + "uuid": "1ab10c10-a860-dc7d-21bf-c12abd31aab2", + "name": "explodejump", + "loop": "loop", + "override": false, + "length": 1, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "90", + "y": "0", + "z": "0" + } + ], + "uuid": "1d86405a-b14e-513e-5b2a-a05f3923b334", + "time": 0.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "33e7c3aa-829c-98e6-ba6e-a30a50b8255a", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "180", + "y": "0", + "z": "0" + } + ], + "uuid": "47ccf056-928f-bc0c-1fb0-24c394a18613", + "time": 0.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "270", + "y": "0", + "z": "0" + } + ], + "uuid": "e7d859ac-22b5-2fe3-6338-b0595d14fa8e", + "time": 0.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "360", + "y": "0", + "z": "0" + } + ], + "uuid": "fe820170-17a7-3284-a9c2-548927eda0e3", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "16", + "z": "16" + } + ], + "uuid": "22dd15d6-05a2-204a-007c-5b2eff663791", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "aa02f667-12f4-7584-023c-f6175788f0f8", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "34", + "z": "0" + } + ], + "uuid": "5568bcbf-7357-817d-4fc8-09d7df334a8a", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "575cc2b1-b1b0-c4ba-2384-7551175d2a70", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "5.3", + "z": "12.13" + } + ], + "uuid": "3dff7162-ebda-72d9-8673-75e053f3ea13", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "16", + "z": "-16" + } + ], + "uuid": "b80537a1-4373-9e4e-7b0d-7d11a387fb4e", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "5.3", + "z": "-12.13" + } + ], + "uuid": "97461396-d3aa-2255-ef17-d327e67e0176", + "time": 0.875, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "29.3", + "z": "12.13" + } + ], + "uuid": "92c9469d-27b3-4d17-f4b5-7d5b0ef0ff34", + "time": 0.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "29.3", + "z": "-12.13" + } + ], + "uuid": "58e8f813-a79b-f640-ff06-18b59d573bb2", + "time": 0.625, + "color": -1, + "interpolation": "catmullrom" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "5", + "y": "0", + "z": "0" + } + ], + "uuid": "ee660ada-94d2-dfab-8698-fa7de9c51061", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.2", + "y": "1", + "z": "1" + } + ], + "uuid": "6a2df7c7-1f52-2bad-e1a7-188e3d2e3889", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-360", + "y": "-90", + "z": "-475" + } + ], + "uuid": "a3fb2c11-fe6c-9a90-a44d-9558ff241f44", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "0" + } + ], + "uuid": "5a21f52a-b1aa-7775-28e6-e803065622e3", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-360", + "y": "90", + "z": "475" + } + ], + "uuid": "ebf1377e-279c-c746-c63f-12fc2a088daf", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-50", + "y": "0", + "z": "0" + } + ], + "uuid": "b9a5766f-b248-904f-ac04-d547ffd61b9d", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "30" + } + ], + "uuid": "569b6af9-854a-626a-2958-579cbeb1d75e", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "6023fef4-7716-e016-bec5-e31436449e69", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-30" + } + ], + "uuid": "c5e640da-ba20-9a79-eb9c-2e8d5fe6caec", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "42.5", + "y": "0", + "z": "0" + } + ], + "uuid": "46a2af76-77c8-9ac7-14e8-1b932a0d7da8", + "time": 0, + "color": -1, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + } + ] + }, + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_fear\"])\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightCamera:setPrimaryTexture(\"Custom\", textures[\"camera\"])\n" + } + ], + "uuid": "227a2a07-8f20-767a-f9a8-7dbb950945cb", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "ec106689-0bec-6cfa-4355-0053637db454", + "name": "climb", + "loop": "loop", + "override": true, + "length": 1, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.73536", + "y": "0", + "z": "0" + } + ], + "uuid": "c32562a2-294a-8a4a-6526-7d298fa217c4", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "9911e52c-d821-8da7-10b5-414932ecf3d4", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1.05" + } + ], + "uuid": "1521282a-7af4-927b-b881-b7723733ba93", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-83.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4bdeffad-de28-c2dd-fd85-dd332284d71c", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-104.5", + "y": "0", + "z": "0" + } + ], + "uuid": "cb29197a-792e-8cfe-4d54-e7b2063dab77", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-124", + "y": "0", + "z": "0" + } + ], + "uuid": "01cc3563-83ed-7c63-ef58-065d4358bae8", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-105.5", + "y": "0", + "z": "0" + } + ], + "uuid": "b763c3e4-7bb6-722b-83f1-05183b987222", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-103.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a6aa97b2-3b50-bd4c-0c1c-264cf6587d4d", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "9283c5aa-d1b0-38ab-f0ba-30e819ee9355", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-83.5", + "y": "0", + "z": "0" + } + ], + "uuid": "111503cc-e77a-b2bc-c2ae-94e8b9dc1309", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-104.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c18c9d43-01f9-ce3f-e3b0-fc0d54567fe9", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-124", + "y": "0", + "z": "0" + } + ], + "uuid": "ac87f4a9-f6ec-5b33-ccf8-7635dfd05583", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-105.5", + "y": "0", + "z": "0" + } + ], + "uuid": "55862b2b-4819-9de0-6e56-f995a64e25ea", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-103.5", + "y": "0", + "z": "0" + } + ], + "uuid": "2292631a-a698-afb2-dfe4-041caa15fad8", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "0793a453-8795-1c57-0280-ccbf27d7f6e9", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-38.5", + "y": "0", + "z": "0" + } + ], + "uuid": "677cd82d-ff1d-51d5-91c9-1edb49586048", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-59.5", + "y": "0", + "z": "0" + } + ], + "uuid": "6b3e1d97-641a-e3f5-9a04-3a3f49010485", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-79", + "y": "0", + "z": "0" + } + ], + "uuid": "79ae5306-015a-a807-a21f-0d1f26a2bcf9", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-60.5", + "y": "0", + "z": "0" + } + ], + "uuid": "28532262-fcdc-3336-d179-c3b4f94451c8", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-58.5", + "y": "0", + "z": "0" + } + ], + "uuid": "d4368c70-0cf2-6cbf-fa65-a848825b90ec", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2", + "z": "-2" + } + ], + "uuid": "8ac44326-d7d0-0661-39a2-6100831e7603", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0bd87b3e-b076-d3cf-b8a6-468b492cc14a", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "64577bb7-5591-f74e-4efe-c55931257854", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-38.5", + "y": "0", + "z": "0" + } + ], + "uuid": "7e99abc6-b54d-27ee-a995-e791a3bcd4ba", + "time": 0.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-59.5", + "y": "0", + "z": "0" + } + ], + "uuid": "ef65cf55-29cf-a408-cf2c-6f0c7e2b5e33", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-79", + "y": "0", + "z": "0" + } + ], + "uuid": "6e51ee37-87da-57e2-ad03-07038dc836f8", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-60.5", + "y": "0", + "z": "0" + } + ], + "uuid": "1d39f3a7-74b8-dc2c-a6cc-0c641f962b3b", + "time": 0.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-58.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4a84e2fa-beb4-347e-eb53-3aa335fd8e71", + "time": 1, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2", + "z": "-2" + } + ], + "uuid": "88c2085c-a84c-afd7-af3c-cd2e8ed5bf39", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "34e7ff8a-dfdf-ec81-0889-74f0e405b5e1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5794fd30-12ae-e30e-9cae-823fe1a9d5c5", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "6" + } + ], + "uuid": "aab95858-a41a-26a2-d240-e0b412ca4470", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "793d754e-72f3-c4fe-e5d1-2f333e62d8eb", + "name": "climbcrouch", + "loop": "hold", + "override": true, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "2" + } + ], + "uuid": "52494f2c-464e-bfb7-6e47-07579d740d15", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-63.150945046339075", + "y": "0", + "z": "0" + } + ], + "uuid": "844cc543-2325-d238-01af-1022d0ce3a2e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "8f7e3bd2-e0c9-bdf0-4c38-3b3fb7f198e8", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1.05" + } + ], + "uuid": "5da1b7f1-ceaf-03a1-2066-15c2da345475", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-124", + "y": "0", + "z": "0" + } + ], + "uuid": "9157119e-1122-fd23-cbbd-2f569c1102db", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "f7dfada2-dba0-11f2-05c9-d7e8342c86a0", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "ad3e5eac-13c5-1120-5513-297fc31f8d0f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-124", + "y": "0", + "z": "0" + } + ], + "uuid": "e1a923d4-2138-18e5-2978-0e577a8a54c1", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "2df8536b-7105-707a-7269-bbaef6f9ef22", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "0", + "z": "0" + } + ], + "uuid": "99542b82-7f5f-e298-c73c-5b9dcaac5df6", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-73.5", + "y": "0", + "z": "0" + } + ], + "uuid": "d073024f-8302-c664-ac48-4fd5fb7e9419", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2.5", + "z": "-2" + } + ], + "uuid": "c2b34df2-e998-9739-96f0-2cf2b3209836", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "97.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a7b93375-1142-462d-06ac-5ab855b90911", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a20611f8-2d7b-fd67-f2de-9ea4262258e0", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-15.22074", + "y": "-0.34406", + "z": "-2.61298" + } + ], + "uuid": "4327da55-4a18-31eb-e66b-37b98230f539", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-1" + } + ], + "uuid": "e417f797-a0cb-ba2d-7a1c-4aca31eb4315", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-73.5", + "y": "0", + "z": "0" + } + ], + "uuid": "bab70ebf-600c-161a-05da-7517ebf08781", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2.5", + "z": "-2" + } + ], + "uuid": "e995b882-9092-e5d0-dd60-cacfdbc26c6f", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "97.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a8d0054d-048f-03fc-c5b0-80d3f7bd4a4a", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a33393cc-b9c9-d2f6-d043-bc5551fc1d1b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-15.22074073441172", + "y": "-0.3440641947881886", + "z": "-2.612981902381307" + } + ], + "uuid": "12331ba7-1401-80ee-1602-c783acedd252", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-1" + } + ], + "uuid": "266e891d-f42e-e578-f3eb-16fc11fed091", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "7efbde3c-c3b7-0a94-bae5-3e60303b2e7e", + "name": "eatL", + "loop": "loop", + "override": true, + "length": 0.25, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "0", + "z": "0" + } + ], + "uuid": "8a72b854-27f4-c271-35ae-ebc485e60dee", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "0", + "z": "0" + } + ], + "uuid": "eab4bf33-a2c3-bb55-315c-d327ba4920cc", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-97.5", + "y": "0", + "z": "0" + } + ], + "uuid": "15d05953-781b-37ca-c9f8-0d8ab145ae39", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0ccb3d05-028a-7afb-d385-fec940a4be6e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "10f91eab-0ec5-a2b9-79fd-244c9be02e7b", + "time": 0.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "31bd756a-2e62-f186-b619-a919fc2de3c1", + "time": 0.125, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-21.02704", + "y": "-16.74985", + "z": "72.59498" + } + ], + "uuid": "1fd00897-aad1-745e-91dc-e2432d788d4c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "82cc99fe-70ef-6c01-86d4-69463007ae10", + "name": "eatR", + "loop": "loop", + "override": true, + "length": 0.25, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "0", + "z": "0" + } + ], + "uuid": "0a823825-f0fc-5bbe-f5ff-b4844af6c6cd", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-90", + "y": "0", + "z": "0" + } + ], + "uuid": "3db752cc-91cf-20de-4922-08c1d73c9f46", + "time": 0.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-97.5", + "y": "0", + "z": "0" + } + ], + "uuid": "bd97558f-253a-52ff-63d9-fe775f2dfed3", + "time": 0.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6014fccd-4d1f-afe4-f542-2757f6136d21", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6ffa0100-9dd5-102b-aef1-cde7f5709ccb", + "time": 0.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "af6ea962-9bb6-d16d-41ab-c54e27637793", + "time": 0.125, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "6.686303009", + "y": "0.2309186082", + "z": "-65.0870213194" + } + ], + "uuid": "4572e898-965f-abb8-9f1c-2867d5119fde", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "0fe9582e-afee-9945-c051-79e1996ab231": { + "name": "RightHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-20", + "y": "2.5", + "z": "-32.5" + } + ], + "uuid": "42b8c46d-223c-5df7-9968-e50a3aad49b3", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "d5c28e0c-2ec5-296a-42c7-59967676aebe": { + "name": "RightItemPivot", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "41.3419774489", + "y": "13.3179144916", + "z": "-78.5430389209" + } + ], + "uuid": "ab1e0fb7-d7de-50d5-d4fa-75bf71d60eb3", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "2" + } + ], + "uuid": "b3a2371c-1e19-d3c0-0026-7a5ad2068686", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "793030e8-8f1a-d542-2b98-2082f2c34e7d", + "name": "fountain_opening", + "loop": "once", + "override": true, + "length": 20.04167, + "snapping": 24, + "selected": true, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "markers": [ + { + "color": 8, + "time": 0.375 + }, + { + "color": 0, + "time": 0.625 + } + ], + "animators": { + "effects": { + "name": "Effects", + "type": "effect", + "keyframes": [ + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "fd22a3ba-127e-ad0a-e782-138d8d8b9730", + "time": 0.625, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "c2675fcb-b278-706a-e6e1-6483a3a46b6a", + "time": 0.66667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "57fa8034-0e01-7929-03b3-af394aec08e7", + "time": 0.70833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "ccddde6b-1e16-d6e5-6779-856961aba299", + "time": 0.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "34ef097c-aa25-a913-9a7c-2b1b184e9f37", + "time": 0.79167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "fd09fa32-3bf7-0e2c-005d-c5d811a4b824", + "time": 0.83333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "c91aa9c3-5665-a6e3-82d8-0139338c0472", + "time": 0.875, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "80696ad6-4c0a-605d-962b-757b58e76cc0", + "time": 0.91667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "061158aa-3367-0a36-66a9-7cd3879b7d52", + "time": 0.95833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "b1245a6d-f0bf-aaf8-856e-f60888eb9f53", + "time": 1, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "712d5bb0-6d08-198e-95e4-2bcbb14c0747", + "time": 1.04167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "ec2dab89-b18a-1132-8647-a60271a59206", + "time": 1.08333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "ac631a09-cf8c-a185-5af5-121001086a12", + "time": 1.125, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "707c52c5-6bed-a5d3-ef0c-1e2ffbbfe992", + "time": 1.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "cd0b33bd-53b9-df8a-badc-49fa88f303eb", + "time": 1.20833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"symbols_sound\", player:getPos())" + } + ], + "uuid": "40a85175-4dfb-afb0-0e29-19c6d74c750c", + "time": 1.25, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink.Add:setOpacity(1)\nmodels.akira_eiko_olivia_pink.Add:setVisible(true)\nmodels.akira_eiko_olivia_pink.Add.cracks:setVisible(false)\nmodels.akira_eiko_olivia_pink.Add.fountain:setVisible(false)\nmodels.akira_eiko_olivia_pink.Add.fountain_start:setVisible(false)\nmodels.akira_eiko_olivia_pink.Add.fountain_cap:setVisible(false)\nmodels.akira_eiko_olivia_pink.Add.fountain_cap2:setVisible(false)\nmodels.akira_eiko_olivia_pink.symbols:setVisible(true)\nmodels.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_guilt\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\n" + } + ], + "uuid": "1c189d6f-142a-4a63-6c4b-905fb89fff74", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink:setPrimaryTexture(\"Custom\", textures[\"akiracombined_v4\"])\nmodels.akira_eiko_olivia_pink.root.Body.Elytra:setPrimaryTexture(\"Custom\", textures[\"elytra\"])\n" + } + ], + "uuid": "75508076-0e80-965f-ff76-1515c6ad628c", + "time": 20, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "sounds:playSound(\"fountain_opening\", player:getPos(), 1, 0.33)\nmodels.akira_eiko_olivia_pink.Add.cracks:setVisible(true)\nmodels.akira_eiko_olivia_pink.Add.fountain_start:setVisible(true)\nmodels.akira_eiko_olivia_pink.Add.fountain_start.inner:setVisible(false)\npings.setLighed()" + } + ], + "uuid": "fbc0859f-9bfb-13a1-f757-fd05924dc114", + "time": 1.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink.Add.fountain_start:setVisible(false)\nmodels.akira_eiko_olivia_pink.Add.fountain:setVisible(true)\nmodels.akira_eiko_olivia_pink.Add.fountain.inner:setOpacity(0)\nmodels.akira_eiko_olivia_pink.symbols:setVisible(false)\n" + } + ], + "uuid": "0e90b605-ee0a-43bc-0abf-c5bd3f5e6d1a", + "time": 1.625, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "fountain_darking=true\n" + } + ], + "uuid": "555e18d9-faab-7f8a-30fc-b0a31aaaa0fc", + "time": 4, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink.Add.fountain_cap:setVisible(true)" + } + ], + "uuid": "24d4d8d3-c4e0-7622-77e9-c9f52f5fbd9f", + "time": 7, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink.Add.fountain_cap2:setVisible(true)" + } + ], + "uuid": "396f682d-8d00-7bea-0d64-4069d2d69e1b", + "time": 7.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "hide_all=true" + } + ], + "uuid": "ad594be8-9cc1-1c0d-d064-0a29ffe6f0b4", + "time": 17, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "\n" + } + ], + "uuid": "9bec07ef-954c-6643-3786-ce371af10caa", + "time": 7.75, + "color": 0, + "interpolation": "linear" + }, + { + "channel": "timeline", + "data_points": [ + { + "script": "models.akira_eiko_olivia_pink.root.LeftArm.LeftForeArm.LeftHand.LeftHandPlain:setVisible(false)\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightHandPlain:setVisible(false)\nmodels.akira_eiko_olivia_pink.root.LeftArm.LeftForeArm.LeftHand.LeftHandFist:setVisible(true)\nmodels.akira_eiko_olivia_pink.root.RightArm.RightForeArm.RightHand.RightHandFist:setVisible(true)\n" + } + ], + "uuid": "9f8470f2-748e-9132-ed22-affe05e9106f", + "time": 0.08333, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ab369344-e366-78d6-ae78-9c6386c25f65", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "89d1df80-8f44-0692-f5f4-1ca7173c51d3", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "b9474bdf-838c-abd9-f462-21b2d2e3c646", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "b1223438-8f46-2a9b-25ee-5ac39f7575ea", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "8aab4b39-f61f-a17f-7ff4-ea669d009746", + "time": 6.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-10", + "y": "0", + "z": "0" + } + ], + "uuid": "992d59ab-ebf4-e1a9-86e5-0d64727dc56d", + "time": 7, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-5", + "y": "0", + "z": "0" + } + ], + "uuid": "91340785-57a8-5c69-8ba0-35378c7d3add", + "time": 7.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "db918c91-f8fd-4b22-f077-36e48a91488d", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d9c93516-1a6a-52b2-97a4-39c51cc52735", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "83cdc2b2-cf0e-5323-40b1-e60547702467", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "86e7291c-a7ea-aba1-b388-23cc58775f18", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "b3cd9639-86ef-353e-f421-34c8b78d342b", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b818ae07-081c-78f4-572c-025b2b0b20a3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-6", + "z": "1" + } + ], + "uuid": "5c122138-17dc-5dc9-c1a8-8e1ab84e2978", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-6", + "z": "1" + } + ], + "uuid": "0e363ee1-69e3-747d-da74-1fd8cb089db5", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "-2" + } + ], + "uuid": "03326259-395a-a0fb-ab45-88a9c51c21b4", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-3" + } + ], + "uuid": "725a008c-0744-319f-c96e-09d045259a0f", + "time": 6.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-1" + } + ], + "uuid": "6ce202db-926f-5175-68f9-ac5b5f164528", + "time": 7, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "179928b6-753f-e702-f79b-0cb5185ac925", + "time": 7.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "7.5", + "z": "-3" + } + ], + "uuid": "aa63a1c1-a5aa-85d3-94f3-7e6096e32e3f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6a4b207a-d6cc-0c85-5926-33b866e87670", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ef466618-ef8b-3bec-2149-c2636eae01bb", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "7.5", + "z": "-3" + } + ], + "uuid": "53193065-d0c8-4fa1-5c6f-e6eacba4c05a", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-6", + "z": "1" + } + ], + "uuid": "70fdcb86-1855-f0e2-ae9c-67ed4c00ed25", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "05272186-8a50-a754-a42f-20f85f8ce97e", + "time": 7, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "125327ef-e0b5-69ae-ed5b-bb39f2d21816", + "time": 1.58333, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "2b109790-e16f-7dad-4d5f-8fb8e1b76b27", + "time": 7.75, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "2e65cf5e-a319-094b-201b-c3cd179d6157", + "time": 12.16667, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "e517abb6-bebd-39eb-dd0a-b78d0cb708c2", + "time": 0.41667, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b7a1a35d-0e01-cf66-8def-67f4d20e4414", + "time": 1.25, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "dfa758a5-3b13-7b6c-4c77-30a5c309bd32", + "time": 6, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c8da17e6-166e-88af-9fef-e210331de175", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "27.5", + "y": "0", + "z": "0" + } + ], + "uuid": "0b53533b-c1ab-e8ee-8a20-9c724fbc031b", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "36455090-669f-9d33-4e6b-0c5ffc578d5e", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "248734bc-8a7d-e9fe-f83c-afb717f8bc2e", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ad6e54d7-b6cf-638b-0011-b2c9d497fb6e", + "time": 7, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "39d25ea8-014f-4819-0258-ca9a3b498a85", + "time": 6.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "cc2224fe-b50b-6004-4a42-f889d6fd3277", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "12138a42-d6c3-41f7-3d61-03253830e220", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0fa5401c-25e0-78cb-1370-dc6a22960d4f", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-40", + "y": "0", + "z": "0" + } + ], + "uuid": "f80a7f31-6614-c576-534e-85df953d1a12", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "0e241dc0-581c-55e4-5113-9a13e450c336", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1111c89c-9a88-83f2-fc11-b1e4b67eeed5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b92d5cf1-c1c3-6499-91a1-25509ffa8824", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0.5" + } + ], + "uuid": "efc328f3-0cdf-b77d-12f1-1ed00a237d09", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "289f9776-fcde-7ea9-8cf3-c9b70e0b5624", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "34c95bdd-2bdb-f3bb-9b00-284e39f90ee4", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f6841781-0f76-ae33-22e6-7cd215e3b91e", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f3fa6d16-095b-e459-9f2f-0e95dc258883", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0.5" + } + ], + "uuid": "ca81c04e-dc7e-ab68-55be-869d249831e5", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "8e3fb09e-4293-e017-9b44-73e4b78ecd03", + "time": 1.58333, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "de9e1d7d-4d7e-2b57-128f-8627d2a56bf7", + "time": 7.75, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "507609ff-c447-eb8d-4944-436f3b14f2db", + "time": 12.16667, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "4bfc6e69-f242-3497-61a8-f6f6b70d0eb6", + "time": 0.41667, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "57e0b6d9-ceb2-83f2-bca1-7a40fe94c6a5", + "time": 1.25, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "827e1c84-a52e-d322-29f6-6319cba812e2", + "time": 6, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "4532a408-8267-4ac1-f89b-9c02843401c5": { + "name": "LeftArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "daf497fb-6339-b003-5738-ceff70e7145e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-94.8843886087", + "y": "18.5208543924", + "z": "-12.5314334474" + } + ], + "uuid": "c597164f-58a2-2f30-0264-5f1163f1bafc", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-1.4600531719", + "y": "6.2745933243", + "z": "-4.472639289" + } + ], + "uuid": "ea6ef79e-05ca-f1fa-3102-0b376bd488fb", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-1.46", + "y": "6.27", + "z": "-4.47" + } + ], + "uuid": "7810856c-fa54-c6a1-5f32-39037300d3c2", + "time": 7.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-104.8843886087", + "y": "18.5208543924", + "z": "-12.5314334474" + } + ], + "uuid": "7558afc6-8354-75ad-4e2a-24da8051bc8f", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.3843886087", + "y": "18.5208543924", + "z": "-12.5314334474" + } + ], + "uuid": "76d1374b-a5dd-879b-435b-bd0133a5f0f6", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ac729cbc-bc93-ba19-18fb-7e0ef02aabc6", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a3f604d6-0761-aa91-6f5d-70bf57232110", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-104.8843886087", + "y": "18.5208543924", + "z": "-12.5314334474" + } + ], + "uuid": "cb9ce858-1450-609e-1d1b-532d842e39d4", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.3843886087", + "y": "18.5208543924", + "z": "-12.5314334474" + } + ], + "uuid": "d06f121f-d848-fc83-3a93-6fd7e8ed524b", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a7d4b69d-8af0-cd63-188a-5042c30fcfba", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "f4befc21-a595-a3a4-ad12-064effbba6bb", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.5", + "y": "0", + "z": "0" + } + ], + "uuid": "6ea98ce0-9de5-cfcd-012c-4b2bceb76637", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.5", + "y": "0", + "z": "0" + } + ], + "uuid": "49de459d-044e-acb6-af3f-aa0a2856661c", + "time": 7.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "7dc19422-672e-f59f-623d-e086631f118d", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0fcad4e0-623e-b957-d1c4-91fdb2e0ba85", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "53779076-7659-292e-2575-e767b60ef3b1", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "0", + "z": "0" + } + ], + "uuid": "91cc07cd-3ef2-97e0-964b-ef21df15e180", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "-1", + "z": "-1" + } + ], + "uuid": "1fab8771-fbdb-1b1b-84f1-bc15d3b3be3a", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-1", + "y": "-1", + "z": "-1" + } + ], + "uuid": "2ba11cbf-5948-0ab7-e320-22afb9a730b6", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "c1a12cf7-b5e8-312f-e01a-30948ea7558c", + "time": 1.58333, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "019289e7-a029-77b8-5dae-4e1bf928bf17", + "time": 7.75, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "0fe1e54c-96c5-800c-931e-016bb08392d2", + "time": 12.16667, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "1cbfcf90-0b6c-f020-55a7-3d1fd96c30c0", + "time": 0.41667, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "970fadbb-54b4-9241-9050-254326b25899", + "time": 1.25, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "9c324696-4e6a-d3e9-91d1-3cd534a1ac9a", + "time": 6, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "703b9bfd-bdc6-385a-89b3-b900d1de58f5": { + "name": "RightArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c2929f92-761d-d686-89e6-55189783c6f2", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-94.8843886087", + "y": "-18.5208543924", + "z": "12.5314334474" + } + ], + "uuid": "e0bc74b4-bf96-a7a5-291e-f77d8ffd3806", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.3843886087", + "y": "-18.5208543924", + "z": "12.5314334474" + } + ], + "uuid": "88884ff1-bb3f-8214-96e6-d410970d303b", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-41.019792691", + "y": "-27.0599336266", + "z": "2.6131555627" + } + ], + "uuid": "4908dedd-1e49-f3d5-8e3f-9d89940ecdb7", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-75.9048897185", + "y": "-25.5100435755", + "z": "8.7510211205" + } + ], + "uuid": "9d3fa20b-c33b-583e-09e0-6921f739cf16", + "time": 6.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "1.480207309", + "y": "-27.0599336266", + "z": "2.6131555627" + } + ], + "uuid": "66966483-d583-7df6-2be3-a6f8bfa90df4", + "time": 6.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "1.3181778683", + "y": "0.4322043271", + "z": "3.2965988604" + } + ], + "uuid": "d4278f30-45ba-8a76-ba52-702d1cef8dd2", + "time": 7, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "1.32", + "y": "0.43", + "z": "3.3" + } + ], + "uuid": "124c328a-673b-fa0c-ca82-f3e5c79b2f75", + "time": 7.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-104.8843886087", + "y": "-18.5208543924", + "z": "12.5314334474" + } + ], + "uuid": "d9afafed-3a97-830f-ae9d-751f2405d03a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3627cdfc-940b-3cd9-6411-70ef932e21ee", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5c8f8eb2-b8fb-9eac-2e52-5afe8f8c6165", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-104.8843886087", + "y": "-18.5208543924", + "z": "12.5314334474" + } + ], + "uuid": "f2867409-bad0-8d0d-4fc1-dbd094c9afe8", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.3843886087", + "y": "-18.5208543924", + "z": "12.5314334474" + } + ], + "uuid": "a0b9f602-f0f2-946d-61c9-77990ac422ec", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6fc7fb2b-8341-b914-8e9b-84db8c0d7ad0", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "0" + } + ], + "uuid": "c49397f3-88fc-4461-5908-9ff1cd910855", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "-1", + "z": "-1" + } + ], + "uuid": "1d655621-db6d-f27f-1c02-dee69ba70e7f", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "6" + } + ], + "uuid": "3adba95a-0408-26ef-4c89-56247110f2ff", + "time": 6.125, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "97a19b52-bfb7-bc61-63b7-2a7cd3dd1d1d", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "c5da027c-b766-b50f-d6a7-9954297d0bbd", + "time": 6.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "34d6ece5-4fa8-67f9-77db-97b2d8b7c78d", + "time": 7, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4196220c-ed8e-734e-34fd-ded910ca9f24", + "time": 7.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "0" + } + ], + "uuid": "2fdad4b7-682d-df85-0437-b83c425c820e", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ae02953b-1b51-5226-011f-44925cb25674", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a72b4177-5bfd-fa6e-1c9d-6ab2dba8e526", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "0", + "z": "0" + } + ], + "uuid": "ab67bd15-2a77-dd0f-fc48-2755cee518b7", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "-1", + "z": "-1" + } + ], + "uuid": "64c09abe-700c-0495-e629-0f84e0417086", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "71b243c3-bb2f-6bcc-0e8d-c038244211a1", + "time": 1.58333, + "color": -1, + "uniform": true, + "interpolation": "bezier", + "bezier_linked": true, + "bezier_left_time": [-0.1, -0.1, -0.1], + "bezier_left_value": [0, 0, 0], + "bezier_right_time": [0.1, 0.1, 0.1], + "bezier_right_value": [0, 0, 0] + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "443945f7-9439-aa4f-a061-7942ccff2cdf", + "time": 7.75, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "e1d98d86-c8cf-a82e-33ba-043cc8ad23c0", + "time": 12.16667, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "47a8c205-53d3-0c19-53eb-4a4930be0c2f", + "time": 0.41667, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "ed94fd5b-a88e-1348-04b4-d5bc9b41c321", + "time": 1.25, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "ec0706ed-b570-a422-b6fc-e8ca2e21c6f2", + "time": 6, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "d5c28e0c-2ec5-296a-42c7-59967676aebe": { + "name": "RightItemPivot", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "60df773d-94bf-18db-5ace-76d22ae153c9", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "56a7bbd2-f699-3849-42a1-f831a147cd02", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "de90cf0b-712d-56af-6b3c-f6b849654bfd", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "100", + "y": "0", + "z": "0" + } + ], + "uuid": "4b78771b-a599-9f26-2859-fe2f64d0ab11", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "135", + "y": "0", + "z": "0" + } + ], + "uuid": "ca79ab98-f923-188a-492a-d68f60173f71", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "197.5", + "y": "0", + "z": "0" + } + ], + "uuid": "72039b84-c733-a457-c359-d90ea04a7737", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "175.3124033243", + "y": "-5.7767732163", + "z": "22.5284236732" + } + ], + "uuid": "e116d0e5-c808-428a-f512-a2a4ab610a81", + "time": 0.625, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "180", + "y": "5", + "z": "15" + } + ], + "uuid": "465bc85a-1d32-bc57-e8f1-737171eafa0d", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "175.3124033243", + "y": "-5.7767732163", + "z": "22.5284236732" + } + ], + "uuid": "e2db793a-0bad-a9a1-5699-d3e80b0b8234", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "180", + "y": "5", + "z": "15" + } + ], + "uuid": "7bb3c9e6-3db1-2916-d361-53c2e60c3f59", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d8d7208a-7daa-5054-97ed-cbceec48406b", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e3a979ff-202d-7204-c172-aa5c91c9da82", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-686", + "z": "0" + } + ], + "uuid": "7b970ada-8ea8-be6e-0e03-d121f8a0e693", + "time": 0, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "3" + } + ], + "uuid": "0845c475-7712-7e98-f4be-016bcea1bfc4", + "time": 0.375, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "4" + } + ], + "uuid": "d7ab8bfb-3ff2-b98c-8701-eb64d938e4ee", + "time": 0.45833, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "4" + } + ], + "uuid": "a3010144-54d7-3564-dae7-09fcc4377f93", + "time": 0.54167, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1.75", + "y": "2.75", + "z": "2" + } + ], + "uuid": "ad3836b1-d260-df3b-3453-37463345cdf5", + "time": 0.625, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1.75", + "y": "2.75", + "z": "2" + } + ], + "uuid": "458e9832-7ef4-d469-4d45-bf270659b871", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1.3851854969", + "y": "-0.1779928219", + "z": "2.0757608135" + } + ], + "uuid": "b0ddaa1f-e735-07e2-8beb-cda15c720cb2", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1.3851854969", + "y": "-0.1779928219", + "z": "2.0757608135" + } + ], + "uuid": "79bfa2c4-faf4-cd93-2693-a6ca5d28853d", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "1d5b05ce-f943-a680-fcce-e569eb7a41b2", + "time": 12.16667, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "8c7666e4-8b9e-6f17-4b62-703abd0906b5", + "time": 7.75, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "12dccef3-08b4-6138-8c12-ae775fdc975c", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "7.5", + "y": "0", + "z": "0" + } + ], + "uuid": "a8498c17-f6dd-4637-c054-d356357b256d", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-132.5", + "y": "0", + "z": "0" + } + ], + "uuid": "f5c16982-f289-b1a5-cc8b-61b72a0491c6", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "15", + "y": "0", + "z": "0" + } + ], + "uuid": "dea3af0d-a2b7-0ee9-ac37-307b4ee6ca68", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7fc97e09-7409-e1b6-3fa0-e52268d8f6f0", + "time": 6.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.5", + "y": "0", + "z": "0" + } + ], + "uuid": "477608a8-140f-080c-c17b-c59b8aca7362", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "73652c86-20b8-1d4c-818b-8d9bab7f5b73", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9d0343e8-971e-7c0d-9dd9-a5347df78b5e", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-57.5", + "y": "0", + "z": "0" + } + ], + "uuid": "c6ee3e57-025e-801a-22ba-1bcb245f715f", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-132.5", + "y": "0", + "z": "0" + } + ], + "uuid": "91c0b5ee-c6af-6a20-5220-e3d7e11f42a7", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c0bc0ec3-bd39-0d7d-428d-53b58991be2b", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "6", + "z": "-5" + } + ], + "uuid": "207c9f4e-62b8-d25e-037d-6f3809ffa9e8", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2", + "z": "0" + } + ], + "uuid": "fdcae348-0d9e-f2cf-863c-2b889b7a0f9c", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "-5" + } + ], + "uuid": "eee2e7fc-7ed7-a64e-f828-a71fc07baf58", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a2dad9c8-df96-1abf-07e4-ece241bc44b6", + "time": 6.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "-3.75" + } + ], + "uuid": "bb4c0507-c1ad-90d3-4f22-81b9d3e9279c", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6d221702-5c77-7a03-8025-f5fdbd471e3e", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "61b8c5bc-4e83-c87c-d488-8b6dca347b23", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "-3.75" + } + ], + "uuid": "0ec28f1e-362d-0804-266f-6061cbc6317a", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "2", + "z": "0" + } + ], + "uuid": "fca896d4-9f55-834e-b61e-a93b13ef3edf", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "0.9", + "z": "1.1" + } + ], + "uuid": "80cd9fbd-d8b6-e4cf-3f41-667385e35c38", + "time": 1.375, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "d12db323-6269-2269-752a-60ea0d3021d7", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "0.9", + "z": "1.1" + } + ], + "uuid": "cd0489f9-f132-9be3-c814-63a6c037cbb3", + "time": 1.58333, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "97dff6ef-f2aa-bb66-fa1c-13ea51a3f1c5", + "time": 6.5, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "39e398ae-d868-51b1-50b8-fafe070f12d1", + "time": 7.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "39df3865-8090-56df-763f-0471f5100f3d", + "time": 12.16667, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.0261", + "y": "0.9739", + "z": "1.0261" + } + ], + "uuid": "c4963cf2-b324-6c2a-a124-0a904c45f0c1", + "time": 0.41667, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.0261", + "y": "0.9739", + "z": "1.0261" + } + ], + "uuid": "a9ec4b4d-9189-1df3-257d-8fe3204b5807", + "time": 1.25, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.1", + "y": "0.9", + "z": "1.1" + } + ], + "uuid": "1a5d39b8-a726-9fab-1692-dac80ac92b43", + "time": 6, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "13ccd043-9546-22b7-ec4c-5307ff163e65", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "62.2978770815", + "y": "-6.6485093716", + "z": "3.4787499715" + } + ], + "uuid": "25765280-f3bc-26eb-4d7b-9c4b8ff0c479", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-40.2021229185", + "y": "-6.6485093716", + "z": "3.4787499715" + } + ], + "uuid": "eca8053a-9b56-1172-d557-3282cd2570e8", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "42.3", + "y": "-6.65", + "z": "3.48" + } + ], + "uuid": "ae775ecc-6dbe-1c02-e089-cd61eacef125", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "45", + "y": "0", + "z": "0" + } + ], + "uuid": "e6440c92-f101-ece9-f404-3fb048973898", + "time": 6.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "10", + "y": "0", + "z": "0" + } + ], + "uuid": "7887c19e-74df-863b-22e5-3f9021b0f5b6", + "time": 7, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a3938ae1-7e59-0e7a-419e-e7b127e4d5fa", + "time": 7.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3e4dfa93-46c9-e751-122c-bcaf0dc74f49", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cd051c93-9a8e-0cf4-7f4c-aadd1186d408", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "83eab276-8bc6-6a62-0204-a05da78a5c0d", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "17.5", + "y": "0", + "z": "0" + } + ], + "uuid": "f074f251-fbf1-56f0-af48-533781f4bc6f", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-40.2021229185", + "y": "-6.6485093716", + "z": "3.4787499715" + } + ], + "uuid": "93f7c7e7-b1b3-a2fe-80dc-0e5869a30cd9", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cf3b543f-766c-3f10-8db9-e76574137744", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "-1", + "z": "-6" + } + ], + "uuid": "9d2c28ac-9c28-fde2-95df-8ee776807eb5", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "-1" + } + ], + "uuid": "98074295-ad7d-cfe8-9b84-61a3e2547bf7", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2", + "y": "-1", + "z": "-4" + } + ], + "uuid": "f87ceb37-a0a7-54b5-1e46-46e10f66954f", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "1", + "y": "-1", + "z": "-3" + } + ], + "uuid": "136f6631-0c60-9b45-1864-23363be67f15", + "time": 6.75, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a59924cf-ba3e-d1d4-2be1-1da450c06145", + "time": 7, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0.5", + "y": "0.5", + "z": "-2.5" + } + ], + "uuid": "2f93daf9-f67a-2d77-c7d2-2960124c60e3", + "time": 6.875, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "26e33cc1-57de-4c45-ca71-4082d637c350", + "time": 7.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "-1" + } + ], + "uuid": "21c5b17a-4223-7553-2ea9-d98fb98d6ac3", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c6957b98-a90a-c96e-a62b-1f8ce9a5a67a", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fd330061-b2dc-9643-96aa-b59f218fcf83", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "-1" + } + ], + "uuid": "146f27e5-d395-6fe4-ba04-9132093b51ac", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "3", + "z": "-1" + } + ], + "uuid": "b4333b4e-5722-d65b-e9c5-cde3d0c9d925", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "4e8958f7-af95-9f63-85d3-a255935aea17", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "318c7a73-5510-2e44-ed51-4be46599949f", + "time": 1.375, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "d5bec38a-ec06-01da-b7e3-b231bad6a1de", + "time": 1.58333, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "91a323e4-5731-ae12-de60-7527fb20195f", + "time": 7.25, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "d7ad6aaf-a2f7-3d36-ed77-b7036d5edc76", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "25f97324-b5f6-a1a8-fa1b-4f3b1dc94780", + "time": 7.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "576ae8c6-74a6-ff39-c686-8755e6b5aefd", + "time": 12.16667, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "2f3e2ed8-8acc-c596-df05-8d3fe0297df7", + "time": 1.25, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "36dd4619-4569-869e-63ad-8ce64575fb68", + "time": 6, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "257888ea-540d-c844-892e-76855e5ac593": { + "name": "symbols", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "180", + "z": "0" + } + ], + "uuid": "dfbf2a3f-6f59-adc7-ac8c-a976bbd57167", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "180", + "z": "0" + } + ], + "uuid": "0909c7ed-3b03-a15c-8d0f-c192b0eb9055", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "fec00849-e8ba-ddcd-a86b-20438f131cd2", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "74cddfd5-14e2-3e2f-f398-a4b69b31ca5c", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "180", + "z": "0" + } + ], + "uuid": "ffb7762c-67e3-5ff0-d9f1-398fa1483fba", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "180", + "z": "0" + } + ], + "uuid": "1ec3aeec-2db3-696c-e810-d3b05f3444ae", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "180", + "z": "0" + } + ], + "uuid": "d2a2192d-1a2e-0c99-53d8-dfda245452ea", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-19", + "z": "0" + } + ], + "uuid": "da4086be-045b-11ed-1d3c-0631e97599da", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-19", + "z": "0" + } + ], + "uuid": "c6157ce9-890d-38c6-9b96-bf0809a9f0b7", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6b22f3b2-3133-7272-d2c5-98e6328bef98", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "18ea0737-23cf-650f-1486-758ff96ad563", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-19", + "z": "0" + } + ], + "uuid": "2fee73d7-08bc-a6e6-10a2-20d365518608", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-19", + "z": "0" + } + ], + "uuid": "927f482c-256f-6ca7-dc32-343a4c009af9", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-19", + "z": "0" + } + ], + "uuid": "e48b27e5-4fc3-8837-5cba-157fca73c05b", + "time": 6, + "color": -1, + "interpolation": "linear" + } + ] + }, + "cd23c28a-f1a0-ae4e-00cd-c519e5e71ed0": { + "name": "s1", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4bea2d49-137b-9f3e-2a31-14f63c2a0a2f", + "time": 0.625, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "de11a0ba-01af-0785-e27d-ed9e82274650", + "time": 0.625, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "25", + "y": "26", + "z": "0" + } + ], + "uuid": "c66879a5-8c0e-91c1-975a-bb762f2b9870", + "time": 0.66667, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "20", + "y": "25", + "z": "0" + } + ], + "uuid": "bec23e87-2e95-b1e4-9068-d33616a88270", + "time": 0.75, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "12.25", + "y": "32.5", + "z": "0" + } + ], + "uuid": "50457e13-8abc-7758-cbc4-002d8e5a197f", + "time": 0.79167, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "7\n", + "y": "35", + "z": "0" + } + ], + "uuid": "90bb88eb-dac4-0a8f-9c30-fc564c3173f8", + "time": 0.83333, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3b470605-0c93-23d5-202b-e964eb5f8810", + "time": 0.91667, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-15", + "y": "43", + "z": "0" + } + ], + "uuid": "f114f8f0-d6a6-fc26-0d7f-d9a9e0787c9b", + "time": 1, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-22", + "y": "42.75", + "z": "0" + } + ], + "uuid": "1f7208ec-c1c5-70ca-9b01-dcf516b9537b", + "time": 1.08333, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-27.75", + "y": "34.75", + "z": "0" + } + ], + "uuid": "40c19e72-a8f7-d96c-b508-cc8e0a0cbc57", + "time": 1.125, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-33", + "y": "40.75", + "z": "0" + } + ], + "uuid": "793aa423-d3a9-d362-c5ba-3273df890c23", + "time": 1.20833, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-38.5", + "y": "37.5", + "z": "0" + } + ], + "uuid": "90320f39-49eb-55ea-dfa5-c24c26544d55", + "time": 1.29167, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cf900d6a-1049-244b-4462-eb7cddbcaf12", + "time": 1.375, + "color": -1, + "interpolation": "step" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "075d9e6a-3520-6da5-d288-6444773a7f90", + "time": 0.625, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "43622244-f03f-dc0d-a522-2d01c2ca50e1": { + "name": "s2", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3b883373-ea06-7703-ca14-6db6f0e6e07d", + "time": 0.66667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8c0168aa-bc6c-218e-9ac5-25c9e7bb7e55", + "time": 0.66667, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "26.75", + "y": "28", + "z": "0" + } + ], + "uuid": "b0b21cc8-7658-96c0-8f7f-f9030d89a55a", + "time": 0.70833, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "22", + "y": "30", + "z": "0" + } + ], + "uuid": "e97ca225-e01c-dbfd-b83c-2373f7ddb9cc", + "time": 0.75, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "19", + "y": "33", + "z": "0" + } + ], + "uuid": "72a7cacf-5285-64a8-f6c2-fcd9f59774dd", + "time": 0.79167, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "13.75", + "y": "30.5", + "z": "0" + } + ], + "uuid": "9b496bb5-03d0-f6b2-ab61-c8167f80a238", + "time": 0.83333, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "6.75", + "y": "27.5", + "z": "0" + } + ], + "uuid": "629a1213-d623-5de7-dd3b-0c6d41617582", + "time": 0.875, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "626beaff-b4b4-6192-bb29-1ffb0b40a108", + "time": 0.91667, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-15", + "y": "39", + "z": "0" + } + ], + "uuid": "e170993f-4201-823d-8397-b43c35eacb1e", + "time": 1.04167, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-21", + "y": "35", + "z": "0" + } + ], + "uuid": "cf0ec433-409e-19d5-14e2-4b8b7ae860e2", + "time": 1.08333, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-26.5", + "y": "35.5", + "z": "0" + } + ], + "uuid": "bcef7549-05d9-a99a-3afd-008297385360", + "time": 1.16667, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-31.5", + "y": "42.75", + "z": "0" + } + ], + "uuid": "93644712-b62a-1db9-c6f4-da68e96a5c75", + "time": 1.25, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5e08cd8f-1197-fad1-5c78-1b20cb8410ff", + "time": 1.29167, + "color": -1, + "interpolation": "step" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b388953c-8047-746c-0be9-abd25d4c0411", + "time": 0.66667, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "34dfaf06-1387-a2c6-f3e6-99793044e82d": { + "name": "sx1", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a130632c-ec6c-00d8-7d03-776c502d9f30", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8413983f-cb86-001e-38d9-f922d8f0d5c0", + "time": 0, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "25", + "y": "30", + "z": "0" + } + ], + "uuid": "02cb283b-de57-093a-9ba6-2ddce0cbf715", + "time": 0.625, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "22.75", + "y": "32", + "z": "0" + } + ], + "uuid": "799babdb-b46d-cc78-e4c0-d36b4db807b9", + "time": 0.66667, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "18", + "y": "34", + "z": "0" + } + ], + "uuid": "ac8eb8fb-728e-c7c6-6a1c-8d0258db628a", + "time": 0.70833, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "12.25", + "y": "36.5", + "z": "0" + } + ], + "uuid": "70a465ab-532f-24fe-242a-061061b834ec", + "time": 0.75, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "9.75", + "y": "34.5", + "z": "0" + } + ], + "uuid": "ae2ad1c4-6d14-cd0c-e7a7-529f333a3283", + "time": 0.79167, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "2.75", + "y": "31.5", + "z": "0" + } + ], + "uuid": "d4898320-ab9d-9ecd-5295-604a77b03db9", + "time": 0.83333, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7d7a172f-37a1-4bae-bb57-64e6b9e3f14b", + "time": 0.875, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-15", + "y": "47", + "z": "0" + } + ], + "uuid": "293ede67-d6ed-76fe-8b79-8914368ce23a", + "time": 0.91667, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-22", + "y": "46.75", + "z": "0" + } + ], + "uuid": "7cfa185b-aa39-1d9c-2e74-495094c13d1d", + "time": 1, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-27.75", + "y": "38.75", + "z": "0" + } + ], + "uuid": "2a1d7108-3cdb-596f-6bcb-3ddee2e94ecd", + "time": 1.08333, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-33", + "y": "44.75", + "z": "0" + } + ], + "uuid": "0f7984b9-390c-ddf6-5cb9-f8ef2968f38b", + "time": 1.125, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-38.5", + "y": "41.5", + "z": "0" + } + ], + "uuid": "4c1feb1a-7ac3-8f29-c4b7-aac91d8c11fb", + "time": 1.20833, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5f788d6e-f944-38ad-e286-5614e2cdbe81", + "time": 1.33333, + "color": -1, + "interpolation": "step" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "b237eddb-d68f-e03a-22f0-8d1af7bf0339", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "bb176c22-6ae6-6c8d-3125-6dc4a4b34b04": { + "name": "sx2", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "60d512a9-7445-1f63-a1f6-5622afcbaf09", + "time": 0.66667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "ece469f8-3ff5-b17c-22ac-c3e6827f9e01", + "time": 0.625, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-15", + "y": "43", + "z": "0" + } + ], + "uuid": "85a2f88f-7a2b-82d9-908a-b49b162f334c", + "time": 0.95833, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-26.5", + "y": "39.5", + "z": "0" + } + ], + "uuid": "45ccb702-1e02-beff-305b-3296f0c17fb4", + "time": 1.08333, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-31.5", + "y": "46.75", + "z": "0" + } + ], + "uuid": "63d8ea97-190b-b575-5290-9181980481f5", + "time": 1.16667, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "eb447523-10fb-4d19-b142-d0c40165d57f", + "time": 0.625, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "24", + "y": "29", + "z": "0" + } + ], + "uuid": "499d3aa3-1e88-8364-8513-dc67ab7d1cd8", + "time": 0.66667, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "19", + "y": "37", + "z": "0" + } + ], + "uuid": "4f6fc51a-9c69-58c3-86b9-336a4fc6ac52", + "time": 0.75, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "11", + "y": "39", + "z": "0" + } + ], + "uuid": "54a77893-236f-b97a-5ef3-e436ecf40154", + "time": 0.79167, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5d2a189d-70f9-c2df-6d8e-3b3b3f3b2bd4", + "time": 0.83333, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "-21", + "y": "39", + "z": "0" + } + ], + "uuid": "1a7fdf42-8066-9ffa-5806-bf118dd890af", + "time": 1.04167, + "color": -1, + "interpolation": "step" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7796522d-8692-442e-b4c6-6da6634b24fb", + "time": 1.25, + "color": -1, + "interpolation": "step" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "35e1a398-8eef-a712-8611-67f5299dab9f", + "time": 0.66667, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "04595a5e-c2ca-7ac4-5e34-c25e377df26f", + "time": 0.625, + "color": -1, + "uniform": true, + "interpolation": "linear" + } + ] + }, + "4e86d352-c1b0-ba95-6122-3030f58ec345": { + "name": "cracks", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-4" + } + ], + "uuid": "c11f03d1-1429-67fa-1ca0-9325bdaf90aa", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-4" + } + ], + "uuid": "51467a02-fd4e-98a0-b582-04d45cf55521", + "time": 1.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-4" + } + ], + "uuid": "60a6beb3-826b-dfce-ddbd-893af31bf859", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.1", + "y": "1", + "z": "0.1" + } + ], + "uuid": "d1f0354c-b5d7-3a70-acbb-7d07e49f4fc0", + "time": 1.375, + "color": -1, + "uniform": false, + "interpolation": "step" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "fba3bcf4-ccca-abc2-2669-2a053c403634", + "time": 1.41667, + "color": -1, + "uniform": true, + "interpolation": "step" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.1", + "y": "1", + "z": "0.1" + } + ], + "uuid": "08f68da3-5fd7-7d85-70f7-304542de4311", + "time": 0, + "color": -1, + "uniform": false, + "interpolation": "step" + } + ] + }, + "7c7e536c-89b4-51d2-510c-fc1007e0df3b": { + "name": "fountain_start", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d39ecad8-8c3a-9cde-a658-8e0a32c71b44", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e9698308-c33e-3509-bf3c-da64bcec0fef", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1a2269ef-9cc4-50f5-2e81-4ff9fb34c91b", + "time": 1.33333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c31c5988-2798-8f52-ad21-0031fc006fbe", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "8", + "z": "-4" + } + ], + "uuid": "3fb45b2e-250c-184a-6b10-db8b2bee9475", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d945df3e-bebb-b3a6-7845-c35fad3fb87d", + "time": 1.33333, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "8", + "z": "-4" + } + ], + "uuid": "9754fd9f-6496-6edc-ec1e-ea5abafb49a4", + "time": 1.45833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "894004fc-7138-8b8e-6dc8-ef23acfb719a", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "step" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "0.5", + "y": "0.1", + "z": "0.5" + } + ], + "uuid": "d6de90ea-2dbf-37de-6354-a52631462767", + "time": 1.375, + "color": -1, + "uniform": false, + "interpolation": "step" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "9c046f35-c745-e077-77aa-b0edfa0c06a9", + "time": 1.33333, + "color": -1, + "uniform": true, + "interpolation": "step" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "3.5", + "y": "0.1", + "z": "1" + } + ], + "uuid": "a8191316-2d03-7a49-3c35-1b3f6adca2fe", + "time": 1.45833, + "color": -1, + "uniform": false, + "interpolation": "step" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1.5", + "y": "3.2", + "z": "1.5" + } + ], + "uuid": "b090068b-bbb3-a12f-dff6-b9c0090d5788", + "time": 1.54167, + "color": -1, + "uniform": false, + "interpolation": "step" + } + ] + }, + "fe5e6be7-280c-dde4-b847-12a2b028e66d": { + "name": "fountain", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1880b372-6d85-a028-ac1a-759cba7016f8", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "66c8e30c-21ae-f16e-3191-31a100e7b599", + "time": 1.625, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-4" + } + ], + "uuid": "9d382eb5-1b99-8192-820c-a99cb4ac69a7", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "4", + "z": "-4" + } + ], + "uuid": "47c14693-9748-6955-4808-e0ce2ba1d233", + "time": 1.625, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "9d9b5b87-986d-857a-9e93-a66b94d2b12d", + "time": 1.58333, + "color": -1, + "uniform": true, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "2.1" + } + ], + "uuid": "f0d1bf6a-b6de-2e6c-4553-e9854f60214e", + "time": 1.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "9a5f167a-742c-cca5-0b02-49e9dfbd2fa5", + "time": 1.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "6512c464-8e91-9fb1-bbf3-6c600cffc0bc", + "time": 1.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "a1ebf330-27f8-7828-cf95-8edb6ad80749", + "time": 2, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "982e77ad-8871-254b-fa20-aca3d808e6a4", + "time": 2.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "df6e2ddf-0ad4-a092-7178-ec1b80e0e119", + "time": 2.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "301eb64d-051d-f347-3ada-aa3061277766", + "time": 2.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "ed03d8ad-df93-6b72-66aa-3550a4e28366", + "time": 2.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "d6022ab6-80b5-7f0a-355a-4b46becd2af3", + "time": 2.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "c680ba16-96e2-9e8a-a11f-096f670ce821", + "time": 2.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "f0ccd94e-f592-eaa8-8153-14ed18484f1d", + "time": 2.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "47ce7723-20b5-8fac-e5ec-a044808c3cbf", + "time": 3, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "af0212c4-644c-355e-770e-9d5d4e59fe9f", + "time": 3.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "0f88c827-eca4-ca0f-397f-edcef6c45604", + "time": 3.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "2afd2e91-baf5-d360-784e-f7f05458120e", + "time": 3.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "b56df1b5-27f5-a3d2-7133-cf0249451ce3", + "time": 3.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "fe91fdd7-f3d3-f473-7382-4e29394dae2b", + "time": 3.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "d70ca523-4397-9df2-b545-553c039f599b", + "time": 3.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "7fdd8c4c-c49e-6a4e-4631-a779a895af1f", + "time": 3.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "d14f9bcc-9f40-b2a5-c24d-f1d7ddd16d21", + "time": 4, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "72f19b72-d7c0-d736-ed32-ad0eb0eda267", + "time": 4.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "901ca026-c96c-6e5d-3e6f-3f38054de9ff", + "time": 4.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "3d8b8472-3a27-befa-b48a-94fef0feb3b2", + "time": 4.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "b9968ef8-41cc-b7e6-05ce-014206527dd3", + "time": 4.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "1a1d5c1d-8b1d-a465-6b9c-05cce2c1bd7d", + "time": 4.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "d48d50e3-e3f6-3de7-8697-d5585107f804", + "time": 4.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "2bfda979-ee23-7dad-1cb9-451bb2fbb1bd", + "time": 4.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "65edb110-e1f4-939f-8e92-7ba8dfd2cb39", + "time": 5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "8a5a59b9-4d6c-90e0-36e4-27a523891c65", + "time": 5.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "ca5c0305-2c79-441c-0d4d-2f81b1df9f29", + "time": 5.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "418550e2-51e5-3c06-b02f-abd087d731d4", + "time": 5.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "8a7168ec-9f12-84a2-96c4-ecbf92eebe5a", + "time": 5.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "36e7181b-7ce2-60f5-041a-a51e23c3c0f3", + "time": 5.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "1f5afcf5-a455-b33b-3dcd-8c820f994584", + "time": 5.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "489c2b23-1da1-b952-6931-4c97d7e5b15c", + "time": 5.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "6f7ba12b-120b-7ce3-1fd2-da4cfba57bf3", + "time": 6, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "30a06579-aac5-8811-00d0-505d960818e9", + "time": 6.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "154d07cb-54d2-b884-3b46-724e4618fe3d", + "time": 6.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "2560d455-584d-04b1-4b65-f6df146aef8d", + "time": 6.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "8f10f06d-329f-03f7-3519-8c7b7681dd23", + "time": 6.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "e57c9d9b-6e32-b094-2989-49841f7b658a", + "time": 6.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "2f687978-932f-8932-b4cc-2c33c0e8cd01", + "time": 6.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "ac01f66f-f2f2-543e-2336-061c5b7a44a4", + "time": 6.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "e7e275b5-8cb3-9185-b224-b8f4935ce2c5", + "time": 7, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "1d218062-6778-e7d5-940d-2a094a3e13c3", + "time": 7.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "7528721e-4452-bc01-84ed-04637a12ed27", + "time": 7.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "0d4b88b7-8003-d0ed-6934-54793c9736df", + "time": 7.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "ae2acb9d-6998-5ff5-3841-2feba740dc4c", + "time": 7.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "8865bb42-b268-a1e3-bf6e-7bcc386fdbd5", + "time": 7.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "c290880f-6628-c804-2390-022c79f3c57d", + "time": 7.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "a839bf65-854f-5769-a4fd-841b63b27f32", + "time": 7.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "56e03e73-4afd-2474-fe71-7202591b2eb9", + "time": 8, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "9b1640c7-2207-4a35-812f-f7639dfcc597", + "time": 8.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "0edd4b8e-155c-5b38-5d4a-0cf8fe37528c", + "time": 8.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "7fe38e9f-58a3-fc7a-0b28-a6143c16290a", + "time": 8.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "8d1dfa06-d1cf-19ed-1211-1427fda61e66", + "time": 8.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "347713a2-0e67-bfc3-f474-8d6a1ffbf767", + "time": 8.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "d54da833-25a5-4df2-f315-d4f92bfc1597", + "time": 8.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "31a8d14f-1d4f-71a1-beea-2d070917316a", + "time": 8.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "6e40fe22-86bb-4ccd-2230-75a35a4ea816", + "time": 9, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "3c0dedb9-87be-24bb-2cee-c6c4c80d5581", + "time": 9.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "3bdc3da4-4264-e685-c28a-691e03b8c8f4", + "time": 9.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "492eaf10-7dcf-ec24-7850-0c4a2645878f", + "time": 9.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "28359680-a722-3520-ac4f-55357800f2a9", + "time": 9.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "b59aa6ec-bbf9-8e19-559c-50ebd30ad8f2", + "time": 9.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "372514cf-ccd2-c25a-cc52-e3ce98d31a19", + "time": 9.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "22a8b649-a7b7-a420-28cb-e3b5cbd1cfe1", + "time": 9.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "14922945-9863-42de-a0dd-b65bcc7a47e3", + "time": 10, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "3e9567ef-2f0d-fb8a-f1ee-82041f365ac8", + "time": 10.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "99bc4ded-3877-1b8f-e90c-40773e671d73", + "time": 10.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "17e67ce9-3057-d675-14f7-c4e865f70928", + "time": 10.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "50ef4eb7-47ac-3e5e-a96a-5865acde1ed4", + "time": 10.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "25f70733-9572-d819-54f7-f46498c1af78", + "time": 10.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "3db481e3-db46-61f7-6c1e-d1b75215990a", + "time": 10.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "ae26671c-1dec-bb67-d4bd-5ef1904b71d5", + "time": 10.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "26a1e102-8145-1fc5-ea97-8b6cbfb5a63e", + "time": 11, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "b58b8287-aee9-9a8b-b3fc-a10b5925c758", + "time": 11.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "da5f8cf3-3727-a83d-70df-534268f62c8a", + "time": 11.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "c2a4c32a-7f75-08f1-0481-148fb747107e", + "time": 11.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "2bcdd82b-bd69-b695-34a4-2fe0dfff86f6", + "time": 11.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "20a901aa-2c5b-2e6e-396f-8d2e1297ef5a", + "time": 11.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "a1fdb2f9-3fc7-76be-d680-9f5d749ad536", + "time": 11.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "ce384fec-a6fa-9a8d-d209-580a979e1d70", + "time": 11.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "33d7074f-c812-49b8-0f08-d1a293c02c34", + "time": 12, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "084d5e9f-a934-332b-9e9a-3b87f3087919", + "time": 12.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "ed779a9f-147e-2ab8-63dc-f456e9024ed9", + "time": 12.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "2d8e3d53-d4a5-a394-309a-8e553bbaab4a", + "time": 12.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "cb5f60d4-6210-ca0f-5242-90c5867e1a74", + "time": 12.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "dc30ace3-4b22-0731-5b80-90f1f8c1c91d", + "time": 12.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "9eca3dd8-1e00-52df-16b7-2d97f638cc40", + "time": 12.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "2fe26366-c8ef-86f3-6f3a-8793ae4c89f0", + "time": 12.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "275fc3d7-b3e5-84c0-5fc1-6ed38edeb488", + "time": 13, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "9374409f-123b-073c-d809-917565dfe3db", + "time": 13.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "73951abf-4c8b-88a1-b913-e3f1b5dff7d9", + "time": 13.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "cdffe1de-9c1b-b43f-1cb0-6663d44711e6", + "time": 13.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "ae857817-95a5-a88e-2fc3-c19d546fb666", + "time": 13.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "e2d8c811-8121-d9a6-af85-f5a32127e589", + "time": 13.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "211119f8-7f30-96ee-3bcc-3619ff76ab1a", + "time": 13.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "4216458b-9e35-2385-02bb-a75b79432eb8", + "time": 13.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "bca39127-5996-61c9-5403-98258b6e7e99", + "time": 14, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "f06902fd-6f08-19c6-21f8-8546a1ae4dc7", + "time": 14.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "68008dc5-72c5-c1a7-286b-18348e1c6578", + "time": 14.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "a564ae1d-302f-ea94-ea6d-bffdc94fd9b0", + "time": 14.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "e7918ab2-26ac-07a5-37b3-fa30f4dd3d57", + "time": 14.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "2b26a5f3-8976-127c-e129-89ed75a71d06", + "time": 14.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "90416524-0b97-4c7b-cc68-935a335396ab", + "time": 14.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "f2f7dc6a-4469-4731-8b66-c252189e694e", + "time": 14.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "4d6c78f0-3769-081b-8b76-99fce9ca5ace", + "time": 15, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "dc5cce67-7bdf-c6bc-b586-c4e5c19d2cc5", + "time": 15.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "d7088ccb-40ad-9467-f11e-b3408d830970", + "time": 15.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "7ad46603-09c8-d5ea-bdc1-f192862a2609", + "time": 15.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "6e557a82-d157-3a17-9bc6-46dbc7e69807", + "time": 15.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "6a533cd7-1433-7e31-83f0-0dd2a3338380", + "time": 15.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "0a162988-c962-2f72-7671-7c21d0045451", + "time": 15.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "5b7897a2-d9c3-514a-135b-6607c6fc3ac4", + "time": 15.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "2d159101-f4c9-7c90-a992-6c287aca101b", + "time": 16, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "a1e3651e-a1a9-ea21-9f3c-4c77d9092b92", + "time": 16.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "08224c50-f295-2c1d-9ab7-b0f68335e0c6", + "time": 16.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "34760bd0-533c-8891-3e2c-14a46f8f895e", + "time": 16.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "37fda226-e2e3-46cf-7e5f-d2ba4989aeb1", + "time": 16.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "2435bb5d-c3b5-a3bd-606e-735474cacddf", + "time": 16.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "80346f74-0b74-154a-28fb-5e9df5695b49", + "time": 16.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "0d0b631d-b7d1-8960-347d-48369120b0a7", + "time": 16.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "5b42912b-08f7-2cb3-b48b-97f1e3ecf3d4", + "time": 17, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "10b5bb17-5947-e98a-d8fe-246dddb920cd", + "time": 17.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "b6c92c3b-93c1-6f8a-db57-51a2fa937d5c", + "time": 17.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "a22fc782-be79-be56-766d-33e6847ee833", + "time": 17.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "069ee540-89b6-1466-9700-e97a9e43482d", + "time": 17.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "b33c2e10-a528-0bfa-6406-1a52bb9aa279", + "time": 17.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "b8c259b0-a496-f81a-905a-c4b107d75d2c", + "time": 17.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "df968d95-16d4-cce1-4f4b-646ece8b3ddf", + "time": 17.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "ec32d202-5edd-ba3b-c3c2-ccc145c74472", + "time": 18, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "856dccf5-aac7-b7a3-69b5-08f99cddb461", + "time": 18.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "c92fcd86-42f0-4c89-9a7c-6003f99543d9", + "time": 18.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "d4911325-7a55-e1bf-0102-9d561ba77314", + "time": 18.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "b6ea1cf5-ad1b-1d1d-e236-a21840f27edf", + "time": 18.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "6e3b2041-358d-d010-f0bd-eb24f78cecf8", + "time": 18.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "613fcc2c-2f11-9b35-fe2e-f86b7ffdd532", + "time": 18.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "c78c8b18-8b9b-ccf4-3c90-669cff5e1f81", + "time": 18.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "d9860737-6490-94ab-a0af-07702bfa85c8", + "time": 19, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "6ea3a5f9-c4cf-8bfe-8c48-e0951cd37bb9", + "time": 19.125, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "cc9d123b-f788-ccb0-9efd-76757727f90f", + "time": 19.25, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "5292b000-eaf7-7952-b5e7-e34a9da05c11", + "time": 19.375, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "1fdac012-0a54-51c5-e1b7-ac02712de6e2", + "time": 19.5, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "fd2858e3-a293-ddad-bafc-202a72699261", + "time": 19.625, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "db675118-2209-4301-6de9-eddeb2d98040", + "time": 19.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "7.9", + "z": "1" + } + ], + "uuid": "125bc9cf-c768-6faf-be59-3e1e2cbc9f5a", + "time": 19.875, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "2.1", + "y": "8.5", + "z": "1" + } + ], + "uuid": "3f3fce99-4ce4-9a81-c2aa-eb719d976f78", + "time": 20, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "846f9d7a-ba3e-d736-4c01-93392d16f75d": { + "name": "fountain_cap", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d0f8a975-75cf-ed67-b4db-d2a0cd26ae2a", + "time": 7, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d390586e-afcc-23ab-e79f-77590a4e36e3", + "time": 6.95833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "197", + "z": "-4" + } + ], + "uuid": "0ded9d26-f2af-cd6f-81ac-8d3ebb4628ed", + "time": 7, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "197", + "z": "-4" + } + ], + "uuid": "41dabc80-9020-a2d8-b439-42fd23e090ea", + "time": 6.95833, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "e12ea88e-2c5d-ca5e-1dc9-fdeb37dfe485", + "time": 7, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "300\n", + "y": "1", + "z": "300\n" + } + ], + "uuid": "2152b791-fbe6-d069-76ec-d5914bbb604d", + "time": 7.54167, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "4051aaa5-de99-c8bb-5f8b-efe0aadcb2a4", + "time": 6.95833, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + } + ] + }, + "8ecb49a9-4063-567f-d5d6-13e34c61fda2": { + "name": "fountain_cap2", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "180\n", + "y": "0", + "z": "0" + } + ], + "uuid": "8bd20341-7a04-8d0f-78c1-f8b1f643aaa4", + "time": 7.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0\n", + "y": "0", + "z": "0" + } + ], + "uuid": "e4c7ba65-bea6-b9ae-6be5-50e2984bfe58", + "time": 7.54167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "219", + "z": "0" + } + ], + "uuid": "7f637d6b-bc43-7826-8acb-553d8002d5da", + "time": 7.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "206.97", + "z": "0" + } + ], + "uuid": "7580f636-fa16-afe9-c591-8db2bd7bc316", + "time": 7.54167, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "462.97", + "z": "0" + } + ], + "uuid": "de6092b7-167f-df9c-c889-a4b2ed337d4b", + "time": 15, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "36d14ae3-6c9f-0662-ac0c-f6436002da4d", + "time": 7.5, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "10", + "y": "1", + "z": "10" + } + ], + "uuid": "356b5362-e9a1-2fd1-745f-de032fc559c5", + "time": 7.54167, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "10", + "y": "56.6", + "z": "10\n" + } + ], + "uuid": "e882d02d-10cf-bc8a-64ee-a870647ec0c0", + "time": 15, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d54b2d60-7f22-35b8-6c7d-c7126fcd56e3", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "a44bbbce-1888-d74b-2319-04bcb9ea33b5", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "d11dbd00-d1ec-f5ad-3413-6ed0326d8a2a", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1c794a72-7256-cbab-e6df-e16629b8fda2", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f19cff26-e767-ef2b-6392-4270191f361d", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4e78f975-b3d5-3e60-4c60-cd7995cf78aa", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0bc1d5c8-1cd2-5c5b-64bc-a0ac87d3e46b", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "25", + "y": "0", + "z": "0" + } + ], + "uuid": "989be282-0e68-dbed-5e25-fd55bbbc47a5", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "80ef4d0c-005c-d459-2777-e3c467cc918d", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d8a0958a-fa0c-8400-4ff3-84a45b04296f", + "time": 1.375, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b3a9ce08-fed2-76ac-8970-72d843eac68d", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "c514adb8-f91c-5ebf-243a-b66e9443ff4a", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "64a4271f-3a53-327f-4676-a0b9a26f8baa", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0f1ec4a9-594f-7e3a-bcb3-511586828d9a", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e0566a59-cf77-3e59-e298-243e98ecdb7a", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "43249727-7910-4e36-79c0-0615d2f1d347", + "time": 6, + "color": -1, + "interpolation": "linear" + } + ] + }, + "d9627f7e-c2cc-0b7d-f0e3-267976830e09": { + "name": "Skirt", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "dff757df-728d-aab8-64f5-ba2efe7bdce5", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-44.03", + "y": "0", + "z": "0" + } + ], + "uuid": "e194b4c4-c517-2329-cd0a-3886e4a36167", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-87.5", + "y": "0", + "z": "0" + } + ], + "uuid": "6e927861-e203-c0a4-cbbc-c91eb5a9567c", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "aa3b1ace-1be9-edd7-f5bf-d6fbb0e5a824", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7d2be2da-ca0d-db9b-1160-bb37f38b584d", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-44.03", + "y": "0", + "z": "0" + } + ], + "uuid": "cd610944-e688-7064-c96a-6d8b04521f0c", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-87.5", + "y": "0", + "z": "0" + } + ], + "uuid": "6d7b64c0-d1d5-be0f-0e03-15f1002a03f0", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "3e187488-c04c-bf2e-ee2a-e2480b1739e7", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "04de0748-8491-9424-112c-2618ca42ceb2", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0.95" + } + ], + "uuid": "2e339458-b582-eacc-db40-5b57c3036630", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1d408f14-8a7f-3081-6adb-5dc27ca1277f", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "b4208bad-7e61-95b0-f642-a3534c2bcca5", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "1" + } + ], + "uuid": "53eaf1cd-f5f1-21b4-9bb5-220200430c82", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0.95" + } + ], + "uuid": "46c39632-e78f-da31-1d48-62452a693de5", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "adfed242-83b3-75af-a637-101bfc87aa31", + "time": 0, + "color": -1, + "uniform": true, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1.2774" + } + ], + "uuid": "afb0f3d6-48b5-fb24-1f63-abedd36cbfe6", + "time": 0.41667, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1.2692" + } + ], + "uuid": "03e6ab37-6fb4-97de-eca4-ea9ee044ee5c", + "time": 1.58333, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "c5bb8c9d-301b-d5e9-f005-6b4bcb7a81fd", + "time": 7.75, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1" + } + ], + "uuid": "9c5b7181-62f8-1831-da14-6f11b88f572b", + "time": 12.16667, + "color": -1, + "uniform": false, + "interpolation": "linear" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1.2774" + } + ], + "uuid": "48e108ca-6105-1c06-ed17-3be17b414c57", + "time": 1.25, + "color": -1, + "uniform": false, + "interpolation": "catmullrom" + }, + { + "channel": "scale", + "data_points": [ + { + "x": "1", + "y": "1", + "z": "1.2692" + } + ], + "uuid": "2f0a8274-9235-15ec-7dfe-f58600daed20", + "time": 6, + "color": -1, + "uniform": false, + "interpolation": "linear" + } + ] + }, + "8f6c2ef8-3d16-4a3f-6cb9-1cf99e728f0d": { + "name": "RightForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "e7c88050-441d-822b-643c-33ba6360d365", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "4599de05-58d3-2e7a-1fe0-65c784c759ae", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-60.66", + "y": "0", + "z": "-15" + } + ], + "uuid": "b46ef2c0-075f-260a-4966-5b6c4d37e80d", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7e1ba5e8-99da-270b-0af5-64643c584c34", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "55a71c51-5119-d44d-9d76-4f180a6d54c1", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "78b12393-4bbd-a147-db3d-e337899e47a6", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-60.66", + "y": "0", + "z": "-15" + } + ], + "uuid": "6bd0d68e-6e17-1bb0-9e26-691a49675f4c", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "-1" + } + ], + "uuid": "e3e09f23-7edb-f638-17ee-bfc4c93613c9", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4a2df5fb-cbef-e6e2-ec49-c7ff8c4e0158", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "8714bd76-f6c3-308b-3533-400fa4ed12cf", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "14ad5fd5-ec85-8949-0e55-737b6a25667f", + "time": 6.5, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "115", + "y": "0", + "z": "0" + } + ], + "uuid": "65dbcb18-e18b-2d82-2e11-737eb65a672e", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "110.68", + "y": "0", + "z": "0" + } + ], + "uuid": "562d08bb-c98c-3350-754f-8d605392d33c", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a0df4cf8-4c49-e4a9-4a52-ff005c6639ad", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1daefdbb-4ed5-4697-e411-0ba8c962df17", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "115", + "y": "0", + "z": "0" + } + ], + "uuid": "0b79f3f1-3b9c-ced0-0083-befee4877929", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "110.68", + "y": "0", + "z": "0" + } + ], + "uuid": "a9e48a31-35a7-adfd-07b7-2eb117db9d7b", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "bb1d95ed-4aee-ca5b-a331-bffe555c2f51", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "127cc455-ac9a-816f-a2b4-5db3b772fed6", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1b31c100-eb62-48de-5b1e-6da3007024c2", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4121077b-8e82-c3ad-c838-b3995f15cb16", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.26", + "z": "0" + } + ], + "uuid": "51342c72-3bac-f150-f056-aa8905d8b903", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-0.26", + "z": "0" + } + ], + "uuid": "b661a479-0bbc-eae2-4019-dcbefdfbc3d7", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1", + "z": "0" + } + ], + "uuid": "af5a52dc-b538-40c9-4915-2e48d5e0b1c1", + "time": 6, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "a8d3fbad-f5ce-f083-25c6-97a790add314", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "107.5", + "y": "0", + "z": "0" + } + ], + "uuid": "3fd5ce95-ec6f-1e37-3fd2-41277020f96c", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "907d82ed-5455-c3b6-2140-cb6b520ac92e", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7c07784e-0fdb-a6a9-1eef-32fd89318849", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2a28d01e-1f65-9fed-f0be-f87beba098b4", + "time": 6.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "23.35", + "y": "0", + "z": "0" + } + ], + "uuid": "2678688b-2a6f-c304-7e93-314869aef310", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "23.35", + "y": "0", + "z": "0" + } + ], + "uuid": "9a604a5f-42e1-697c-c59a-8c1f83db76a5", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "107.5", + "y": "0", + "z": "0" + } + ], + "uuid": "d66c6ca9-8025-1e07-5477-57f239859fae", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6e49268c-a4a9-ab86-3b88-e967765d3fcd", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "f268d448-a782-cb0c-a11b-ad9631e9995a", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3a94e6c5-4286-4544-ad4f-a81820fa0d5d", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "16b50566-1126-e501-7168-63b99e3a9a9d", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "6eda1424-6c74-f320-ceed-5549b0318d39", + "time": 6.5, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "1ba01782-7272-4f35-a9c5-d9d2aeeaf9c6", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "4a0b1b94-2165-fafe-df15-c9a43c0f08b8", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "3eb29d04-0777-1518-7d27-87623721f029", + "time": 6, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "ad206578-a187-4a18-10f0-8f1dc31d05e6", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "9a1f09df-f8d8-3d0d-cc43-653072d63ab1", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "61.67", + "y": "0", + "z": "0" + } + ], + "uuid": "715a88d7-cc38-604d-e5a1-49da086d7286", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "87992cad-c582-93e8-995f-0c1c699186d4", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "d200a933-0cf7-53eb-e742-1c6b6f0bd0e1", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "65", + "y": "0", + "z": "0" + } + ], + "uuid": "5e607d90-e518-55f4-3210-1c54805b1f72", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "61.67", + "y": "0", + "z": "0" + } + ], + "uuid": "389fa9c0-9632-639a-b115-ee0438f92fb3", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "1" + } + ], + "uuid": "9b9d91b8-0ced-db38-4ac8-208d8ea071f7", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "737482d9-9cb3-4bf2-72c6-d0920af3be0d", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.95", + "z": "0.95" + } + ], + "uuid": "d057b290-aca2-7e91-d2a4-c123605f65ad", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "5d129877-4788-800c-8b88-31ecbc4c6645", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7ef086d0-a189-4ff6-db35-875af4b3b044", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "1", + "z": "1" + } + ], + "uuid": "973206df-78f8-3cf4-653a-8cf80bc7a5c3", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0.95", + "z": "0.95" + } + ], + "uuid": "004b5e4c-962d-43d9-c7da-696ba310873b", + "time": 6, + "color": -1, + "interpolation": "linear" + } + ] + }, + "39b8f506-2d25-9ffc-4844-a483667159b6": { + "name": "LeftForeArm", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "f5050d8b-8962-4323-186c-35a1f0bc935e", + "time": 0.41667, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "0136add9-9224-e301-a01b-c75082404e48", + "time": 7.75, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "84dcc943-5fd6-3b09-5b76-e6d9d5eb9c56", + "time": 12.16667, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-62.5", + "y": "0", + "z": "0" + } + ], + "uuid": "ad427336-0d8d-d641-25bf-75795a826f1d", + "time": 1.25, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-60.66", + "y": "0", + "z": "15" + } + ], + "uuid": "db307d07-297c-e694-a081-ac18514b540a", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7090c465-3482-f9c7-dfb9-c507efc4874e", + "time": 0, + "color": -1, + "interpolation": "catmullrom" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "-60.66", + "y": "0", + "z": "15" + } + ], + "uuid": "68245a46-b451-5048-1189-890a5200131a", + "time": 6, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-1.2", + "z": "-1.3" + } + ], + "uuid": "0ffbeed2-4362-f636-7de4-5d35f0fa3381", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + } + ] + }, + "97179e6c-ca07-eedf-6655-10644ba0253b": { + "name": "LeftHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "10", + "z": "0" + } + ], + "uuid": "c970c1cf-c360-aa5f-5ecd-cdf67a2630c3", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "bf35775d-5c37-4419-13f2-e16196e0a2b0", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "57cf0e3b-4824-33b7-034f-40841a713813": { + "name": "LeftHandPlain", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "7977383a-25e2-94a2-fa54-a8aa577f7f56", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "0fe9582e-afee-9945-c051-79e1996ab231": { + "name": "RightHand", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "-10", + "z": "0" + } + ], + "uuid": "937a37a9-4337-bc4a-068c-c08ba6b74b43", + "time": 1.58333, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "cf62e037-a7ed-0d95-e409-001f4fad5d8e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "41da1498-ef5d-9fde-e6fb-f0064efa0c2c": { + "name": "RightHandPlain", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "0" + } + ], + "uuid": "2d3185d4-bda4-d46a-14db-038b857368e8", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + }, + { + "uuid": "71ca2828-c6e9-3457-bc65-01729c50445f", + "name": "animation", + "loop": "once", + "override": false, + "length": 0, + "snapping": 24, + "selected": false, + "anim_time_update": "", + "blend_weight": "", + "start_delay": "", + "loop_delay": "", + "animators": { + "8ca6699e-74b1-10dc-5d18-29f7e8345ef5": { + "name": "root", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "-2", + "z": "-1" + } + ], + "uuid": "a47de454-d91c-f07a-c8f5-d12699c9b1de", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9b1cdac1-623c-a07f-13cf-50b4cba2d280": { + "name": "Head", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "47.5", + "y": "0", + "z": "0" + } + ], + "uuid": "875981c8-7c94-1f21-98d5-220b66a9de2e", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-1" + } + ], + "uuid": "61d0e645-7ba2-0711-f2ac-64fb5aa431f1", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "3a163167-946a-9709-bfaa-60c63fb36d88": { + "name": "Body", + "type": "bone", + "keyframes": [ + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-1" + } + ], + "uuid": "e885ecc5-b6b8-68df-366d-813237360abe", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "02123f94-db06-5dae-758f-a4b6191791e5": { + "name": "RightLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-30", + "y": "0", + "z": "0" + } + ], + "uuid": "1da171b1-ebe2-8951-169b-eb9158cd3cbe", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "9d530b83-521c-52ff-34ec-05833bb4753c": { + "name": "RightForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "90", + "y": "0", + "z": "0" + } + ], + "uuid": "fa1d71b5-1515-8d6b-0904-bb673bc8724e", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "ee63e079-5cf9-5d1f-d8a3-5114116d8c24": { + "name": "RightShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-47.5", + "y": "0", + "z": "0" + } + ], + "uuid": "db31c793-7ada-7d7f-36da-4b4efd62f737", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "ccbe5164-07d6-91b2-6958-fd4145e9f767", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "4ef21934-9598-a1cc-d2cb-2a978ecab20f": { + "name": "LeftLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "22.5", + "y": "0", + "z": "0" + } + ], + "uuid": "0c5116db-1164-ff5e-4843-3d96a3d5284c", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "80ca9439-0183-c534-a9eb-ada28e85b1ec": { + "name": "LeftForeLeg", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "32.5", + "y": "0", + "z": "0" + } + ], + "uuid": "85041e6b-2010-27e1-5cf1-a1f3d2205287", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + }, + "8d7e89f6-7c78-6fe6-f3a5-2c090fe71687": { + "name": "LeftShoe", + "type": "bone", + "keyframes": [ + { + "channel": "rotation", + "data_points": [ + { + "x": "-52.5", + "y": "0", + "z": "0" + } + ], + "uuid": "5679431d-98e7-c966-c87d-d7f643d5b1d8", + "time": 0, + "color": -1, + "interpolation": "linear" + }, + { + "channel": "position", + "data_points": [ + { + "x": "0", + "y": "0", + "z": "-2" + } + ], + "uuid": "c684321a-c5ce-fadc-5277-633e69d1d29b", + "time": 0, + "color": -1, + "interpolation": "linear" + } + ] + } + } + } + ] +} \ No newline at end of file diff --git a/3d_models/akira/akira_eiko_olivia_pink_not_scaled.bbmodel b/3d_models/akira/old model backup/akira_eiko_olivia_pink_not_scaled.bbmodel similarity index 100% rename from 3d_models/akira/akira_eiko_olivia_pink_not_scaled.bbmodel rename to 3d_models/akira/old model backup/akira_eiko_olivia_pink_not_scaled.bbmodel diff --git a/3d_models/akira/script (copy).lua b/3d_models/akira/script (copy).lua new file mode 100644 index 0000000..f7f5f73 --- /dev/null +++ b/3d_models/akira/script (copy).lua @@ -0,0 +1,58 @@ +-- Auto generated script file -- +models.model:setVisible(false) +models.model.Add:setPrimaryRenderType("TRANSLUCENT_CULL") +models.model.Add:setOpacity(1) +models.model.Add.fountain.inner:setOpacity(0) +models.model.root:setPrimaryTexture("SKIN") +models.model.symbols:setVisible(false) +local testBind = keybinds:newKeybind("Тест","key.keyboard.z") +fountain_darking=false +hide_all=false + +function pings.open_fountain() + animations.model.fountain_opening:play() + models.model.Add:setParentType("World") + models.model.Add:setPos(player:getPos(delta)*16) + models.model.Add:setRot(0,-player:getBodyYaw()-180,0) +end +function pings.setLighed() + +end +--testBind.press = pings.test + +local weel = action_wheel:newPage() +action_wheel:setPage(weel) + +local open_f = weel:newAction() +open_f:title("Открыть Фонтан") +open_f:item("iron_sword") +open_f.leftClick=pings.open_fountain + +function events.entity_init() + --player functions goes here +end + +function events.tick() + if fountain_darking then + models.model.Add.fountain.inner:setOpacity(models.model.Add.fountain.inner:getOpacity()+0.02) + if models.model.Add.fountain.inner:getOpacity()>0.98 then + fountain_darking=false + models.model.Add.fountain.inner:setPrimaryRenderType("TRANSLUCENT_CULL") + end + end + if hide_all then + models.model.Add:setOpacity(models.model.Add:getOpacity()-0.02) + if models.model.Add:getOpacity()<0.02 then + hide_all=false + models.model.Add:setVisible(false) + end + end +end + +--render event, called every time your avatar is rendered +--it have two arguments, "delta" and "context" +--"delta" is the percentage between the last and the next tick (as a decimal value, 0.0 to 1.0) +--"context" is a string that tells from where this render event was called (the paperdoll, gui, player render, first person) +function events.render(delta, context) + --code goes here +end diff --git a/3d_models/missy_physical/avatar.json b/3d_models/missy_physical/avatar.json new file mode 100644 index 0000000..0edc0ff --- /dev/null +++ b/3d_models/missy_physical/avatar.json @@ -0,0 +1,7 @@ +{ + "authors": [ + "akirapink" + ], + "name": "Missy", + "description":"Missy from Mandarin Labs" +} diff --git a/3d_models/missy_physical/avatar.png b/3d_models/missy_physical/avatar.png new file mode 100644 index 0000000..e84d5af Binary files /dev/null and b/3d_models/missy_physical/avatar.png differ diff --git a/3d_models/missy_physical/missy_neo.bbmodel b/3d_models/missy_physical/missy.bbmodel similarity index 100% rename from 3d_models/missy_physical/missy_neo.bbmodel rename to 3d_models/missy_physical/missy.bbmodel diff --git a/3d_models/missy_physical/missy.bbmodelolder b/3d_models/missy_physical/missy.bbmodelolder new file mode 100644 index 0000000..4569ae0 --- /dev/null +++ b/3d_models/missy_physical/missy.bbmodelolder @@ -0,0 +1 @@ +{"meta":{"format_version":"4.9","model_format":"free","box_uv":false},"name":"missy","model_identifier":"astra","visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"timeline_setups":[],"unhandled_root_fields":{},"resolution":{"width":16,"height":16},"elements":[{"name":"cuboid","color":0,"origin":[0,4,0],"rotation":[0,0,0],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"B6Jc":[4,30,2],"90k7":[4,30,-4],"fOj3":[4,22,2],"qTTl":[4,22,-4],"iPYW":[-4,30,2],"hqbm":[-4,30,-4],"cPz8":[-4,22,2],"In6t":[-4,22,-4],"Cf4f":[3,29,5],"2L20":[-3,29,5],"j1Su":[3,23,5],"iBnq":[-3,23,5]},"faces":{"7EhU846c":{"uv":{"B6Jc":[1.1666666666666674,3.166666666666667],"fOj3":[6.500000000000002,3.166666666666667],"90k7":[1.1666666666666674,0],"qTTl":[6.500000000000002,0]},"vertices":["B6Jc","fOj3","90k7","qTTl"],"texture":0},"7dMNqq0o":{"uv":{"iPYW":[2.833333333333334,0],"hqbm":[2.833333333333335,4.25],"cPz8":[6.000000000000003,0],"In6t":[6.0000000000000036,4.25]},"vertices":["iPYW","hqbm","cPz8","In6t"],"texture":0},"CX3h1SBE":{"uv":{"B6Jc":[0,5.333333333333333],"90k7":[0,0],"iPYW":[5.333333333333333,5.333333333333333],"hqbm":[5.333333333333333,0]},"vertices":["B6Jc","90k7","iPYW","hqbm"],"texture":0},"GCSYXZ8i":{"uv":{"fOj3":[10.666666666666666,0],"cPz8":[5.333333333333333,0],"qTTl":[10.666666666666666,5.333333333333333],"In6t":[5.333333333333333,5.333333333333333]},"vertices":["fOj3","cPz8","qTTl","In6t"],"texture":0},"zThh8YIX":{"uv":{"Cf4f":[0.6666666666666673,0],"2L20":[0.6666666666666673,5.333333333333334],"j1Su":[6.000000000000001,0],"iBnq":[6.000000000000001,5.333333333333334]},"vertices":["Cf4f","2L20","j1Su","iBnq"],"texture":0},"Dlnxoxlc":{"uv":{"90k7":[10.666666666666666,0],"qTTl":[10.666666666666666,5.333333333333333],"hqbm":[16,0],"In6t":[16,5.333333333333333]},"vertices":["90k7","qTTl","hqbm","In6t"],"texture":0},"rfhWDtzo":{"uv":{"Cf4f":[1.8311000000000002,5.331100000000003],"j1Su":[5.8310999999999975,5.331100000000003],"fOj3":[6.497766666666665,2.6689],"B6Jc":[1.1644333333333332,2.6689]},"vertices":["Cf4f","j1Su","fOj3","B6Jc"],"texture":0},"bd9ZfOY9":{"uv":{"2L20":[5.333333333333334,1],"Cf4f":[0,1],"B6Jc":[0,0],"iPYW":[5.333333333333334,0]},"vertices":["2L20","Cf4f","B6Jc","iPYW"],"texture":0},"Xcbu9pnc":{"uv":{"iBnq":[5.8310999999999975,5.331100000000003],"2L20":[1.8310999999999997,5.331100000000003],"iPYW":[1.1644333333333328,2.6689],"cPz8":[6.4977666666666645,2.6689]},"vertices":["iBnq","2L20","iPYW","cPz8"],"texture":0},"9b3l2DSo":{"uv":{"j1Su":[10.666666666666668,0],"iBnq":[5.333333333333333,0],"cPz8":[5.333333333333333,1.0000000000000009],"fOj3":[10.666666666666668,1.0000000000000009]},"vertices":["j1Su","iBnq","cPz8","fOj3"],"texture":0}},"type":"mesh","uuid":"f4fd88c4-c51a-c26f-8aa9-bb453799e10d"},{"name":"cylinder","color":0,"origin":[0,19,0],"rotation":[0,0,0],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"EKH9":[-3.3129701841468296e-17,7,0],"JPYw":[1.9328003377011245,-0.20000000000000018,1.4999999999999996],"yOBK":[2.8190924918808067,6.1,3],"FNVR":[3.1273366398676945,-0.20000000000000018,-0.6458980337503152],"sxfN":[3.8511410091698934,6.1,-1.76393202250021],"3Nxw":[4.337696603167573e-16,-0.20000000000000018,-1.9721359549995792],"vIZb":[3.147907197566257e-16,6.1,-3.472135954999579],"JfJw":[-3.1273366398676945,-0.20000000000000018,-0.6458980337503156],"iaxQ":[-3.8511410091698925,6.1,-1.7639320225002106],"46sv":[-1.9328003377011251,-0.20000000000000018,1.4999999999999996],"4BwV":[-2.8190924918808067,6.1,2.9999999999999996],"fXdX":[3.049288956226416e-16,3.399998784441653,-3.2221358424478805],"Zmky":[3.5638401516081197,3.399998784441653,-1.7049150015554106],"upeO":[2.641530796910639,3.399998784441653,2.749999887448301],"pO2g":[-2.641530796910639,3.399998784441653,2.7499998874483005],"rCcp":[-3.5638401516081197,3.399998784441653,-1.704915001555411],"nt17":[5.724722402651406e-16,-2,-2.972135954999579],"MjMl":[4.1273366398676945,-2,-0.8819660112501048],"J0FH":[-4.1273366398676945,-2,-0.8819660112501054],"tl9u":[2.550834326451019,-2,2.4999999999999996],"VFVC":[-2.55083432645102,-2,2.4999999999999996],"MyLE":[4.1007546168146786e-17,-4,0.05278640450004207]},"faces":{"l5NHaaBZ":{"uv":{"MjMl":[7.333325885842571,2.906122366659739],"tl9u":[7.333325885842571,0],"MyLE":[5.333333333333333,1.4531102504309776]},"vertices":["MjMl","tl9u","MyLE"],"texture":0},"QtLsRYqp":{"uv":{"yOBK":[5.333333333333333,0],"Zmky":[8.23953333333333,3.0000013506203853],"upeO":[5.333333333333333,3.0000013506203853],"sxfN":[8.23953333333333,0]},"vertices":["yOBK","Zmky","upeO","sxfN"],"texture":0},"QHyotLLY":{"uv":{"yOBK":[6.09729648109081,2.3511401316953635],"sxfN":[7.805420390861848,0],"EKH9":[5.333333333333333,5.551115123125783e-16]},"vertices":["yOBK","sxfN","EKH9"],"texture":0},"xEVQcmUf":{"uv":{"nt17":[5.333333333333333,2.4721],"MjMl":[7.684433333333331,0.7639],"MyLE":[5.333333333333333,0]},"vertices":["nt17","MjMl","MyLE"],"texture":0},"lp8bIhHq":{"uv":{"sxfN":[10.666666666666668,10.666666666666668],"fXdX":[13.339533333333334,13.000001350620387],"Zmky":[10.666666666666668,13.000001350620387],"vIZb":[13.339533333333334,10.666666666666668]},"vertices":["sxfN","fXdX","Zmky","vIZb"],"texture":0},"ErnM8hCT":{"uv":{"sxfN":[7.684433333333331,1.7082000000000002],"vIZb":[5.333333333333333,0],"EKH9":[5.333333333333333,2.4721]},"vertices":["sxfN","vIZb","EKH9"],"texture":0},"xg3GVuUg":{"uv":{"J0FH":[5.333333333333333,0.7639],"nt17":[7.684433333333331,2.4721],"MyLE":[7.684433333333331,0]},"vertices":["J0FH","nt17","MyLE"],"texture":0},"4zhUBPYx":{"uv":{"vIZb":[13.260466666666666,10.666666666666668],"rCcp":[16,13.016668017287053],"fXdX":[13.260466666666666,13.016668017287053],"iaxQ":[16,10.666666666666668]},"vertices":["vIZb","rCcp","fXdX","iaxQ"],"texture":0},"Q8GVvIVI":{"uv":{"vIZb":[7.684433333333331,0],"iaxQ":[5.333333333333333,1.7082000000000002],"EKH9":[7.684433333333331,2.4721]},"vertices":["vIZb","iaxQ","EKH9"],"texture":0},"oMM7RLU2":{"uv":{"VFVC":[7.041457243104373,0],"J0FH":[5.333333333333333,2.3511401316953635],"MyLE":[7.805420390861848,2.351140131695363]},"vertices":["VFVC","J0FH","MyLE"],"texture":0},"i9mdgYLc":{"uv":{"iaxQ":[5.333333333333333,0],"pO2g":[8.23953333333333,3.0000013506203853],"rCcp":[5.333333333333333,3.0000013506203853],"4BwV":[8.23953333333333,0]},"vertices":["iaxQ","pO2g","rCcp","4BwV"],"texture":0},"uBt7KLWR":{"uv":{"iaxQ":[5.333333333333334,0],"4BwV":[5.333333333333333,2.906122366659739],"EKH9":[7.333325885842571,1.453012116228761]},"vertices":["iaxQ","4BwV","EKH9"],"texture":0},"tULY3Xyl":{"uv":{"tl9u":[8.23953333333333,0],"VFVC":[5.333333333333333,0],"MyLE":[6.786433333333333,2]},"vertices":["tl9u","VFVC","MyLE"],"texture":0},"N7JVhf5g":{"uv":{"4BwV":[5.333333333333333,0],"upeO":[8.23953333333333,3.0000013506203853],"pO2g":[5.333333333333333,3.0000013506203853],"yOBK":[8.23953333333333,0]},"vertices":["4BwV","upeO","pO2g","yOBK"],"texture":0},"a44ntmez":{"uv":{"4BwV":[5.333333333333333,2],"yOBK":[8.23953333333333,2],"EKH9":[6.786433333333333,0]},"vertices":["4BwV","yOBK","EKH9"],"texture":0},"z0541OlQ":{"uv":{"3Nxw":[13.339533333333335,16],"fXdX":[13.339533333333335,13.000001350620384],"Zmky":[10.666666666666666,13.000001350620384],"FNVR":[10.666666666666666,16]},"vertices":["3Nxw","fXdX","Zmky","FNVR"],"texture":0},"PF6DEowf":{"uv":{"FNVR":[8.23953333333333,2.999998649379614],"Zmky":[8.23953333333333,0],"upeO":[5.333333333333333,0],"JPYw":[5.333333333333333,2.999998649379614]},"vertices":["FNVR","Zmky","upeO","JPYw"],"texture":0},"BFoYo6U8":{"uv":{"JPYw":[8.23953333333333,2.999998649379614],"upeO":[8.23953333333333,0],"pO2g":[5.333333333333333,0],"46sv":[5.333333333333333,2.999998649379614]},"vertices":["JPYw","upeO","pO2g","46sv"],"texture":0},"O3MaOqIj":{"uv":{"46sv":[8.23953333333333,2.9999986493796147],"pO2g":[8.23953333333333,0],"rCcp":[5.333333333333333,0],"JfJw":[5.333333333333333,2.9999986493796147]},"vertices":["46sv","pO2g","rCcp","JfJw"],"texture":0},"92fyMIDH":{"uv":{"JfJw":[15.983333333333334,16],"rCcp":[15.983333333333334,13.000001350620385],"fXdX":[13.260466666666666,13.000001350620385],"3Nxw":[13.260466666666666,16]},"vertices":["JfJw","rCcp","fXdX","3Nxw"],"texture":0},"HUgEeFcC":{"uv":{"MjMl":[5.333333333333333,1],"nt17":[7.840133333333331,1],"3Nxw":[7.840133333333331,0],"FNVR":[5.333333333333333,0]},"vertices":["MjMl","nt17","3Nxw","FNVR"],"texture":0},"shPG7hQk":{"uv":{"nt17":[5.333333333333333,1],"J0FH":[7.840133333333331,1],"JfJw":[7.840133333333331,0],"3Nxw":[5.333333333333333,0]},"vertices":["nt17","J0FH","JfJw","3Nxw"],"texture":0},"eTs7tdGn":{"uv":{"tl9u":[6.333333333333334,1],"MjMl":[8.627933333333331,1],"FNVR":[8.627933333333331,0],"JPYw":[6.333333333333334,0]},"vertices":["tl9u","MjMl","FNVR","JPYw"],"texture":0},"eQRqBfy3":{"uv":{"VFVC":[5.333333333333333,1],"tl9u":[7.962933333333333,1],"JPYw":[7.962933333333333,0],"46sv":[5.333333333333333,0]},"vertices":["VFVC","tl9u","JPYw","46sv"],"texture":0},"Zha8NQmS":{"uv":{"J0FH":[5.333333333333333,1],"VFVC":[7.627933333333331,1],"46sv":[7.627933333333331,0],"JfJw":[5.333333333333333,0]},"vertices":["J0FH","VFVC","46sv","JfJw"],"texture":0}},"type":"mesh","uuid":"af8619de-82a9-6b38-0cb3-e92337651c4b"},{"name":"cylinder","color":5,"origin":[0,10,0],"rotation":[0,0,0],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"exN5":[0,1,0],"nZNR":[0,7,0],"briK":[3.232050807568878,1,5],"78u1":[2.0490381056766576,7,3],"B6i0":[6.464101615137756,1,3.535250795749689e-16],"6btw":[4.098076211353316,7,2.1211504774498136e-16],"LzsD":[3.232050807568878,1,-5],"gKuZ":[2.0490381056766576,7,-3],"LA17":[-3.2320508075688785,1,-5],"YeaH":[-2.0490381056766584,7,-3],"V5tJ":[-6.464101615137756,1,-1.0605752387249068e-15],"q08w":[-4.098076211353316,7,-6.363451432349441e-16],"Yxf2":[-3.232050807568881,1,4.999999999999998],"D79G":[-2.04903810567666,7,2.9999999999999987]},"faces":{"WNZNRWr2":{"uv":{"B6i0":[10.833333333333332,10.071402656653204],"briK":[11.581501349900286,10.071402656653204],"exN5":[11.20741734161681,10.377543616186637]},"vertices":["B6i0","briK","exN5"],"texture":0},"B5BPhCGG":{"uv":{"briK":[6.0936493327197425,15.999500271950858],"B6i0":[10.620266666666666,15.99950027195086],"6btw":[9.643716797054761,10.735281714281879],"78u1":[6.882401150483203,10.711128191906687]},"vertices":["briK","B6i0","6btw","78u1"],"texture":0},"FyV67xQl":{"uv":{"78u1":[0,13.666666666666666],"6btw":[1.4819807565097887,16],"nZNR":[2.9640470777283836,13.666666666666666]},"vertices":["78u1","6btw","nZNR"],"texture":0},"ziwI6CYj":{"uv":{"LzsD":[10.833333333333332,10.071402656653204],"B6i0":[11.581501349900286,10.071402656653204],"exN5":[11.20741734161681,10.377543616186637]},"vertices":["LzsD","B6i0","exN5"],"texture":0},"sPWmIXea":{"uv":{"B6i0":[5.333333333333334,15.999999999999998],"LzsD":[9.859950667280255,16],"gKuZ":[9.071198849516795,10.711128191906688],"6btw":[6.309883202945237,10.736281170380161]},"vertices":["B6i0","LzsD","gKuZ","6btw"],"texture":0},"4MFTunpQ":{"uv":{"6btw":[0,13.666666666666666],"gKuZ":[1.4819807565097887,16],"nZNR":[2.9640470777283836,13.666666666666666]},"vertices":["6btw","gKuZ","nZNR"],"texture":0},"KqPSXCbh":{"uv":{"LA17":[10.833333333333332,10.071402656653204],"LzsD":[11.581501349900286,10.071402656653204],"exN5":[11.20741734161681,10.377543616186637]},"vertices":["LA17","LzsD","exN5"],"texture":0},"wrDtyPGP":{"uv":{"LzsD":[5.333333333333334,15.978761557911467],"LA17":[10.248168016566957,15.978761557911467],"YeaH":[9.348638157692898,10.711128191906687],"gKuZ":[6.232863192207394,10.711128191906687]},"vertices":["LzsD","LA17","YeaH","gKuZ"],"texture":0},"Fsxk8TLG":{"uv":{"gKuZ":[0,13.666666666666666],"YeaH":[1.4819807565097887,16],"nZNR":[2.9640470777283836,13.666666666666666]},"vertices":["gKuZ","YeaH","nZNR"],"texture":0},"4AjzPR5d":{"uv":{"V5tJ":[10.833333333333332,10.071402656653204],"LA17":[11.581501349900286,10.071402656653204],"exN5":[11.20741734161681,10.377543616186637]},"vertices":["V5tJ","LA17","exN5"],"texture":0},"KwbawLGi":{"uv":{"LA17":[6.0936493327197425,15.99950027195086],"V5tJ":[10.620266666666666,15.99950027195086],"q08w":[9.643716797054761,10.73528171428188],"YeaH":[6.882401150483203,10.711128191906688]},"vertices":["LA17","V5tJ","q08w","YeaH"],"texture":0},"rostpDGr":{"uv":{"YeaH":[0,13.666666666666666],"q08w":[1.4819807565097887,16],"nZNR":[2.9640470777283836,13.666666666666666]},"vertices":["YeaH","q08w","nZNR"],"texture":0},"sisoTjBi":{"uv":{"Yxf2":[10.833333333333332,10.071402656653204],"V5tJ":[11.581501349900286,10.071402656653204],"exN5":[11.20741734161681,10.377543616186637]},"vertices":["Yxf2","V5tJ","exN5"],"texture":0},"p3Y47E4X":{"uv":{"V5tJ":[5.333333333333334,16],"Yxf2":[9.859950667280255,16],"D79G":[9.071198849516795,10.711128191906687],"q08w":[6.309883202945237,10.736281170380163]},"vertices":["V5tJ","Yxf2","D79G","q08w"],"texture":0},"L5CrCMbj":{"uv":{"q08w":[0,13.666666666666666],"D79G":[1.4819807565097887,16],"nZNR":[2.9640470777283836,13.666666666666666]},"vertices":["q08w","D79G","nZNR"],"texture":0},"JDJatiZr":{"uv":{"briK":[10.833333333333332,10.071402656653204],"Yxf2":[11.581501349900286,10.071402656653204],"exN5":[11.20741734161681,10.377543616186637]},"vertices":["briK","Yxf2","exN5"],"texture":0},"QQuDmYGg":{"uv":{"Yxf2":[5.333333333333334,15.978761557911467],"briK":[10.248168016566957,15.978761557911467],"78u1":[9.348638157692898,10.711128191906687],"D79G":[6.232863192207394,10.711128191906687]},"vertices":["Yxf2","briK","78u1","D79G"],"texture":0},"T16KaZsk":{"uv":{"D79G":[0,13.666666666666666],"78u1":[1.4819807565097887,16],"nZNR":[2.9640470777283836,13.666666666666666]},"vertices":["D79G","78u1","nZNR"],"texture":0}},"type":"mesh","uuid":"c02d19ae-1514-c463-3cef-bc36b143db8c"},{"name":"sphere","color":0,"origin":[5,20,0],"rotation":[0,0,15],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"soso":[0,-1.5,0],"BbQ5":[0,1.5,0],"lUP5":[0.7499999999999998,0.75,1.2320508075688772],"dgob":[0.7499999999999999,-0.7499999999999997,1.2320508075688774],"5Iyo":[1.4999999999999998,0.75,8.711217195723841e-17],"Gf47":[1.5,-0.7499999999999997,8.711217195723843e-17],"1Mpc":[0.7499999999999998,0.75,-1.2320508075688772],"uStm":[0.7499999999999999,-0.7499999999999997,-1.2320508075688774],"VMwQ":[-0.75,0.75,-1.2320508075688772],"0WNM":[-0.7500000000000002,-0.7499999999999997,-1.2320508075688772],"dAYG":[-1.4999999999999998,0.75,-2.613365158717152e-16],"bDAl":[-1.5,-0.7499999999999997,-2.6133651587171527e-16],"nsJr":[-0.7500000000000004,0.75,1.2320508075688767],"zqtX":[-0.7500000000000007,-0.7499999999999997,1.232050807568877]},"faces":{"tYrjNLnf":{"uv":{"lUP5":[0,16],"5Iyo":[2,16],"BbQ5":[1,13.999999999999998]},"vertices":["lUP5","5Iyo","BbQ5"],"texture":0},"0nb0NiQI":{"uv":{"dgob":[0,16],"Gf47":[2,16],"lUP5":[0,13.999999999999998],"5Iyo":[2,13.999999999999998]},"vertices":["dgob","Gf47","lUP5","5Iyo"],"texture":0},"elDzCGcm":{"uv":{"Gf47":[2,13.999999999999998],"dgob":[0,13.999999999999998],"soso":[1,16]},"vertices":["Gf47","dgob","soso"],"texture":0},"lF77FkSO":{"uv":{"5Iyo":[0,16],"1Mpc":[2,16],"BbQ5":[1,13.999999999999998]},"vertices":["5Iyo","1Mpc","BbQ5"],"texture":0},"h77XObO2":{"uv":{"Gf47":[0,16],"uStm":[2,16],"5Iyo":[0,13.999999999999998],"1Mpc":[2,13.999999999999998]},"vertices":["Gf47","uStm","5Iyo","1Mpc"],"texture":0},"yljQjCQ8":{"uv":{"uStm":[2,13.999999999999998],"Gf47":[0,13.999999999999998],"soso":[1,16]},"vertices":["uStm","Gf47","soso"],"texture":0},"Zhd86Vtw":{"uv":{"1Mpc":[0,16],"VMwQ":[2,16],"BbQ5":[1,13.999999999999998]},"vertices":["1Mpc","VMwQ","BbQ5"],"texture":0},"dxDFqbCj":{"uv":{"uStm":[0,16],"0WNM":[2,16],"1Mpc":[0,13.999999999999998],"VMwQ":[2,13.999999999999998]},"vertices":["uStm","0WNM","1Mpc","VMwQ"],"texture":0},"tpsAddvw":{"uv":{"0WNM":[2,13.999999999999998],"uStm":[0,13.999999999999998],"soso":[1,16]},"vertices":["0WNM","uStm","soso"],"texture":0},"5a88gonc":{"uv":{"VMwQ":[0,16],"dAYG":[2,16],"BbQ5":[1,13.999999999999998]},"vertices":["VMwQ","dAYG","BbQ5"],"texture":0},"vkcTEN0l":{"uv":{"0WNM":[0,16],"bDAl":[2,16],"VMwQ":[0,13.999999999999998],"dAYG":[2,13.999999999999998]},"vertices":["0WNM","bDAl","VMwQ","dAYG"],"texture":0},"5Al6JTDa":{"uv":{"bDAl":[2,13.999999999999998],"0WNM":[0,13.999999999999998],"soso":[1,16]},"vertices":["bDAl","0WNM","soso"],"texture":0},"haD6puQV":{"uv":{"dAYG":[0,16],"nsJr":[2,16],"BbQ5":[1,13.999999999999998]},"vertices":["dAYG","nsJr","BbQ5"],"texture":0},"vF17qg54":{"uv":{"bDAl":[0,16],"zqtX":[2,16],"dAYG":[0,13.999999999999998],"nsJr":[2,13.999999999999998]},"vertices":["bDAl","zqtX","dAYG","nsJr"],"texture":0},"R8eCLOdb":{"uv":{"zqtX":[2,13.999999999999998],"bDAl":[0,13.999999999999998],"soso":[1,16]},"vertices":["zqtX","bDAl","soso"],"texture":0},"n4Hfysff":{"uv":{"nsJr":[0,16],"lUP5":[2,16],"BbQ5":[1,13.999999999999998]},"vertices":["nsJr","lUP5","BbQ5"],"texture":0},"aVKmJds5":{"uv":{"zqtX":[0,16],"dgob":[2,16],"nsJr":[0,13.999999999999998],"lUP5":[2,13.999999999999998]},"vertices":["zqtX","dgob","nsJr","lUP5"],"texture":0},"9xeXW9RW":{"uv":{"dgob":[2,13.999999999999998],"zqtX":[0,13.999999999999998],"soso":[1,16]},"vertices":["dgob","zqtX","soso"],"texture":0}},"type":"mesh","uuid":"c8efb191-d315-a84f-1a06-2fd24842bdbd"},{"name":"cube","color":0,"origin":[7,12,0],"rotation":[0,0,20],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"pd2g":[1.2499999999999996,1.9999999999999996,1.5],"mmL5":[1.2499999999999996,1.9999999999999996,-1.5],"rrJj":[1.4999999999999996,0,1.5],"s2jG":[1.4999999999999996,0,-1.5],"SQdA":[-0.5,2.5,1.5],"1I6t":[-0.5,2.4,-1.5],"x97M":[-0.5,0,1.5],"6OCI":[-0.5,0,-1.5],"1mAv":[0.9999999999999996,-1,1],"qLFu":[-0.5,-1,1],"l2mI":[0.9999999999999996,-1,-1],"0CGp":[-0.5,-1,-1],"Az5f":[-0.5,1,-2.5],"cZ9p":[0.9999999999999996,1,-2.5],"zqiK":[-0.5,0,-2.5],"iXLD":[0.9999999999999996,0,-2.5]},"faces":{"FKjq113j":{"uv":{"mmL5":[3.0000000000000004,0],"pd2g":[0,0],"s2jG":[3.0000000000000004,2],"rrJj":[0,2]},"vertices":["mmL5","pd2g","s2jG","rrJj"],"texture":0},"jZ871epm":{"uv":{"SQdA":[3.0000000000000004,0],"1I6t":[0,0],"x97M":[3.0000000000000004,2],"6OCI":[0,2]},"vertices":["SQdA","1I6t","x97M","6OCI"],"texture":0},"uGJH28Iv":{"uv":{"mmL5":[1.5,0],"1I6t":[0,0],"pd2g":[1.5,3],"SQdA":[0,3]},"vertices":["mmL5","1I6t","pd2g","SQdA"],"texture":0},"1nFJZMx2":{"uv":{"1mAv":[1.5,0],"qLFu":[0,0],"l2mI":[1.5,3],"0CGp":[0,3]},"vertices":["1mAv","qLFu","l2mI","0CGp"],"texture":0},"OQgR4dER":{"uv":{"pd2g":[1.5,0],"SQdA":[0,0],"rrJj":[1.5,2],"x97M":[0,2]},"vertices":["pd2g","SQdA","rrJj","x97M"],"texture":0},"UN1JDrWQ":{"uv":{"Az5f":[1.5,0],"cZ9p":[0,0],"zqiK":[1.5,2],"iXLD":[0,2]},"vertices":["Az5f","cZ9p","zqiK","iXLD"],"texture":0},"XyxwRClU":{"uv":{"1mAv":[0,1],"l2mI":[3.0000000000000004,1],"s2jG":[3.0000000000000004,0],"rrJj":[0,0]},"vertices":["1mAv","l2mI","s2jG","rrJj"],"texture":0},"Ilz3SEts":{"uv":{"qLFu":[0,1],"1mAv":[1.5,1],"rrJj":[1.5,0],"x97M":[0,0]},"vertices":["qLFu","1mAv","rrJj","x97M"],"texture":0},"Cchw1LL2":{"uv":{"0CGp":[0,1],"qLFu":[3.0000000000000004,1],"x97M":[3.0000000000000004,0],"6OCI":[0,0]},"vertices":["0CGp","qLFu","x97M","6OCI"],"texture":0},"n2rwk4ci":{"uv":{"l2mI":[0,2],"0CGp":[1.5,2],"6OCI":[1.5,1],"s2jG":[0,1]},"vertices":["l2mI","0CGp","6OCI","s2jG"],"texture":0},"O5Z8kx5g":{"uv":{"Az5f":[1,0],"zqiK":[1,2],"6OCI":[2,2],"1I6t":[2,0]},"vertices":["Az5f","zqiK","6OCI","1I6t"],"texture":0},"4RYNouH5":{"uv":{"cZ9p":[1.5,0],"Az5f":[0,0],"1I6t":[0,1],"mmL5":[1.5,1]},"vertices":["cZ9p","Az5f","1I6t","mmL5"],"texture":0},"TW0YxAz3":{"uv":{"iXLD":[1,2],"cZ9p":[1,0],"mmL5":[0,0],"s2jG":[0,2]},"vertices":["iXLD","cZ9p","mmL5","s2jG"],"texture":0},"2zYxvLvJ":{"uv":{"zqiK":[0,1],"iXLD":[1.5,1],"s2jG":[1.5,0],"6OCI":[0,0]},"vertices":["zqiK","iXLD","s2jG","6OCI"],"texture":0}},"type":"mesh","uuid":"fda5bcad-54d6-3220-bd8f-fef6c2e8c921"},{"name":"sphere","color":0,"origin":[6.775,14,0],"rotation":[0,0,15],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"soso":[-0.1,-0.5,0],"BbQ5":[-0.1,1.5,0],"lUP5":[0.3999999999999998,1,0.9999999999999998],"dgob":[0.3999999999999999,2.220446049250313e-16,1],"5Iyo":[0.8999999999999998,1,7.070501591499377e-17],"Gf47":[0.9,2.220446049250313e-16,7.070501591499379e-17],"1Mpc":[0.3999999999999998,1,-0.9999999999999998],"uStm":[0.3999999999999999,2.220446049250313e-16,-1],"VMwQ":[-0.6,1,-0.9999999999999998],"0WNM":[-0.6000000000000002,2.220446049250313e-16,-0.9999999999999998],"dAYG":[-1.0999999999999996,1,-2.121150477449813e-16],"bDAl":[-1.0999999999999999,2.220446049250313e-16,-2.1211504774498136e-16],"nsJr":[-0.6000000000000002,1,0.9999999999999994],"zqtX":[-0.6000000000000004,2.220446049250313e-16,0.9999999999999996]},"faces":{"tYrjNLnf":{"uv":{"lUP5":[0,16],"5Iyo":[2,16],"BbQ5":[1,13.999999999999998]},"vertices":["lUP5","5Iyo","BbQ5"],"texture":0},"0nb0NiQI":{"uv":{"dgob":[0,16],"Gf47":[2,16],"lUP5":[0,13.999999999999998],"5Iyo":[2,13.999999999999998]},"vertices":["dgob","Gf47","lUP5","5Iyo"],"texture":0},"elDzCGcm":{"uv":{"Gf47":[2,13.999999999999998],"dgob":[0,13.999999999999998],"soso":[1,16]},"vertices":["Gf47","dgob","soso"],"texture":0},"lF77FkSO":{"uv":{"5Iyo":[0,16],"1Mpc":[2,16],"BbQ5":[1,13.999999999999998]},"vertices":["5Iyo","1Mpc","BbQ5"],"texture":0},"h77XObO2":{"uv":{"Gf47":[0,16],"uStm":[2,16],"5Iyo":[0,13.999999999999998],"1Mpc":[2,13.999999999999998]},"vertices":["Gf47","uStm","5Iyo","1Mpc"],"texture":0},"yljQjCQ8":{"uv":{"uStm":[2,13.999999999999998],"Gf47":[0,13.999999999999998],"soso":[1,16]},"vertices":["uStm","Gf47","soso"],"texture":0},"Zhd86Vtw":{"uv":{"1Mpc":[0,16],"VMwQ":[2,16],"BbQ5":[1,13.999999999999998]},"vertices":["1Mpc","VMwQ","BbQ5"],"texture":0},"dxDFqbCj":{"uv":{"uStm":[0,16],"0WNM":[2,16],"1Mpc":[0,13.999999999999998],"VMwQ":[2,13.999999999999998]},"vertices":["uStm","0WNM","1Mpc","VMwQ"],"texture":0},"tpsAddvw":{"uv":{"0WNM":[2,13.999999999999998],"uStm":[0,13.999999999999998],"soso":[1,16]},"vertices":["0WNM","uStm","soso"],"texture":0},"5a88gonc":{"uv":{"VMwQ":[0,16],"dAYG":[2,16],"BbQ5":[1,13.999999999999998]},"vertices":["VMwQ","dAYG","BbQ5"],"texture":0},"vkcTEN0l":{"uv":{"0WNM":[0,16],"bDAl":[2,16],"VMwQ":[0,13.999999999999998],"dAYG":[2,13.999999999999998]},"vertices":["0WNM","bDAl","VMwQ","dAYG"],"texture":0},"5Al6JTDa":{"uv":{"bDAl":[2,13.999999999999998],"0WNM":[0,13.999999999999998],"soso":[1,16]},"vertices":["bDAl","0WNM","soso"],"texture":0},"haD6puQV":{"uv":{"dAYG":[0,16],"nsJr":[2,16],"BbQ5":[1,13.999999999999998]},"vertices":["dAYG","nsJr","BbQ5"],"texture":0},"vF17qg54":{"uv":{"bDAl":[0,16],"zqtX":[2,16],"dAYG":[0,13.999999999999998],"nsJr":[2,13.999999999999998]},"vertices":["bDAl","zqtX","dAYG","nsJr"],"texture":0},"R8eCLOdb":{"uv":{"zqtX":[2,13.999999999999998],"bDAl":[0,13.999999999999998],"soso":[1,16]},"vertices":["zqtX","bDAl","soso"],"texture":0},"n4Hfysff":{"uv":{"nsJr":[0,16],"lUP5":[2,16],"BbQ5":[1,13.999999999999998]},"vertices":["nsJr","lUP5","BbQ5"],"texture":0},"aVKmJds5":{"uv":{"zqtX":[0,16],"dgob":[2,16],"nsJr":[0,13.999999999999998],"lUP5":[2,13.999999999999998]},"vertices":["zqtX","dgob","nsJr","lUP5"],"texture":0},"9xeXW9RW":{"uv":{"dgob":[2,13.999999999999998],"zqtX":[0,13.999999999999998],"soso":[1,16]},"vertices":["dgob","zqtX","soso"],"texture":0}},"type":"mesh","uuid":"bea3be8a-dc84-bc0b-13b3-252f75fc3294"},{"name":"cylinder","color":5,"origin":[4.5,21.499999999999993,0],"rotation":[0,0,20],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"4WRs":[0,-1.7750000000000004,0],"hwjg":[1,-1.2520833333333332,2],"ZISf":[1.689692620785908,3.619387266771905,1.5],"ryg1":[2,-1.2520833333333332,1.4141003182998756e-16],"Jq92":[2.439692620785908,3.619387266771905,1.0605752387249067e-16],"rilX":[1,-1.2520833333333332,-2],"iCDk":[1.689692620785908,3.619387266771905,-1.5],"v1hz":[-1.0000000000000002,-1.2520833333333332,-2],"UN0m":[-0.7500000000000002,3.9770833333333333,-1.5],"92Ln":[-2,-1.2520833333333332,-4.242300954899627e-16],"uZrh":[-1.5,3.9770833333333333,-3.1817257161747205e-16],"bftR":[-1.0000000000000009,-1.2520833333333332,1.9999999999999991],"ORyy":[-0.7500000000000007,3.9770833333333333,1.4999999999999993],"9zIy":[0,4.5,0],"zVQ5":[0.7499771996534295,4.5,5.3027149837378195e-17],"Lrul":[0.37501140017328527,4.5,0.7500228003465705],"Sltx":[-0.3750114001732856,4.5,0.7500228003465701],"l955":[-0.7500228003465705,4.5,-1.5909112210533743e-16],"ovht":[-0.3750114001732854,4.5,-0.7500228003465705],"12zS":[0.37501140017328527,4.5,-0.7500228003465705],"jS6F":[0.49998479976895294,-1.7750000000000004,0.9999695995379059],"IKHl":[1.000030400462094,-1.7750000000000004,7.070716538014996e-17],"srzj":[0.500015200231047,-1.7750000000000004,-1.000030400462094],"TZsM":[-0.5000152002310472,-1.7750000000000004,-1.000030400462094],"n74E":[-1.000030400462094,-1.7750000000000004,-2.121214961404499e-16],"AgKl":[-0.5000152002310474,-1.7750000000000004,1.0000304004620935]},"faces":{"sGCABgEN":{"uv":{"jS6F":[6.199357005013137,1.500045600693141],"ryg1":[8.79743333333333,3],"IKHl":[7.065435988453701,3],"hwjg":[7.065433333333332,0]},"vertices":["jS6F","ryg1","IKHl","hwjg"],"texture":0},"sWWfgk4K":{"uv":{"hwjg":[5.333333333333333,3],"ryg1":[8.79753333333333,3],"Jq92":[8.79753333333333,0],"ZISf":[5.333333333333333,0]},"vertices":["hwjg","ryg1","Jq92","ZISf"],"texture":0},"QNUAKYIT":{"uv":{"zVQ5":[7.0653306782129635,0],"ZISf":[7.065433333333332,3],"Lrul":[6.1994096616535295,1.500045600693141],"Jq92":[8.79743333333333,0]},"vertices":["zVQ5","ZISf","Lrul","Jq92"],"texture":0},"BRnWTTQ7":{"uv":{"IKHl":[7.0653306782129635,0],"rilX":[7.065433333333332,3],"srzj":[6.1994096616535295,1.500045600693141],"ryg1":[8.79743333333333,0]},"vertices":["IKHl","rilX","srzj","ryg1"],"texture":0},"USWUQ28I":{"uv":{"ryg1":[5.333333333333333,3],"rilX":[8.79753333333333,3],"iCDk":[8.79753333333333,0],"Jq92":[5.333333333333333,0]},"vertices":["ryg1","rilX","iCDk","Jq92"],"texture":0},"telwhUl5":{"uv":{"12zS":[6.199357005013137,1.500045600693141],"Jq92":[8.79743333333333,3],"zVQ5":[7.065435988453701,3],"iCDk":[7.065433333333332,0]},"vertices":["12zS","Jq92","zVQ5","iCDk"],"texture":0},"Y0oRikhE":{"uv":{"srzj":[7.931457005013137,1.499954399306859],"v1hz":[5.333333333333333,3],"TZsM":[6.199357005013137,1.500045600693141],"rilX":[8.79753333333333,3]},"vertices":["srzj","v1hz","TZsM","rilX"],"texture":0},"M1vklvUl":{"uv":{"rilX":[5.333333333333333,3],"v1hz":[8.79753333333333,3],"UN0m":[8.79753333333333,0],"iCDk":[5.333333333333333,0]},"vertices":["rilX","v1hz","UN0m","iCDk"],"texture":0},"ZVE21JMg":{"uv":{"ovht":[6.1994096616535295,1.500045600693141],"iCDk":[8.79753333333333,0],"12zS":[7.931509661653529,1.499954399306859],"UN0m":[5.333333333333333,0]},"vertices":["ovht","iCDk","12zS","UN0m"],"texture":0},"L0SUV83I":{"uv":{"TZsM":[7.93140966165353,1.499954399306859],"92Ln":[5.333333333333333,0],"n74E":[7.0653306782129635,0],"v1hz":[7.065333333333332,3]},"vertices":["TZsM","92Ln","n74E","v1hz"],"texture":0},"R3T6mLRW":{"uv":{"v1hz":[5.333333333333333,3],"92Ln":[8.79753333333333,3],"uZrh":[8.79753333333333,0],"UN0m":[5.333333333333333,0]},"vertices":["v1hz","92Ln","uZrh","UN0m"],"texture":0},"ttIS0sst":{"uv":{"l955":[7.065435988453701,3],"UN0m":[7.065333333333332,0],"ovht":[7.931357005013138,1.499954399306859],"uZrh":[5.333333333333333,3]},"vertices":["l955","UN0m","ovht","uZrh"],"texture":0},"dQPt3CZa":{"uv":{"n74E":[7.065435988453701,3],"bftR":[7.065333333333332,0],"AgKl":[7.931357005013138,1.499954399306859],"92Ln":[5.333333333333333,3]},"vertices":["n74E","bftR","AgKl","92Ln"],"texture":0},"FiVhgNvE":{"uv":{"92Ln":[5.333333333333333,3],"bftR":[8.79753333333333,3],"ORyy":[8.79753333333333,0],"uZrh":[5.333333333333333,0]},"vertices":["92Ln","bftR","ORyy","uZrh"],"texture":0},"f27qtq3m":{"uv":{"Sltx":[7.93140966165353,1.499954399306859],"uZrh":[5.333333333333333,0],"l955":[7.0653306782129635,0],"ORyy":[7.065333333333332,3]},"vertices":["Sltx","uZrh","l955","ORyy"],"texture":0},"Ahdauex4":{"uv":{"AgKl":[6.1994096616535295,1.500045600693141],"hwjg":[8.79753333333333,0],"jS6F":[7.931509661653529,1.499954399306859],"bftR":[5.333333333333333,0]},"vertices":["AgKl","hwjg","jS6F","bftR"],"texture":0},"FwaC0inC":{"uv":{"bftR":[5.333333333333333,3],"hwjg":[8.79753333333333,3],"ZISf":[8.79753333333333,0],"ORyy":[5.333333333333333,0]},"vertices":["bftR","hwjg","ZISf","ORyy"],"texture":0},"9ZkZ6NpN":{"uv":{"Lrul":[7.931457005013137,1.499954399306859],"ORyy":[5.333333333333333,3],"Sltx":[6.199357005013137,1.500045600693141],"ZISf":[8.79753333333333,3]},"vertices":["Lrul","ORyy","Sltx","ZISf"],"texture":0},"bLGLsiVU":{"uv":{"zVQ5":[7.0653306782129635,0],"9zIy":[5.333333333333333,0],"Lrul":[6.1994096616535295,1.500045600693141]},"vertices":["zVQ5","9zIy","Lrul"],"texture":0},"FdG3nVPa":{"uv":{"Lrul":[7.931457005013137,1.499954399306859],"9zIy":[7.065433333333332,0],"Sltx":[6.199357005013137,1.500045600693141]},"vertices":["Lrul","9zIy","Sltx"],"texture":0},"ud1TCfhY":{"uv":{"Sltx":[7.93140966165353,1.499954399306859],"9zIy":[8.79743333333333,0],"l955":[7.0653306782129635,0]},"vertices":["Sltx","9zIy","l955"],"texture":0},"41w1S6rR":{"uv":{"l955":[7.065435988453701,3],"9zIy":[8.79743333333333,3],"ovht":[7.931357005013138,1.499954399306859]},"vertices":["l955","9zIy","ovht"],"texture":0},"wEgUowfB":{"uv":{"ovht":[6.1994096616535295,1.500045600693141],"9zIy":[7.065433333333332,3],"12zS":[7.931509661653529,1.499954399306859]},"vertices":["ovht","9zIy","12zS"],"texture":0},"G3UiYJeg":{"uv":{"12zS":[6.199357005013137,1.500045600693141],"9zIy":[5.333333333333333,3],"zVQ5":[7.065435988453701,3]},"vertices":["12zS","9zIy","zVQ5"],"texture":0},"HSXF4kkA":{"uv":{"jS6F":[6.199357005013137,1.500045600693141],"4WRs":[5.333333333333333,3],"IKHl":[7.065435988453701,3]},"vertices":["jS6F","4WRs","IKHl"],"texture":0},"QqJPEzgx":{"uv":{"IKHl":[7.0653306782129635,0],"4WRs":[5.333333333333333,0],"srzj":[6.1994096616535295,1.500045600693141]},"vertices":["IKHl","4WRs","srzj"],"texture":0},"TY9u2sDg":{"uv":{"srzj":[7.931457005013137,1.499954399306859],"4WRs":[7.065433333333332,0],"TZsM":[6.199357005013137,1.500045600693141]},"vertices":["srzj","4WRs","TZsM"],"texture":0},"0orapcDd":{"uv":{"TZsM":[7.93140966165353,1.499954399306859],"4WRs":[8.79743333333333,0],"n74E":[7.0653306782129635,0]},"vertices":["TZsM","4WRs","n74E"],"texture":0},"uoHhPK1e":{"uv":{"n74E":[7.065435988453701,3],"4WRs":[8.79743333333333,3],"AgKl":[7.931357005013138,1.499954399306859]},"vertices":["n74E","4WRs","AgKl"],"texture":0},"R8i2SJV3":{"uv":{"AgKl":[6.1994096616535295,1.500045600693141],"4WRs":[7.065433333333332,3],"jS6F":[7.931509661653529,1.499954399306859]},"vertices":["AgKl","4WRs","jS6F"],"texture":0}},"type":"mesh","uuid":"c4e697be-8660-6427-00c0-afa06e70cebc"},{"name":"cylinder","color":5,"origin":[5.5,18.500000000000007,0],"rotation":[0,0,20],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"4WRs":[-0.01925963663104932,1.75,0],"hwjg":[-0.8288894549465741,1.229166666666667,1.3],"ZISf":[-0.970432984154859,-3.622895684035762,1],"ryg1":[-1.6385192732620992,1.229166666666667,9.191652068949191e-17],"Jq92":[-1.3396926207859083,-3.622895684035762,7.070501591499378e-17],"rilX":[-0.8288894549465741,1.229166666666667,-1.3],"iCDk":[-0.970432984154859,-3.622895684035762,-1],"v1hz":[0.7903701816844756,1.229166666666667,-1.3],"UN0m":[0.23074036336895065,-3.9791666666666665,-1],"92Ln":[1.5999999999999996,1.229166666666667,-2.757495620684758e-16],"uZrh":[0.5999999999999996,-3.9791666666666665,-2.1211504774498136e-16],"bftR":[0.790370181684476,1.229166666666667,1.2999999999999994],"ORyy":[0.23074036336895098,-3.9791666666666665,0.9999999999999996],"9zIy":[-0.13851927326209895,-4.5,0],"zVQ5":[-0.5077676842295621,-4.5,3.53514332249188e-17],"Lrul":[-0.3231547044094167,-4.5,0.500015200231047],"Sltx":[0.04611615788521911,-4.5,0.5000152002310467],"l955":[0.23075158903253667,-4.5,-1.0606074807022496e-16],"ovht":[0.04611615788521911,-4.5,-0.500015200231047],"12zS":[-0.3231547044094167,-4.5,-0.500015200231047],"jS6F":[-0.4240622392285107,1.75,0.6499802396996389],"IKHl":[-0.8289140680671762,1.75,4.595965749709748e-17],"srzj":[-0.4240868523491127,1.75,-0.6500197603003611],"TZsM":[0.3855675790870142,1.75,-0.6500197603003611],"n74E":[0.7903947948050772,1.75,-1.3787897249129245e-16],"AgKl":[0.3855675790870142,1.75,0.6500197603003609]},"faces":{"sGCABgEN":{"uv":{"jS6F":[3.464099999999998,3],"ryg1":[0.8660236716798027,1.500045600693141],"IKHl":[1.7321026551203706,3],"hwjg":[1.7321,0]},"vertices":["jS6F","ryg1","IKHl","hwjg"],"texture":0},"sWWfgk4K":{"uv":{"hwjg":[3.4641999999999977,0],"ryg1":[3.4641999999999977,3],"Jq92":[0,3],"ZISf":[0,0]},"vertices":["hwjg","ryg1","Jq92","ZISf"],"texture":0},"QNUAKYIT":{"uv":{"zVQ5":[1.7321,3],"ZISf":[1.7319973448796295,0],"Lrul":[0.8660763283201964,1.500045600693141],"Jq92":[3.464099999999998,0]},"vertices":["zVQ5","ZISf","Lrul","Jq92"],"texture":0},"BRnWTTQ7":{"uv":{"IKHl":[1.7321,3],"rilX":[1.7319973448796295,0],"srzj":[0.8660763283201964,1.500045600693141],"ryg1":[3.464099999999998,0]},"vertices":["IKHl","rilX","srzj","ryg1"],"texture":0},"USWUQ28I":{"uv":{"ryg1":[3.4641999999999977,0],"rilX":[3.4641999999999977,3],"iCDk":[0,3],"Jq92":[0,0]},"vertices":["ryg1","rilX","iCDk","Jq92"],"texture":0},"telwhUl5":{"uv":{"12zS":[3.464099999999998,3],"Jq92":[0.8660236716798027,1.500045600693141],"zVQ5":[1.7321026551203706,3],"iCDk":[1.7321,0]},"vertices":["12zS","Jq92","zVQ5","iCDk"],"texture":0},"Y0oRikhE":{"uv":{"srzj":[0,3],"v1hz":[2.598123671679804,1.499954399306859],"TZsM":[0.8660236716798027,1.500045600693141],"rilX":[3.4641999999999977,3]},"vertices":["srzj","v1hz","TZsM","rilX"],"texture":0},"M1vklvUl":{"uv":{"rilX":[3.4641999999999977,0],"v1hz":[3.4641999999999977,3],"UN0m":[0,3],"iCDk":[0,0]},"vertices":["rilX","v1hz","UN0m","iCDk"],"texture":0},"ZVE21JMg":{"uv":{"ovht":[3.4641999999999977,0],"iCDk":[0.8660763283201964,1.500045600693141],"12zS":[2.598176328320196,1.499954399306859],"UN0m":[0,0]},"vertices":["ovht","iCDk","12zS","UN0m"],"texture":0},"L0SUV83I":{"uv":{"TZsM":[0,0],"92Ln":[2.598076328320196,1.499954399306859],"n74E":[1.7319973448796295,0],"v1hz":[1.7320000000000002,3]},"vertices":["TZsM","92Ln","n74E","v1hz"],"texture":0},"R3T6mLRW":{"uv":{"v1hz":[3.4641999999999977,0],"92Ln":[3.4641999999999977,3],"uZrh":[0,3],"UN0m":[0,0]},"vertices":["v1hz","92Ln","uZrh","UN0m"],"texture":0},"ttIS0sst":{"uv":{"l955":[1.7320000000000002,0],"UN0m":[1.7321026551203706,3],"ovht":[2.598023671679804,1.499954399306859],"uZrh":[0,3]},"vertices":["l955","UN0m","ovht","uZrh"],"texture":0},"dQPt3CZa":{"uv":{"n74E":[1.7320000000000002,0],"bftR":[1.7321026551203706,3],"AgKl":[2.598023671679804,1.499954399306859],"92Ln":[0,3]},"vertices":["n74E","bftR","AgKl","92Ln"],"texture":0},"FiVhgNvE":{"uv":{"92Ln":[3.4641999999999977,0],"bftR":[3.4641999999999977,3],"ORyy":[0,3],"uZrh":[0,0]},"vertices":["92Ln","bftR","ORyy","uZrh"],"texture":0},"f27qtq3m":{"uv":{"Sltx":[0,0],"uZrh":[2.598076328320196,1.499954399306859],"l955":[1.7319973448796295,0],"ORyy":[1.7320000000000002,3]},"vertices":["Sltx","uZrh","l955","ORyy"],"texture":0},"Ahdauex4":{"uv":{"AgKl":[3.4641999999999977,0],"hwjg":[0.8660763283201964,1.500045600693141],"jS6F":[2.598176328320196,1.499954399306859],"bftR":[0,0]},"vertices":["AgKl","hwjg","jS6F","bftR"],"texture":0},"FwaC0inC":{"uv":{"bftR":[3.4641999999999977,0],"hwjg":[3.4641999999999977,3],"ZISf":[0,3],"ORyy":[0,0]},"vertices":["bftR","hwjg","ZISf","ORyy"],"texture":0},"9ZkZ6NpN":{"uv":{"Lrul":[0,3],"ORyy":[2.598123671679804,1.499954399306859],"Sltx":[0.8660236716798027,1.500045600693141],"ZISf":[3.4641999999999977,3]},"vertices":["Lrul","ORyy","Sltx","ZISf"],"texture":0},"bLGLsiVU":{"uv":{"zVQ5":[0,0],"9zIy":[1.7319973448796295,0],"Lrul":[0.8660763283201964,1.500045600693141]},"vertices":["zVQ5","9zIy","Lrul"],"texture":0},"FdG3nVPa":{"uv":{"Lrul":[1.7321,0],"9zIy":[2.598123671679804,1.499954399306859],"Sltx":[0.8660236716798027,1.500045600693141]},"vertices":["Lrul","9zIy","Sltx"],"texture":0},"ud1TCfhY":{"uv":{"Sltx":[3.464099999999998,0],"9zIy":[2.598076328320196,1.499954399306859],"l955":[1.7319973448796295,0]},"vertices":["Sltx","9zIy","l955"],"texture":0},"41w1S6rR":{"uv":{"l955":[3.464099999999998,3],"9zIy":[1.7321026551203706,3],"ovht":[2.598023671679804,1.499954399306859]},"vertices":["l955","9zIy","ovht"],"texture":0},"wEgUowfB":{"uv":{"ovht":[1.7321,3],"9zIy":[0.8660763283201964,1.500045600693141],"12zS":[2.598176328320196,1.499954399306859]},"vertices":["ovht","9zIy","12zS"],"texture":0},"G3UiYJeg":{"uv":{"12zS":[0,3],"9zIy":[0.8660236716798027,1.500045600693141],"zVQ5":[1.7321026551203706,3]},"vertices":["12zS","9zIy","zVQ5"],"texture":0},"HSXF4kkA":{"uv":{"jS6F":[0,3],"4WRs":[0.8660236716798027,1.500045600693141],"IKHl":[1.7321026551203706,3]},"vertices":["jS6F","4WRs","IKHl"],"texture":0},"QqJPEzgx":{"uv":{"IKHl":[0,0],"4WRs":[1.7319973448796295,0],"srzj":[0.8660763283201964,1.500045600693141]},"vertices":["IKHl","4WRs","srzj"],"texture":0},"TY9u2sDg":{"uv":{"srzj":[1.7321,0],"4WRs":[2.598123671679804,1.499954399306859],"TZsM":[0.8660236716798027,1.500045600693141]},"vertices":["srzj","4WRs","TZsM"],"texture":0},"0orapcDd":{"uv":{"TZsM":[3.464099999999998,0],"4WRs":[2.598076328320196,1.499954399306859],"n74E":[1.7319973448796295,0]},"vertices":["TZsM","4WRs","n74E"],"texture":0},"uoHhPK1e":{"uv":{"n74E":[3.464099999999998,3],"4WRs":[1.7321026551203706,3],"AgKl":[2.598023671679804,1.499954399306859]},"vertices":["n74E","4WRs","AgKl"],"texture":0},"R8i2SJV3":{"uv":{"AgKl":[1.7321,3],"4WRs":[0.8660763283201964,1.500045600693141],"jS6F":[2.598176328320196,1.499954399306859]},"vertices":["AgKl","4WRs","jS6F"],"texture":0}},"type":"mesh","uuid":"74f07612-2f24-0b2f-0e7d-21834a0ad1c9"},{"name":"cylinder","color":5,"origin":[-4.5,21.499999999999993,0],"rotation":[0,0,-20],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"4WRs":[0,-1.7750000000000004,0],"hwjg":[-1,-1.2520833333333332,2],"ZISf":[-1.689692620785908,3.619387266771905,1.5],"ryg1":[-2,-1.2520833333333332,1.4141003182998756e-16],"Jq92":[-2.439692620785908,3.619387266771905,1.0605752387249067e-16],"rilX":[-1,-1.2520833333333332,-2],"iCDk":[-1.689692620785908,3.619387266771905,-1.5],"v1hz":[1.0000000000000002,-1.2520833333333332,-2],"UN0m":[0.7500000000000002,3.9770833333333333,-1.5],"92Ln":[2,-1.2520833333333332,-4.242300954899627e-16],"uZrh":[1.5,3.9770833333333333,-3.1817257161747205e-16],"bftR":[1.0000000000000009,-1.2520833333333332,1.9999999999999991],"ORyy":[0.7500000000000007,3.9770833333333333,1.4999999999999993],"9zIy":[0,4.5,0],"zVQ5":[-0.7499771996534295,4.5,5.3027149837378195e-17],"Lrul":[-0.37501140017328527,4.5,0.7500228003465705],"Sltx":[0.3750114001732856,4.5,0.7500228003465701],"l955":[0.7500228003465705,4.5,-1.5909112210533743e-16],"ovht":[0.3750114001732854,4.5,-0.7500228003465705],"12zS":[-0.37501140017328527,4.5,-0.7500228003465705],"jS6F":[-0.4999847997689528,-1.7750000000000004,0.9999695995379059],"IKHl":[-1.0000304004620943,-1.7750000000000004,7.070716538014996e-17],"srzj":[-0.5000152002310472,-1.7750000000000004,-1.000030400462094],"TZsM":[0.5000152002310472,-1.7750000000000004,-1.000030400462094],"n74E":[1.000030400462094,-1.7750000000000004,-2.121214961404499e-16],"AgKl":[0.5000152002310474,-1.7750000000000004,1.0000304004620935]},"faces":{"sGCABgEN":{"uv":{"ryg1":[8.797433333333336,3],"jS6F":[6.199357005013137,1.500045600693141],"IKHl":[7.065435988453703,3],"hwjg":[7.065433333333333,0]},"vertices":["ryg1","jS6F","IKHl","hwjg"],"texture":0},"sWWfgk4K":{"uv":{"ryg1":[8.797533333333336,3],"hwjg":[5.333333333333333,3],"Jq92":[8.797533333333336,0],"ZISf":[5.333333333333333,0]},"vertices":["ryg1","hwjg","Jq92","ZISf"],"texture":0},"QNUAKYIT":{"uv":{"ZISf":[7.065433333333333,3],"zVQ5":[7.0653306782129635,0],"Lrul":[6.1994096616535295,1.500045600693141],"Jq92":[8.797433333333336,0]},"vertices":["ZISf","zVQ5","Lrul","Jq92"],"texture":0},"BRnWTTQ7":{"uv":{"rilX":[7.065433333333333,3],"IKHl":[7.0653306782129635,0],"srzj":[6.1994096616535295,1.500045600693141],"ryg1":[8.797433333333336,0]},"vertices":["rilX","IKHl","srzj","ryg1"],"texture":0},"USWUQ28I":{"uv":{"rilX":[8.797533333333336,3],"ryg1":[5.333333333333333,3],"iCDk":[8.797533333333336,0],"Jq92":[5.333333333333333,0]},"vertices":["rilX","ryg1","iCDk","Jq92"],"texture":0},"telwhUl5":{"uv":{"Jq92":[8.797433333333336,3],"12zS":[6.199357005013137,1.500045600693141],"zVQ5":[7.065435988453703,3],"iCDk":[7.065433333333333,0]},"vertices":["Jq92","12zS","zVQ5","iCDk"],"texture":0},"Y0oRikhE":{"uv":{"v1hz":[5.333333333333333,3],"srzj":[7.9314570050131366,1.499954399306859],"TZsM":[6.199357005013137,1.500045600693141],"rilX":[8.797533333333336,3]},"vertices":["v1hz","srzj","TZsM","rilX"],"texture":0},"M1vklvUl":{"uv":{"v1hz":[8.797533333333336,3],"rilX":[5.333333333333333,3],"UN0m":[8.797533333333336,0],"iCDk":[5.333333333333333,0]},"vertices":["v1hz","rilX","UN0m","iCDk"],"texture":0},"ZVE21JMg":{"uv":{"iCDk":[8.797533333333336,0],"ovht":[6.1994096616535295,1.500045600693141],"12zS":[7.931509661653529,1.499954399306859],"UN0m":[5.333333333333333,0]},"vertices":["iCDk","ovht","12zS","UN0m"],"texture":0},"L0SUV83I":{"uv":{"92Ln":[5.333333333333333,0],"TZsM":[7.93140966165353,1.499954399306859],"n74E":[7.0653306782129635,0],"v1hz":[7.065333333333333,3]},"vertices":["92Ln","TZsM","n74E","v1hz"],"texture":0},"R3T6mLRW":{"uv":{"92Ln":[8.797533333333336,3],"v1hz":[5.333333333333333,3],"uZrh":[8.797533333333336,0],"UN0m":[5.333333333333333,0]},"vertices":["92Ln","v1hz","uZrh","UN0m"],"texture":0},"ttIS0sst":{"uv":{"UN0m":[7.065333333333333,0],"l955":[7.065435988453703,3],"ovht":[7.931357005013137,1.499954399306859],"uZrh":[5.333333333333333,3]},"vertices":["UN0m","l955","ovht","uZrh"],"texture":0},"dQPt3CZa":{"uv":{"bftR":[7.065333333333333,0],"n74E":[7.065435988453703,3],"AgKl":[7.931357005013137,1.499954399306859],"92Ln":[5.333333333333333,3]},"vertices":["bftR","n74E","AgKl","92Ln"],"texture":0},"FiVhgNvE":{"uv":{"bftR":[8.797533333333336,3],"92Ln":[5.333333333333333,3],"ORyy":[8.797533333333336,0],"uZrh":[5.333333333333333,0]},"vertices":["bftR","92Ln","ORyy","uZrh"],"texture":0},"f27qtq3m":{"uv":{"uZrh":[5.333333333333333,0],"Sltx":[7.93140966165353,1.499954399306859],"l955":[7.0653306782129635,0],"ORyy":[7.065333333333333,3]},"vertices":["uZrh","Sltx","l955","ORyy"],"texture":0},"Ahdauex4":{"uv":{"hwjg":[8.797533333333336,0],"AgKl":[6.1994096616535295,1.500045600693141],"jS6F":[7.931509661653529,1.499954399306859],"bftR":[5.333333333333333,0]},"vertices":["hwjg","AgKl","jS6F","bftR"],"texture":0},"FwaC0inC":{"uv":{"hwjg":[8.797533333333336,3],"bftR":[5.333333333333333,3],"ZISf":[8.797533333333336,0],"ORyy":[5.333333333333333,0]},"vertices":["hwjg","bftR","ZISf","ORyy"],"texture":0},"9ZkZ6NpN":{"uv":{"ORyy":[5.333333333333333,3],"Lrul":[7.9314570050131366,1.499954399306859],"Sltx":[6.199357005013137,1.500045600693141],"ZISf":[8.797533333333336,3]},"vertices":["ORyy","Lrul","Sltx","ZISf"],"texture":0},"bLGLsiVU":{"uv":{"9zIy":[5.333333333333333,0],"zVQ5":[7.0653306782129635,0],"Lrul":[6.1994096616535295,1.500045600693141]},"vertices":["9zIy","zVQ5","Lrul"],"texture":0},"FdG3nVPa":{"uv":{"9zIy":[7.065433333333333,0],"Lrul":[7.9314570050131366,1.499954399306859],"Sltx":[6.199357005013137,1.500045600693141]},"vertices":["9zIy","Lrul","Sltx"],"texture":0},"ud1TCfhY":{"uv":{"9zIy":[8.797433333333336,0],"Sltx":[7.93140966165353,1.499954399306859],"l955":[7.0653306782129635,0]},"vertices":["9zIy","Sltx","l955"],"texture":0},"41w1S6rR":{"uv":{"9zIy":[8.797433333333336,3],"l955":[7.065435988453703,3],"ovht":[7.931357005013137,1.499954399306859]},"vertices":["9zIy","l955","ovht"],"texture":0},"wEgUowfB":{"uv":{"9zIy":[7.065433333333333,3],"ovht":[6.1994096616535295,1.500045600693141],"12zS":[7.931509661653529,1.499954399306859]},"vertices":["9zIy","ovht","12zS"],"texture":0},"G3UiYJeg":{"uv":{"9zIy":[5.333333333333333,3],"12zS":[6.199357005013137,1.500045600693141],"zVQ5":[7.065435988453703,3]},"vertices":["9zIy","12zS","zVQ5"],"texture":0},"HSXF4kkA":{"uv":{"4WRs":[5.333333333333333,3],"jS6F":[6.199357005013137,1.500045600693141],"IKHl":[7.065435988453703,3]},"vertices":["4WRs","jS6F","IKHl"],"texture":0},"QqJPEzgx":{"uv":{"4WRs":[5.333333333333333,0],"IKHl":[7.0653306782129635,0],"srzj":[6.1994096616535295,1.500045600693141]},"vertices":["4WRs","IKHl","srzj"],"texture":0},"TY9u2sDg":{"uv":{"4WRs":[7.065433333333333,0],"srzj":[7.9314570050131366,1.499954399306859],"TZsM":[6.199357005013137,1.500045600693141]},"vertices":["4WRs","srzj","TZsM"],"texture":0},"0orapcDd":{"uv":{"4WRs":[8.797433333333336,0],"TZsM":[7.93140966165353,1.499954399306859],"n74E":[7.0653306782129635,0]},"vertices":["4WRs","TZsM","n74E"],"texture":0},"uoHhPK1e":{"uv":{"4WRs":[8.797433333333336,3],"n74E":[7.065435988453703,3],"AgKl":[7.931357005013137,1.499954399306859]},"vertices":["4WRs","n74E","AgKl"],"texture":0},"R8i2SJV3":{"uv":{"4WRs":[7.065433333333333,3],"AgKl":[6.1994096616535295,1.500045600693141],"jS6F":[7.931509661653529,1.499954399306859]},"vertices":["4WRs","AgKl","jS6F"],"texture":0}},"type":"mesh","uuid":"5c5017ef-4df6-e231-2839-f8a7593b4d89"},{"name":"sphere","color":0,"origin":[-5,20,0],"rotation":[0,0,-15],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"soso":[0,-1.5,0],"BbQ5":[0,1.5,0],"lUP5":[-0.7499999999999998,0.75,1.2320508075688772],"dgob":[-0.7499999999999999,-0.7499999999999997,1.2320508075688774],"5Iyo":[-1.4999999999999998,0.75,8.711217195723841e-17],"Gf47":[-1.5,-0.7499999999999997,8.711217195723843e-17],"1Mpc":[-0.7499999999999998,0.75,-1.2320508075688772],"uStm":[-0.7499999999999999,-0.7499999999999997,-1.2320508075688774],"VMwQ":[0.75,0.75,-1.2320508075688772],"0WNM":[0.7500000000000002,-0.7499999999999997,-1.2320508075688772],"dAYG":[1.4999999999999998,0.75,-2.613365158717152e-16],"bDAl":[1.5,-0.7499999999999997,-2.6133651587171527e-16],"nsJr":[0.7500000000000004,0.75,1.2320508075688767],"zqtX":[0.7500000000000007,-0.7499999999999997,1.232050807568877]},"faces":{"tYrjNLnf":{"uv":{"5Iyo":[2,16],"lUP5":[0,16],"BbQ5":[1,13.999999999999998]},"vertices":["5Iyo","lUP5","BbQ5"],"texture":0},"0nb0NiQI":{"uv":{"Gf47":[2,16],"dgob":[0,16],"lUP5":[0,13.999999999999998],"5Iyo":[2,13.999999999999998]},"vertices":["Gf47","dgob","lUP5","5Iyo"],"texture":0},"elDzCGcm":{"uv":{"dgob":[0,13.999999999999998],"Gf47":[2,13.999999999999998],"soso":[1,16]},"vertices":["dgob","Gf47","soso"],"texture":0},"lF77FkSO":{"uv":{"1Mpc":[2,16],"5Iyo":[0,16],"BbQ5":[1,13.999999999999998]},"vertices":["1Mpc","5Iyo","BbQ5"],"texture":0},"h77XObO2":{"uv":{"uStm":[2,16],"Gf47":[0,16],"5Iyo":[0,13.999999999999998],"1Mpc":[2,13.999999999999998]},"vertices":["uStm","Gf47","5Iyo","1Mpc"],"texture":0},"yljQjCQ8":{"uv":{"Gf47":[0,13.999999999999998],"uStm":[2,13.999999999999998],"soso":[1,16]},"vertices":["Gf47","uStm","soso"],"texture":0},"Zhd86Vtw":{"uv":{"VMwQ":[2,16],"1Mpc":[0,16],"BbQ5":[1,13.999999999999998]},"vertices":["VMwQ","1Mpc","BbQ5"],"texture":0},"dxDFqbCj":{"uv":{"0WNM":[2,16],"uStm":[0,16],"1Mpc":[0,13.999999999999998],"VMwQ":[2,13.999999999999998]},"vertices":["0WNM","uStm","1Mpc","VMwQ"],"texture":0},"tpsAddvw":{"uv":{"uStm":[0,13.999999999999998],"0WNM":[2,13.999999999999998],"soso":[1,16]},"vertices":["uStm","0WNM","soso"],"texture":0},"5a88gonc":{"uv":{"dAYG":[2,16],"VMwQ":[0,16],"BbQ5":[1,13.999999999999998]},"vertices":["dAYG","VMwQ","BbQ5"],"texture":0},"vkcTEN0l":{"uv":{"bDAl":[2,16],"0WNM":[0,16],"VMwQ":[0,13.999999999999998],"dAYG":[2,13.999999999999998]},"vertices":["bDAl","0WNM","VMwQ","dAYG"],"texture":0},"5Al6JTDa":{"uv":{"0WNM":[0,13.999999999999998],"bDAl":[2,13.999999999999998],"soso":[1,16]},"vertices":["0WNM","bDAl","soso"],"texture":0},"haD6puQV":{"uv":{"nsJr":[2,16],"dAYG":[0,16],"BbQ5":[1,13.999999999999998]},"vertices":["nsJr","dAYG","BbQ5"],"texture":0},"vF17qg54":{"uv":{"zqtX":[2,16],"bDAl":[0,16],"dAYG":[0,13.999999999999998],"nsJr":[2,13.999999999999998]},"vertices":["zqtX","bDAl","dAYG","nsJr"],"texture":0},"R8eCLOdb":{"uv":{"bDAl":[0,13.999999999999998],"zqtX":[2,13.999999999999998],"soso":[1,16]},"vertices":["bDAl","zqtX","soso"],"texture":0},"n4Hfysff":{"uv":{"lUP5":[2,16],"nsJr":[0,16],"BbQ5":[1,13.999999999999998]},"vertices":["lUP5","nsJr","BbQ5"],"texture":0},"aVKmJds5":{"uv":{"dgob":[2,16],"zqtX":[0,16],"nsJr":[0,13.999999999999998],"lUP5":[2,13.999999999999998]},"vertices":["dgob","zqtX","nsJr","lUP5"],"texture":0},"9xeXW9RW":{"uv":{"zqtX":[0,13.999999999999998],"dgob":[2,13.999999999999998],"soso":[1,16]},"vertices":["zqtX","dgob","soso"],"texture":0}},"type":"mesh","uuid":"9d2bfdd9-9f9e-cf62-1b7b-c3402aa60763"},{"name":"sphere","color":0,"origin":[-6.775,14,0],"rotation":[0,0,-15],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"soso":[0.1,-0.5,0],"BbQ5":[0.1,1.5,0],"lUP5":[-0.3999999999999998,1,0.9999999999999998],"dgob":[-0.3999999999999999,2.220446049250313e-16,1],"5Iyo":[-0.8999999999999998,1,7.070501591499377e-17],"Gf47":[-0.9,2.220446049250313e-16,7.070501591499379e-17],"1Mpc":[-0.3999999999999998,1,-0.9999999999999998],"uStm":[-0.3999999999999999,2.220446049250313e-16,-1],"VMwQ":[0.6,1,-0.9999999999999998],"0WNM":[0.6000000000000002,2.220446049250313e-16,-0.9999999999999998],"dAYG":[1.0999999999999996,1,-2.121150477449813e-16],"bDAl":[1.0999999999999999,2.220446049250313e-16,-2.1211504774498136e-16],"nsJr":[0.6000000000000002,1,0.9999999999999994],"zqtX":[0.6000000000000004,2.220446049250313e-16,0.9999999999999996]},"faces":{"tYrjNLnf":{"uv":{"5Iyo":[2,16],"lUP5":[0,16],"BbQ5":[1,13.999999999999998]},"vertices":["5Iyo","lUP5","BbQ5"],"texture":0},"0nb0NiQI":{"uv":{"Gf47":[2,16],"dgob":[0,16],"lUP5":[0,13.999999999999998],"5Iyo":[2,13.999999999999998]},"vertices":["Gf47","dgob","lUP5","5Iyo"],"texture":0},"elDzCGcm":{"uv":{"dgob":[0,13.999999999999998],"Gf47":[2,13.999999999999998],"soso":[1,16]},"vertices":["dgob","Gf47","soso"],"texture":0},"lF77FkSO":{"uv":{"1Mpc":[2,16],"5Iyo":[0,16],"BbQ5":[1,13.999999999999998]},"vertices":["1Mpc","5Iyo","BbQ5"],"texture":0},"h77XObO2":{"uv":{"uStm":[2,16],"Gf47":[0,16],"5Iyo":[0,13.999999999999998],"1Mpc":[2,13.999999999999998]},"vertices":["uStm","Gf47","5Iyo","1Mpc"],"texture":0},"yljQjCQ8":{"uv":{"Gf47":[0,13.999999999999998],"uStm":[2,13.999999999999998],"soso":[1,16]},"vertices":["Gf47","uStm","soso"],"texture":0},"Zhd86Vtw":{"uv":{"VMwQ":[2,16],"1Mpc":[0,16],"BbQ5":[1,13.999999999999998]},"vertices":["VMwQ","1Mpc","BbQ5"],"texture":0},"dxDFqbCj":{"uv":{"0WNM":[2,16],"uStm":[0,16],"1Mpc":[0,13.999999999999998],"VMwQ":[2,13.999999999999998]},"vertices":["0WNM","uStm","1Mpc","VMwQ"],"texture":0},"tpsAddvw":{"uv":{"uStm":[0,13.999999999999998],"0WNM":[2,13.999999999999998],"soso":[1,16]},"vertices":["uStm","0WNM","soso"],"texture":0},"5a88gonc":{"uv":{"dAYG":[2,16],"VMwQ":[0,16],"BbQ5":[1,13.999999999999998]},"vertices":["dAYG","VMwQ","BbQ5"],"texture":0},"vkcTEN0l":{"uv":{"bDAl":[2,16],"0WNM":[0,16],"VMwQ":[0,13.999999999999998],"dAYG":[2,13.999999999999998]},"vertices":["bDAl","0WNM","VMwQ","dAYG"],"texture":0},"5Al6JTDa":{"uv":{"0WNM":[0,13.999999999999998],"bDAl":[2,13.999999999999998],"soso":[1,16]},"vertices":["0WNM","bDAl","soso"],"texture":0},"haD6puQV":{"uv":{"nsJr":[2,16],"dAYG":[0,16],"BbQ5":[1,13.999999999999998]},"vertices":["nsJr","dAYG","BbQ5"],"texture":0},"vF17qg54":{"uv":{"zqtX":[2,16],"bDAl":[0,16],"dAYG":[0,13.999999999999998],"nsJr":[2,13.999999999999998]},"vertices":["zqtX","bDAl","dAYG","nsJr"],"texture":0},"R8eCLOdb":{"uv":{"bDAl":[0,13.999999999999998],"zqtX":[2,13.999999999999998],"soso":[1,16]},"vertices":["bDAl","zqtX","soso"],"texture":0},"n4Hfysff":{"uv":{"lUP5":[2,16],"nsJr":[0,16],"BbQ5":[1,13.999999999999998]},"vertices":["lUP5","nsJr","BbQ5"],"texture":0},"aVKmJds5":{"uv":{"dgob":[2,16],"zqtX":[0,16],"nsJr":[0,13.999999999999998],"lUP5":[2,13.999999999999998]},"vertices":["dgob","zqtX","nsJr","lUP5"],"texture":0},"9xeXW9RW":{"uv":{"zqtX":[0,13.999999999999998],"dgob":[2,13.999999999999998],"soso":[1,16]},"vertices":["zqtX","dgob","soso"],"texture":0}},"type":"mesh","uuid":"8605a025-f8a0-63af-bcf1-30b2a9a1d398"},{"name":"cylinder","color":5,"origin":[-5.5,18.500000000000007,0],"rotation":[0,0,-20],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"4WRs":[0.01925963663104932,1.75,0],"hwjg":[0.8288894549465741,1.229166666666667,1.3],"ZISf":[0.970432984154859,-3.622895684035762,1],"ryg1":[1.6385192732620992,1.229166666666667,9.191652068949191e-17],"Jq92":[1.3396926207859083,-3.622895684035762,7.070501591499378e-17],"rilX":[0.8288894549465741,1.229166666666667,-1.3],"iCDk":[0.970432984154859,-3.622895684035762,-1],"v1hz":[-0.7903701816844756,1.229166666666667,-1.3],"UN0m":[-0.23074036336895065,-3.9791666666666665,-1],"92Ln":[-1.5999999999999996,1.229166666666667,-2.757495620684758e-16],"uZrh":[-0.5999999999999996,-3.9791666666666665,-2.1211504774498136e-16],"bftR":[-0.790370181684476,1.229166666666667,1.2999999999999994],"ORyy":[-0.23074036336895098,-3.9791666666666665,0.9999999999999996],"9zIy":[0.13851927326209895,-4.5,0],"zVQ5":[0.5077676842295621,-4.5,3.53514332249188e-17],"Lrul":[0.3231547044094167,-4.5,0.500015200231047],"Sltx":[-0.04611615788521911,-4.5,0.5000152002310467],"l955":[-0.23075158903253667,-4.5,-1.0606074807022496e-16],"ovht":[-0.04611615788521911,-4.5,-0.500015200231047],"12zS":[0.3231547044094167,-4.5,-0.500015200231047],"jS6F":[0.4240622392285107,1.75,0.6499802396996389],"IKHl":[0.8289140680671762,1.75,4.595965749709748e-17],"srzj":[0.4240868523491127,1.75,-0.6500197603003611],"TZsM":[-0.3855675790870142,1.75,-0.6500197603003611],"n74E":[-0.7903947948050772,1.75,-1.3787897249129245e-16],"AgKl":[-0.3855675790870142,1.75,0.6500197603003609]},"faces":{"sGCABgEN":{"uv":{"ryg1":[3.4640999999999975,3],"jS6F":[0.8660236716798031,1.500045600693141],"IKHl":[1.732102655120371,3],"hwjg":[1.7321000000000004,0]},"vertices":["ryg1","jS6F","IKHl","hwjg"],"texture":0},"sWWfgk4K":{"uv":{"ryg1":[3.4641999999999973,3],"hwjg":[0,3],"Jq92":[3.4641999999999973,0],"ZISf":[0,0]},"vertices":["ryg1","hwjg","Jq92","ZISf"],"texture":0},"QNUAKYIT":{"uv":{"ZISf":[1.7321000000000004,3],"zVQ5":[1.73199734487963,0],"Lrul":[0.8660763283201969,1.500045600693141],"Jq92":[3.4640999999999975,0]},"vertices":["ZISf","zVQ5","Lrul","Jq92"],"texture":0},"BRnWTTQ7":{"uv":{"rilX":[1.7321000000000004,3],"IKHl":[1.73199734487963,0],"srzj":[0.8660763283201969,1.500045600693141],"ryg1":[3.4640999999999975,0]},"vertices":["rilX","IKHl","srzj","ryg1"],"texture":0},"USWUQ28I":{"uv":{"rilX":[3.4641999999999973,3],"ryg1":[0,3],"iCDk":[3.4641999999999973,0],"Jq92":[0,0]},"vertices":["rilX","ryg1","iCDk","Jq92"],"texture":0},"telwhUl5":{"uv":{"Jq92":[3.4640999999999975,3],"12zS":[0.8660236716798031,1.500045600693141],"zVQ5":[1.732102655120371,3],"iCDk":[1.7321000000000004,0]},"vertices":["Jq92","12zS","zVQ5","iCDk"],"texture":0},"Y0oRikhE":{"uv":{"v1hz":[0,3],"srzj":[2.598123671679804,1.499954399306859],"TZsM":[0.8660236716798031,1.500045600693141],"rilX":[3.4641999999999973,3]},"vertices":["v1hz","srzj","TZsM","rilX"],"texture":0},"M1vklvUl":{"uv":{"v1hz":[3.4641999999999973,3],"rilX":[0,3],"UN0m":[3.4641999999999973,0],"iCDk":[0,0]},"vertices":["v1hz","rilX","UN0m","iCDk"],"texture":0},"ZVE21JMg":{"uv":{"iCDk":[3.4641999999999973,0],"ovht":[0.8660763283201969,1.500045600693141],"12zS":[2.598176328320196,1.499954399306859],"UN0m":[0,0]},"vertices":["iCDk","ovht","12zS","UN0m"],"texture":0},"L0SUV83I":{"uv":{"92Ln":[0,0],"TZsM":[2.598076328320196,1.499954399306859],"n74E":[1.73199734487963,0],"v1hz":[1.7320000000000007,3]},"vertices":["92Ln","TZsM","n74E","v1hz"],"texture":0},"R3T6mLRW":{"uv":{"92Ln":[3.4641999999999973,3],"v1hz":[0,3],"uZrh":[3.4641999999999973,0],"UN0m":[0,0]},"vertices":["92Ln","v1hz","uZrh","UN0m"],"texture":0},"ttIS0sst":{"uv":{"UN0m":[1.7320000000000007,0],"l955":[1.732102655120371,3],"ovht":[2.598023671679804,1.499954399306859],"uZrh":[0,3]},"vertices":["UN0m","l955","ovht","uZrh"],"texture":0},"dQPt3CZa":{"uv":{"bftR":[1.7320000000000007,0],"n74E":[1.732102655120371,3],"AgKl":[2.598023671679804,1.499954399306859],"92Ln":[0,3]},"vertices":["bftR","n74E","AgKl","92Ln"],"texture":0},"FiVhgNvE":{"uv":{"bftR":[3.4641999999999973,3],"92Ln":[0,3],"ORyy":[3.4641999999999973,0],"uZrh":[0,0]},"vertices":["bftR","92Ln","ORyy","uZrh"],"texture":0},"f27qtq3m":{"uv":{"uZrh":[0,0],"Sltx":[2.598076328320196,1.499954399306859],"l955":[1.73199734487963,0],"ORyy":[1.7320000000000007,3]},"vertices":["uZrh","Sltx","l955","ORyy"],"texture":0},"Ahdauex4":{"uv":{"hwjg":[3.4641999999999973,0],"AgKl":[0.8660763283201969,1.500045600693141],"jS6F":[2.598176328320196,1.499954399306859],"bftR":[0,0]},"vertices":["hwjg","AgKl","jS6F","bftR"],"texture":0},"FwaC0inC":{"uv":{"hwjg":[3.4641999999999973,3],"bftR":[0,3],"ZISf":[3.4641999999999973,0],"ORyy":[0,0]},"vertices":["hwjg","bftR","ZISf","ORyy"],"texture":0},"9ZkZ6NpN":{"uv":{"ORyy":[0,3],"Lrul":[2.598123671679804,1.499954399306859],"Sltx":[0.8660236716798031,1.500045600693141],"ZISf":[3.4641999999999973,3]},"vertices":["ORyy","Lrul","Sltx","ZISf"],"texture":0},"bLGLsiVU":{"uv":{"9zIy":[0,0],"zVQ5":[1.73199734487963,0],"Lrul":[0.8660763283201969,1.500045600693141]},"vertices":["9zIy","zVQ5","Lrul"],"texture":0},"FdG3nVPa":{"uv":{"9zIy":[1.7321000000000004,0],"Lrul":[2.598123671679804,1.499954399306859],"Sltx":[0.8660236716798031,1.500045600693141]},"vertices":["9zIy","Lrul","Sltx"],"texture":0},"ud1TCfhY":{"uv":{"9zIy":[3.4640999999999975,0],"Sltx":[2.598076328320196,1.499954399306859],"l955":[1.73199734487963,0]},"vertices":["9zIy","Sltx","l955"],"texture":0},"41w1S6rR":{"uv":{"9zIy":[3.4640999999999975,3],"l955":[1.732102655120371,3],"ovht":[2.598023671679804,1.499954399306859]},"vertices":["9zIy","l955","ovht"],"texture":0},"wEgUowfB":{"uv":{"9zIy":[1.7321000000000004,3],"ovht":[0.8660763283201969,1.500045600693141],"12zS":[2.598176328320196,1.499954399306859]},"vertices":["9zIy","ovht","12zS"],"texture":0},"G3UiYJeg":{"uv":{"9zIy":[0,3],"12zS":[0.8660236716798031,1.500045600693141],"zVQ5":[1.732102655120371,3]},"vertices":["9zIy","12zS","zVQ5"],"texture":0},"HSXF4kkA":{"uv":{"4WRs":[0,3],"jS6F":[0.8660236716798031,1.500045600693141],"IKHl":[1.732102655120371,3]},"vertices":["4WRs","jS6F","IKHl"],"texture":0},"QqJPEzgx":{"uv":{"4WRs":[0,0],"IKHl":[1.73199734487963,0],"srzj":[0.8660763283201969,1.500045600693141]},"vertices":["4WRs","IKHl","srzj"],"texture":0},"TY9u2sDg":{"uv":{"4WRs":[1.7321000000000004,0],"srzj":[2.598123671679804,1.499954399306859],"TZsM":[0.8660236716798031,1.500045600693141]},"vertices":["4WRs","srzj","TZsM"],"texture":0},"0orapcDd":{"uv":{"4WRs":[3.4640999999999975,0],"TZsM":[2.598076328320196,1.499954399306859],"n74E":[1.73199734487963,0]},"vertices":["4WRs","TZsM","n74E"],"texture":0},"uoHhPK1e":{"uv":{"4WRs":[3.4640999999999975,3],"n74E":[1.732102655120371,3],"AgKl":[2.598023671679804,1.499954399306859]},"vertices":["4WRs","n74E","AgKl"],"texture":0},"R8i2SJV3":{"uv":{"4WRs":[1.7321000000000004,3],"AgKl":[0.8660763283201969,1.500045600693141],"jS6F":[2.598176328320196,1.499954399306859]},"vertices":["4WRs","AgKl","jS6F"],"texture":0}},"type":"mesh","uuid":"fe7c8805-4851-e7b2-b0bd-499555411445"},{"name":"cube","color":0,"origin":[-7,12,0],"rotation":[0,0,-20],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"pd2g":[-1.2499999999999996,1.9999999999999996,1.5],"mmL5":[-1.2499999999999996,1.9999999999999996,-1.5],"rrJj":[-1.4999999999999996,0,1.5],"s2jG":[-1.4999999999999996,0,-1.5],"SQdA":[0.5,2.5,1.5],"1I6t":[0.5,2.4,-1.5],"x97M":[0.5,0,1.5],"6OCI":[0.5,0,-1.5],"1mAv":[-0.9999999999999996,-1,1],"qLFu":[0.5,-1,1],"l2mI":[-0.9999999999999996,-1,-1],"0CGp":[0.5,-1,-1],"Az5f":[0.5,1,-2.5],"cZ9p":[-0.9999999999999996,1,-2.5],"zqiK":[0.5,0,-2.5],"iXLD":[-0.9999999999999996,0,-2.5]},"faces":{"FKjq113j":{"uv":{"pd2g":[3.0000000000000004,2],"mmL5":[3.0000000000000004,0],"s2jG":[0,0],"rrJj":[0,2]},"vertices":["pd2g","mmL5","s2jG","rrJj"],"texture":0},"jZ871epm":{"uv":{"1I6t":[3.0000000000000004,2],"SQdA":[3.0000000000000004,0],"x97M":[0,0],"6OCI":[0,2]},"vertices":["1I6t","SQdA","x97M","6OCI"],"texture":0},"uGJH28Iv":{"uv":{"1I6t":[1.5,3],"mmL5":[1.5,0],"pd2g":[0,0],"SQdA":[0,3]},"vertices":["1I6t","mmL5","pd2g","SQdA"],"texture":0},"1nFJZMx2":{"uv":{"qLFu":[1.5,3],"1mAv":[1.5,0],"l2mI":[0,0],"0CGp":[0,3]},"vertices":["qLFu","1mAv","l2mI","0CGp"],"texture":0},"OQgR4dER":{"uv":{"SQdA":[1.5,2],"pd2g":[1.5,0],"rrJj":[0,0],"x97M":[0,2]},"vertices":["SQdA","pd2g","rrJj","x97M"],"texture":0},"UN1JDrWQ":{"uv":{"cZ9p":[1.5,2],"Az5f":[1.5,0],"zqiK":[0,0],"iXLD":[0,2]},"vertices":["cZ9p","Az5f","zqiK","iXLD"],"texture":0},"XyxwRClU":{"uv":{"l2mI":[3.0000000000000004,1],"1mAv":[3.0000000000000004,0],"s2jG":[0,1],"rrJj":[0,0]},"vertices":["l2mI","1mAv","s2jG","rrJj"],"texture":0},"Ilz3SEts":{"uv":{"1mAv":[1.5,1],"qLFu":[1.5,0],"rrJj":[0,1],"x97M":[0,0]},"vertices":["1mAv","qLFu","rrJj","x97M"],"texture":0},"Cchw1LL2":{"uv":{"qLFu":[3.0000000000000004,1],"0CGp":[3.0000000000000004,0],"x97M":[0,1],"6OCI":[0,0]},"vertices":["qLFu","0CGp","x97M","6OCI"],"texture":0},"n2rwk4ci":{"uv":{"0CGp":[1.5,2],"l2mI":[1.5,1],"6OCI":[0,2],"s2jG":[0,1]},"vertices":["0CGp","l2mI","6OCI","s2jG"],"texture":0},"O5Z8kx5g":{"uv":{"zqiK":[1,2],"Az5f":[2,2],"6OCI":[1,0],"1I6t":[2,0]},"vertices":["zqiK","Az5f","6OCI","1I6t"],"texture":0},"4RYNouH5":{"uv":{"Az5f":[0,0],"cZ9p":[0,1],"1I6t":[1.5,0],"mmL5":[1.5,1]},"vertices":["Az5f","cZ9p","1I6t","mmL5"],"texture":0},"TW0YxAz3":{"uv":{"cZ9p":[1,0],"iXLD":[0,0],"mmL5":[1,2],"s2jG":[0,2]},"vertices":["cZ9p","iXLD","mmL5","s2jG"],"texture":0},"2zYxvLvJ":{"uv":{"iXLD":[1.5,1],"zqiK":[1.5,0],"s2jG":[0,1],"6OCI":[0,0]},"vertices":["iXLD","zqiK","s2jG","6OCI"],"texture":0}},"type":"mesh","uuid":"9ddd7f1e-7b0d-0a2d-f553-4b57d743d494"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-1,25,-1],"to":[1,27,1],"autouv":0,"color":0,"origin":[0,4,-1],"faces":{"north":{"uv":[0,14.000000000000002,1.9999999999999998,16],"texture":0},"east":{"uv":[0,14.000000000000002,1.9999999999999998,16],"texture":0},"south":{"uv":[0,14.000000000000002,1.9999999999999998,16],"texture":0},"west":{"uv":[0,14.000000000000002,1.9999999999999998,16],"texture":0},"up":{"uv":[0,14.000000000000002,1.9999999999999998,16],"texture":0},"down":{"uv":[0,14.000000000000002,1.9999999999999998,16],"texture":0}},"type":"cube","uuid":"65215b08-1d2e-5fd9-7b6a-420c513a6cd9"},{"name":"cylinder","color":4,"origin":[-2.0000000000000013,13.499999999999998,0],"rotation":[0,0,0],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"4Wb5":[0.45586419419951785,-1,0.3229629742202673],"panb":[-0.395403350120045,-6.125,0.2583731708452357],"TFt6":[-2.4418444069552705,-1.524999999999999,2.4229629742202663],"enJ7":[-1.084012858619814,-5.7250000000000005,1.8111595753452776],"xU4w":[-2.321422923548742,-1.524999999999999,-0.4791656494049532],"ep62":[-1.5095969398490316,-5.7250000000000005,-0.3347384584050377],"ZbOA":[0.45586419419951785,-1.524999999999999,-2.2727797785292916],"ZHoN":[0.07849148876176693,-5.7250000000000005,-1.6609763796543016],"UXN0":[2.051900546078646,-1.524999999999999,-0.47916564940495365],"Ypjw":[1.1926850784907534,-5.7250000000000005,-0.3347384584050379],"cgVn":[2.172322029485174,-1.524999999999999,2.4229629742202663],"iG3r":[0.7671009972615366,-5.7250000000000005,1.8111595753452767],"Krz3":[-0.9525145775501864,-6.125,-0.03819032657632393],"ozWh":[-0.7396991845538142,-6.125,1.0347462592730925],"qOfI":[0.42278732319553614,-6.125,1.0347462592730923],"oROo":[0.6355738510606121,-6.125,-0.038174960983477835],"krhA":[0.07849148876176693,-6.125,-0.7012767423530508],"LnQF":[-1.5836377232317709,-1,1.3729901763044832],"sEmd":[-0.9327433894374358,-1,-0.07809094732073696],"rllo":[-0.725386571669614,-1,-0.9748747785292913],"i23P":[0.6632210119673396,-1,-0.07809094732073762],"D6WN":[0.13282011205388589,-1,1.3729357721360507]},"faces":{"samlaMJi":{"uv":{"LnQF":[1.000022182905024,0.7265363025357708],"xU4w":[1.9999925525092408,2.906122366659739],"sEmd":[0.9999703696042186,2.1795974871368093],"TFt6":[1.9999925525092408,0]},"vertices":["LnQF","xU4w","sEmd","TFt6"],"texture":0},"AMND1Je8":{"uv":{"TFt6":[0,4],"xU4w":[3.906200000000002,4],"ep62":[3.906200000000002,0],"enJ7":[0,0]},"vertices":["TFt6","xU4w","ep62","enJ7"],"texture":0},"WjgfP9Tg":{"uv":{"Krz3":[1.2360755506310834,2.7755575615628914e-16],"enJ7":[0.7639631477574778,2.3511401316953635],"ozWh":[0.38197167797879494,1.175539610651555],"ep62":[2.472087057528519,0]},"vertices":["Krz3","enJ7","ozWh","ep62"],"texture":0},"6Uy258Lr":{"uv":{"sEmd":[1.1755804546762878,0.38195989508196804],"ZbOA":[0,1.2360179779655283],"rllo":[0,2.4721],"xU4w":[2.3511000000000024,0.7639]},"vertices":["sEmd","ZbOA","rllo","xU4w"],"texture":0},"hkN055JD":{"uv":{"xU4w":[0,4],"ZbOA":[3.906200000000002,4],"ZHoN":[3.906200000000002,0],"ep62":[0,0]},"vertices":["xU4w","ZbOA","ZHoN","ep62"],"texture":0},"qUzl9VQv":{"uv":{"krhA":[0,1.2360179779655283],"ep62":[2.3511000000000024,1.7082000000000002],"Krz3":[1.1755195453237146,2.0901598950819684],"ZHoN":[0,0]},"vertices":["krhA","ep62","Krz3","ZHoN"],"texture":0},"2Fjj4Rq0":{"uv":{"rllo":[2.3511000000000024,1.236082022034472],"UXN0":[0,0.7639],"i23P":[1.1755804546762878,0.381940104918032],"ZbOA":[2.3511000000000024,2.4721]},"vertices":["rllo","UXN0","i23P","ZbOA"],"texture":0},"wAPEOZR0":{"uv":{"ZbOA":[0,4],"UXN0":[3.906200000000002,4],"Ypjw":[3.906200000000002,0],"ZHoN":[0,0]},"vertices":["ZbOA","UXN0","Ypjw","ZHoN"],"texture":0},"kmElSpzH":{"uv":{"oROo":[1.1755195453237146,2.0901401049180324],"ZHoN":[2.3511000000000024,0],"krhA":[2.3511000000000024,1.236082022034472],"Ypjw":[0,1.7082000000000002]},"vertices":["oROo","ZHoN","krhA","Ypjw"],"texture":0},"rYkg3YK8":{"uv":{"i23P":[1.2360115068974373,2.3511401316953635],"cgVn":[1.708123909771043,0],"D6WN":[2.090115379549724,1.1756005210438085],"UXN0":[0,2.3511401316953635]},"vertices":["i23P","cgVn","D6WN","UXN0"],"texture":0},"I5kxlVpC":{"uv":{"UXN0":[0,4],"cgVn":[3.906200000000002,4],"iG3r":[3.906200000000002,0],"Ypjw":[0,0]},"vertices":["UXN0","cgVn","iG3r","Ypjw"],"texture":0},"pumU3Qwy":{"uv":{"qOfI":[0.9999703696042186,2.179586064123968],"Ypjw":[0,0],"oROo":[1.000022182905024,0.7265248795229295],"iG3r":[0,2.906122366659739]},"vertices":["qOfI","Ypjw","oROo","iG3r"],"texture":0},"YRAihDxd":{"uv":{"D6WN":[0.7265311774530616,0.9999740932531275],"TFt6":[2.906200000000002,0],"LnQF":[2.1796311774530626,1.0000259067468726],"cgVn":[0,0]},"vertices":["D6WN","TFt6","LnQF","cgVn"],"texture":0},"s59P68Hr":{"uv":{"cgVn":[0,4],"TFt6":[3.906200000000002,4],"enJ7":[3.906200000000002,0],"iG3r":[0,0]},"vertices":["cgVn","TFt6","enJ7","iG3r"],"texture":0},"HMa8OOKn":{"uv":{"ozWh":[2.179668822546942,1.0000259067468726],"iG3r":[0,1.9999999999999998],"qOfI":[0.7265688225469429,0.9999740932531275],"enJ7":[2.906200000000002,1.9999999999999998]},"vertices":["ozWh","iG3r","qOfI","enJ7"],"texture":0},"rV2t1ijw":{"uv":{"Krz3":[1.2360755506310834,2.7755575615628914e-16],"panb":[0,5.551115123125783e-16],"ozWh":[0.38197167797879494,1.175539610651555]},"vertices":["Krz3","panb","ozWh"],"texture":0},"uoCCkb2f":{"uv":{"ozWh":[2.179668822546942,1.0000259067468726],"panb":[1.453100000000001,0],"qOfI":[0.7265688225469429,0.9999740932531275]},"vertices":["ozWh","panb","qOfI"],"texture":0},"jTAGPKlO":{"uv":{"qOfI":[0.9999703696042186,2.179586064123968],"panb":[1.9999925525092408,1.453012116228761],"oROo":[1.000022182905024,0.7265248795229295]},"vertices":["qOfI","panb","oROo"],"texture":0},"kN0bBDY0":{"uv":{"oROo":[1.1755195453237146,2.0901401049180324],"panb":[2.3511000000000024,2.4721],"krhA":[2.3511000000000024,1.236082022034472]},"vertices":["oROo","panb","krhA"],"texture":0},"bsfaro1S":{"uv":{"krhA":[0,1.2360179779655283],"panb":[0,2.4721],"Krz3":[1.1755195453237146,2.0901598950819684]},"vertices":["krhA","panb","Krz3"],"texture":0},"vTV4KM5w":{"uv":{"LnQF":[1.000022182905024,0.7265363025357708],"4Wb5":[0,1.4531102504309776],"sEmd":[0.9999703696042186,2.1795974871368093]},"vertices":["LnQF","4Wb5","sEmd"],"texture":0},"US0wnCNy":{"uv":{"sEmd":[1.1755804546762878,0.38195989508196804],"4Wb5":[0,0],"rllo":[0,1.2360179779655283]},"vertices":["sEmd","4Wb5","rllo"],"texture":0},"aWGFDKLq":{"uv":{"rllo":[2.3511000000000024,1.236082022034472],"4Wb5":[2.3511000000000024,0],"i23P":[1.1755804546762878,0.381940104918032]},"vertices":["rllo","4Wb5","i23P"],"texture":0},"XnTuz26E":{"uv":{"i23P":[1.2360115068974373,2.3511401316953635],"4Wb5":[2.472087057528519,2.351140131695363],"D6WN":[2.090115379549724,1.1756005210438085]},"vertices":["i23P","4Wb5","D6WN"],"texture":0},"QxvwTxj8":{"uv":{"D6WN":[0.7265311774530616,0.9999740932531275],"4Wb5":[1.453100000000001,1.9999999999999998],"LnQF":[2.1796311774530626,1.0000259067468726]},"vertices":["D6WN","4Wb5","LnQF"],"texture":0}},"type":"mesh","uuid":"d19844b7-2103-d541-5d99-fe8c78f2e999"},{"name":"sphere","color":0,"origin":[-6.840118066625101,14,0.36930290737957805],"rotation":[0,0,0],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"soso":[4.6,-7.5,0],"BbQ5":[4.6,-5.5,0],"lUP5":[4.1,-6,0.9999999999999998],"dgob":[4.1,-7,1],"5Iyo":[3.5999999999999996,-6,7.070501591499377e-17],"Gf47":[3.5999999999999996,-7,7.070501591499379e-17],"1Mpc":[4.1,-6,-0.9999999999999998],"uStm":[4.1,-7,-1],"VMwQ":[5.1,-6,-0.9999999999999998],"0WNM":[5.1,-7,-0.9999999999999998],"dAYG":[5.6,-6,-2.121150477449813e-16],"bDAl":[5.6,-7,-2.121150477449813e-16],"nsJr":[5.1,-6,0.9999999999999991],"zqtX":[5.1,-7,0.9999999999999996]},"faces":{"tYrjNLnf":{"uv":{"5Iyo":[2,16],"lUP5":[0,16],"BbQ5":[1,13.999999999999998]},"vertices":["5Iyo","lUP5","BbQ5"],"texture":0},"0nb0NiQI":{"uv":{"Gf47":[2,16],"dgob":[0,16],"lUP5":[0,13.999999999999998],"5Iyo":[2,13.999999999999998]},"vertices":["Gf47","dgob","lUP5","5Iyo"],"texture":0},"elDzCGcm":{"uv":{"dgob":[0,13.999999999999998],"Gf47":[2,13.999999999999998],"soso":[1,16]},"vertices":["dgob","Gf47","soso"],"texture":0},"lF77FkSO":{"uv":{"1Mpc":[2,16],"5Iyo":[0,16],"BbQ5":[1,13.999999999999998]},"vertices":["1Mpc","5Iyo","BbQ5"],"texture":0},"h77XObO2":{"uv":{"uStm":[2,16],"Gf47":[0,16],"5Iyo":[0,13.999999999999998],"1Mpc":[2,13.999999999999998]},"vertices":["uStm","Gf47","5Iyo","1Mpc"],"texture":0},"yljQjCQ8":{"uv":{"Gf47":[0,13.999999999999998],"uStm":[2,13.999999999999998],"soso":[1,16]},"vertices":["Gf47","uStm","soso"],"texture":0},"Zhd86Vtw":{"uv":{"VMwQ":[2,16],"1Mpc":[0,16],"BbQ5":[1,13.999999999999998]},"vertices":["VMwQ","1Mpc","BbQ5"],"texture":0},"dxDFqbCj":{"uv":{"0WNM":[2,16],"uStm":[0,16],"1Mpc":[0,13.999999999999998],"VMwQ":[2,13.999999999999998]},"vertices":["0WNM","uStm","1Mpc","VMwQ"],"texture":0},"tpsAddvw":{"uv":{"uStm":[0,13.999999999999998],"0WNM":[2,13.999999999999998],"soso":[1,16]},"vertices":["uStm","0WNM","soso"],"texture":0},"5a88gonc":{"uv":{"dAYG":[2,16],"VMwQ":[0,16],"BbQ5":[1,13.999999999999998]},"vertices":["dAYG","VMwQ","BbQ5"],"texture":0},"vkcTEN0l":{"uv":{"bDAl":[2,16],"0WNM":[0,16],"VMwQ":[0,13.999999999999998],"dAYG":[2,13.999999999999998]},"vertices":["bDAl","0WNM","VMwQ","dAYG"],"texture":0},"5Al6JTDa":{"uv":{"0WNM":[0,13.999999999999998],"bDAl":[2,13.999999999999998],"soso":[1,16]},"vertices":["0WNM","bDAl","soso"],"texture":0},"haD6puQV":{"uv":{"nsJr":[2,16],"dAYG":[0,16],"BbQ5":[1,13.999999999999998]},"vertices":["nsJr","dAYG","BbQ5"],"texture":0},"vF17qg54":{"uv":{"zqtX":[2,16],"bDAl":[0,16],"dAYG":[0,13.999999999999998],"nsJr":[2,13.999999999999998]},"vertices":["zqtX","bDAl","dAYG","nsJr"],"texture":0},"R8eCLOdb":{"uv":{"bDAl":[0,13.999999999999998],"zqtX":[2,13.999999999999998],"soso":[1,16]},"vertices":["bDAl","zqtX","soso"],"texture":0},"n4Hfysff":{"uv":{"lUP5":[2,16],"nsJr":[0,16],"BbQ5":[1,13.999999999999998]},"vertices":["lUP5","nsJr","BbQ5"],"texture":0},"aVKmJds5":{"uv":{"dgob":[2,16],"zqtX":[0,16],"nsJr":[0,13.999999999999998],"lUP5":[2,13.999999999999998]},"vertices":["dgob","zqtX","nsJr","lUP5"],"texture":0},"9xeXW9RW":{"uv":{"zqtX":[0,13.999999999999998],"dgob":[2,13.999999999999998],"soso":[1,16]},"vertices":["zqtX","dgob","soso"],"texture":0}},"type":"mesh","uuid":"bbfc975e-5d65-5b8e-2a31-2c4f4a29b1b5"},{"name":"cylinder","color":4,"origin":[-3.15845593067914,6,0.8111595753452778],"rotation":[0,0,0],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"4Wb5":[1.2303122714101986,-5,-0.5937694101250948],"panb":[0.7630525805590936,1.0999999999999999,-0.5527864045000421],"TFt6":[0.21661152372386805,-4.3500000000000005,0.6118033988749889],"enJ7":[0.07444307205932466,0.8499999999999996,0.9999999999999998],"xU4w":[0.25873837792792675,-4.3500000000000005,-1.0542572472504417],"ep62":[-0.351141009169893,0.8499999999999996,-1.1458980337503155],"ZbOA":[1.2303122714101986,-4.3500000000000005,-2.083939353874569],"ZHoN":[1.2369474194409056,0.8499999999999996,-2.4721359549995796],"UXN0":[1.7886511059602541,-4.3500000000000005,-1.054257247250442],"Ypjw":[2.351141009169892,0.8499999999999996,-1.1458980337503157],"cgVn":[1.8307779601643126,-4.3500000000000005,0.6118033988749889],"iG3r":[1.9255569279406752,0.8499999999999996,0.9999999999999991],"Krz3":[0.20594135312895223,1.0999999999999999,-0.8493499019216019],"ozWh":[0.41875674612532443,1.0999999999999999,0.22358668392781456],"qOfI":[1.5812432538746748,1.0999999999999999,0.22358668392781444],"oROo":[1.7940297817397508,1.0999999999999999,-0.8493345363287558],"krhA":[1.2369474194409056,1.0999999999999999,-1.5124363176983286],"LnQF":[0.5168365900446228,-5,0.009032610609746805],"sEmd":[0.7445379098285261,-5,-0.8240073638168509],"rllo":[0.8170772124779822,-5,-1.3388350792720671],"i23P":[1.3028515740596547,-5,-0.8240073638168512],"D6WN":[1.117302278798737,-5,0.009001378140147565]},"faces":{"samlaMJi":{"uv":{"xU4w":[1.000022182905024,0.7265363025357708],"LnQF":[1.9999925525092408,2.906122366659739],"sEmd":[0.9999703696042186,2.1795974871368093],"TFt6":[1.9999925525092408,0]},"vertices":["xU4w","LnQF","sEmd","TFt6"],"texture":0},"AMND1Je8":{"uv":{"xU4w":[3.906200000000002,4],"TFt6":[3.906200000000002,0],"ep62":[0,4],"enJ7":[0,0]},"vertices":["xU4w","TFt6","ep62","enJ7"],"texture":0},"WjgfP9Tg":{"uv":{"enJ7":[1.2360755506310834,2.7755575615628914e-16],"Krz3":[0.7639631477574778,2.3511401316953635],"ozWh":[0.38197167797879494,1.175539610651555],"ep62":[2.472087057528519,0]},"vertices":["enJ7","Krz3","ozWh","ep62"],"texture":0},"6Uy258Lr":{"uv":{"ZbOA":[0,2.4721],"sEmd":[0,1.2360179779655283],"rllo":[1.1755804546762878,0.38195989508196804],"xU4w":[2.3511000000000024,0.7639]},"vertices":["ZbOA","sEmd","rllo","xU4w"],"texture":0},"hkN055JD":{"uv":{"ZbOA":[3.906200000000002,4],"xU4w":[3.906200000000002,0],"ZHoN":[0,4],"ep62":[0,0]},"vertices":["ZbOA","xU4w","ZHoN","ep62"],"texture":0},"qUzl9VQv":{"uv":{"ep62":[0,1.2360179779655283],"krhA":[2.3511000000000024,1.7082000000000002],"Krz3":[1.1755195453237146,2.0901598950819684],"ZHoN":[0,0]},"vertices":["ep62","krhA","Krz3","ZHoN"],"texture":0},"2Fjj4Rq0":{"uv":{"UXN0":[2.3511000000000024,1.236082022034472],"rllo":[0,0.7639],"i23P":[1.1755804546762878,0.381940104918032],"ZbOA":[2.3511000000000024,2.4721]},"vertices":["UXN0","rllo","i23P","ZbOA"],"texture":0},"wAPEOZR0":{"uv":{"UXN0":[3.906200000000002,4],"ZbOA":[3.906200000000002,0],"Ypjw":[0,4],"ZHoN":[0,0]},"vertices":["UXN0","ZbOA","Ypjw","ZHoN"],"texture":0},"kmElSpzH":{"uv":{"ZHoN":[1.1755195453237146,2.0901401049180324],"oROo":[2.3511000000000024,0],"krhA":[2.3511000000000024,1.236082022034472],"Ypjw":[0,1.7082000000000002]},"vertices":["ZHoN","oROo","krhA","Ypjw"],"texture":0},"rYkg3YK8":{"uv":{"cgVn":[1.2360115068974373,2.3511401316953635],"i23P":[1.708123909771043,0],"D6WN":[2.090115379549724,1.1756005210438085],"UXN0":[0,2.3511401316953635]},"vertices":["cgVn","i23P","D6WN","UXN0"],"texture":0},"I5kxlVpC":{"uv":{"cgVn":[3.906200000000002,4],"UXN0":[3.906200000000002,0],"iG3r":[0,4],"Ypjw":[0,0]},"vertices":["cgVn","UXN0","iG3r","Ypjw"],"texture":0},"pumU3Qwy":{"uv":{"Ypjw":[0.9999703696042186,2.179586064123968],"qOfI":[0,0],"oROo":[1.000022182905024,0.7265248795229295],"iG3r":[0,2.906122366659739]},"vertices":["Ypjw","qOfI","oROo","iG3r"],"texture":0},"YRAihDxd":{"uv":{"TFt6":[0.7265311774530616,0.9999740932531275],"D6WN":[2.906200000000002,0],"LnQF":[2.1796311774530626,1.0000259067468726],"cgVn":[0,0]},"vertices":["TFt6","D6WN","LnQF","cgVn"],"texture":0},"s59P68Hr":{"uv":{"TFt6":[3.906200000000002,4],"cgVn":[3.906200000000002,0],"enJ7":[0,4],"iG3r":[0,0]},"vertices":["TFt6","cgVn","enJ7","iG3r"],"texture":0},"HMa8OOKn":{"uv":{"iG3r":[2.179668822546942,1.0000259067468726],"ozWh":[0,1.9999999999999998],"qOfI":[0.7265688225469429,0.9999740932531275],"enJ7":[2.906200000000002,1.9999999999999998]},"vertices":["iG3r","ozWh","qOfI","enJ7"],"texture":0},"rV2t1ijw":{"uv":{"panb":[1.2360755506310834,2.7755575615628914e-16],"Krz3":[0,5.551115123125783e-16],"ozWh":[0.38197167797879494,1.175539610651555]},"vertices":["panb","Krz3","ozWh"],"texture":0},"uoCCkb2f":{"uv":{"panb":[2.179668822546942,1.0000259067468726],"ozWh":[1.453100000000001,0],"qOfI":[0.7265688225469429,0.9999740932531275]},"vertices":["panb","ozWh","qOfI"],"texture":0},"jTAGPKlO":{"uv":{"panb":[0.9999703696042186,2.179586064123968],"qOfI":[1.9999925525092408,1.453012116228761],"oROo":[1.000022182905024,0.7265248795229295]},"vertices":["panb","qOfI","oROo"],"texture":0},"kN0bBDY0":{"uv":{"panb":[1.1755195453237146,2.0901401049180324],"oROo":[2.3511000000000024,2.4721],"krhA":[2.3511000000000024,1.236082022034472]},"vertices":["panb","oROo","krhA"],"texture":0},"bsfaro1S":{"uv":{"panb":[0,1.2360179779655283],"krhA":[0,2.4721],"Krz3":[1.1755195453237146,2.0901598950819684]},"vertices":["panb","krhA","Krz3"],"texture":0},"vTV4KM5w":{"uv":{"4Wb5":[1.000022182905024,0.7265363025357708],"LnQF":[0,1.4531102504309776],"sEmd":[0.9999703696042186,2.1795974871368093]},"vertices":["4Wb5","LnQF","sEmd"],"texture":0},"US0wnCNy":{"uv":{"4Wb5":[1.1755804546762878,0.38195989508196804],"sEmd":[0,0],"rllo":[0,1.2360179779655283]},"vertices":["4Wb5","sEmd","rllo"],"texture":0},"aWGFDKLq":{"uv":{"4Wb5":[2.3511000000000024,1.236082022034472],"rllo":[2.3511000000000024,0],"i23P":[1.1755804546762878,0.381940104918032]},"vertices":["4Wb5","rllo","i23P"],"texture":0},"XnTuz26E":{"uv":{"4Wb5":[1.2360115068974373,2.3511401316953635],"i23P":[2.472087057528519,2.351140131695363],"D6WN":[2.090115379549724,1.1756005210438085]},"vertices":["4Wb5","i23P","D6WN"],"texture":0},"QxvwTxj8":{"uv":{"4Wb5":[0.7265311774530616,0.9999740932531275],"D6WN":[1.453100000000001,1.9999999999999998],"LnQF":[2.1796311774530626,1.0000259067468726]},"vertices":["4Wb5","D6WN","LnQF"],"texture":0}},"type":"mesh","uuid":"5e7c80cf-62fb-2eed-a17b-d39629571009"},{"name":"cube","color":4,"origin":[-1.9848077530122092,1,-0.959362463381216],"rotation":[0,-10,0],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"BtHE":[-1.1999999999999988,1,2.7857142857142856],"p9SG":[-1.1999999999999988,1,-0.07142857142857151],"dP2U":[-1.1999999999999988,-1,2.7857142857142856],"eok7":[-1.9999999999999987,-1,-0.07142857142857151],"ocfu":[1.2000000000000013,1,2.7857142857142856],"vUhB":[1.2000000000000013,1,-0.07142857142857151],"EUsg":[1.2000000000000013,-1,2.7857142857142856],"oqGO":[2.0000000000000013,-1,-0.07142857142857151],"LuHl":[1.2000000000000013,1,-2.2142857142857144],"xXtl":[-1.1999999999999988,1,-2.2142857142857144],"EDaA":[1.2000000000000013,-1,-3.2142857142857144],"X2US":[-1.1999999999999988,-1,-3.2142857142857144]},"faces":{"rLMf7opp":{"uv":{"BtHE":[13.333333333333327,5.333333333333333],"p9SG":[14.166666666666663,5.333333333333333],"eok7":[14.166666666666663,5.666666666666666],"dP2U":[13.333333333333327,5.666666666666666]},"vertices":["BtHE","p9SG","eok7","dP2U"],"texture":0},"lK1uZ4ZU":{"uv":{"vUhB":[13.333333333333327,5.333333333333333],"ocfu":[14.166666666666663,5.333333333333333],"EUsg":[14.166666666666663,5.666666666666666],"oqGO":[13.333333333333327,5.666666666666666]},"vertices":["vUhB","ocfu","EUsg","oqGO"],"texture":0},"IOcJK5rY":{"uv":{"vUhB":[13.333333333333327,5.333333333333333],"p9SG":[13.958333333333329,5.333333333333333],"BtHE":[13.958333333333329,5.999999999999999],"ocfu":[13.333333333333327,5.999999999999999]},"vertices":["vUhB","p9SG","BtHE","ocfu"],"texture":0},"TZD9oDhP":{"uv":{"EUsg":[10.666666666666664,7.999999999999997],"dP2U":[13.33333333333333,7.999999999999997],"eok7":[13.33333333333333,10.666666666666663],"oqGO":[10.666666666666664,10.666666666666663]},"vertices":["EUsg","dP2U","eok7","oqGO"],"texture":0},"h8ImDcMA":{"uv":{"ocfu":[13.333333333333327,5.666666666666666],"BtHE":[13.958333333333329,5.666666666666666],"dP2U":[13.958333333333329,5.999999999999999],"EUsg":[13.333333333333327,5.999999999999999]},"vertices":["ocfu","BtHE","dP2U","EUsg"],"texture":0},"4tbVDhEo":{"uv":{"xXtl":[13.333333333333327,6.499999999999998],"LuHl":[15.958333333333325,6.499999999999998],"EDaA":[15.958333333333325,5.333333333333331],"X2US":[13.333333333333327,5.333333333333331]},"vertices":["xXtl","LuHl","EDaA","X2US"],"texture":0},"EtmLgTse":{"uv":{"EDaA":[13.333333333333327,5.999999999999999],"LuHl":[13.333333333333327,5.666666666666666],"oqGO":[13.958333333333329,5.999999999999999],"vUhB":[13.958333333333329,5.666666666666666]},"vertices":["EDaA","LuHl","oqGO","vUhB"],"texture":0},"iRHEFw0e":{"uv":{"LuHl":[13.333333333333327,5.833333333333334],"xXtl":[15.958333333333329,5.833333333333334],"vUhB":[13.333333333333327,6.999999999999998],"p9SG":[15.958333333333329,6.999999999999998]},"vertices":["LuHl","xXtl","vUhB","p9SG"],"texture":0},"5H56KX26":{"uv":{"xXtl":[13.958333333333329,5.666666666666666],"X2US":[13.958333333333329,5.999999999999999],"p9SG":[13.333333333333327,5.666666666666666],"eok7":[13.333333333333327,5.999999999999999]},"vertices":["xXtl","X2US","p9SG","eok7"],"texture":0},"YPxuRqB2":{"uv":{"X2US":[13.333333333333329,10.666666666666664],"EDaA":[10.666666666666664,10.666666666666664],"eok7":[13.333333333333329,7.999999999999998],"oqGO":[10.666666666666664,7.999999999999998]},"vertices":["X2US","EDaA","eok7","oqGO"],"texture":0}},"type":"mesh","uuid":"66006983-29a6-b4ac-13dd-4a50573690ee"},{"name":"cylinder","color":4,"origin":[2.0000000000000013,13.499999999999998,0],"rotation":[0,0,0],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"4Wb5":[-0.45586419419951785,-1,0.3229629742202673],"panb":[0.395403350120045,-6.125,0.2583731708452357],"TFt6":[2.4418444069552705,-1.524999999999999,2.4229629742202663],"enJ7":[1.084012858619814,-5.7250000000000005,1.8111595753452776],"xU4w":[2.321422923548742,-1.524999999999999,-0.4791656494049532],"ep62":[1.5095969398490316,-5.7250000000000005,-0.3347384584050377],"ZbOA":[-0.45586419419951785,-1.524999999999999,-2.2727797785292916],"ZHoN":[-0.07849148876176693,-5.7250000000000005,-1.6609763796543016],"UXN0":[-2.051900546078646,-1.524999999999999,-0.47916564940495365],"Ypjw":[-1.1926850784907534,-5.7250000000000005,-0.3347384584050379],"cgVn":[-2.172322029485174,-1.524999999999999,2.4229629742202663],"iG3r":[-0.7671009972615366,-5.7250000000000005,1.8111595753452767],"Krz3":[0.9525145775501864,-6.125,-0.03819032657632393],"ozWh":[0.7396991845538142,-6.125,1.0347462592730925],"qOfI":[-0.42278732319553614,-6.125,1.0347462592730923],"oROo":[-0.6355738510606121,-6.125,-0.038174960983477835],"krhA":[-0.07849148876176693,-6.125,-0.7012767423530508],"LnQF":[1.5836377232317709,-1,1.3729901763044832],"sEmd":[0.9327433894374358,-1,-0.07809094732073696],"rllo":[0.725386571669614,-1,-0.9748747785292913],"i23P":[-0.6632210119673396,-1,-0.07809094732073762],"D6WN":[-0.13282011205388589,-1,1.3729357721360507]},"faces":{"samlaMJi":{"uv":{"xU4w":[1.9999925525092408,2.906122366659739],"LnQF":[1.000022182905024,0.7265363025357708],"sEmd":[0.9999703696042186,2.1795974871368093],"TFt6":[1.9999925525092408,0]},"vertices":["xU4w","LnQF","sEmd","TFt6"],"texture":0},"AMND1Je8":{"uv":{"xU4w":[3.906200000000002,4],"TFt6":[0,4],"ep62":[3.906200000000002,0],"enJ7":[0,0]},"vertices":["xU4w","TFt6","ep62","enJ7"],"texture":0},"WjgfP9Tg":{"uv":{"enJ7":[0.7639631477574778,2.3511401316953635],"Krz3":[1.2360755506310834,2.7755575615628914e-16],"ozWh":[0.38197167797879494,1.175539610651555],"ep62":[2.472087057528519,0]},"vertices":["enJ7","Krz3","ozWh","ep62"],"texture":0},"6Uy258Lr":{"uv":{"ZbOA":[0,1.2360179779655283],"sEmd":[1.1755804546762878,0.38195989508196804],"rllo":[0,2.4721],"xU4w":[2.3511000000000024,0.7639]},"vertices":["ZbOA","sEmd","rllo","xU4w"],"texture":0},"hkN055JD":{"uv":{"ZbOA":[3.906200000000002,4],"xU4w":[0,4],"ZHoN":[3.906200000000002,0],"ep62":[0,0]},"vertices":["ZbOA","xU4w","ZHoN","ep62"],"texture":0},"qUzl9VQv":{"uv":{"ep62":[2.3511000000000024,1.7082000000000002],"krhA":[0,1.2360179779655283],"Krz3":[1.1755195453237146,2.0901598950819684],"ZHoN":[0,0]},"vertices":["ep62","krhA","Krz3","ZHoN"],"texture":0},"2Fjj4Rq0":{"uv":{"UXN0":[0,0.7639],"rllo":[2.3511000000000024,1.236082022034472],"i23P":[1.1755804546762878,0.381940104918032],"ZbOA":[2.3511000000000024,2.4721]},"vertices":["UXN0","rllo","i23P","ZbOA"],"texture":0},"wAPEOZR0":{"uv":{"UXN0":[3.906200000000002,4],"ZbOA":[0,4],"Ypjw":[3.906200000000002,0],"ZHoN":[0,0]},"vertices":["UXN0","ZbOA","Ypjw","ZHoN"],"texture":0},"kmElSpzH":{"uv":{"ZHoN":[2.3511000000000024,0],"oROo":[1.1755195453237146,2.0901401049180324],"krhA":[2.3511000000000024,1.236082022034472],"Ypjw":[0,1.7082000000000002]},"vertices":["ZHoN","oROo","krhA","Ypjw"],"texture":0},"rYkg3YK8":{"uv":{"cgVn":[1.708123909771043,0],"i23P":[1.2360115068974373,2.3511401316953635],"D6WN":[2.090115379549724,1.1756005210438085],"UXN0":[0,2.3511401316953635]},"vertices":["cgVn","i23P","D6WN","UXN0"],"texture":0},"I5kxlVpC":{"uv":{"cgVn":[3.906200000000002,4],"UXN0":[0,4],"iG3r":[3.906200000000002,0],"Ypjw":[0,0]},"vertices":["cgVn","UXN0","iG3r","Ypjw"],"texture":0},"pumU3Qwy":{"uv":{"Ypjw":[0,0],"qOfI":[0.9999703696042186,2.179586064123968],"oROo":[1.000022182905024,0.7265248795229295],"iG3r":[0,2.906122366659739]},"vertices":["Ypjw","qOfI","oROo","iG3r"],"texture":0},"YRAihDxd":{"uv":{"TFt6":[2.906200000000002,0],"D6WN":[0.7265311774530616,0.9999740932531275],"LnQF":[2.1796311774530626,1.0000259067468726],"cgVn":[0,0]},"vertices":["TFt6","D6WN","LnQF","cgVn"],"texture":0},"s59P68Hr":{"uv":{"TFt6":[3.906200000000002,4],"cgVn":[0,4],"enJ7":[3.906200000000002,0],"iG3r":[0,0]},"vertices":["TFt6","cgVn","enJ7","iG3r"],"texture":0},"HMa8OOKn":{"uv":{"iG3r":[0,1.9999999999999998],"ozWh":[2.179668822546942,1.0000259067468726],"qOfI":[0.7265688225469429,0.9999740932531275],"enJ7":[2.906200000000002,1.9999999999999998]},"vertices":["iG3r","ozWh","qOfI","enJ7"],"texture":0},"rV2t1ijw":{"uv":{"panb":[0,5.551115123125783e-16],"Krz3":[1.2360755506310834,2.7755575615628914e-16],"ozWh":[0.38197167797879494,1.175539610651555]},"vertices":["panb","Krz3","ozWh"],"texture":0},"uoCCkb2f":{"uv":{"panb":[1.453100000000001,0],"ozWh":[2.179668822546942,1.0000259067468726],"qOfI":[0.7265688225469429,0.9999740932531275]},"vertices":["panb","ozWh","qOfI"],"texture":0},"jTAGPKlO":{"uv":{"panb":[1.9999925525092408,1.453012116228761],"qOfI":[0.9999703696042186,2.179586064123968],"oROo":[1.000022182905024,0.7265248795229295]},"vertices":["panb","qOfI","oROo"],"texture":0},"kN0bBDY0":{"uv":{"panb":[2.3511000000000024,2.4721],"oROo":[1.1755195453237146,2.0901401049180324],"krhA":[2.3511000000000024,1.236082022034472]},"vertices":["panb","oROo","krhA"],"texture":0},"bsfaro1S":{"uv":{"panb":[0,2.4721],"krhA":[0,1.2360179779655283],"Krz3":[1.1755195453237146,2.0901598950819684]},"vertices":["panb","krhA","Krz3"],"texture":0},"vTV4KM5w":{"uv":{"4Wb5":[0,1.4531102504309776],"LnQF":[1.000022182905024,0.7265363025357708],"sEmd":[0.9999703696042186,2.1795974871368093]},"vertices":["4Wb5","LnQF","sEmd"],"texture":0},"US0wnCNy":{"uv":{"4Wb5":[0,0],"sEmd":[1.1755804546762878,0.38195989508196804],"rllo":[0,1.2360179779655283]},"vertices":["4Wb5","sEmd","rllo"],"texture":0},"aWGFDKLq":{"uv":{"4Wb5":[2.3511000000000024,0],"rllo":[2.3511000000000024,1.236082022034472],"i23P":[1.1755804546762878,0.381940104918032]},"vertices":["4Wb5","rllo","i23P"],"texture":0},"XnTuz26E":{"uv":{"4Wb5":[2.472087057528519,2.351140131695363],"i23P":[1.2360115068974373,2.3511401316953635],"D6WN":[2.090115379549724,1.1756005210438085]},"vertices":["4Wb5","i23P","D6WN"],"texture":0},"QxvwTxj8":{"uv":{"4Wb5":[1.453100000000001,1.9999999999999998],"D6WN":[0.7265311774530616,0.9999740932531275],"LnQF":[2.1796311774530626,1.0000259067468726]},"vertices":["4Wb5","D6WN","LnQF"],"texture":0}},"type":"mesh","uuid":"592a33ab-9781-44ed-bb8b-c81b68f79828"},{"name":"sphere","color":0,"origin":[6.840118066625101,14,0.36930290737957805],"rotation":[0,0,0],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"soso":[-4.6,-7.5,0],"BbQ5":[-4.6,-5.5,0],"lUP5":[-4.1,-6,0.9999999999999998],"dgob":[-4.1,-7,1],"5Iyo":[-3.5999999999999996,-6,7.070501591499377e-17],"Gf47":[-3.5999999999999996,-7,7.070501591499379e-17],"1Mpc":[-4.1,-6,-0.9999999999999998],"uStm":[-4.1,-7,-1],"VMwQ":[-5.1,-6,-0.9999999999999998],"0WNM":[-5.1,-7,-0.9999999999999998],"dAYG":[-5.6,-6,-2.121150477449813e-16],"bDAl":[-5.6,-7,-2.121150477449813e-16],"nsJr":[-5.1,-6,0.9999999999999991],"zqtX":[-5.1,-7,0.9999999999999996]},"faces":{"tYrjNLnf":{"uv":{"lUP5":[0,16],"5Iyo":[2,16],"BbQ5":[1,13.999999999999998]},"vertices":["lUP5","5Iyo","BbQ5"],"texture":0},"0nb0NiQI":{"uv":{"dgob":[0,16],"Gf47":[2,16],"lUP5":[0,13.999999999999998],"5Iyo":[2,13.999999999999998]},"vertices":["dgob","Gf47","lUP5","5Iyo"],"texture":0},"elDzCGcm":{"uv":{"Gf47":[2,13.999999999999998],"dgob":[0,13.999999999999998],"soso":[1,16]},"vertices":["Gf47","dgob","soso"],"texture":0},"lF77FkSO":{"uv":{"5Iyo":[0,16],"1Mpc":[2,16],"BbQ5":[1,13.999999999999998]},"vertices":["5Iyo","1Mpc","BbQ5"],"texture":0},"h77XObO2":{"uv":{"Gf47":[0,16],"uStm":[2,16],"5Iyo":[0,13.999999999999998],"1Mpc":[2,13.999999999999998]},"vertices":["Gf47","uStm","5Iyo","1Mpc"],"texture":0},"yljQjCQ8":{"uv":{"uStm":[2,13.999999999999998],"Gf47":[0,13.999999999999998],"soso":[1,16]},"vertices":["uStm","Gf47","soso"],"texture":0},"Zhd86Vtw":{"uv":{"1Mpc":[0,16],"VMwQ":[2,16],"BbQ5":[1,13.999999999999998]},"vertices":["1Mpc","VMwQ","BbQ5"],"texture":0},"dxDFqbCj":{"uv":{"uStm":[0,16],"0WNM":[2,16],"1Mpc":[0,13.999999999999998],"VMwQ":[2,13.999999999999998]},"vertices":["uStm","0WNM","1Mpc","VMwQ"],"texture":0},"tpsAddvw":{"uv":{"0WNM":[2,13.999999999999998],"uStm":[0,13.999999999999998],"soso":[1,16]},"vertices":["0WNM","uStm","soso"],"texture":0},"5a88gonc":{"uv":{"VMwQ":[0,16],"dAYG":[2,16],"BbQ5":[1,13.999999999999998]},"vertices":["VMwQ","dAYG","BbQ5"],"texture":0},"vkcTEN0l":{"uv":{"0WNM":[0,16],"bDAl":[2,16],"VMwQ":[0,13.999999999999998],"dAYG":[2,13.999999999999998]},"vertices":["0WNM","bDAl","VMwQ","dAYG"],"texture":0},"5Al6JTDa":{"uv":{"bDAl":[2,13.999999999999998],"0WNM":[0,13.999999999999998],"soso":[1,16]},"vertices":["bDAl","0WNM","soso"],"texture":0},"haD6puQV":{"uv":{"dAYG":[0,16],"nsJr":[2,16],"BbQ5":[1,13.999999999999998]},"vertices":["dAYG","nsJr","BbQ5"],"texture":0},"vF17qg54":{"uv":{"bDAl":[0,16],"zqtX":[2,16],"dAYG":[0,13.999999999999998],"nsJr":[2,13.999999999999998]},"vertices":["bDAl","zqtX","dAYG","nsJr"],"texture":0},"R8eCLOdb":{"uv":{"zqtX":[2,13.999999999999998],"bDAl":[0,13.999999999999998],"soso":[1,16]},"vertices":["zqtX","bDAl","soso"],"texture":0},"n4Hfysff":{"uv":{"nsJr":[0,16],"lUP5":[2,16],"BbQ5":[1,13.999999999999998]},"vertices":["nsJr","lUP5","BbQ5"],"texture":0},"aVKmJds5":{"uv":{"zqtX":[0,16],"dgob":[2,16],"nsJr":[0,13.999999999999998],"lUP5":[2,13.999999999999998]},"vertices":["zqtX","dgob","nsJr","lUP5"],"texture":0},"9xeXW9RW":{"uv":{"dgob":[2,13.999999999999998],"zqtX":[0,13.999999999999998],"soso":[1,16]},"vertices":["dgob","zqtX","soso"],"texture":0}},"type":"mesh","uuid":"f9a319b2-81d0-be88-c0df-8c9f7311bdfc"},{"name":"cylinder","color":4,"origin":[3.15845593067914,6,0.8111595753452778],"rotation":[0,0,0],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"4Wb5":[-1.2303122714101986,-5,-0.5937694101250948],"panb":[-0.7630525805590936,1.0999999999999999,-0.5527864045000421],"TFt6":[-0.21661152372386805,-4.3500000000000005,0.6118033988749889],"enJ7":[-0.07444307205932466,0.8499999999999996,0.9999999999999998],"xU4w":[-0.25873837792792675,-4.3500000000000005,-1.0542572472504417],"ep62":[0.351141009169893,0.8499999999999996,-1.1458980337503155],"ZbOA":[-1.2303122714101986,-4.3500000000000005,-2.083939353874569],"ZHoN":[-1.2369474194409056,0.8499999999999996,-2.4721359549995796],"UXN0":[-1.7886511059602541,-4.3500000000000005,-1.054257247250442],"Ypjw":[-2.351141009169892,0.8499999999999996,-1.1458980337503157],"cgVn":[-1.8307779601643126,-4.3500000000000005,0.6118033988749889],"iG3r":[-1.9255569279406752,0.8499999999999996,0.9999999999999991],"Krz3":[-0.20594135312895223,1.0999999999999999,-0.8493499019216019],"ozWh":[-0.41875674612532443,1.0999999999999999,0.22358668392781456],"qOfI":[-1.5812432538746748,1.0999999999999999,0.22358668392781444],"oROo":[-1.7940297817397508,1.0999999999999999,-0.8493345363287558],"krhA":[-1.2369474194409056,1.0999999999999999,-1.5124363176983286],"LnQF":[-0.5168365900446228,-5,0.009032610609746805],"sEmd":[-0.7445379098285261,-5,-0.8240073638168509],"rllo":[-0.8170772124779822,-5,-1.3388350792720671],"i23P":[-1.3028515740596547,-5,-0.8240073638168512],"D6WN":[-1.117302278798737,-5,0.009001378140147565]},"faces":{"samlaMJi":{"uv":{"LnQF":[1.9999925525092408,2.906122366659739],"xU4w":[1.000022182905024,0.7265363025357708],"sEmd":[0.9999703696042186,2.1795974871368093],"TFt6":[1.9999925525092408,0]},"vertices":["LnQF","xU4w","sEmd","TFt6"],"texture":0},"AMND1Je8":{"uv":{"TFt6":[3.906200000000002,0],"xU4w":[3.906200000000002,4],"ep62":[0,4],"enJ7":[0,0]},"vertices":["TFt6","xU4w","ep62","enJ7"],"texture":0},"WjgfP9Tg":{"uv":{"Krz3":[0.7639631477574778,2.3511401316953635],"enJ7":[1.2360755506310834,2.7755575615628914e-16],"ozWh":[0.38197167797879494,1.175539610651555],"ep62":[2.472087057528519,0]},"vertices":["Krz3","enJ7","ozWh","ep62"],"texture":0},"6Uy258Lr":{"uv":{"sEmd":[0,1.2360179779655283],"ZbOA":[0,2.4721],"rllo":[1.1755804546762878,0.38195989508196804],"xU4w":[2.3511000000000024,0.7639]},"vertices":["sEmd","ZbOA","rllo","xU4w"],"texture":0},"hkN055JD":{"uv":{"xU4w":[3.906200000000002,0],"ZbOA":[3.906200000000002,4],"ZHoN":[0,4],"ep62":[0,0]},"vertices":["xU4w","ZbOA","ZHoN","ep62"],"texture":0},"qUzl9VQv":{"uv":{"krhA":[2.3511000000000024,1.7082000000000002],"ep62":[0,1.2360179779655283],"Krz3":[1.1755195453237146,2.0901598950819684],"ZHoN":[0,0]},"vertices":["krhA","ep62","Krz3","ZHoN"],"texture":0},"2Fjj4Rq0":{"uv":{"rllo":[0,0.7639],"UXN0":[2.3511000000000024,1.236082022034472],"i23P":[1.1755804546762878,0.381940104918032],"ZbOA":[2.3511000000000024,2.4721]},"vertices":["rllo","UXN0","i23P","ZbOA"],"texture":0},"wAPEOZR0":{"uv":{"ZbOA":[3.906200000000002,0],"UXN0":[3.906200000000002,4],"Ypjw":[0,4],"ZHoN":[0,0]},"vertices":["ZbOA","UXN0","Ypjw","ZHoN"],"texture":0},"kmElSpzH":{"uv":{"oROo":[2.3511000000000024,0],"ZHoN":[1.1755195453237146,2.0901401049180324],"krhA":[2.3511000000000024,1.236082022034472],"Ypjw":[0,1.7082000000000002]},"vertices":["oROo","ZHoN","krhA","Ypjw"],"texture":0},"rYkg3YK8":{"uv":{"i23P":[1.708123909771043,0],"cgVn":[1.2360115068974373,2.3511401316953635],"D6WN":[2.090115379549724,1.1756005210438085],"UXN0":[0,2.3511401316953635]},"vertices":["i23P","cgVn","D6WN","UXN0"],"texture":0},"I5kxlVpC":{"uv":{"UXN0":[3.906200000000002,0],"cgVn":[3.906200000000002,4],"iG3r":[0,4],"Ypjw":[0,0]},"vertices":["UXN0","cgVn","iG3r","Ypjw"],"texture":0},"pumU3Qwy":{"uv":{"qOfI":[0,0],"Ypjw":[0.9999703696042186,2.179586064123968],"oROo":[1.000022182905024,0.7265248795229295],"iG3r":[0,2.906122366659739]},"vertices":["qOfI","Ypjw","oROo","iG3r"],"texture":0},"YRAihDxd":{"uv":{"D6WN":[2.906200000000002,0],"TFt6":[0.7265311774530616,0.9999740932531275],"LnQF":[2.1796311774530626,1.0000259067468726],"cgVn":[0,0]},"vertices":["D6WN","TFt6","LnQF","cgVn"],"texture":0},"s59P68Hr":{"uv":{"cgVn":[3.906200000000002,0],"TFt6":[3.906200000000002,4],"enJ7":[0,4],"iG3r":[0,0]},"vertices":["cgVn","TFt6","enJ7","iG3r"],"texture":0},"HMa8OOKn":{"uv":{"ozWh":[0,1.9999999999999998],"iG3r":[2.179668822546942,1.0000259067468726],"qOfI":[0.7265688225469429,0.9999740932531275],"enJ7":[2.906200000000002,1.9999999999999998]},"vertices":["ozWh","iG3r","qOfI","enJ7"],"texture":0},"rV2t1ijw":{"uv":{"Krz3":[0,5.551115123125783e-16],"panb":[1.2360755506310834,2.7755575615628914e-16],"ozWh":[0.38197167797879494,1.175539610651555]},"vertices":["Krz3","panb","ozWh"],"texture":0},"uoCCkb2f":{"uv":{"ozWh":[1.453100000000001,0],"panb":[2.179668822546942,1.0000259067468726],"qOfI":[0.7265688225469429,0.9999740932531275]},"vertices":["ozWh","panb","qOfI"],"texture":0},"jTAGPKlO":{"uv":{"qOfI":[1.9999925525092408,1.453012116228761],"panb":[0.9999703696042186,2.179586064123968],"oROo":[1.000022182905024,0.7265248795229295]},"vertices":["qOfI","panb","oROo"],"texture":0},"kN0bBDY0":{"uv":{"oROo":[2.3511000000000024,2.4721],"panb":[1.1755195453237146,2.0901401049180324],"krhA":[2.3511000000000024,1.236082022034472]},"vertices":["oROo","panb","krhA"],"texture":0},"bsfaro1S":{"uv":{"krhA":[0,2.4721],"panb":[0,1.2360179779655283],"Krz3":[1.1755195453237146,2.0901598950819684]},"vertices":["krhA","panb","Krz3"],"texture":0},"vTV4KM5w":{"uv":{"LnQF":[0,1.4531102504309776],"4Wb5":[1.000022182905024,0.7265363025357708],"sEmd":[0.9999703696042186,2.1795974871368093]},"vertices":["LnQF","4Wb5","sEmd"],"texture":0},"US0wnCNy":{"uv":{"sEmd":[0,0],"4Wb5":[1.1755804546762878,0.38195989508196804],"rllo":[0,1.2360179779655283]},"vertices":["sEmd","4Wb5","rllo"],"texture":0},"aWGFDKLq":{"uv":{"rllo":[2.3511000000000024,0],"4Wb5":[2.3511000000000024,1.236082022034472],"i23P":[1.1755804546762878,0.381940104918032]},"vertices":["rllo","4Wb5","i23P"],"texture":0},"XnTuz26E":{"uv":{"i23P":[2.472087057528519,2.351140131695363],"4Wb5":[1.2360115068974373,2.3511401316953635],"D6WN":[2.090115379549724,1.1756005210438085]},"vertices":["i23P","4Wb5","D6WN"],"texture":0},"QxvwTxj8":{"uv":{"D6WN":[1.453100000000001,1.9999999999999998],"4Wb5":[0.7265311774530616,0.9999740932531275],"LnQF":[2.1796311774530626,1.0000259067468726]},"vertices":["D6WN","4Wb5","LnQF"],"texture":0}},"type":"mesh","uuid":"3d3d5b82-6144-1f2e-3152-9da97339c4e7"},{"name":"cube","color":4,"origin":[1.9848077530122092,1,-0.959362463381216],"rotation":[0,10,0],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"BtHE":[1.1999999999999988,1,2.7857142857142856],"p9SG":[1.1999999999999988,1,-0.07142857142857151],"dP2U":[1.1999999999999988,-1,2.7857142857142856],"eok7":[1.9999999999999987,-1,-0.07142857142857151],"ocfu":[-1.2000000000000013,1,2.7857142857142856],"vUhB":[-1.2000000000000013,1,-0.07142857142857151],"EUsg":[-1.2000000000000013,-1,2.7857142857142856],"oqGO":[-2.0000000000000013,-1,-0.07142857142857151],"LuHl":[-1.2000000000000013,1,-2.2142857142857144],"xXtl":[1.1999999999999988,1,-2.2142857142857144],"EDaA":[-1.2000000000000013,-1,-3.2142857142857144],"X2US":[1.1999999999999988,-1,-3.2142857142857144]},"faces":{"rLMf7opp":{"uv":{"p9SG":[14.166666666666663,5.333333333333333],"BtHE":[13.333333333333327,5.333333333333333],"eok7":[14.166666666666663,5.666666666666666],"dP2U":[13.333333333333327,5.666666666666666]},"vertices":["p9SG","BtHE","eok7","dP2U"],"texture":0},"lK1uZ4ZU":{"uv":{"ocfu":[14.166666666666663,5.333333333333333],"vUhB":[13.333333333333327,5.333333333333333],"EUsg":[14.166666666666663,5.666666666666666],"oqGO":[13.333333333333327,5.666666666666666]},"vertices":["ocfu","vUhB","EUsg","oqGO"],"texture":0},"IOcJK5rY":{"uv":{"p9SG":[13.958333333333329,5.333333333333333],"vUhB":[13.333333333333327,5.333333333333333],"BtHE":[13.958333333333329,5.999999999999999],"ocfu":[13.333333333333327,5.999999999999999]},"vertices":["p9SG","vUhB","BtHE","ocfu"],"texture":0},"TZD9oDhP":{"uv":{"dP2U":[13.33333333333333,7.999999999999997],"EUsg":[10.666666666666664,7.999999999999997],"eok7":[13.33333333333333,10.666666666666663],"oqGO":[10.666666666666664,10.666666666666663]},"vertices":["dP2U","EUsg","eok7","oqGO"],"texture":0},"h8ImDcMA":{"uv":{"BtHE":[13.958333333333329,5.666666666666666],"ocfu":[13.333333333333327,5.666666666666666],"dP2U":[13.958333333333329,5.999999999999999],"EUsg":[13.333333333333327,5.999999999999999]},"vertices":["BtHE","ocfu","dP2U","EUsg"],"texture":0},"4tbVDhEo":{"uv":{"LuHl":[15.958333333333325,6.499999999999998],"xXtl":[13.333333333333327,6.499999999999998],"EDaA":[15.958333333333325,5.333333333333331],"X2US":[13.333333333333327,5.333333333333331]},"vertices":["LuHl","xXtl","EDaA","X2US"],"texture":0},"EtmLgTse":{"uv":{"LuHl":[13.333333333333327,5.666666666666666],"EDaA":[13.333333333333327,5.999999999999999],"oqGO":[13.958333333333329,5.999999999999999],"vUhB":[13.958333333333329,5.666666666666666]},"vertices":["LuHl","EDaA","oqGO","vUhB"],"texture":0},"iRHEFw0e":{"uv":{"xXtl":[15.958333333333329,5.833333333333334],"LuHl":[13.333333333333327,5.833333333333334],"vUhB":[13.333333333333327,6.999999999999998],"p9SG":[15.958333333333329,6.999999999999998]},"vertices":["xXtl","LuHl","vUhB","p9SG"],"texture":0},"5H56KX26":{"uv":{"X2US":[13.958333333333329,5.999999999999999],"xXtl":[13.958333333333329,5.666666666666666],"p9SG":[13.333333333333327,5.666666666666666],"eok7":[13.333333333333327,5.999999999999999]},"vertices":["X2US","xXtl","p9SG","eok7"],"texture":0},"YPxuRqB2":{"uv":{"EDaA":[10.666666666666664,10.666666666666664],"X2US":[13.333333333333329,10.666666666666664],"eok7":[13.333333333333329,7.999999999999998],"oqGO":[10.666666666666664,7.999999999999998]},"vertices":["EDaA","X2US","eok7","oqGO"],"texture":0}},"type":"mesh","uuid":"f77d65cd-b85d-ae43-738e-f99154c6696f"},{"name":"cube","color":0,"origin":[3,6,0],"rotation":[0,0,0],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"xn1u":[-1,19.499999999999993,-2],"kCv7":[-1,19.499999999999993,-4],"Qc7X":[-1,17.499999999999993,-2],"8XdH":[-1,17.499999999999993,-4],"NZJt":[-3,18.999999999999993,-2],"owVZ":[-3,18.999999999999993,-4],"wY03":[-3,17.999999999999993,-2],"8rtp":[-3,17.999999999999993,-4],"4cAj":[-5,19.499999999999993,-2],"DSkL":[-5,19.499999999999993,-4],"RTym":[-5,17.499999999999993,-2],"dzzM":[-5,17.499999999999993,-4]},"faces":{"TDQ53W15":{"uv":{"kCv7":[7.333333333333333,14],"xn1u":[5.333333333333333,14],"8XdH":[7.333333333333333,16],"Qc7X":[5.333333333333333,16]},"vertices":["kCv7","xn1u","8XdH","Qc7X"],"texture":0},"7CoGwcpg":{"uv":{"4cAj":[7.333333333333333,14],"DSkL":[5.333333333333333,14],"RTym":[7.333333333333333,16],"dzzM":[5.333333333333333,16]},"vertices":["4cAj","DSkL","RTym","dzzM"],"texture":0},"f3FlignJ":{"uv":{"kCv7":[6.833333333333333,14],"owVZ":[5.333333333333333,14],"xn1u":[6.833333333333333,15],"NZJt":[5.333333333333333,15]},"vertices":["kCv7","owVZ","xn1u","NZJt"],"texture":0},"LyQgUwU8":{"uv":{"Qc7X":[7.333333333333333,14],"wY03":[5.333333333333333,14],"8XdH":[7.333333333333333,16],"8rtp":[5.333333333333333,16]},"vertices":["Qc7X","wY03","8XdH","8rtp"],"texture":0},"5LRaJdLV":{"uv":{"xn1u":[7.333333333333333,14],"NZJt":[5.333333333333333,14],"Qc7X":[7.333333333333333,16],"wY03":[5.333333333333333,16]},"vertices":["xn1u","NZJt","Qc7X","wY03"],"texture":0},"lNXbR7bC":{"uv":{"owVZ":[7,15],"kCv7":[5.333333333333333,15],"8rtp":[7,16],"8XdH":[5.333333333333333,16]},"vertices":["owVZ","kCv7","8rtp","8XdH"],"texture":0},"HRPZkYTz":{"uv":{"4cAj":[6.333333333333333,15],"RTym":[6.333333333333333,16],"wY03":[7.333333333333333,16],"NZJt":[7.333333333333333,15]},"vertices":["4cAj","RTym","wY03","NZJt"],"texture":0},"A4aFHnJM":{"uv":{"DSkL":[5.333333333333333,14],"4cAj":[5.333333333333333,16],"NZJt":[6.333333333333333,16],"owVZ":[6.333333333333333,14]},"vertices":["DSkL","4cAj","NZJt","owVZ"],"texture":0},"9yWAjyHd":{"uv":{"dzzM":[7,16],"DSkL":[7,15],"owVZ":[5.333333333333333,15],"8rtp":[5.333333333333333,16]},"vertices":["dzzM","DSkL","owVZ","8rtp"],"texture":0},"ZCYfcmFK":{"uv":{"RTym":[5.333333333333333,14],"dzzM":[5.333333333333333,16],"8rtp":[6.333333333333333,16],"wY03":[6.333333333333333,14]},"vertices":["RTym","dzzM","8rtp","wY03"],"texture":0}},"type":"mesh","uuid":"7f121268-2dc4-0030-9ee0-28a4713beac2"},{"name":"cube","color":0,"origin":[0.5,23,-3.5],"rotation":[0,0,20],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"rKzM":[0.5,1,2],"DJK3":[0.5,1,0],"Xk4N":[0.5,-1,2],"RrEn":[0.5,-1,0],"TZDC":[-5.551115123125783e-17,1,2],"45w2":[-5.551115123125783e-17,1,0],"wcFp":[-0.5,-1,2],"aSom":[-0.5,-1,0]},"faces":{"7xxcXjZw":{"uv":{"DJK3":[6.833333333333336,13.16666666666667],"rKzM":[6.166666666666667,13.16666666666667],"RrEn":[6.833333333333336,14.000000000000002],"Xk4N":[6.166666666666667,14.000000000000002]},"vertices":["DJK3","rKzM","RrEn","Xk4N"],"texture":0},"YGupBHQC":{"uv":{"TZDC":[6.833333333333336,13.16666666666667],"45w2":[6.166666666666667,13.16666666666667],"wcFp":[6.833333333333336,14.000000000000002],"aSom":[6.166666666666667,14.000000000000002]},"vertices":["TZDC","45w2","wcFp","aSom"],"texture":0},"cCKWYVZL":{"uv":{"DJK3":[6.833333333333336,13.16666666666667],"45w2":[6.166666666666667,13.16666666666667],"rKzM":[6.833333333333336,14.000000000000002],"TZDC":[6.166666666666667,14.000000000000002]},"vertices":["DJK3","45w2","rKzM","TZDC"],"texture":0},"u0ucg4kG":{"uv":{"Xk4N":[6.833333333333336,13.16666666666667],"wcFp":[6.166666666666667,13.16666666666667],"RrEn":[6.833333333333336,14.000000000000002],"aSom":[6.166666666666667,14.000000000000002]},"vertices":["Xk4N","wcFp","RrEn","aSom"],"texture":0},"7KtmH0NZ":{"uv":{"rKzM":[6.833333333333336,13.16666666666667],"TZDC":[6.166666666666667,13.16666666666667],"Xk4N":[6.833333333333336,14.000000000000002],"wcFp":[6.166666666666667,14.000000000000002]},"vertices":["rKzM","TZDC","Xk4N","wcFp"],"texture":0},"xAn5PDyr":{"uv":{"45w2":[6.833333333333336,13.16666666666667],"DJK3":[6.166666666666667,13.16666666666667],"aSom":[6.833333333333336,14.000000000000002],"RrEn":[6.166666666666667,14.000000000000002]},"vertices":["45w2","DJK3","aSom","RrEn"],"texture":0}},"type":"mesh","uuid":"37b933e1-cdce-3d72-ad97-47e3802e4c10"},{"name":"cube","color":0,"origin":[-0.5,23,-3.5],"rotation":[0,0,-20],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"rKzM":[-0.5,1,2],"DJK3":[-0.5,1,0],"Xk4N":[-0.5,-1,2],"RrEn":[-0.5,-1,0],"TZDC":[5.551115123125783e-17,1,2],"45w2":[5.551115123125783e-17,1,0],"wcFp":[0.5,-1,2],"aSom":[0.5,-1,0]},"faces":{"7xxcXjZw":{"uv":{"rKzM":[6.166666666666667,13.16666666666667],"DJK3":[6.833333333333336,13.16666666666667],"RrEn":[6.833333333333336,14.000000000000002],"Xk4N":[6.166666666666667,14.000000000000002]},"vertices":["rKzM","DJK3","RrEn","Xk4N"],"texture":0},"YGupBHQC":{"uv":{"45w2":[6.166666666666667,13.16666666666667],"TZDC":[6.833333333333336,13.16666666666667],"wcFp":[6.833333333333336,14.000000000000002],"aSom":[6.166666666666667,14.000000000000002]},"vertices":["45w2","TZDC","wcFp","aSom"],"texture":0},"cCKWYVZL":{"uv":{"45w2":[6.166666666666667,13.16666666666667],"DJK3":[6.833333333333336,13.16666666666667],"rKzM":[6.833333333333336,14.000000000000002],"TZDC":[6.166666666666667,14.000000000000002]},"vertices":["45w2","DJK3","rKzM","TZDC"],"texture":0},"u0ucg4kG":{"uv":{"wcFp":[6.166666666666667,13.16666666666667],"Xk4N":[6.833333333333336,13.16666666666667],"RrEn":[6.833333333333336,14.000000000000002],"aSom":[6.166666666666667,14.000000000000002]},"vertices":["wcFp","Xk4N","RrEn","aSom"],"texture":0},"7KtmH0NZ":{"uv":{"TZDC":[6.166666666666667,13.16666666666667],"rKzM":[6.833333333333336,13.16666666666667],"Xk4N":[6.833333333333336,14.000000000000002],"wcFp":[6.166666666666667,14.000000000000002]},"vertices":["TZDC","rKzM","Xk4N","wcFp"],"texture":0},"xAn5PDyr":{"uv":{"DJK3":[6.166666666666667,13.16666666666667],"45w2":[6.833333333333336,13.16666666666667],"aSom":[6.833333333333336,14.000000000000002],"RrEn":[6.166666666666667,14.000000000000002]},"vertices":["DJK3","45w2","aSom","RrEn"],"texture":0}},"type":"mesh","uuid":"8bd80c81-4c9a-7b60-b216-a736a1296946"},{"name":"cube","color":0,"origin":[3,6,0],"rotation":[0,0,0],"export":true,"visibility":true,"locked":false,"render_order":"default","allow_mirror_modeling":true,"vertices":{"JPrZ":[-2.5,19.000000000000007,-3.2500000000000004],"VKuS":[-2.5,19.000000000000007,-4.25],"dH5v":[-2.5,18.000000000000007,-3.2500000000000004],"fS37":[-2.5,18.000000000000007,-4.25],"x09k":[-3.5,19.000000000000007,-3.2500000000000004],"h8nn":[-3.5,19.000000000000007,-4.25],"Srat":[-3.5,18.000000000000007,-3.2500000000000004],"avn6":[-3.5,18.000000000000007,-4.25]},"faces":{"cNy0eOdx":{"uv":{"VKuS":[5.833333333333337,14.833333333333336],"JPrZ":[5.833333333333337,16],"fS37":[7.000000000000001,14.833333333333336],"dH5v":[7.000000000000001,16]},"vertices":["VKuS","JPrZ","fS37","dH5v"],"texture":0},"KxQWxq6S":{"uv":{"x09k":[5.833333333333337,14.833333333333336],"h8nn":[5.833333333333337,16],"Srat":[7.000000000000001,14.833333333333336],"avn6":[7.000000000000001,16]},"vertices":["x09k","h8nn","Srat","avn6"],"texture":0},"rnDBrD0d":{"uv":{"VKuS":[5.833333333333337,14.833333333333336],"h8nn":[5.833333333333337,16],"JPrZ":[7.000000000000001,14.833333333333336],"x09k":[7.000000000000001,16]},"vertices":["VKuS","h8nn","JPrZ","x09k"],"texture":0},"JYKAsn1v":{"uv":{"dH5v":[5.833333333333337,14.833333333333336],"Srat":[5.833333333333337,16],"fS37":[7.000000000000001,14.833333333333336],"avn6":[7.000000000000001,16]},"vertices":["dH5v","Srat","fS37","avn6"],"texture":0},"w0g2h158":{"uv":{"JPrZ":[5.833333333333337,14.833333333333336],"x09k":[5.833333333333337,16],"dH5v":[7.000000000000001,14.833333333333336],"Srat":[7.000000000000001,16]},"vertices":["JPrZ","x09k","dH5v","Srat"],"texture":0},"XFhRRTd4":{"uv":{"h8nn":[5.833333333333337,14.833333333333336],"VKuS":[5.833333333333337,16],"avn6":[7.000000000000001,14.833333333333336],"fS37":[7.000000000000001,16]},"vertices":["h8nn","VKuS","avn6","fS37"],"texture":0}},"type":"mesh","uuid":"5a97a861-24c8-c647-ae6b-d84d0fb774b0"}],"outliner":[{"name":"root","origin":[0,0,0],"color":0,"uuid":"8ca6699e-74b1-10dc-5d18-29f7e8345ef5","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":[{"name":"Head","origin":[0,28,1],"color":0,"uuid":"9b1cdac1-623c-a07f-13cf-50b4cba2d280","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["f4fd88c4-c51a-c26f-8aa9-bb453799e10d"]},{"name":"Torso","origin":[3,6,0],"color":0,"uuid":"3a163167-946a-9709-bfaa-60c63fb36d88","export":true,"mirror_uv":false,"isOpen":false,"locked":false,"visibility":true,"autouv":0,"children":["65215b08-1d2e-5fd9-7b6a-420c513a6cd9","af8619de-82a9-6b38-0cb3-e92337651c4b","c02d19ae-1514-c463-3cef-bc36b143db8c","7f121268-2dc4-0030-9ee0-28a4713beac2","37b933e1-cdce-3d72-ad97-47e3802e4c10","8bd80c81-4c9a-7b60-b216-a736a1296946","5a97a861-24c8-c647-ae6b-d84d0fb774b0"]},{"name":"RightArm","origin":[4,24,0],"color":0,"uuid":"ed2d6f24-22d1-ce93-f04b-dc7d111638d5","export":true,"mirror_uv":false,"isOpen":false,"locked":false,"visibility":true,"autouv":0,"children":["c4e697be-8660-6427-00c0-afa06e70cebc","c8efb191-d315-a84f-1a06-2fd24842bdbd",{"name":"RightForeArm","origin":[5,20,0],"color":0,"uuid":"9eaf303d-50ac-d9e3-83a4-cfc2e37dc4a7","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["bea3be8a-dc84-bc0b-13b3-252f75fc3294","74f07612-2f24-0b2f-0e7d-21834a0ad1c9","fda5bcad-54d6-3220-bd8f-fef6c2e8c921"]}]},{"name":"LeftArm","origin":[-4,24,0],"color":0,"uuid":"63977548-95f4-0403-28dd-5a90664818a7","export":true,"mirror_uv":false,"isOpen":false,"locked":false,"visibility":true,"autouv":0,"children":["5c5017ef-4df6-e231-2839-f8a7593b4d89","9d2bfdd9-9f9e-cf62-1b7b-c3402aa60763",{"name":"LeftForeArm","origin":[-5,20,0],"color":0,"uuid":"d4ac370e-460f-94e2-d7b3-52297e5dafdc","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["8605a025-f8a0-63af-bcf1-30b2a9a1d398","fe7c8805-4851-e7b2-b0bd-499555411445","9ddd7f1e-7b0d-0a2d-f553-4b57d743d494"]}]},{"name":"LeftLeg","origin":[-2,12,0],"rotation":[0,10,0],"color":0,"uuid":"33305c33-e88a-8856-f4ef-9cd8aaca16be","export":true,"mirror_uv":false,"isOpen":false,"locked":false,"visibility":true,"autouv":0,"children":["d19844b7-2103-d541-5d99-fe8c78f2e999","bbfc975e-5d65-5b8e-2a31-2c4f4a29b1b5",{"name":"LeftForeLeg","origin":[-2.065019850252132,7.7499999999999964,-0.3607400370634182],"color":0,"uuid":"82b9082e-5202-bb7a-c73f-9d9321451afe","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["5e7c80cf-62fb-2eed-a17b-d39629571009","66006983-29a6-b4ac-13dd-4a50573690ee"]}]},{"name":"RightLeg","origin":[2,12,0],"rotation":[0,-10,0],"color":0,"uuid":"57ae16fb-51da-232e-e844-6f4d46575148","export":true,"mirror_uv":false,"isOpen":false,"locked":false,"visibility":true,"autouv":0,"children":["592a33ab-9781-44ed-bb8b-c81b68f79828","f9a319b2-81d0-be88-c0df-8c9f7311bdfc",{"name":"RightForeLeg","origin":[2.065019850252132,7.7499999999999964,-0.3607400370634182],"color":0,"uuid":"2ada42b4-e4da-6dec-0936-a4f20ff2d274","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["3d3d5b82-6144-1f2e-3152-9da97339c4e7","f77d65cd-b85d-ae43-738e-f99154c6696f"]}]}]}],"textures":[{"path":"/home/akira/Documents/made-in-akira/3d_models/missy/missy.png","name":"missy.png","folder":"","namespace":"","id":"0","width":96,"height":96,"uv_width":16,"uv_height":16,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"0ac2463b-3aad-b348-2476-75e9cc6263f6","relative_path":"../missy.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAAAXNSR0IArs4c6QAAC6NJREFUeF7tXU2IJMUSzvaHhYUBF+exntaDiIKrMvQKIsK0LJ509ST+PND3PMwIgle9zXrTq7DgzME/UM+6igcP0wMigtssysjTg4dZWNjFmd3DgI/lvaElqiqqI6MiMyOzqqeq3a5Lb1dlVmZ9X8QXkZHVs73xeDw2NY/r16+b/f396LssLCyYY8eOBfvd2P0z2IY3OLJ4NDsl9cVrcH00Gpl+v9/aZ68uAQA+HCkEQL8TJ04EwY0hwAf8vrnVLC4escabaQIQ/GkT4LJkiTkgwEUYJwDabe/8ZzY9gIMPcpLiBRoPiCHA505IACWIErC6uhr0xiYaXLhwoZS8WhLE5SeFBA0BMRIUAojq/+7uDbOzs515wKlTpwwAk3r8/5Xv1V0f/eUNs76+no2bTEAT8jONGEBRAItfMAcGPuGg/8Z2M0cABR61P8XyEYCmPQDB1ppj5wkAwDFV5ODjQ6ZofywBaM0hjdcC36QHxMgPjBstQS7gpeyHEqYBQ+MBoNX0ACnhUqMZS2qj9QCIEXBIcYISAODC8cMD7zmnNDUCJPBD8hQiAAIwl5WbigCf9UsekAW7IiUNga8JwpSAusDfuLFbscorV644syBq9Ske4PKGKA/Qyg8H20cCbevzAN+CKkZyJOCxv48AaIPAY3utBGF7SYq8BKCM+AIuAChZv4sEH1gSAYcBvIYArQfAvTAOUKtXecC1a9eCxTjIcjRyopUfeq/jRxeDxhybWvosng/WhAdIBKg9wEdAanqplR+YpETA/sKfxuznXhZ7xIAP9w4RoB0/JhW1JGhnZ2ccEzRDnqABn3tArIX7QDksAmIA5/OtEBCSDgnUlJRTGufo0eNaI7PaxQLtGqSOB6SSIBJAwaGTjfEO10Ni0JauHxzkGyfaoyngcbzOEOCTFkrCpUuXgrtYtH0IWC0BTQJ/5Mgk8GtXwvAcPCV1PZtvFQx9nB4g3ZAS4yoz0LTUZe1QT5L68zIDzqEJwCnQLrA6Q4DkAVrL90lMaM/38uXLISdRXbfAXij2pxWZVAwBGi8IWX8tD3B5iA+haRMgWjkQQMFHQuhEi+udJiCUcmLgdhEQAh/6pXqARl7KeXECCvChtoRbkjE7Yq5YoLH+aA8I+X8d+YklIAp0K5WbvDKzsG9nXSkE0FunpKJRQdhHgC/gQj/N3gD3gGSQHYDz+f9tCHClmhrZoaAAAVrQeTk65J2u664Xs1p5KwJKEakPQj0gFngc05WG4vUU0KWXs/AcjEdfztK+mAXkrKyslFCNNoYWbP2VQfl9Y2Mja6t5464XSwANzEhAKvgwYxcBIeCpFacaEPSjBGycersC2sqFtewcJ8A3JiVgtfdM5Z7r4y8n7wXFEoCZD5aocSKpJIT2e+mDNgU6JR7TUAmokfnN9M19BgCLlSfwACAU78G9AYmN9oBSGopNGfieCj4CcVjWLlktekAGFntRd2P0mVnpv2QALK1U0Xaj1a8M3oP3768/nb+YleIB6AV1wYf+rt2vJq3dNQ6UwdEDACAAzAVUCgEAsEQsJbQHGzIpGy+g/3UsH60RCGgabJc+S2S3/nLuev9schZUJ/gdVt/V0dmeb6y6z//qA0/WepQeTOCedx+vdZOudv79ze9MiIAVc6aWAZ57+a1aj58RAJoEx9WrV8329nb279OnT1vnYr934R5fPPX+bBDw7NevlSwiASdPnrTOxX6HzrF9ePu699AQ0LQEffDLt1kglw4IylyybnoJaooAH/CcDEqEKEEoN1SWYiWorfb4sCCnGg9oKga8/sk72dCSleOcKEkYO+YEdCEI8xhAtRjYg7hQV88Psz9anMYDmpIgycrh3K2357/OOfjfgegd8xhQcx2EQdUVAygBSJIzBlD9BKtvS8cxHU4dH2OXxgM6FQPmBMSvqRpZiNEYgFOYNd3H+R4/nr/qqM2Cph0DKKU3xTqAypZGgpoioJF1AGWrrg53ob+GgE7GgFlcgEmEHyYB8dEj75GloVIMmMX8n8ctDQFNSVAtAm7mcnQnCODl6NT8u23d5zFM4wF1Y8CGOe/d8Al5hrcW1DagsePPLAG+WtCsrQcoCRoPqCtBoR03lQfMY0AIJvf1RgjAGCCVIvDt362X/+usDaVPv9rTJTu8JY9T0hwOY0+40RjgqgUBCV0jQEP6zBDgqgWBlVEP8NX0NYBo20hxJzYzg7E0BHQiBmiBmcV2IY2eEzBlVkMEtL4OmPLzd/72cwJapqh1CWr5+Vsffk5AyxTMJWhOQMsItDx86xIU/PP19o8BCVxwofhl4HBozJYLSdLOsJstG7N37t5WKbjzj3+2Or7/b0c7wYc5F8AC+HAQArDbANtYn+x5736hVQDMR/e3On4NAoADwhAjYPKrWSQLPuHshJ7sye++q1UAukmA1/ILvDj4y7YX2KhSGbKv7G038+dqUlnsngRpwMenZfIzLEiwrb8KDfWB88NvUrFrpN+Z8btR91laWopqf/HiRW97W4JSwC/0nwlLOegTy8ZssgBNh3mw8IA7n+pbE937emS+3/3ZPLb4kOHXsKGvjba/xgMk0EPAwhyxn69tb7wZ+b8olehNgi9aPqo8RZKCTSMAtukyARz4Esh//Vq1akcwD5EQJsDKImUXGRYWzqVH41BdJYCC7wWeU8GIqEEAERUacNmACD5a/1kzNANcHxRtJcs/DA+AMUDGzrzyb1GHQaa4BInAQ2/J6l3qTkhIJIBlLRYBNpzU+gH8swX4OX1DY5aNGWy5wzJmQdOIAbEENAJ+QcrSTy8a8JxIAoR00QM+5PXDrRxqCnEeE8LgQz8fARoAXYEarFvTn3oA/fNjt3382MS+Y6yfeAWQAEcgCG8WvxR3WGlFfogHbJXrYTNcHlqWDt+z1XHpAYTc7Fo+HhAgZTlaAF0So+3vIuCRn1/PwXv4c5fQeM8j+NjIRUI1CAPgg4G9yqVDAegAKpwjBGSCUyEB5Cfv7FqKuQjIyClSUZ+GhzQ+dH0aBJSW//DnJuQFvfEaegAKiZC7FJZMAZfy/uxcZvH5p7NAR651iQCYfkWzI+SHAo82G0GAkKsICyhL61l1p6TQR8LyII8PxdElAsSAGSCgIjVMssIEDDbHpbUycHKMWNZTgCsVmTNy0LolD8D7k3FmkQAOui9WYDbkChi9MRCQAVdYpkQCAxXAHxYpJ5WiLDZYXiN4VTlOLlF1CDj/8YeqUoV2HRBd5wkE6JD1A+wTAigJlK4CfASXB9PQ95xczv+EmL1zchakCcJNE1DqNim41c2CQjUj4gHhoAkkQN6Piy3MbqhQVWSo4nu2V3SRAE5EDAna9BPHsD2gOGvpOy6qilSSg4+AZ30w+5EED1Nb+CTH3nOfBqudLgmZlgfQ+ZWB2Sc3d9xilraeL7sBYRr5KSUI9HyQWTcLu0T74RoFH62/tHghYOenXGWIPHrsPReWIFdJWkuAq79UC5JsRxsbSk/56P5gCaL0gM3Bmv9vpmUk8PIa2ViEoGpttrPvFQLsqKHxAAlAbb0/VKrQ7AdIsQHPUXmiGQ+QFtL/zAO8BBTg4zqWrwEyA7cCrA98eS08SwRI0iR5TElOYDesIICuhOntbMAk8KsEsOlk1u/aK8vbziIBoQpn6DpFqbeJ6wAPla6NFtv6yQ1QdlwFoIggDE2leo5Wgnz94VqMBEH7ELjOXTQHvhUCJEXnfpF9p+WGPNrmzUI78mwiIQ/oIgEubefk0O+uUrdFAMfOt6FuZz++bEegngy09w9/GjoLBDg3cojH/PjQuRIIutfgJYBDZ1U7Cy/IrT7C7FnTWSRAUhNfxgMEOQkoa0GVu3oEnNaGsJ+GBIEnLQE8FY2NAVL/lBjgCZVJl8hK2CqrFTebIFahg6afIfA9DjInQFyIYSjOP+E9h0p8RQLKVNOD8pwAp3f0xmtr4+rOFSIWkKHS8j3tAuEBPCCTAuHNOJy1tJqlEpTavwsS9BftC9Ig9JslQQAAAABJRU5ErkJggg=="}]} \ No newline at end of file diff --git a/3d_models/missy_physical/script.lua b/3d_models/missy_physical/script.lua new file mode 100644 index 0000000..7944465 --- /dev/null +++ b/3d_models/missy_physical/script.lua @@ -0,0 +1,6 @@ +-- Autogenerated Essential => Figura script +vanilla_model.PLAYER:setVisible(false) +vanilla_model.ARMOR:setVisible(false) +models.missy:setVisible(true) +vanilla_model.HELD_ITEMS:setVisible(true) +vanilla_model.ELYTRA:setVisible(true) diff --git a/drawings/astra doodles to make into real drawings.aseprite b/drawings/astra doodles to make into real drawings.aseprite index e63eefc..fb14f8a 100644 Binary files a/drawings/astra doodles to make into real drawings.aseprite and b/drawings/astra doodles to make into real drawings.aseprite differ diff --git a/drawings/astra doodles to make into real drawings.png b/drawings/astra doodles to make into real drawings.png index f1a07a6..960eb63 100644 Binary files a/drawings/astra doodles to make into real drawings.png and b/drawings/astra doodles to make into real drawings.png differ diff --git a/graphic_design/akira corru battles.png b/graphic_design/akira corru battles.png new file mode 100644 index 0000000..dabfa08 Binary files /dev/null and b/graphic_design/akira corru battles.png differ diff --git a/memes/corrucraft cooperation.png b/memes/corrucraft cooperation.png new file mode 100644 index 0000000..8ee65a1 Binary files /dev/null and b/memes/corrucraft cooperation.png differ diff --git a/memes/corrucraft cooperation.xcf b/memes/corrucraft cooperation.xcf new file mode 100644 index 0000000..f35ced8 Binary files /dev/null and b/memes/corrucraft cooperation.xcf differ diff --git a/pixel_art/RPGchars/undertale-deltarune/darkmode_akira.png b/pixel_art/RPGchars/undertale-deltarune/darkmode_akira.png new file mode 100644 index 0000000..60450e0 Binary files /dev/null and b/pixel_art/RPGchars/undertale-deltarune/darkmode_akira.png differ diff --git a/writings/Minecraft Splashes.txt b/writings/Minecraft Splashes.txt index 99a5ec7..de28a4d 100644 --- a/writings/Minecraft Splashes.txt +++ b/writings/Minecraft Splashes.txt @@ -323,7 +323,7 @@ Happy Holidays! What did you expect? Chaps, are we cooked? Baking Bread! -Gakvu: Gakvu +Gakvu: "Gakvu" A second, funnier Minecraft! A vision from an angry god! The wisdom of a glogged! @@ -332,16 +332,27 @@ Can't you do it sometime? Pushed it in too far... Green inside! Intel inside! -AMD inside! +AMD outside! +Groovy, and only sometimes glooby! +Girls... +Boys... +Enbys... +All The Mods 10... +Nvidia beneath the soil, buried 1.8288 meters under! It is now safe to turn off your computer. It is no longer safe to turn off your computer. 0625. Willpower, though useful, does not alone a powerful being make. 1009. Early to bed and early to rise makes a "man" healthy but socially dead. 1111. A great change is coming. 1119. Everything not saved will be lost. +1224. At the end of the day... It's night! 1225. The holidays always come, whether you like them or not. +1312. No gods, no masters, no exceptions. 1604. Some conflicts can be resolved. Communicate before it's too late. 1614. The next package in your mailbox will have more value than you initially thought. 1707. Choose your battles. 2020. Nothing is sacred. -2506. Beware not gods, but those who worship them. +2506. Beware not gods, but those who worship them. +2612. Treat with love the relations you treasure. +3200. Don't make a promise you can't keep. If you do, a storm will find you! +4560. Minds are good at being convinced by repeated affirmation.