diff --git a/ConcerningEdgeCases.md b/ConcerningEdgeCases.md index 9534f89..ac51ebd 100644 --- a/ConcerningEdgeCases.md +++ b/ConcerningEdgeCases.md @@ -1,3 +1,7 @@ +# What to be concerned for internet syncing +1. Server received too late (solution: force confirmation) +2. Client received too late (solution: prediction and frame chasing, big impact on user experience because the graphics will be inconsistent if mismatches occur too often) + # Potential avalanche from local lag Under the current "input delay" algorithm, the lag of a single player would cause all the other players to receive outdated commands, e.g. when at a certain moment - player#1: renderFrameId = 100, significantly lagged due to local CPU overheated @@ -7,9 +11,9 @@ Under the current "input delay" algorithm, the lag of a single player would caus players #2, #3 #4 would receive "outdated(in their subjective feelings) but all-confirmed commands" from then on, thus forced to rollback and chase many frames - the lag due to "large range of frame-chasing" would then further deteriorate the situation - like an avalanche. -In a "no-server & p2p" setup, I couldn't think of a proper way to cope with such edge case. Solely on the frontend we could only mitigate the impact to players #2, #3, #4, e.g. a potential lag due to "large range of frame-chasing" is proactively avoided in `/frontend/assets/scripts/Map.js, function update(dt)`. +In a "no-server & p2p" setup, I couldn't think of a proper way to cope with such edge case. Solely on the frontend we could only mitigate the impact to players #2, #3, #4, e.g. a potential lag due to "large range of frame-chasing" is proactively avoided in `/frontend/assets/scripts/Map.js, function update(dt)`. -However in a "server as authority" setup, the server could force confirming an inputFrame without player#1's upsync, and notify player#1 to apply a "roomDownsyncFrame" as well as drop all its outdated local inputFrames. +To be fair, **a "p2p" setup can reduce round-trip to single-trip**, but w/o a point of authority in such case player#1 needs a way to recognize the slowness (e.g. check the received peer inputs) and ticks faster for a while to catch up; in contrast in a "server as authority" setup, the server could force confirming an inputFrame without player#1's upsync, and notify player#1 to apply a "roomDownsyncFrame" as well as drop all its outdated local inputFrames. # Start up frames renderFrameId | generatedInputFrameId | toApplyInputFrameId diff --git a/README.md b/README.md index 94d44af..da67362 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,11 @@ This project is a demo for a websocket-based rollback netcode inspired by [GGPO](https://github.com/pond3r/ggpo/blob/master/doc/README.md). -_(the following gif is sped up to ~1.33x for file size reduction, kindly note that around ~8s countdown, the attack animation is resumed from a partial progress)_ +_(the following gif is sped up to ~1.5x for file size reduction, kindly note that animations are resumed from a partial progress)_ -![gif_demo](./charts/smooth_melee_attack_spedup.gif) +![gif_demo](./charts/jump_sync_spedup.gif) -Please also checkout [this demo video](https://pan.baidu.com/s/172AmIKxbFgGXZzWVqxNUPA?pwd=e2tp) to see how this demo carries out a full 60fps synchronization with the help of _batched input upsync/downsync_ for satisfying network I/O performance. +Please also checkout [this demo video](https://pan.baidu.com/s/1Lmot9cb0pYylfUvC8G4fDg?pwd=ia97) to see how this demo carries out a full 60fps synchronization with the help of _batched input upsync/downsync_ for satisfying network I/O performance. The video mainly shows the following features. - The backend receives inputs from frontend peers and broadcasts back for synchronization. diff --git a/battle_srv/models/pb_type_convert.go b/battle_srv/models/pb_type_convert.go index e854df8..ae42687 100644 --- a/battle_srv/models/pb_type_convert.go +++ b/battle_srv/models/pb_type_convert.go @@ -17,12 +17,16 @@ func toPbPlayers(modelInstances map[int32]*Player, withMetaInfo bool) map[int32] VirtualGridY: last.VirtualGridY, DirX: last.DirX, DirY: last.DirY, - ColliderRadius: last.ColliderRadius, + VelX: last.VelX, + VelY: last.VelY, Speed: last.Speed, BattleState: last.BattleState, + CharacterState: last.CharacterState, + InAir: last.InAir, + JoinIndex: last.JoinIndex, + ColliderRadius: last.ColliderRadius, Score: last.Score, Removed: last.Removed, - JoinIndex: last.JoinIndex, } if withMetaInfo { toRet[k].Name = last.Name diff --git a/battle_srv/models/room.go b/battle_srv/models/room.go index 140385e..5a56440 100644 --- a/battle_srv/models/room.go +++ b/battle_srv/models/room.go @@ -61,10 +61,13 @@ const ( ) const ( - ATK_CHARACTER_STATE_IDLE1 = 0 - ATK_CHARACTER_STATE_WALKING = 1 - ATK_CHARACTER_STATE_ATK1 = 2 - ATK_CHARACTER_STATE_ATKED1 = 3 + ATK_CHARACTER_STATE_IDLE1 = 0 + ATK_CHARACTER_STATE_WALKING = 1 + ATK_CHARACTER_STATE_ATK1 = 2 + ATK_CHARACTER_STATE_ATKED1 = 3 + ATK_CHARACTER_STATE_INAIR_IDLE1 = 4 + ATK_CHARACTER_STATE_INAIR_ATK1 = 5 + ATK_CHARACTER_STATE_INAIR_ATKED1 = 6 ) const ( @@ -198,6 +201,7 @@ func (pR *Room) AddPlayerIfPossible(pPlayerFromDbInit *Player, session *websocke pPlayerFromDbInit.BattleState = PlayerBattleStateIns.ADDED_PENDING_BATTLE_COLLIDER_ACK pPlayerFromDbInit.Speed = pR.PlayerDefaultSpeed // Hardcoded pPlayerFromDbInit.ColliderRadius = DEFAULT_PLAYER_RADIUS // Hardcoded + pPlayerFromDbInit.InAir = true // Hardcoded pR.Players[playerId] = pPlayerFromDbInit pR.PlayerDownsyncSessionDict[playerId] = session @@ -229,6 +233,7 @@ func (pR *Room) ReAddPlayerIfPossible(pTmpPlayerInstance *Player, session *webso pEffectiveInRoomPlayerInstance.BattleState = PlayerBattleStateIns.READDED_PENDING_BATTLE_COLLIDER_ACK pEffectiveInRoomPlayerInstance.Speed = pR.PlayerDefaultSpeed // Hardcoded pEffectiveInRoomPlayerInstance.ColliderRadius = DEFAULT_PLAYER_RADIUS // Hardcoded + pEffectiveInRoomPlayerInstance.InAir = true // Hardcoded pR.PlayerDownsyncSessionDict[playerId] = session pR.PlayerSignalToCloseDict[playerId] = signalToCloseConnOfThisPlayer @@ -419,7 +424,7 @@ func (pR *Room) StartBattle() { stCalculation := utils.UnixtimeNano() elapsedNanosSinceLastFrameIdTriggered := stCalculation - pR.LastRenderFrameIdTriggeredAt if elapsedNanosSinceLastFrameIdTriggered < pR.RollbackEstimatedDtNanos { - Logger.Warn(fmt.Sprintf("renderFrameId=%v@roomId=%v: Is backend running too fast? elapsedNanosSinceLastFrameIdTriggered=%v", pR.RenderFrameId, pR.Id, elapsedNanosSinceLastFrameIdTriggered)) + Logger.Debug(fmt.Sprintf("renderFrameId=%v@roomId=%v: Is backend running too fast? elapsedNanosSinceLastFrameIdTriggered=%v", pR.RenderFrameId, pR.Id, elapsedNanosSinceLastFrameIdTriggered)) } if pR.RenderFrameId > pR.BattleDurationFrames { @@ -430,24 +435,6 @@ func (pR *Room) StartBattle() { return } - if 0 == pR.RenderFrameId { - for _, player := range pR.PlayersArr { - playerId := player.Id - thatPlayerBattleState := atomic.LoadInt32(&(player.BattleState)) // Might be changed in "OnPlayerDisconnected/OnPlayerLost" from other threads - // [WARNING] DON'T try to send any message to an inactive player! - switch thatPlayerBattleState { - case PlayerBattleStateIns.DISCONNECTED: - case PlayerBattleStateIns.LOST: - case PlayerBattleStateIns.EXPELLED_DURING_GAME: - case PlayerBattleStateIns.EXPELLED_IN_DISMISSAL: - continue - } - kickoffFrame := pR.RenderFrameBuffer.GetByFrameId(0).(*RoomDownsyncFrame) - pR.sendSafely(kickoffFrame, nil, DOWNSYNC_MSG_ACT_BATTLE_START, playerId, true) - } - Logger.Info(fmt.Sprintf("In `battleMainLoop` for roomId=%v sent out kickoffFrame", pR.Id)) - } - /* [WARNING] Golang "time.Sleep" is known to be taking longer than specified time to wake up at millisecond granularity, as discussed in https://github.com/golang/go/issues/44343 @@ -457,6 +444,24 @@ func (pR *Room) StartBattle() { nextRenderFrameId := int32((totalElapsedNanos + pR.dilutedRollbackEstimatedDtNanos - 1) / pR.dilutedRollbackEstimatedDtNanos) // fast ceiling toSleepNanos := int64(0) if nextRenderFrameId > pR.RenderFrameId { + if 0 == pR.RenderFrameId { + // It's important to send kickoff frame iff "0 == pR.RenderFrameId && nextRenderFrameId > pR.RenderFrameId", otherwise it might send duplicate kickoff frames + for _, player := range pR.PlayersArr { + playerId := player.Id + thatPlayerBattleState := atomic.LoadInt32(&(player.BattleState)) // Might be changed in "OnPlayerDisconnected/OnPlayerLost" from other threads + // [WARNING] DON'T try to send any message to an inactive player! + switch thatPlayerBattleState { + case PlayerBattleStateIns.DISCONNECTED: + case PlayerBattleStateIns.LOST: + case PlayerBattleStateIns.EXPELLED_DURING_GAME: + case PlayerBattleStateIns.EXPELLED_IN_DISMISSAL: + continue + } + kickoffFrame := pR.RenderFrameBuffer.GetByFrameId(0).(*RoomDownsyncFrame) + pR.sendSafely(kickoffFrame, nil, DOWNSYNC_MSG_ACT_BATTLE_START, playerId, true) + } + Logger.Info(fmt.Sprintf("In `battleMainLoop` for roomId=%v sent out kickoffFrame", pR.Id)) + } prevRenderFrameId := pR.RenderFrameId pR.RenderFrameId = nextRenderFrameId @@ -563,12 +568,12 @@ func (pR *Room) OnBattleCmdReceived(pReq *WsReq) { atomic.StoreInt32(&(player.AckingFrameId), ackingFrameId) atomic.StoreInt32(&(player.AckingInputFrameId), ackingInputFrameId) - Logger.Debug(fmt.Sprintf("OnBattleCmdReceived-InputsBufferLock about to lock: roomId=%v, fromPlayerId=%v", pR.Id, playerId)) + //Logger.Debug(fmt.Sprintf("OnBattleCmdReceived-InputsBufferLock about to lock: roomId=%v, fromPlayerId=%v", pR.Id, playerId)) pR.InputsBufferLock.Lock() - Logger.Debug(fmt.Sprintf("OnBattleCmdReceived-InputsBufferLock locked: roomId=%v, fromPlayerId=%v", pR.Id, playerId)) + //Logger.Debug(fmt.Sprintf("OnBattleCmdReceived-InputsBufferLock locked: roomId=%v, fromPlayerId=%v", pR.Id, playerId)) defer func() { pR.InputsBufferLock.Unlock() - Logger.Debug(fmt.Sprintf("OnBattleCmdReceived-InputsBufferLock unlocked: roomId=%v, fromPlayerId=%v", pR.Id, playerId)) + //Logger.Debug(fmt.Sprintf("OnBattleCmdReceived-InputsBufferLock unlocked: roomId=%v, fromPlayerId=%v", pR.Id, playerId)) }() inputsBufferSnapshot := pR.markConfirmationIfApplicable(inputFrameUpsyncBatch, playerId, player) @@ -749,7 +754,7 @@ func (pR *Room) OnDismissed() { pR.RollbackEstimatedDtNanos = 16666666 // A little smaller than the actual per frame time, just for logging FAST FRAME dilutedServerFps := float64(55.0) pR.dilutedRollbackEstimatedDtNanos = int64(float64(pR.RollbackEstimatedDtNanos) * float64(pR.ServerFps) / dilutedServerFps) - pR.BattleDurationFrames = 30 * pR.ServerFps + pR.BattleDurationFrames = 60 * pR.ServerFps pR.BattleDurationNanos = int64(pR.BattleDurationFrames) * (pR.RollbackEstimatedDtNanos + 1) pR.InputFrameUpsyncDelayTolerance = 2 pR.MaxChasingRenderFramesPerUpdate = 8 @@ -770,7 +775,7 @@ func (pR *Room) OnDismissed() { }, HitboxOffset: float64(12.0), // should be about the radius of the PlayerCollider HitboxSize: &Vec2D{ - X: float64(23.0), + X: float64(24.0), Y: float64(32.0), }, @@ -782,6 +787,12 @@ func (pR *Room) OnDismissed() { Damage: int32(5), } + pR.SnapIntoPlatformOverlap = float64(0.1) + pR.SnapIntoPlatformThreshold = float64(0.5) + pR.JumpingInitVelY = int32(float64(7) * pR.WorldToVirtualGridRatio) + pR.GravityX = 0 + pR.GravityY = -int32(float64(0.5) * pR.WorldToVirtualGridRatio) // makes all "playerCollider.Y" a multiple of 0.5 in all cases + pR.ChooseStage() pR.EffectivePlayerCount = 0 @@ -1277,7 +1288,10 @@ func (pR *Room) applyInputFrameDownsyncDynamicsOnSingleRenderFrame(delayedInputF VirtualGridY: currPlayerDownsync.VirtualGridY, DirX: currPlayerDownsync.DirX, DirY: currPlayerDownsync.DirY, + VelX: currPlayerDownsync.VelX, + VelY: currPlayerDownsync.VelY, CharacterState: currPlayerDownsync.CharacterState, + InAir: true, Speed: currPlayerDownsync.Speed, BattleState: currPlayerDownsync.BattleState, Score: currPlayerDownsync.Score, @@ -1292,30 +1306,108 @@ func (pR *Room) applyInputFrameDownsyncDynamicsOnSingleRenderFrame(delayedInputF } } - toRet := &RoomDownsyncFrame{ - Id: currRenderFrame.Id + 1, - Players: nextRenderFramePlayers, - CountdownNanos: (pR.BattleDurationNanos - int64(currRenderFrame.Id)*pR.RollbackEstimatedDtNanos), - MeleeBullets: make([]*MeleeBullet, 0), // Is there any better way to reduce malloc/free impact, e.g. smart prediction for fixed memory allocation? + nextRenderFrameMeleeBullets := make([]*MeleeBullet, 0, len(currRenderFrame.MeleeBullets)) // Is there any better way to reduce malloc/free impact, e.g. smart prediction for fixed memory allocation? + effPushbacks := make([]Vec2D, pR.Capacity) + hardPushbackNorms := make([][]Vec2D, pR.Capacity) + + // 1. Process player inputs + if nil != delayedInputFrame { + var delayedInputFrameForPrevRenderFrame *InputFrameDownsync = nil + tmp := pR.InputsBuffer.GetByFrameId(pR.ConvertToInputFrameId(currRenderFrame.Id-1, pR.InputDelayFrames)) + if nil != tmp { + delayedInputFrameForPrevRenderFrame = tmp.(*InputFrameDownsync) + } + inputList := delayedInputFrame.InputList + for _, player := range pR.PlayersArr { + playerId := player.Id + joinIndex := player.JoinIndex + currPlayerDownsync, thatPlayerInNextFrame := currRenderFrame.Players[playerId], nextRenderFramePlayers[playerId] + if 0 < thatPlayerInNextFrame.FramesToRecover { + continue + } + decodedInput := pR.decodeInput(inputList[joinIndex-1]) + prevBtnALevel, prevBtnBLevel := int32(0), int32(0) + if nil != delayedInputFrameForPrevRenderFrame { + prevDecodedInput := pR.decodeInput(delayedInputFrameForPrevRenderFrame.InputList[joinIndex-1]) + prevBtnALevel = prevDecodedInput.BtnALevel + prevBtnBLevel = prevDecodedInput.BtnBLevel + } + + if decodedInput.BtnBLevel > prevBtnBLevel { + characStateAlreadyInAir := false + if ATK_CHARACTER_STATE_INAIR_IDLE1 == thatPlayerInNextFrame.CharacterState || ATK_CHARACTER_STATE_INAIR_ATK1 == thatPlayerInNextFrame.CharacterState || ATK_CHARACTER_STATE_INAIR_ATKED1 == thatPlayerInNextFrame.CharacterState { + characStateAlreadyInAir = true + } + characStateIsInterruptWaivable := false + if ATK_CHARACTER_STATE_IDLE1 == thatPlayerInNextFrame.CharacterState || ATK_CHARACTER_STATE_WALKING == thatPlayerInNextFrame.CharacterState || ATK_CHARACTER_STATE_INAIR_IDLE1 == thatPlayerInNextFrame.CharacterState { + characStateIsInterruptWaivable = true + } + if !characStateAlreadyInAir && characStateIsInterruptWaivable { + thatPlayerInNextFrame.VelY = pR.JumpingInitVelY + if 1 == currPlayerDownsync.JoinIndex { + Logger.Info(fmt.Sprintf("playerId=%v, joinIndex=%v jumped at {renderFrame.id: %d, virtualX: %d, virtualY: %d, nextVelX: %d, nextVelY: %d}, delayedInputFrame.id=%d", playerId, joinIndex, currRenderFrame.Id, currPlayerDownsync.VirtualGridX, currPlayerDownsync.VirtualGridY, thatPlayerInNextFrame.VelX, thatPlayerInNextFrame.VelY, delayedInputFrame.InputFrameId)) + } + } + } + + if decodedInput.BtnALevel > prevBtnALevel { + punchSkillId := int32(1) + punchConfig := pR.MeleeSkillConfig[punchSkillId] + var newMeleeBullet MeleeBullet = *punchConfig + newMeleeBullet.BattleLocalId = pR.BulletBattleLocalIdCounter + pR.BulletBattleLocalIdCounter += 1 + newMeleeBullet.OffenderJoinIndex = joinIndex + newMeleeBullet.OffenderPlayerId = playerId + newMeleeBullet.OriginatedRenderFrameId = currRenderFrame.Id + nextRenderFrameMeleeBullets = append(nextRenderFrameMeleeBullets, &newMeleeBullet) + thatPlayerInNextFrame.FramesToRecover = newMeleeBullet.RecoveryFrames + thatPlayerInNextFrame.CharacterState = ATK_CHARACTER_STATE_ATK1 + if false == currPlayerDownsync.InAir { + thatPlayerInNextFrame.VelX = 0 + } + Logger.Debug(fmt.Sprintf("roomId=%v, playerId=%v triggered a rising-edge of btnA at currRenderFrame.id=%v, delayedInputFrame.id=%v", pR.Id, playerId, currRenderFrame.Id, delayedInputFrame.InputFrameId)) + + } else if decodedInput.BtnALevel < prevBtnALevel { + Logger.Debug(fmt.Sprintf("roomId=%v, playerId=%v triggered a falling-edge of btnA at currRenderFrame.id=%v, delayedInputFrame.id=%v", pR.Id, playerId, currRenderFrame.Id, delayedInputFrame.InputFrameId)) + } else { + // No bullet trigger, process movement inputs + // Note that by now "0 == thatPlayerInNextFrame.FramesToRecover", we should change "CharacterState" to "WALKING" or "IDLE" depending on player inputs + if 0 != decodedInput.Dx || 0 != decodedInput.Dy { + thatPlayerInNextFrame.DirX = decodedInput.Dx + thatPlayerInNextFrame.DirY = decodedInput.Dy + thatPlayerInNextFrame.VelX = decodedInput.Dx * currPlayerDownsync.Speed + thatPlayerInNextFrame.CharacterState = ATK_CHARACTER_STATE_WALKING + } else { + thatPlayerInNextFrame.CharacterState = ATK_CHARACTER_STATE_IDLE1 + thatPlayerInNextFrame.VelX = 0 + } + } + } } - bulletPushbacks := make([]Vec2D, pR.Capacity) // Guaranteed determinism regardless of traversal order - effPushbacks := make([]Vec2D, pR.Capacity) // Guaranteed determinism regardless of traversal order - - // Reset playerCollider position from the "virtual grid position" + // 2. Process player movement for _, player := range pR.PlayersArr { playerId := player.Id joinIndex := player.JoinIndex - bulletPushbacks[joinIndex-1].X, bulletPushbacks[joinIndex-1].Y = float64(0), float64(0) effPushbacks[joinIndex-1].X, effPushbacks[joinIndex-1].Y = float64(0), float64(0) - currPlayerDownsync := currRenderFrame.Players[playerId] - newVx, newVy := currPlayerDownsync.VirtualGridX, currPlayerDownsync.VirtualGridY collisionPlayerIndex := COLLISION_PLAYER_INDEX_PREFIX + joinIndex playerCollider := collisionSysMap[collisionPlayerIndex] - playerCollider.X, playerCollider.Y = VirtualGridToPolygonColliderAnchorPos(newVx, newVy, player.ColliderRadius, player.ColliderRadius, pR.collisionSpaceOffsetX, pR.collisionSpaceOffsetY, pR.VirtualGridToWorldRatio) + currPlayerDownsync, thatPlayerInNextFrame := currRenderFrame.Players[playerId], nextRenderFramePlayers[playerId] + // Reset playerCollider position from the "virtual grid position" + newVx, newVy := currPlayerDownsync.VirtualGridX+currPlayerDownsync.VelX, currPlayerDownsync.VirtualGridY+currPlayerDownsync.VelY + + colliderWidth, colliderHeight := player.ColliderRadius*2, player.ColliderRadius*4 + playerCollider.X, playerCollider.Y = VirtualGridToPolygonColliderBLPos(newVx, newVy, colliderWidth*0.5, colliderHeight*0.5, pR.SnapIntoPlatformOverlap, pR.collisionSpaceOffsetX, pR.collisionSpaceOffsetY, pR.VirtualGridToWorldRatio) + // Update in the collision system + playerCollider.Update() + + if currPlayerDownsync.InAir { + thatPlayerInNextFrame.VelX += pR.GravityX + thatPlayerInNextFrame.VelY += pR.GravityY + } } - // Check bullet-anything collisions first, because the pushbacks caused by bullets might later be reverted by player-barrier collision + // 3. Add bullet colliders into collision system bulletColliders := make(map[int32]*resolv.Object, 0) // Will all be removed at the end of `applyInputFrameDownsyncDynamicsOnSingleRenderFrame` due to the need for being rollback-compatible removedBulletsAtCurrFrame := make(map[int32]int32, 0) for _, meleeBullet := range currRenderFrame.MeleeBullets { @@ -1332,7 +1424,7 @@ func (pR *Room) applyInputFrameDownsyncDynamicsOnSingleRenderFrame(delayedInputF offenderWx, offenderWy := VirtualGridToWorldPos(offender.VirtualGridX, offender.VirtualGridY, pR.VirtualGridToWorldRatio) bulletWx, bulletWy := offenderWx+xfac*meleeBullet.HitboxOffset, offenderWy - newBulletCollider := GenerateRectCollider(bulletWx, bulletWy, meleeBullet.HitboxSize.X, meleeBullet.HitboxSize.Y, pR.collisionSpaceOffsetX, pR.collisionSpaceOffsetY, "MeleeBullet") + newBulletCollider := GenerateRectCollider(bulletWx, bulletWy, meleeBullet.HitboxSize.X, meleeBullet.HitboxSize.Y, 0, pR.collisionSpaceOffsetX, pR.collisionSpaceOffsetY, "MeleeBullet") newBulletCollider.Data = meleeBullet pR.Space.Add(newBulletCollider) collisionSysMap[collisionBulletIndex] = newBulletCollider @@ -1342,6 +1434,98 @@ func (pR *Room) applyInputFrameDownsyncDynamicsOnSingleRenderFrame(delayedInputF } } + // 4. Invoke collision system stepping (no-op for backend collision lib) + + // 5. Calc pushbacks for each player (after its movement) w/o bullets + for _, player := range pR.PlayersArr { + joinIndex := player.JoinIndex + playerId := player.Id + collisionPlayerIndex := COLLISION_PLAYER_INDEX_PREFIX + joinIndex + playerCollider := collisionSysMap[collisionPlayerIndex] + playerShape := playerCollider.Shape.(*resolv.ConvexPolygon) + hardPushbackNorms[joinIndex-1] = pR.calcHardPushbacksNorms(playerCollider, playerShape, pR.SnapIntoPlatformOverlap, &(effPushbacks[joinIndex-1])) + if 0 < len(hardPushbackNorms[joinIndex-1]) { + Logger.Debug(fmt.Sprintf("playerId=%d, joinIndex=%d got %d non-empty hardPushbacks at renderFrame.id=%d", playerId, joinIndex, len(hardPushbackNorms), currRenderFrame.Id)) + } + currPlayerDownsync, thatPlayerInNextFrame := currRenderFrame.Players[playerId], nextRenderFramePlayers[playerId] + fallStopping := false + possiblyFallStoppedOnAnotherPlayer := false + collision := playerCollider.Check(0, 0) + if nil == collision { + continue + } + for _, obj := range collision.Objects { + isBarrier, isAnotherPlayer, isBullet := false, false, false + switch obj.Data.(type) { + case *Barrier: + isBarrier = true + case *Player: + isAnotherPlayer = true + case *MeleeBullet: + isBullet = true + } + if isBullet { + // ignore bullets for this step + continue + } + bShape := obj.Shape.(*resolv.ConvexPolygon) + overlapped, pushbackX, pushbackY, overlapResult := CalcPushbacks(0, 0, playerShape, bShape) + if !overlapped { + continue + } + normAlignmentWithGravity := (overlapResult.OverlapX*float64(0) + overlapResult.OverlapY*float64(-1.0)) + landedOnGravityPushback := (pR.SnapIntoPlatformThreshold < normAlignmentWithGravity) // prevents false snapping on the lateral sides + if landedOnGravityPushback { + // kindly note that one player might land on top of another player, and snapping is also required in such case + pushbackX, pushbackY = (overlapResult.Overlap-pR.SnapIntoPlatformOverlap)*overlapResult.OverlapX, (overlapResult.Overlap-pR.SnapIntoPlatformOverlap)*overlapResult.OverlapY + thatPlayerInNextFrame.InAir = false + } + for _, hardPushbackNorm := range hardPushbackNorms[joinIndex-1] { + projectedMagnitude := pushbackX*hardPushbackNorm.X + pushbackY*hardPushbackNorm.Y + if isBarrier || (isAnotherPlayer && 0 > projectedMagnitude) { + pushbackX -= projectedMagnitude * hardPushbackNorm.X + pushbackY -= projectedMagnitude * hardPushbackNorm.Y + } + } + effPushbacks[joinIndex-1].X += pushbackX + effPushbacks[joinIndex-1].Y += pushbackY + if currPlayerDownsync.InAir && landedOnGravityPushback { + fallStopping = true + if isAnotherPlayer { + possiblyFallStoppedOnAnotherPlayer = true + } + if 1 == thatPlayerInNextFrame.JoinIndex { + Logger.Info(fmt.Sprintf("playerId=%d, joinIndex=%d fallStopping#1 at {renderFrame.id: %d, virtualX: %d, virtualY: %d, velX: %d, velY: %d} with effPushback={%.3f, %.3f}, overlapMag=%.4f, possiblyFallStoppedOnAnotherPlayer=%v", playerId, joinIndex, currRenderFrame.Id, currPlayerDownsync.VirtualGridX, currPlayerDownsync.VirtualGridY, currPlayerDownsync.VelX, currPlayerDownsync.VelY, effPushbacks[joinIndex-1].X, effPushbacks[joinIndex-1].Y, overlapResult.Overlap, possiblyFallStoppedOnAnotherPlayer)) + } + } + if 1 == joinIndex && currPlayerDownsync.InAir && isBarrier && !landedOnGravityPushback { + Logger.Warn(fmt.Sprintf("playerId=%d, joinIndex=%d inAir & pushed back by barrier & not landed at {renderFrame.id: %d, virtualX: %d, virtualY: %d, velX: %d, velY: %d} with effPushback={%.3f, %.3f}, playerColliderPos={%.3f, %.3f}, barrierPos={%.3f, %.3f}, overlapMag=%.4f, len(hardPushbackNorms)=%d", playerId, joinIndex, currRenderFrame.Id, currPlayerDownsync.VirtualGridX, currPlayerDownsync.VirtualGridY, currPlayerDownsync.VelX, currPlayerDownsync.VelY, effPushbacks[joinIndex-1].X, effPushbacks[joinIndex-1].Y, playerCollider.X-pR.collisionSpaceOffsetX, playerCollider.Y-pR.collisionSpaceOffsetY, bShape.X-pR.collisionSpaceOffsetX, bShape.Y-pR.collisionSpaceOffsetY, overlapResult.Overlap, len(hardPushbackNorms))) + } + if 1 == joinIndex && currPlayerDownsync.InAir && isAnotherPlayer { + Logger.Warn(fmt.Sprintf("playerId=%d, joinIndex=%d inAir & pushed back by another player at {renderFrame.id: %d, virtualX: %d, virtualY: %d, velX: %d, velY: %d} with effPushback={%.3f, %.3f}, landedOnGravityPushback=%v, fallStopping=%v, playerColliderPos={%.3f, %.3f}, anotherPlayerColliderPos={%.3f, %.3f}, overlapMag=%.4f, len(hardPushbackNorms)=%d", playerId, joinIndex, currRenderFrame.Id, currPlayerDownsync.VirtualGridX, currPlayerDownsync.VirtualGridY, currPlayerDownsync.VelX, currPlayerDownsync.VelY, effPushbacks[joinIndex-1].X, effPushbacks[joinIndex-1].Y, landedOnGravityPushback, fallStopping, playerCollider.X-pR.collisionSpaceOffsetX, playerCollider.Y-pR.collisionSpaceOffsetY, bShape.X-pR.collisionSpaceOffsetX, bShape.Y-pR.collisionSpaceOffsetY, overlapResult.Overlap, len(hardPushbackNorms))) + } + } + if fallStopping { + thatPlayerInNextFrame.VelX = 0 + thatPlayerInNextFrame.VelY = 0 + thatPlayerInNextFrame.CharacterState = ATK_CHARACTER_STATE_IDLE1 + thatPlayerInNextFrame.FramesToRecover = 0 + } + if currPlayerDownsync.InAir { + switch thatPlayerInNextFrame.CharacterState { + case ATK_CHARACTER_STATE_IDLE1: + case ATK_CHARACTER_STATE_WALKING: + thatPlayerInNextFrame.CharacterState = ATK_CHARACTER_STATE_INAIR_IDLE1 + case ATK_CHARACTER_STATE_ATK1: + thatPlayerInNextFrame.CharacterState = ATK_CHARACTER_STATE_INAIR_ATK1 + case ATK_CHARACTER_STATE_ATKED1: + thatPlayerInNextFrame.CharacterState = ATK_CHARACTER_STATE_INAIR_ATKED1 + default: + } + } + } + + // 6. Check bullet-anything collisions for _, bulletCollider := range bulletColliders { shouldRemove := false meleeBullet := bulletCollider.Data.(*MeleeBullet) @@ -1355,15 +1539,32 @@ func (pR *Room) applyInputFrameDownsyncDynamicsOnSingleRenderFrame(delayedInputF case *Player: if meleeBullet.OffenderPlayerId != t.Id { if overlapped, _, _, _ := CalcPushbacks(0, 0, bulletShape, defenderShape); overlapped { + joinIndex := t.JoinIndex xfac := float64(1.0) // By now, straight Punch offset doesn't respect "y-axis" if 0 > offender.DirX { xfac = float64(-1.0) } - bulletPushbacks[t.JoinIndex-1].X += xfac * meleeBullet.Pushback - nextRenderFramePlayers[t.Id].CharacterState = ATK_CHARACTER_STATE_ATKED1 + pushbackX, pushbackY := -xfac*meleeBullet.Pushback, float64(0) + + for _, hardPushbackNorm := range hardPushbackNorms[joinIndex-1] { + projectedMagnitude := pushbackX*hardPushbackNorm.X + pushbackY*hardPushbackNorm.Y + if 0 > projectedMagnitude { + Logger.Info(fmt.Sprintf("defenderPlayerId=%d, joinIndex=%d reducing bullet pushback={%.3f, %.3f} by {%.3f, %.3f} where hardPushbackNorm={%.3f, %.3f}, projectedMagnitude=%.3f at renderFrame.id=%d", t.Id, joinIndex, pushbackX, pushbackY, projectedMagnitude*hardPushbackNorm.X, projectedMagnitude*hardPushbackNorm.Y, hardPushbackNorm.X, hardPushbackNorm.Y, projectedMagnitude, currRenderFrame.Id)) + pushbackX -= projectedMagnitude * hardPushbackNorm.X + pushbackY -= projectedMagnitude * hardPushbackNorm.Y + } + } + + effPushbacks[joinIndex-1].X += pushbackX + effPushbacks[joinIndex-1].Y += pushbackY + atkedPlayerInCurFrame, atkedPlayerInNextFrame := currRenderFrame.Players[t.Id], nextRenderFramePlayers[t.Id] + atkedPlayerInNextFrame.CharacterState = ATK_CHARACTER_STATE_ATKED1 + if atkedPlayerInCurFrame.InAir { + atkedPlayerInNextFrame.CharacterState = ATK_CHARACTER_STATE_INAIR_ATKED1 + } oldFramesToRecover := nextRenderFramePlayers[t.Id].FramesToRecover if meleeBullet.HitStunFrames > oldFramesToRecover { - nextRenderFramePlayers[t.Id].FramesToRecover = meleeBullet.HitStunFrames + atkedPlayerInNextFrame.FramesToRecover = meleeBullet.HitStunFrames } Logger.Debug(fmt.Sprintf("roomId=%v, a meleeBullet collides w/ player at currRenderFrame.id=%v: b=%v, p=%v", pR.Id, currRenderFrame.Id, ConvexPolygonStr(bulletShape), ConvexPolygonStr(defenderShape))) } @@ -1379,6 +1580,7 @@ func (pR *Room) applyInputFrameDownsyncDynamicsOnSingleRenderFrame(delayedInputF } } + // [WARNING] Remove bullets from collisionSys ANYWAY for the convenience of rollback for _, meleeBullet := range currRenderFrame.MeleeBullets { collisionBulletIndex := COLLISION_BULLET_INDEX_PREFIX + meleeBullet.BattleLocalId if bulletCollider, existent := collisionSysMap[collisionBulletIndex]; existent { @@ -1388,124 +1590,51 @@ func (pR *Room) applyInputFrameDownsyncDynamicsOnSingleRenderFrame(delayedInputF if _, existent := removedBulletsAtCurrFrame[collisionBulletIndex]; existent { continue } - toRet.MeleeBullets = append(toRet.MeleeBullets, meleeBullet) + nextRenderFrameMeleeBullets = append(nextRenderFrameMeleeBullets, meleeBullet) } - if nil != delayedInputFrame { - var delayedInputFrameForPrevRenderFrame *InputFrameDownsync = nil - tmp := pR.InputsBuffer.GetByFrameId(pR.ConvertToInputFrameId(currRenderFrame.Id-1, pR.InputDelayFrames)) - if nil != tmp { - delayedInputFrameForPrevRenderFrame = tmp.(*InputFrameDownsync) - } - inputList := delayedInputFrame.InputList - // Process player inputs - for _, player := range pR.PlayersArr { - playerId := player.Id - joinIndex := player.JoinIndex - collisionPlayerIndex := COLLISION_PLAYER_INDEX_PREFIX + joinIndex - playerCollider := collisionSysMap[collisionPlayerIndex] - thatPlayerInNextFrame := nextRenderFramePlayers[playerId] - if 0 < thatPlayerInNextFrame.FramesToRecover { - // No need to process inputs for this player, but there might be bullet pushbacks on this player - // Also note that in this case we keep "CharacterState" of this player from last render frame - playerCollider.X += bulletPushbacks[joinIndex-1].X - playerCollider.Y += bulletPushbacks[joinIndex-1].Y - // Update in the collision system - playerCollider.Update() - if 0 != bulletPushbacks[joinIndex-1].X || 0 != bulletPushbacks[joinIndex-1].Y { - Logger.Debug(fmt.Sprintf("roomId=%v, playerId=%v is pushed back by (%.2f, %.2f) by bullet impacts, now its framesToRecover is %d at currRenderFrame.id=%v", pR.Id, playerId, bulletPushbacks[joinIndex-1].X, bulletPushbacks[joinIndex-1].Y, thatPlayerInNextFrame.FramesToRecover, currRenderFrame.Id)) - } - continue + // 7. Get players out of stuck barriers if there's any + for _, player := range pR.PlayersArr { + joinIndex := player.JoinIndex + playerId := player.Id + collisionPlayerIndex := COLLISION_PLAYER_INDEX_PREFIX + joinIndex + playerCollider := collisionSysMap[collisionPlayerIndex] + playerShape := playerCollider.Shape.(*resolv.ConvexPolygon) + // Update "virtual grid position" + currPlayerDownsync, thatPlayerInNextFrame := currRenderFrame.Players[playerId], nextRenderFramePlayers[playerId] + colliderWidth, colliderHeight := player.ColliderRadius*2, player.ColliderRadius*4 + thatPlayerInNextFrame.VirtualGridX, thatPlayerInNextFrame.VirtualGridY = PolygonColliderBLToVirtualGridPos(playerCollider.X-effPushbacks[joinIndex-1].X, playerCollider.Y-effPushbacks[joinIndex-1].Y, colliderWidth*0.5, colliderHeight*0.5, pR.SnapIntoPlatformOverlap, pR.collisionSpaceOffsetX, pR.collisionSpaceOffsetY, pR.WorldToVirtualGridRatio) + + if 1 == thatPlayerInNextFrame.JoinIndex { + if thatPlayerInNextFrame.InAir && (0 != thatPlayerInNextFrame.VelY) { + // Logger.Info(fmt.Sprintf("playerId=%d, joinIndex=%d inAir trajectory: {nextRenderFrame.id: %d, nextVirtualX: %d, nextVirtualY: %d, nextVelX: %d, nextVelY: %d}, with playerColliderPos={%.3f, %.3f}, effPushback={%.3f, %.3f}", playerId, joinIndex, currRenderFrame.Id+1, thatPlayerInNextFrame.VirtualGridX, thatPlayerInNextFrame.VirtualGridY, thatPlayerInNextFrame.VelX, thatPlayerInNextFrame.VelY, playerShape.X-pR.collisionSpaceOffsetX, playerShape.Y-pR.collisionSpaceOffsetY, effPushbacks[joinIndex-1].X, effPushbacks[joinIndex-1].Y)) } - currPlayerDownsync := currRenderFrame.Players[playerId] - decodedInput := pR.decodeInput(inputList[joinIndex-1]) - prevBtnALevel := int32(0) - if nil != delayedInputFrameForPrevRenderFrame { - prevDecodedInput := pR.decodeInput(delayedInputFrameForPrevRenderFrame.InputList[joinIndex-1]) - prevBtnALevel = prevDecodedInput.BtnALevel + if currPlayerDownsync.InAir && !thatPlayerInNextFrame.InAir { + Logger.Warn(fmt.Sprintf("playerId=%d, joinIndex=%d fallStopping#2 at {nextRenderFrame.id: %d, nextVirtualX: %d, nextVirtualY: %d, nextVelX: %d, nextVelY: %d}, with playerColliderPos={%.3f, %.3f}, effPushback={%.3f, %.3f}", playerId, joinIndex, currRenderFrame.Id+1, thatPlayerInNextFrame.VirtualGridX, thatPlayerInNextFrame.VirtualGridY, thatPlayerInNextFrame.VelX, thatPlayerInNextFrame.VelY, playerShape.X-pR.collisionSpaceOffsetX, playerShape.Y-pR.collisionSpaceOffsetY, effPushbacks[joinIndex-1].X, effPushbacks[joinIndex-1].Y)) } - - if decodedInput.BtnALevel > prevBtnALevel { - punchSkillId := int32(1) - punchConfig := pR.MeleeSkillConfig[punchSkillId] - var newMeleeBullet MeleeBullet = *punchConfig - newMeleeBullet.BattleLocalId = pR.BulletBattleLocalIdCounter - pR.BulletBattleLocalIdCounter += 1 - newMeleeBullet.OffenderJoinIndex = joinIndex - newMeleeBullet.OffenderPlayerId = playerId - newMeleeBullet.OriginatedRenderFrameId = currRenderFrame.Id - toRet.MeleeBullets = append(toRet.MeleeBullets, &newMeleeBullet) - thatPlayerInNextFrame.FramesToRecover = newMeleeBullet.RecoveryFrames - thatPlayerInNextFrame.CharacterState = ATK_CHARACTER_STATE_ATK1 - Logger.Debug(fmt.Sprintf("roomId=%v, playerId=%v triggered a rising-edge of btnA at currRenderFrame.id=%v, delayedInputFrame.id=%v", pR.Id, playerId, currRenderFrame.Id, delayedInputFrame.InputFrameId)) - - } else if decodedInput.BtnALevel < prevBtnALevel { - Logger.Debug(fmt.Sprintf("roomId=%v, playerId=%v triggered a falling-edge of btnA at currRenderFrame.id=%v, delayedInputFrame.id=%v", pR.Id, playerId, currRenderFrame.Id, delayedInputFrame.InputFrameId)) - } else { - // No bullet trigger, process movement inputs - // Note that by now "0 == thatPlayerInNextFrame.FramesToRecover", we should change "CharacterState" to "WALKING" or "IDLE" depending on player inputs - if 0 != decodedInput.Dx || 0 != decodedInput.Dy { - thatPlayerInNextFrame.DirX = decodedInput.Dx - thatPlayerInNextFrame.DirY = decodedInput.Dy - thatPlayerInNextFrame.CharacterState = ATK_CHARACTER_STATE_WALKING - } else { - thatPlayerInNextFrame.CharacterState = ATK_CHARACTER_STATE_IDLE1 - } - } - - movementX, movementY := VirtualGridToWorldPos(decodedInput.Dx+decodedInput.Dx*currPlayerDownsync.Speed, decodedInput.Dy+decodedInput.Dy*currPlayerDownsync.Speed, pR.VirtualGridToWorldRatio) - playerCollider.X += movementX - playerCollider.Y += movementY - - // Update in the collision system - playerCollider.Update() - } - - // handle pushbacks upon collision after all movements treated as simultaneous - for _, player := range pR.PlayersArr { - joinIndex := player.JoinIndex - collisionPlayerIndex := COLLISION_PLAYER_INDEX_PREFIX + joinIndex - playerCollider := collisionSysMap[collisionPlayerIndex] - if collision := playerCollider.Check(0, 0); collision != nil { - playerShape := playerCollider.Shape.(*resolv.ConvexPolygon) - for _, obj := range collision.Objects { - barrierShape := obj.Shape.(*resolv.ConvexPolygon) - if overlapped, pushbackX, pushbackY, overlapResult := CalcPushbacks(0, 0, playerShape, barrierShape); overlapped { - Logger.Debug(fmt.Sprintf("Overlapped: a=%v, b=%v, pushbackX=%v, pushbackY=%v", ConvexPolygonStr(playerShape), ConvexPolygonStr(barrierShape), pushbackX, pushbackY)) - effPushbacks[joinIndex-1].X += pushbackX - effPushbacks[joinIndex-1].Y += pushbackY - } else { - Logger.Debug(fmt.Sprintf("Collided BUT not overlapped: a=%v, b=%v, overlapResult=%v", ConvexPolygonStr(playerShape), ConvexPolygonStr(barrierShape), overlapResult)) - } - } + if !currPlayerDownsync.InAir && thatPlayerInNextFrame.InAir { + Logger.Warn(fmt.Sprintf("playerId=%d, joinIndex=%d took off at {nextRenderFrame.id: %d, nextVirtualX: %d, nextVirtualY: %d, nextVelX: %d, nextVelY: %d}, with playerColliderPos={%.3f, %.3f}, effPushback={%.3f, %.3f}", playerId, joinIndex, currRenderFrame.Id+1, thatPlayerInNextFrame.VirtualGridX, thatPlayerInNextFrame.VirtualGridY, thatPlayerInNextFrame.VelX, thatPlayerInNextFrame.VelY, playerShape.X-pR.collisionSpaceOffsetX, playerShape.Y-pR.collisionSpaceOffsetY, effPushbacks[joinIndex-1].X, effPushbacks[joinIndex-1].Y)) } } - - for _, player := range pR.PlayersArr { - playerId := player.Id - joinIndex := player.JoinIndex - collisionPlayerIndex := COLLISION_PLAYER_INDEX_PREFIX + joinIndex - playerCollider := collisionSysMap[collisionPlayerIndex] - - // Update "virtual grid position" - newVx, newVy := PolygonColliderAnchorToVirtualGridPos(playerCollider.X-effPushbacks[joinIndex-1].X, playerCollider.Y-effPushbacks[joinIndex-1].Y, player.ColliderRadius, player.ColliderRadius, pR.collisionSpaceOffsetX, pR.collisionSpaceOffsetY, pR.WorldToVirtualGridRatio) - thatPlayerInNextFrame := nextRenderFramePlayers[playerId] - thatPlayerInNextFrame.VirtualGridX, thatPlayerInNextFrame.VirtualGridY = newVx, newVy - } - - Logger.Debug(fmt.Sprintf("After applyInputFrameDownsyncDynamicsOnSingleRenderFrame: currRenderFrame.Id=%v, inputList=%v, currRenderFrame.Players=%v, nextRenderFramePlayers=%v", currRenderFrame.Id, inputList, currRenderFrame.Players, nextRenderFramePlayers)) } - return toRet + return &RoomDownsyncFrame{ + Id: currRenderFrame.Id + 1, + Players: nextRenderFramePlayers, + MeleeBullets: nextRenderFrameMeleeBullets, + CountdownNanos: (pR.BattleDurationNanos - int64(currRenderFrame.Id)*pR.RollbackEstimatedDtNanos), + } } func (pR *Room) decodeInput(encodedInput uint64) *InputFrameDecoded { encodedDirection := (encodedInput & uint64(15)) btnALevel := int32((encodedInput >> 4) & 1) + btnBLevel := int32((encodedInput >> 5) & 1) return &InputFrameDecoded{ Dx: DIRECTION_DECODER[encodedDirection][0], Dy: DIRECTION_DECODER[encodedDirection][1], BtnALevel: btnALevel, + BtnBLevel: btnBLevel, } } @@ -1520,8 +1649,8 @@ func (pR *Room) refreshColliders(spaceW, spaceH int32) { pR.Space = resolv.NewSpace(int(spaceW), int(spaceH), minStep, minStep) // allocate a new collision space everytime after a battle is settled for _, player := range pR.Players { wx, wy := VirtualGridToWorldPos(player.VirtualGridX, player.VirtualGridY, pR.VirtualGridToWorldRatio) - colliderWidth, colliderHeight := player.ColliderRadius*2, player.ColliderRadius*3 - playerCollider := GenerateRectCollider(wx, wy, colliderWidth, colliderHeight, pR.collisionSpaceOffsetX, pR.collisionSpaceOffsetY, "Player") + colliderWidth, colliderHeight := player.ColliderRadius*2, player.ColliderRadius*4 + playerCollider := GenerateRectCollider(wx, wy, colliderWidth, colliderHeight, pR.SnapIntoPlatformOverlap, pR.collisionSpaceOffsetX, pR.collisionSpaceOffsetY, "Player") // the coords of all barrier boundaries are multiples of tileWidth(i.e. 16), by adding snapping y-padding when "landedOnGravityPushback" all "playerCollider.Y" would be a multiple of 1.0 playerCollider.Data = player pR.Space.Add(playerCollider) // Keep track of the collider in "pR.CollisionSysMap" @@ -1534,6 +1663,7 @@ func (pR *Room) refreshColliders(spaceW, spaceH int32) { for _, barrier := range pR.Barriers { boundaryUnaligned := barrier.Boundary barrierCollider := GenerateConvexPolygonCollider(boundaryUnaligned, pR.collisionSpaceOffsetX, pR.collisionSpaceOffsetY, "Barrier") + barrierCollider.Data = barrier pR.Space.Add(barrierCollider) } } @@ -1572,19 +1702,29 @@ func (pR *Room) doBattleMainLoopPerTickBackendDynamicsWithProperLocking(prevRend } if nil != inputsBufferSnapshot { - Logger.Warn(fmt.Sprintf("roomId=%v, room.RenderFrameId=%v, room.CurDynamicsRenderFrameId=%v, room.LastAllConfirmedInputFrameId=%v, unconfirmedMask=%v", pR.Id, pR.RenderFrameId, pR.CurDynamicsRenderFrameId, pR.LastAllConfirmedInputFrameId, inputsBufferSnapshot.UnconfirmedMask)) + // Logger.Warn(fmt.Sprintf("roomId=%v, room.RenderFrameId=%v, room.CurDynamicsRenderFrameId=%v, room.LastAllConfirmedInputFrameId=%v, unconfirmedMask=%v", pR.Id, pR.RenderFrameId, pR.CurDynamicsRenderFrameId, pR.LastAllConfirmedInputFrameId, inputsBufferSnapshot.UnconfirmedMask)) pR.downsyncToAllPlayers(inputsBufferSnapshot) } } func (pR *Room) downsyncToAllPlayers(inputsBufferSnapshot *InputsBufferSnapshot) { /* - [WARNING] This function MUST BE called while "pR.InputsBufferLock" is LOCKED for preserving the order of generation of "inputsBufferSnapshot" -- see comments in "OnBattleCmdReceived" and [this issue](https://github.com/genxium/DelayNoMore/issues/12). + [WARNING] This function MUST BE called while "pR.InputsBufferLock" is LOCKED to **preserve the order of generation of "inputsBufferSnapshot" for sending** -- see comments in "OnBattleCmdReceived" and [this issue](https://github.com/genxium/DelayNoMore/issues/12). Actually if each player session were both intrinsically thread-safe & non-blocking for writing (like Java NIO), I could've just called "playerSession.WriteMessage" while holding "pR.InputsBufferLock" -- but the ws session provided by Gorilla library is neither thread-safe nor non-blocking for writing, which is fine because it creates a chance for the users to solve an interesting problem :) - */ - /* - Moreover, we're downsyncing a same "inputsBufferSnapshot" for all players in the same battle and this is by design, i.e. not respecting "player.LastSentInputFrameId" because "new all-confirmed inputFrameDownsyncs" are the same for all players and ws is TCP-based (no loss of consecutive packets except for reconnection -- which is already handled by READDED_BATTLE_COLLIDER_ACKED) + + Moreover, we're downsyncing a same "inputsBufferSnapshot" for all players in the same battle and this is by design, i.e. not respecting "player.LastSentInputFrameId" because "new all-confirmed inputFrameDownsyncs" are the same for all players and ws is TCP-based (no loss of consecutive packets except for reconnection -- which is already handled by READDED_BATTLE_COLLIDER_ACKED) + + Lastly noting just for fun, if in "OnBattleCmdReceived" we need downsync to a single specific player (keeping **the order of generation of "inputsBufferSnapshot" preserved for sending** of course), in theory it's better to do it by the following order. + 1. lock "InputsBuffer"; + 2. generate downsync msg; + 3. lock "pR.PlayerDownsyncChanDict[playerId]"; + 4. put downsync msg to "pR.PlayerDownsyncChanDict[playerId]"; + 5. unlock "InputsBuffer"; + 6. now other threads are allowed to lock "inputsBuffer", and we can do "other things" on "pR.PlayerDownsyncChanDict[playerId]"; + 7. unlock "pR.PlayerDownsyncChanDict[playerId]". + + The difference from our current approach is that the "pR.PlayerDownsyncChanDict[playerId]" in use is a Golang channel, i.e. when executing #4 it automatically executes #3 (before) & #7 (after) as well, thus we couldn't do #5 & #6 in between. */ for playerId, playerDownsyncChan := range pR.PlayerDownsyncChanDict { /* @@ -1592,8 +1732,20 @@ func (pR *Room) downsyncToAllPlayers(inputsBufferSnapshot *InputsBufferSnapshot) The use of "downsyncLoop of each player" also waives the need of guarding each "pR.PlayerDownsyncSessionDict[playerId]" from multithread-access (e.g. by a "pR.PlayerDownsyncSessionMutexDict[playerId]"), i.e. Gorilla v1.2.0 "conn.WriteMessage" isn't thread-safe https://github.com/gorilla/websocket/blob/v1.2.0/conn.go#L585. */ - playerDownsyncChan <- (*inputsBufferSnapshot) - Logger.Debug(fmt.Sprintf("Sent inputsBufferSnapshot(refRenderFrameId:%d, unconfirmedMask:%v) to for (roomId: %d, playerId:%d, playerDownsyncChan:%p)#1", inputsBufferSnapshot.RefRenderFrameId, inputsBufferSnapshot.UnconfirmedMask, pR.Id, playerId, playerDownsyncChan)) + if player, existent := pR.Players[playerId]; existent { + playerBattleState := atomic.LoadInt32(&(player.BattleState)) + switch playerBattleState { + case PlayerBattleStateIns.DISCONNECTED: + case PlayerBattleStateIns.LOST: + case PlayerBattleStateIns.EXPELLED_DURING_GAME: + case PlayerBattleStateIns.EXPELLED_IN_DISMISSAL: + case PlayerBattleStateIns.ADDED_PENDING_BATTLE_COLLIDER_ACK: + case PlayerBattleStateIns.READDED_PENDING_BATTLE_COLLIDER_ACK: + continue + } + playerDownsyncChan <- (*inputsBufferSnapshot) + // Logger.Info(fmt.Sprintf("Sent inputsBufferSnapshot(refRenderFrameId:%d, unconfirmedMask:%v) to for (roomId: %d, playerId:%d, playerDownsyncChan:%p)#1", inputsBufferSnapshot.RefRenderFrameId, inputsBufferSnapshot.UnconfirmedMask, pR.Id, playerId, playerDownsyncChan)) + } } } @@ -1632,7 +1784,8 @@ func (pR *Room) downsyncToSinglePlayer(playerId int32, player *Player, refRender 2. reconnection */ - toSendInputFrameIdSt, toSendInputFrameIdEd := toSendInputFrameDownsyncsSnapshot[0].InputFrameId, toSendInputFrameDownsyncsSnapshot[len(toSendInputFrameDownsyncsSnapshot)-1].InputFrameId+1 + //toSendInputFrameIdSt, toSendInputFrameIdEd := toSendInputFrameDownsyncsSnapshot[0].InputFrameId, toSendInputFrameDownsyncsSnapshot[len(toSendInputFrameDownsyncsSnapshot)-1].InputFrameId+1 + _, toSendInputFrameIdEd := toSendInputFrameDownsyncsSnapshot[0].InputFrameId, toSendInputFrameDownsyncsSnapshot[len(toSendInputFrameDownsyncsSnapshot)-1].InputFrameId+1 if pR.BackendDynamicsEnabled && shouldResyncOverall { tmp := pR.RenderFrameBuffer.GetByFrameId(refRenderFrameId) if nil == tmp { @@ -1645,7 +1798,7 @@ func (pR *Room) downsyncToSinglePlayer(playerId int32, player *Player, refRender } refRenderFrame.BackendUnconfirmedMask = unconfirmedMask pR.sendSafely(refRenderFrame, toSendInputFrameDownsyncsSnapshot, DOWNSYNC_MSG_ACT_FORCED_RESYNC, playerId, false) - Logger.Warn(fmt.Sprintf("Sent refRenderFrameId=%v & inputFrameIds [%d, %d), for roomId=%v, playerId=%d, playerJoinIndex=%d, renderFrameId=%d, curDynamicsRenderFrameId=%d, playerLastSentInputFrameId=%d: InputsBuffer=%v", refRenderFrameId, toSendInputFrameIdSt, toSendInputFrameIdEd, pR.Id, playerId, player.JoinIndex, pR.RenderFrameId, pR.CurDynamicsRenderFrameId, player.LastSentInputFrameId, pR.InputsBufferString(false))) + // Logger.Warn(fmt.Sprintf("Sent refRenderFrameId=%v & inputFrameIds [%d, %d), for roomId=%v, playerId=%d, playerJoinIndex=%d, renderFrameId=%d, curDynamicsRenderFrameId=%d, playerLastSentInputFrameId=%d: InputsBuffer=%v", refRenderFrameId, toSendInputFrameIdSt, toSendInputFrameIdEd, pR.Id, playerId, player.JoinIndex, pR.RenderFrameId, pR.CurDynamicsRenderFrameId, player.LastSentInputFrameId, pR.InputsBufferString(false))) } else { pR.sendSafely(nil, toSendInputFrameDownsyncsSnapshot, DOWNSYNC_MSG_ACT_INPUT_BATCH, playerId, false) } @@ -1687,3 +1840,29 @@ func (pR *Room) cloneInputsBuffer(stFrameId, edFrameId int32) []*InputFrameDowns return cloned } + +func (pR *Room) calcHardPushbacksNorms(playerCollider *resolv.Object, playerShape *resolv.ConvexPolygon, snapIntoPlatformOverlap float64, pEffPushback *Vec2D) []Vec2D { + ret := make([]Vec2D, 0, 10) // no one would simultaneously have more than 5 hardPushbacks + collision := playerCollider.Check(0, 0) + if nil == collision { + return ret + } + for _, obj := range collision.Objects { + switch obj.Data.(type) { + case *Barrier: + barrierShape := obj.Shape.(*resolv.ConvexPolygon) + overlapped, pushbackX, pushbackY, overlapResult := CalcPushbacks(0, 0, playerShape, barrierShape) + if !overlapped { + continue + } + // ALWAY snap into hardPushbacks! + // [OverlapX, OverlapY] is the unit vector that points into the platform + pushbackX, pushbackY = (overlapResult.Overlap-snapIntoPlatformOverlap)*overlapResult.OverlapX, (overlapResult.Overlap-snapIntoPlatformOverlap)*overlapResult.OverlapY + ret = append(ret, Vec2D{X: overlapResult.OverlapX, Y: overlapResult.OverlapY}) + pEffPushback.X += pushbackX + pEffPushback.Y += pushbackY + default: + } + } + return ret +} diff --git a/battle_srv/protos/room_downsync_frame.pb.go b/battle_srv/protos/room_downsync_frame.pb.go index 6514a19..f4ab9eb 100644 --- a/battle_srv/protos/room_downsync_frame.pb.go +++ b/battle_srv/protos/room_downsync_frame.pb.go @@ -30,21 +30,24 @@ type PlayerDownsync struct { VirtualGridX int32 `protobuf:"varint,2,opt,name=virtualGridX,proto3" json:"virtualGridX,omitempty"` VirtualGridY int32 `protobuf:"varint,3,opt,name=virtualGridY,proto3" json:"virtualGridY,omitempty"` DirX int32 `protobuf:"varint,4,opt,name=dirX,proto3" json:"dirX,omitempty"` - DirY int32 `protobuf:"varint,5,opt,name=dirY,proto3" json:"dirY,omitempty"` - Speed int32 `protobuf:"varint,6,opt,name=speed,proto3" json:"speed,omitempty"` // in terms of virtual grid units - BattleState int32 `protobuf:"varint,7,opt,name=battleState,proto3" json:"battleState,omitempty"` - JoinIndex int32 `protobuf:"varint,8,opt,name=joinIndex,proto3" json:"joinIndex,omitempty"` - ColliderRadius float64 `protobuf:"fixed64,9,opt,name=colliderRadius,proto3" json:"colliderRadius,omitempty"` - Removed bool `protobuf:"varint,10,opt,name=removed,proto3" json:"removed,omitempty"` - Score int32 `protobuf:"varint,11,opt,name=score,proto3" json:"score,omitempty"` - LastMoveGmtMillis int32 `protobuf:"varint,12,opt,name=lastMoveGmtMillis,proto3" json:"lastMoveGmtMillis,omitempty"` - FramesToRecover int32 `protobuf:"varint,13,opt,name=framesToRecover,proto3" json:"framesToRecover,omitempty"` - Hp int32 `protobuf:"varint,14,opt,name=hp,proto3" json:"hp,omitempty"` - MaxHp int32 `protobuf:"varint,15,opt,name=maxHp,proto3" json:"maxHp,omitempty"` - CharacterState int32 `protobuf:"varint,16,opt,name=characterState,proto3" json:"characterState,omitempty"` - Name string `protobuf:"bytes,17,opt,name=name,proto3" json:"name,omitempty"` - DisplayName string `protobuf:"bytes,18,opt,name=displayName,proto3" json:"displayName,omitempty"` - Avatar string `protobuf:"bytes,19,opt,name=avatar,proto3" json:"avatar,omitempty"` + DirY int32 `protobuf:"varint,5,opt,name=dirY,proto3" json:"dirY,omitempty"` // "dirX" and "dirY" determines character facing + VelX int32 `protobuf:"varint,6,opt,name=velX,proto3" json:"velX,omitempty"` + VelY int32 `protobuf:"varint,7,opt,name=velY,proto3" json:"velY,omitempty"` // "velX" and "velY" is used to record the accumulated effect by accelerations (including gravity) + Speed int32 `protobuf:"varint,8,opt,name=speed,proto3" json:"speed,omitempty"` // this is the instantaneous scalar attribute of a character, different from but will be accounted in "velX" and "velY" + BattleState int32 `protobuf:"varint,9,opt,name=battleState,proto3" json:"battleState,omitempty"` + JoinIndex int32 `protobuf:"varint,10,opt,name=joinIndex,proto3" json:"joinIndex,omitempty"` + ColliderRadius float64 `protobuf:"fixed64,11,opt,name=colliderRadius,proto3" json:"colliderRadius,omitempty"` + Removed bool `protobuf:"varint,12,opt,name=removed,proto3" json:"removed,omitempty"` + Score int32 `protobuf:"varint,13,opt,name=score,proto3" json:"score,omitempty"` + LastMoveGmtMillis int32 `protobuf:"varint,14,opt,name=lastMoveGmtMillis,proto3" json:"lastMoveGmtMillis,omitempty"` + FramesToRecover int32 `protobuf:"varint,15,opt,name=framesToRecover,proto3" json:"framesToRecover,omitempty"` + Hp int32 `protobuf:"varint,16,opt,name=hp,proto3" json:"hp,omitempty"` + MaxHp int32 `protobuf:"varint,17,opt,name=maxHp,proto3" json:"maxHp,omitempty"` + CharacterState int32 `protobuf:"varint,18,opt,name=characterState,proto3" json:"characterState,omitempty"` + InAir bool `protobuf:"varint,19,opt,name=inAir,proto3" json:"inAir,omitempty"` // by design a standalone field only inferred by the collision result of "applyInputFrameDownsyncDynamicsOnSingleRenderFrame" instead of "characterState", because we need check the transition for "characterState" from this field, i.e. "inAir (prev -> curr)" + Name string `protobuf:"bytes,20,opt,name=name,proto3" json:"name,omitempty"` + DisplayName string `protobuf:"bytes,21,opt,name=displayName,proto3" json:"displayName,omitempty"` + Avatar string `protobuf:"bytes,22,opt,name=avatar,proto3" json:"avatar,omitempty"` } func (x *PlayerDownsync) Reset() { @@ -114,6 +117,20 @@ func (x *PlayerDownsync) GetDirY() int32 { return 0 } +func (x *PlayerDownsync) GetVelX() int32 { + if x != nil { + return x.VelX + } + return 0 +} + +func (x *PlayerDownsync) GetVelY() int32 { + if x != nil { + return x.VelY + } + return 0 +} + func (x *PlayerDownsync) GetSpeed() int32 { if x != nil { return x.Speed @@ -191,6 +208,13 @@ func (x *PlayerDownsync) GetCharacterState() int32 { return 0 } +func (x *PlayerDownsync) GetInAir() bool { + if x != nil { + return x.InAir + } + return false +} + func (x *PlayerDownsync) GetName() string { if x != nil { return x.Name @@ -220,6 +244,7 @@ type InputFrameDecoded struct { Dx int32 `protobuf:"varint,1,opt,name=dx,proto3" json:"dx,omitempty"` Dy int32 `protobuf:"varint,2,opt,name=dy,proto3" json:"dy,omitempty"` BtnALevel int32 `protobuf:"varint,3,opt,name=btnALevel,proto3" json:"btnALevel,omitempty"` + BtnBLevel int32 `protobuf:"varint,4,opt,name=btnBLevel,proto3" json:"btnBLevel,omitempty"` } func (x *InputFrameDecoded) Reset() { @@ -275,6 +300,13 @@ func (x *InputFrameDecoded) GetBtnALevel() int32 { return 0 } +func (x *InputFrameDecoded) GetBtnBLevel() int32 { + if x != nil { + return x.BtnBLevel + } + return 0 +} + type InputFrameUpsync struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -901,6 +933,11 @@ type BattleColliderInfo struct { SpAtkLookupFrames int32 `protobuf:"varint,25,opt,name=spAtkLookupFrames,proto3" json:"spAtkLookupFrames,omitempty"` RenderCacheSize int32 `protobuf:"varint,26,opt,name=renderCacheSize,proto3" json:"renderCacheSize,omitempty"` MeleeSkillConfig map[int32]*MeleeBullet `protobuf:"bytes,27,rep,name=meleeSkillConfig,proto3" json:"meleeSkillConfig,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` // skillId -> skill + SnapIntoPlatformOverlap float64 `protobuf:"fixed64,28,opt,name=snapIntoPlatformOverlap,proto3" json:"snapIntoPlatformOverlap,omitempty"` + SnapIntoPlatformThreshold float64 `protobuf:"fixed64,29,opt,name=snapIntoPlatformThreshold,proto3" json:"snapIntoPlatformThreshold,omitempty"` + JumpingInitVelY int32 `protobuf:"varint,30,opt,name=jumpingInitVelY,proto3" json:"jumpingInitVelY,omitempty"` + GravityX int32 `protobuf:"varint,31,opt,name=gravityX,proto3" json:"gravityX,omitempty"` + GravityY int32 `protobuf:"varint,32,opt,name=gravityY,proto3" json:"gravityY,omitempty"` } func (x *BattleColliderInfo) Reset() { @@ -1117,6 +1154,41 @@ func (x *BattleColliderInfo) GetMeleeSkillConfig() map[int32]*MeleeBullet { return nil } +func (x *BattleColliderInfo) GetSnapIntoPlatformOverlap() float64 { + if x != nil { + return x.SnapIntoPlatformOverlap + } + return 0 +} + +func (x *BattleColliderInfo) GetSnapIntoPlatformThreshold() float64 { + if x != nil { + return x.SnapIntoPlatformThreshold + } + return 0 +} + +func (x *BattleColliderInfo) GetJumpingInitVelY() int32 { + if x != nil { + return x.JumpingInitVelY + } + return 0 +} + +func (x *BattleColliderInfo) GetGravityX() int32 { + if x != nil { + return x.GravityX + } + return 0 +} + +func (x *BattleColliderInfo) GetGravityY() int32 { + if x != nil { + return x.GravityY + } + return 0 +} + type RoomDownsyncFrame struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -1202,7 +1274,7 @@ var file_room_downsync_frame_proto_rawDesc = []byte{ 0x0a, 0x19, 0x72, 0x6f, 0x6f, 0x6d, 0x5f, 0x64, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x5f, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x1a, 0x0e, 0x67, 0x65, 0x6f, 0x6d, 0x65, 0x74, 0x72, 0x79, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x22, 0xb2, 0x04, 0x0a, 0x0e, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x44, 0x6f, + 0x6f, 0x74, 0x6f, 0x22, 0xf0, 0x04, 0x0a, 0x0e, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x76, 0x69, 0x72, 0x74, 0x75, 0x61, 0x6c, 0x47, 0x72, 0x69, 0x64, 0x58, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x76, 0x69, @@ -1211,279 +1283,299 @@ var file_room_downsync_frame_proto_rawDesc = []byte{ 0x52, 0x0c, 0x76, 0x69, 0x72, 0x74, 0x75, 0x61, 0x6c, 0x47, 0x72, 0x69, 0x64, 0x59, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x69, 0x72, 0x58, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x64, 0x69, 0x72, 0x58, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x69, 0x72, 0x59, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, - 0x52, 0x04, 0x64, 0x69, 0x72, 0x59, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x70, 0x65, 0x65, 0x64, 0x18, - 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x70, 0x65, 0x65, 0x64, 0x12, 0x20, 0x0a, 0x0b, - 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, - 0x05, 0x52, 0x0b, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x1c, - 0x0a, 0x09, 0x6a, 0x6f, 0x69, 0x6e, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x08, 0x20, 0x01, 0x28, - 0x05, 0x52, 0x09, 0x6a, 0x6f, 0x69, 0x6e, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x12, 0x26, 0x0a, 0x0e, - 0x63, 0x6f, 0x6c, 0x6c, 0x69, 0x64, 0x65, 0x72, 0x52, 0x61, 0x64, 0x69, 0x75, 0x73, 0x18, 0x09, - 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6c, 0x6c, 0x69, 0x64, 0x65, 0x72, 0x52, 0x61, - 0x64, 0x69, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x18, - 0x0a, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x12, 0x14, - 0x0a, 0x05, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, - 0x63, 0x6f, 0x72, 0x65, 0x12, 0x2c, 0x0a, 0x11, 0x6c, 0x61, 0x73, 0x74, 0x4d, 0x6f, 0x76, 0x65, - 0x47, 0x6d, 0x74, 0x4d, 0x69, 0x6c, 0x6c, 0x69, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x05, 0x52, - 0x11, 0x6c, 0x61, 0x73, 0x74, 0x4d, 0x6f, 0x76, 0x65, 0x47, 0x6d, 0x74, 0x4d, 0x69, 0x6c, 0x6c, - 0x69, 0x73, 0x12, 0x28, 0x0a, 0x0f, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x54, 0x6f, 0x52, 0x65, - 0x63, 0x6f, 0x76, 0x65, 0x72, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x66, 0x72, 0x61, - 0x6d, 0x65, 0x73, 0x54, 0x6f, 0x52, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x12, 0x0e, 0x0a, 0x02, - 0x68, 0x70, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x68, 0x70, 0x12, 0x14, 0x0a, 0x05, - 0x6d, 0x61, 0x78, 0x48, 0x70, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6d, 0x61, 0x78, - 0x48, 0x70, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x53, - 0x74, 0x61, 0x74, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x63, 0x68, 0x61, 0x72, - 0x61, 0x63, 0x74, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, - 0x6d, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, - 0x0a, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x12, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, - 0x12, 0x16, 0x0a, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x22, 0x51, 0x0a, 0x11, 0x49, 0x6e, 0x70, 0x75, - 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44, 0x65, 0x63, 0x6f, 0x64, 0x65, 0x64, 0x12, 0x0e, 0x0a, - 0x02, 0x64, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x64, 0x78, 0x12, 0x0e, 0x0a, - 0x02, 0x64, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x64, 0x79, 0x12, 0x1c, 0x0a, - 0x09, 0x62, 0x74, 0x6e, 0x41, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, - 0x52, 0x09, 0x62, 0x74, 0x6e, 0x41, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x22, 0x50, 0x0a, 0x10, 0x49, - 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x12, + 0x52, 0x04, 0x64, 0x69, 0x72, 0x59, 0x12, 0x12, 0x0a, 0x04, 0x76, 0x65, 0x6c, 0x58, 0x18, 0x06, + 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x76, 0x65, 0x6c, 0x58, 0x12, 0x12, 0x0a, 0x04, 0x76, 0x65, + 0x6c, 0x59, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x76, 0x65, 0x6c, 0x59, 0x12, 0x14, + 0x0a, 0x05, 0x73, 0x70, 0x65, 0x65, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, + 0x70, 0x65, 0x65, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x53, 0x74, + 0x61, 0x74, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x62, 0x61, 0x74, 0x74, 0x6c, + 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x6a, 0x6f, 0x69, 0x6e, 0x49, 0x6e, + 0x64, 0x65, 0x78, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x6a, 0x6f, 0x69, 0x6e, 0x49, + 0x6e, 0x64, 0x65, 0x78, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x6f, 0x6c, 0x6c, 0x69, 0x64, 0x65, 0x72, + 0x52, 0x61, 0x64, 0x69, 0x75, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, + 0x6c, 0x6c, 0x69, 0x64, 0x65, 0x72, 0x52, 0x61, 0x64, 0x69, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, + 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x72, + 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, + 0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x12, 0x2c, 0x0a, 0x11, + 0x6c, 0x61, 0x73, 0x74, 0x4d, 0x6f, 0x76, 0x65, 0x47, 0x6d, 0x74, 0x4d, 0x69, 0x6c, 0x6c, 0x69, + 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52, 0x11, 0x6c, 0x61, 0x73, 0x74, 0x4d, 0x6f, 0x76, + 0x65, 0x47, 0x6d, 0x74, 0x4d, 0x69, 0x6c, 0x6c, 0x69, 0x73, 0x12, 0x28, 0x0a, 0x0f, 0x66, 0x72, + 0x61, 0x6d, 0x65, 0x73, 0x54, 0x6f, 0x52, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x18, 0x0f, 0x20, + 0x01, 0x28, 0x05, 0x52, 0x0f, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x54, 0x6f, 0x52, 0x65, 0x63, + 0x6f, 0x76, 0x65, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x68, 0x70, 0x18, 0x10, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x02, 0x68, 0x70, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x61, 0x78, 0x48, 0x70, 0x18, 0x11, 0x20, + 0x01, 0x28, 0x05, 0x52, 0x05, 0x6d, 0x61, 0x78, 0x48, 0x70, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x68, + 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x65, 0x18, 0x12, 0x20, 0x01, + 0x28, 0x05, 0x52, 0x0e, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x53, 0x74, 0x61, + 0x74, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x6e, 0x41, 0x69, 0x72, 0x18, 0x13, 0x20, 0x01, 0x28, + 0x08, 0x52, 0x05, 0x69, 0x6e, 0x41, 0x69, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, + 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, + 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, + 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, + 0x0a, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, + 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x22, 0x6f, 0x0a, 0x11, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, + 0x72, 0x61, 0x6d, 0x65, 0x44, 0x65, 0x63, 0x6f, 0x64, 0x65, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x64, + 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x64, 0x78, 0x12, 0x0e, 0x0a, 0x02, 0x64, + 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x64, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x62, + 0x74, 0x6e, 0x41, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, + 0x62, 0x74, 0x6e, 0x41, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x1c, 0x0a, 0x09, 0x62, 0x74, 0x6e, + 0x42, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x62, 0x74, + 0x6e, 0x42, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x22, 0x50, 0x0a, 0x10, 0x49, 0x6e, 0x70, 0x75, 0x74, + 0x46, 0x72, 0x61, 0x6d, 0x65, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x12, 0x22, 0x0a, 0x0c, 0x69, + 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x05, 0x52, 0x0c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x12, + 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, + 0x52, 0x07, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x64, 0x22, 0x7c, 0x0a, 0x12, 0x49, 0x6e, 0x70, + 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, - 0x65, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x64, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x65, 0x64, 0x22, 0x7c, 0x0a, - 0x12, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x73, - 0x79, 0x6e, 0x63, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, - 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x69, 0x6e, 0x70, 0x75, 0x74, - 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x69, 0x6e, 0x70, 0x75, 0x74, - 0x4c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x04, 0x52, 0x09, 0x69, 0x6e, 0x70, 0x75, - 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, - 0x65, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x63, 0x6f, - 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x65, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x3b, 0x0a, 0x0f, 0x48, - 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x12, 0x28, - 0x0a, 0x0f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, - 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, - 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0xb8, 0x02, 0x0a, 0x05, 0x57, 0x73, 0x52, - 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x73, 0x67, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x05, 0x52, 0x05, 0x6d, 0x73, 0x67, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x79, - 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x79, - 0x65, 0x72, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x63, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, - 0x05, 0x52, 0x03, 0x61, 0x63, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x6a, 0x6f, 0x69, 0x6e, 0x49, 0x6e, - 0x64, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x6a, 0x6f, 0x69, 0x6e, 0x49, - 0x6e, 0x64, 0x65, 0x78, 0x12, 0x24, 0x0a, 0x0d, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x46, 0x72, - 0x61, 0x6d, 0x65, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x61, 0x63, 0x6b, - 0x69, 0x6e, 0x67, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x2e, 0x0a, 0x12, 0x61, 0x63, - 0x6b, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, - 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x12, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x49, 0x6e, - 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x4e, 0x0a, 0x15, 0x69, 0x6e, - 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x42, 0x61, - 0x74, 0x63, 0x68, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x73, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x55, 0x70, 0x73, - 0x79, 0x6e, 0x63, 0x52, 0x15, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x55, - 0x70, 0x73, 0x79, 0x6e, 0x63, 0x42, 0x61, 0x74, 0x63, 0x68, 0x12, 0x27, 0x0a, 0x02, 0x68, 0x62, - 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, - 0x48, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x52, - 0x02, 0x68, 0x62, 0x22, 0x89, 0x02, 0x0a, 0x06, 0x57, 0x73, 0x52, 0x65, 0x73, 0x70, 0x12, 0x10, - 0x0a, 0x03, 0x72, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x72, 0x65, 0x74, - 0x12, 0x20, 0x0a, 0x0b, 0x65, 0x63, 0x68, 0x6f, 0x65, 0x64, 0x4d, 0x73, 0x67, 0x49, 0x64, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x65, 0x63, 0x68, 0x6f, 0x65, 0x64, 0x4d, 0x73, 0x67, - 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x63, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, - 0x03, 0x61, 0x63, 0x74, 0x12, 0x2b, 0x0a, 0x03, 0x72, 0x64, 0x66, 0x18, 0x04, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x19, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x44, - 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x52, 0x03, 0x72, 0x64, - 0x66, 0x12, 0x54, 0x0a, 0x17, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44, - 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x42, 0x61, 0x74, 0x63, 0x68, 0x18, 0x05, 0x20, 0x03, - 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x49, 0x6e, 0x70, 0x75, - 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x52, 0x17, - 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, - 0x6e, 0x63, 0x42, 0x61, 0x74, 0x63, 0x68, 0x12, 0x36, 0x0a, 0x08, 0x62, 0x63, 0x69, 0x46, 0x72, - 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x73, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x69, 0x64, 0x65, - 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x62, 0x63, 0x69, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x22, - 0xc6, 0x01, 0x0a, 0x14, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x73, 0x42, 0x75, 0x66, 0x66, 0x65, 0x72, - 0x53, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x12, 0x2a, 0x0a, 0x10, 0x72, 0x65, 0x66, 0x52, - 0x65, 0x6e, 0x64, 0x65, 0x72, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x10, 0x72, 0x65, 0x66, 0x52, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x46, 0x72, 0x61, - 0x6d, 0x65, 0x49, 0x64, 0x12, 0x28, 0x0a, 0x0f, 0x75, 0x6e, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, - 0x6d, 0x65, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0f, 0x75, - 0x6e, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x65, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x58, - 0x0a, 0x19, 0x74, 0x6f, 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, - 0x6d, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, - 0x0b, 0x32, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, - 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x52, 0x19, 0x74, - 0x6f, 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44, - 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x73, 0x22, 0xe5, 0x05, 0x0a, 0x0b, 0x4d, 0x65, 0x6c, - 0x65, 0x65, 0x42, 0x75, 0x6c, 0x6c, 0x65, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x62, 0x61, 0x74, 0x74, - 0x6c, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, - 0x0d, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x49, 0x64, 0x12, 0x24, - 0x0a, 0x0d, 0x73, 0x74, 0x61, 0x72, 0x74, 0x75, 0x70, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x73, 0x74, 0x61, 0x72, 0x74, 0x75, 0x70, 0x46, 0x72, - 0x61, 0x6d, 0x65, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x46, 0x72, - 0x61, 0x6d, 0x65, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x61, 0x63, 0x74, 0x69, - 0x76, 0x65, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x72, 0x65, 0x63, 0x6f, - 0x76, 0x65, 0x72, 0x79, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, - 0x52, 0x0e, 0x72, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, - 0x12, 0x34, 0x0a, 0x15, 0x72, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x46, 0x72, 0x61, 0x6d, - 0x65, 0x73, 0x4f, 0x6e, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, - 0x15, 0x72, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x4f, - 0x6e, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x12, 0x30, 0x0a, 0x13, 0x72, 0x65, 0x63, 0x6f, 0x76, 0x65, - 0x72, 0x79, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x4f, 0x6e, 0x48, 0x69, 0x74, 0x18, 0x06, 0x20, - 0x01, 0x28, 0x05, 0x52, 0x13, 0x72, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x46, 0x72, 0x61, - 0x6d, 0x65, 0x73, 0x4f, 0x6e, 0x48, 0x69, 0x74, 0x12, 0x35, 0x0a, 0x0b, 0x6d, 0x6f, 0x76, 0x65, - 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, - 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x56, 0x65, 0x63, - 0x32, 0x44, 0x52, 0x0b, 0x6d, 0x6f, 0x76, 0x65, 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x12, - 0x22, 0x0a, 0x0c, 0x68, 0x69, 0x74, 0x62, 0x6f, 0x78, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, - 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x68, 0x69, 0x74, 0x62, 0x6f, 0x78, 0x4f, 0x66, 0x66, - 0x73, 0x65, 0x74, 0x12, 0x33, 0x0a, 0x0a, 0x68, 0x69, 0x74, 0x62, 0x6f, 0x78, 0x53, 0x69, 0x7a, - 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x56, 0x65, 0x63, 0x32, 0x44, 0x52, 0x0a, 0x68, 0x69, - 0x74, 0x62, 0x6f, 0x78, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x38, 0x0a, 0x17, 0x6f, 0x72, 0x69, 0x67, - 0x69, 0x6e, 0x61, 0x74, 0x65, 0x64, 0x52, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x46, 0x72, 0x61, 0x6d, - 0x65, 0x49, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x17, 0x6f, 0x72, 0x69, 0x67, 0x69, - 0x6e, 0x61, 0x74, 0x65, 0x64, 0x52, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x46, 0x72, 0x61, 0x6d, 0x65, - 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x68, 0x69, 0x74, 0x53, 0x74, 0x75, 0x6e, 0x46, 0x72, 0x61, - 0x6d, 0x65, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x68, 0x69, 0x74, 0x53, 0x74, - 0x75, 0x6e, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x12, 0x28, 0x0a, 0x0f, 0x62, 0x6c, 0x6f, 0x63, - 0x6b, 0x53, 0x74, 0x75, 0x6e, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, - 0x05, 0x52, 0x0f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x53, 0x74, 0x75, 0x6e, 0x46, 0x72, 0x61, 0x6d, - 0x65, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x75, 0x73, 0x68, 0x62, 0x61, 0x63, 0x6b, 0x18, 0x0d, - 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x70, 0x75, 0x73, 0x68, 0x62, 0x61, 0x63, 0x6b, 0x12, 0x2e, - 0x0a, 0x12, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, - 0x54, 0x79, 0x70, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52, 0x12, 0x72, 0x65, 0x6c, 0x65, - 0x61, 0x73, 0x65, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, - 0x0a, 0x06, 0x64, 0x61, 0x6d, 0x61, 0x67, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, - 0x64, 0x61, 0x6d, 0x61, 0x67, 0x65, 0x12, 0x2c, 0x0a, 0x11, 0x6f, 0x66, 0x66, 0x65, 0x6e, 0x64, - 0x65, 0x72, 0x4a, 0x6f, 0x69, 0x6e, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x10, 0x20, 0x01, 0x28, - 0x05, 0x52, 0x11, 0x6f, 0x66, 0x66, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x4a, 0x6f, 0x69, 0x6e, 0x49, - 0x6e, 0x64, 0x65, 0x78, 0x12, 0x2a, 0x0a, 0x10, 0x6f, 0x66, 0x66, 0x65, 0x6e, 0x64, 0x65, 0x72, - 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49, 0x64, 0x18, 0x11, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, - 0x6f, 0x66, 0x66, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49, 0x64, - 0x22, 0x98, 0x0d, 0x0a, 0x12, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x69, - 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x74, 0x61, 0x67, 0x65, - 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x67, - 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x5f, 0x0a, 0x11, 0x73, 0x74, 0x72, 0x54, 0x6f, 0x56, 0x65, - 0x63, 0x32, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x61, 0x70, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, - 0x32, 0x31, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, - 0x43, 0x6f, 0x6c, 0x6c, 0x69, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x53, 0x74, 0x72, - 0x54, 0x6f, 0x56, 0x65, 0x63, 0x32, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x61, 0x70, 0x45, 0x6e, - 0x74, 0x72, 0x79, 0x52, 0x11, 0x73, 0x74, 0x72, 0x54, 0x6f, 0x56, 0x65, 0x63, 0x32, 0x44, 0x4c, - 0x69, 0x73, 0x74, 0x4d, 0x61, 0x70, 0x12, 0x6b, 0x0a, 0x15, 0x73, 0x74, 0x72, 0x54, 0x6f, 0x50, - 0x6f, 0x6c, 0x79, 0x67, 0x6f, 0x6e, 0x32, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x61, 0x70, 0x18, - 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x42, + 0x65, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x4c, 0x69, 0x73, 0x74, + 0x18, 0x02, 0x20, 0x03, 0x28, 0x04, 0x52, 0x09, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x4c, 0x69, 0x73, + 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x65, 0x64, 0x4c, 0x69, + 0x73, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, + 0x6d, 0x65, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x3b, 0x0a, 0x0f, 0x48, 0x65, 0x61, 0x72, 0x74, + 0x62, 0x65, 0x61, 0x74, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x12, 0x28, 0x0a, 0x0f, 0x63, 0x6c, + 0x69, 0x65, 0x6e, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x03, 0x52, 0x0f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x73, + 0x74, 0x61, 0x6d, 0x70, 0x22, 0xb8, 0x02, 0x0a, 0x05, 0x57, 0x73, 0x52, 0x65, 0x71, 0x12, 0x14, + 0x0a, 0x05, 0x6d, 0x73, 0x67, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6d, + 0x73, 0x67, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49, 0x64, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49, 0x64, + 0x12, 0x10, 0x0a, 0x03, 0x61, 0x63, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x61, + 0x63, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x6a, 0x6f, 0x69, 0x6e, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x18, + 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x6a, 0x6f, 0x69, 0x6e, 0x49, 0x6e, 0x64, 0x65, 0x78, + 0x12, 0x24, 0x0a, 0x0d, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, + 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x46, + 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x2e, 0x0a, 0x12, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, + 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, + 0x28, 0x05, 0x52, 0x12, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, + 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x4e, 0x0a, 0x15, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, + 0x72, 0x61, 0x6d, 0x65, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x42, 0x61, 0x74, 0x63, 0x68, 0x18, + 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x49, + 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x52, + 0x15, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x55, 0x70, 0x73, 0x79, 0x6e, + 0x63, 0x42, 0x61, 0x74, 0x63, 0x68, 0x12, 0x27, 0x0a, 0x02, 0x68, 0x62, 0x18, 0x08, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x48, 0x65, 0x61, 0x72, + 0x74, 0x62, 0x65, 0x61, 0x74, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x52, 0x02, 0x68, 0x62, 0x22, + 0x89, 0x02, 0x0a, 0x06, 0x57, 0x73, 0x52, 0x65, 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x65, + 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x72, 0x65, 0x74, 0x12, 0x20, 0x0a, 0x0b, + 0x65, 0x63, 0x68, 0x6f, 0x65, 0x64, 0x4d, 0x73, 0x67, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x05, 0x52, 0x0b, 0x65, 0x63, 0x68, 0x6f, 0x65, 0x64, 0x4d, 0x73, 0x67, 0x49, 0x64, 0x12, 0x10, + 0x0a, 0x03, 0x61, 0x63, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x61, 0x63, 0x74, + 0x12, 0x2b, 0x0a, 0x03, 0x72, 0x64, 0x66, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x44, 0x6f, 0x77, 0x6e, 0x73, + 0x79, 0x6e, 0x63, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x52, 0x03, 0x72, 0x64, 0x66, 0x12, 0x54, 0x0a, + 0x17, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x73, + 0x79, 0x6e, 0x63, 0x42, 0x61, 0x74, 0x63, 0x68, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, + 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, + 0x6d, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x52, 0x17, 0x69, 0x6e, 0x70, 0x75, + 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x42, 0x61, + 0x74, 0x63, 0x68, 0x12, 0x36, 0x0a, 0x08, 0x62, 0x63, 0x69, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x18, + 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x69, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, - 0x6f, 0x2e, 0x53, 0x74, 0x72, 0x54, 0x6f, 0x50, 0x6f, 0x6c, 0x79, 0x67, 0x6f, 0x6e, 0x32, 0x44, - 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x15, 0x73, 0x74, + 0x6f, 0x52, 0x08, 0x62, 0x63, 0x69, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x22, 0xc6, 0x01, 0x0a, 0x14, + 0x49, 0x6e, 0x70, 0x75, 0x74, 0x73, 0x42, 0x75, 0x66, 0x66, 0x65, 0x72, 0x53, 0x6e, 0x61, 0x70, + 0x73, 0x68, 0x6f, 0x74, 0x12, 0x2a, 0x0a, 0x10, 0x72, 0x65, 0x66, 0x52, 0x65, 0x6e, 0x64, 0x65, + 0x72, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, + 0x72, 0x65, 0x66, 0x52, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, + 0x12, 0x28, 0x0a, 0x0f, 0x75, 0x6e, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x65, 0x64, 0x4d, + 0x61, 0x73, 0x6b, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0f, 0x75, 0x6e, 0x63, 0x6f, 0x6e, + 0x66, 0x69, 0x72, 0x6d, 0x65, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x12, 0x58, 0x0a, 0x19, 0x74, 0x6f, + 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44, 0x6f, + 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, + 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x52, 0x19, 0x74, 0x6f, 0x53, 0x65, 0x6e, + 0x64, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x73, + 0x79, 0x6e, 0x63, 0x73, 0x22, 0xe5, 0x05, 0x0a, 0x0b, 0x4d, 0x65, 0x6c, 0x65, 0x65, 0x42, 0x75, + 0x6c, 0x6c, 0x65, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x4c, 0x6f, + 0x63, 0x61, 0x6c, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x62, 0x61, 0x74, + 0x74, 0x6c, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x73, 0x74, + 0x61, 0x72, 0x74, 0x75, 0x70, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x05, 0x52, 0x0d, 0x73, 0x74, 0x61, 0x72, 0x74, 0x75, 0x70, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, + 0x12, 0x22, 0x0a, 0x0c, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, + 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x46, 0x72, + 0x61, 0x6d, 0x65, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x72, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, + 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x72, 0x65, + 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x12, 0x34, 0x0a, 0x15, + 0x72, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x4f, 0x6e, + 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x15, 0x72, 0x65, 0x63, + 0x6f, 0x76, 0x65, 0x72, 0x79, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x4f, 0x6e, 0x42, 0x6c, 0x6f, + 0x63, 0x6b, 0x12, 0x30, 0x0a, 0x13, 0x72, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x46, 0x72, + 0x61, 0x6d, 0x65, 0x73, 0x4f, 0x6e, 0x48, 0x69, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, + 0x13, 0x72, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x4f, + 0x6e, 0x48, 0x69, 0x74, 0x12, 0x35, 0x0a, 0x0b, 0x6d, 0x6f, 0x76, 0x65, 0x66, 0x6f, 0x72, 0x77, + 0x61, 0x72, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x73, 0x68, 0x61, 0x72, + 0x65, 0x64, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x56, 0x65, 0x63, 0x32, 0x44, 0x52, 0x0b, + 0x6d, 0x6f, 0x76, 0x65, 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x68, + 0x69, 0x74, 0x62, 0x6f, 0x78, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, + 0x01, 0x52, 0x0c, 0x68, 0x69, 0x74, 0x62, 0x6f, 0x78, 0x4f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, + 0x33, 0x0a, 0x0a, 0x68, 0x69, 0x74, 0x62, 0x6f, 0x78, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x09, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x70, 0x72, 0x6f, 0x74, + 0x6f, 0x73, 0x2e, 0x56, 0x65, 0x63, 0x32, 0x44, 0x52, 0x0a, 0x68, 0x69, 0x74, 0x62, 0x6f, 0x78, + 0x53, 0x69, 0x7a, 0x65, 0x12, 0x38, 0x0a, 0x17, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x74, + 0x65, 0x64, 0x52, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x18, + 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x17, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x65, + 0x64, 0x52, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x24, + 0x0a, 0x0d, 0x68, 0x69, 0x74, 0x53, 0x74, 0x75, 0x6e, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x18, + 0x0b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x68, 0x69, 0x74, 0x53, 0x74, 0x75, 0x6e, 0x46, 0x72, + 0x61, 0x6d, 0x65, 0x73, 0x12, 0x28, 0x0a, 0x0f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x53, 0x74, 0x75, + 0x6e, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x62, + 0x6c, 0x6f, 0x63, 0x6b, 0x53, 0x74, 0x75, 0x6e, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x12, 0x1a, + 0x0a, 0x08, 0x70, 0x75, 0x73, 0x68, 0x62, 0x61, 0x63, 0x6b, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x01, + 0x52, 0x08, 0x70, 0x75, 0x73, 0x68, 0x62, 0x61, 0x63, 0x6b, 0x12, 0x2e, 0x0a, 0x12, 0x72, 0x65, + 0x6c, 0x65, 0x61, 0x73, 0x65, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, + 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52, 0x12, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x54, + 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x61, + 0x6d, 0x61, 0x67, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x64, 0x61, 0x6d, 0x61, + 0x67, 0x65, 0x12, 0x2c, 0x0a, 0x11, 0x6f, 0x66, 0x66, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x4a, 0x6f, + 0x69, 0x6e, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x10, 0x20, 0x01, 0x28, 0x05, 0x52, 0x11, 0x6f, + 0x66, 0x66, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x4a, 0x6f, 0x69, 0x6e, 0x49, 0x6e, 0x64, 0x65, 0x78, + 0x12, 0x2a, 0x0a, 0x10, 0x6f, 0x66, 0x66, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x50, 0x6c, 0x61, 0x79, + 0x65, 0x72, 0x49, 0x64, 0x18, 0x11, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x6f, 0x66, 0x66, 0x65, + 0x6e, 0x64, 0x65, 0x72, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49, 0x64, 0x22, 0xf2, 0x0e, 0x0a, + 0x12, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x69, 0x64, 0x65, 0x72, 0x49, + 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x74, 0x61, 0x67, 0x65, 0x4e, 0x61, 0x6d, 0x65, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x67, 0x65, 0x4e, 0x61, 0x6d, + 0x65, 0x12, 0x5f, 0x0a, 0x11, 0x73, 0x74, 0x72, 0x54, 0x6f, 0x56, 0x65, 0x63, 0x32, 0x44, 0x4c, + 0x69, 0x73, 0x74, 0x4d, 0x61, 0x70, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6f, 0x6c, 0x6c, + 0x69, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x53, 0x74, 0x72, 0x54, 0x6f, 0x56, 0x65, + 0x63, 0x32, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, + 0x11, 0x73, 0x74, 0x72, 0x54, 0x6f, 0x56, 0x65, 0x63, 0x32, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x4d, + 0x61, 0x70, 0x12, 0x6b, 0x0a, 0x15, 0x73, 0x74, 0x72, 0x54, 0x6f, 0x50, 0x6f, 0x6c, 0x79, 0x67, + 0x6f, 0x6e, 0x32, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x61, 0x70, 0x18, 0x03, 0x20, 0x03, 0x28, + 0x0b, 0x32, 0x35, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, + 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x69, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x53, 0x74, 0x72, 0x54, 0x6f, 0x50, 0x6f, 0x6c, 0x79, 0x67, 0x6f, 0x6e, 0x32, 0x44, 0x4c, 0x69, 0x73, 0x74, - 0x4d, 0x61, 0x70, 0x12, 0x26, 0x0a, 0x0e, 0x73, 0x74, 0x61, 0x67, 0x65, 0x44, 0x69, 0x73, 0x63, - 0x72, 0x65, 0x74, 0x65, 0x57, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x73, 0x74, 0x61, - 0x67, 0x65, 0x44, 0x69, 0x73, 0x63, 0x72, 0x65, 0x74, 0x65, 0x57, 0x12, 0x26, 0x0a, 0x0e, 0x73, - 0x74, 0x61, 0x67, 0x65, 0x44, 0x69, 0x73, 0x63, 0x72, 0x65, 0x74, 0x65, 0x48, 0x18, 0x05, 0x20, - 0x01, 0x28, 0x05, 0x52, 0x0e, 0x73, 0x74, 0x61, 0x67, 0x65, 0x44, 0x69, 0x73, 0x63, 0x72, 0x65, - 0x74, 0x65, 0x48, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x67, 0x65, 0x54, 0x69, 0x6c, 0x65, - 0x57, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x73, 0x74, 0x61, 0x67, 0x65, 0x54, 0x69, - 0x6c, 0x65, 0x57, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x67, 0x65, 0x54, 0x69, 0x6c, 0x65, - 0x48, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x73, 0x74, 0x61, 0x67, 0x65, 0x54, 0x69, - 0x6c, 0x65, 0x48, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x54, - 0x6f, 0x50, 0x69, 0x6e, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x69, 0x6e, 0x74, - 0x65, 0x72, 0x76, 0x61, 0x6c, 0x54, 0x6f, 0x50, 0x69, 0x6e, 0x67, 0x12, 0x34, 0x0a, 0x15, 0x77, - 0x69, 0x6c, 0x6c, 0x4b, 0x69, 0x63, 0x6b, 0x49, 0x66, 0x49, 0x6e, 0x61, 0x63, 0x74, 0x69, 0x76, - 0x65, 0x46, 0x6f, 0x72, 0x18, 0x09, 0x20, 0x01, 0x28, 0x05, 0x52, 0x15, 0x77, 0x69, 0x6c, 0x6c, - 0x4b, 0x69, 0x63, 0x6b, 0x49, 0x66, 0x49, 0x6e, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x46, 0x6f, - 0x72, 0x12, 0x20, 0x0a, 0x0b, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x64, - 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x6f, 0x6f, - 0x6d, 0x49, 0x64, 0x12, 0x32, 0x0a, 0x14, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x44, 0x75, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, - 0x05, 0x52, 0x14, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x12, 0x30, 0x0a, 0x13, 0x62, 0x61, 0x74, 0x74, 0x6c, - 0x65, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x61, 0x6e, 0x6f, 0x73, 0x18, 0x0d, - 0x20, 0x01, 0x28, 0x03, 0x52, 0x13, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x44, 0x75, 0x72, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x61, 0x6e, 0x6f, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x65, 0x72, - 0x76, 0x65, 0x72, 0x46, 0x70, 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x73, 0x65, - 0x72, 0x76, 0x65, 0x72, 0x46, 0x70, 0x73, 0x12, 0x2a, 0x0a, 0x10, 0x69, 0x6e, 0x70, 0x75, 0x74, - 0x44, 0x65, 0x6c, 0x61, 0x79, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x0f, 0x20, 0x01, 0x28, - 0x05, 0x52, 0x10, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x46, 0x72, 0x61, - 0x6d, 0x65, 0x73, 0x12, 0x2a, 0x0a, 0x10, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x63, 0x61, 0x6c, - 0x65, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x10, 0x69, - 0x6e, 0x70, 0x75, 0x74, 0x53, 0x63, 0x61, 0x6c, 0x65, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x12, - 0x26, 0x0a, 0x0e, 0x6e, 0x73, 0x74, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x46, 0x72, 0x61, 0x6d, 0x65, - 0x73, 0x18, 0x11, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x6e, 0x73, 0x74, 0x44, 0x65, 0x6c, 0x61, - 0x79, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x12, 0x46, 0x0a, 0x1e, 0x69, 0x6e, 0x70, 0x75, 0x74, - 0x46, 0x72, 0x61, 0x6d, 0x65, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x44, 0x65, 0x6c, 0x61, 0x79, - 0x54, 0x6f, 0x6c, 0x65, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x05, 0x52, - 0x1e, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x55, 0x70, 0x73, 0x79, 0x6e, - 0x63, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x54, 0x6f, 0x6c, 0x65, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x12, - 0x48, 0x0a, 0x1f, 0x6d, 0x61, 0x78, 0x43, 0x68, 0x61, 0x73, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x6e, - 0x64, 0x65, 0x72, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x50, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, - 0x74, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x05, 0x52, 0x1f, 0x6d, 0x61, 0x78, 0x43, 0x68, 0x61, - 0x73, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, - 0x50, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x2c, 0x0a, 0x11, 0x70, 0x6c, 0x61, - 0x79, 0x65, 0x72, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x18, 0x14, - 0x20, 0x01, 0x28, 0x05, 0x52, 0x11, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x42, 0x61, 0x74, 0x74, - 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3c, 0x0a, 0x19, 0x72, 0x6f, 0x6c, 0x6c, 0x62, - 0x61, 0x63, 0x6b, 0x45, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, 0x44, 0x74, 0x4d, 0x69, - 0x6c, 0x6c, 0x69, 0x73, 0x18, 0x15, 0x20, 0x01, 0x28, 0x01, 0x52, 0x19, 0x72, 0x6f, 0x6c, 0x6c, - 0x62, 0x61, 0x63, 0x6b, 0x45, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, 0x44, 0x74, 0x4d, - 0x69, 0x6c, 0x6c, 0x69, 0x73, 0x12, 0x3a, 0x0a, 0x18, 0x72, 0x6f, 0x6c, 0x6c, 0x62, 0x61, 0x63, - 0x6b, 0x45, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, 0x44, 0x74, 0x4e, 0x61, 0x6e, 0x6f, - 0x73, 0x18, 0x16, 0x20, 0x01, 0x28, 0x03, 0x52, 0x18, 0x72, 0x6f, 0x6c, 0x6c, 0x62, 0x61, 0x63, - 0x6b, 0x45, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, 0x44, 0x74, 0x4e, 0x61, 0x6e, 0x6f, - 0x73, 0x12, 0x38, 0x0a, 0x17, 0x77, 0x6f, 0x72, 0x6c, 0x64, 0x54, 0x6f, 0x56, 0x69, 0x72, 0x74, - 0x75, 0x61, 0x6c, 0x47, 0x72, 0x69, 0x64, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x17, 0x20, 0x01, - 0x28, 0x01, 0x52, 0x17, 0x77, 0x6f, 0x72, 0x6c, 0x64, 0x54, 0x6f, 0x56, 0x69, 0x72, 0x74, 0x75, - 0x61, 0x6c, 0x47, 0x72, 0x69, 0x64, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x12, 0x38, 0x0a, 0x17, 0x76, - 0x69, 0x72, 0x74, 0x75, 0x61, 0x6c, 0x47, 0x72, 0x69, 0x64, 0x54, 0x6f, 0x57, 0x6f, 0x72, 0x6c, - 0x64, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x18, 0x20, 0x01, 0x28, 0x01, 0x52, 0x17, 0x76, 0x69, - 0x72, 0x74, 0x75, 0x61, 0x6c, 0x47, 0x72, 0x69, 0x64, 0x54, 0x6f, 0x57, 0x6f, 0x72, 0x6c, 0x64, - 0x52, 0x61, 0x74, 0x69, 0x6f, 0x12, 0x2c, 0x0a, 0x11, 0x73, 0x70, 0x41, 0x74, 0x6b, 0x4c, 0x6f, - 0x6f, 0x6b, 0x75, 0x70, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x19, 0x20, 0x01, 0x28, 0x05, - 0x52, 0x11, 0x73, 0x70, 0x41, 0x74, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x46, 0x72, 0x61, - 0x6d, 0x65, 0x73, 0x12, 0x28, 0x0a, 0x0f, 0x72, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x43, 0x61, 0x63, - 0x68, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x72, 0x65, - 0x6e, 0x64, 0x65, 0x72, 0x43, 0x61, 0x63, 0x68, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x5c, 0x0a, - 0x10, 0x6d, 0x65, 0x6c, 0x65, 0x65, 0x53, 0x6b, 0x69, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, - 0x67, 0x18, 0x1b, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, - 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x69, 0x64, 0x65, 0x72, 0x49, - 0x6e, 0x66, 0x6f, 0x2e, 0x4d, 0x65, 0x6c, 0x65, 0x65, 0x53, 0x6b, 0x69, 0x6c, 0x6c, 0x43, 0x6f, - 0x6e, 0x66, 0x69, 0x67, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x10, 0x6d, 0x65, 0x6c, 0x65, 0x65, - 0x53, 0x6b, 0x69, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x1a, 0x5d, 0x0a, 0x16, 0x53, - 0x74, 0x72, 0x54, 0x6f, 0x56, 0x65, 0x63, 0x32, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x61, 0x70, - 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2d, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x56, 0x65, 0x63, 0x32, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x52, - 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x65, 0x0a, 0x1a, 0x53, 0x74, - 0x72, 0x54, 0x6f, 0x50, 0x6f, 0x6c, 0x79, 0x67, 0x6f, 0x6e, 0x32, 0x44, 0x4c, 0x69, 0x73, 0x74, - 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x31, 0x0a, 0x05, 0x76, 0x61, - 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x73, 0x68, 0x61, 0x72, - 0x65, 0x64, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x50, 0x6f, 0x6c, 0x79, 0x67, 0x6f, 0x6e, - 0x32, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, - 0x01, 0x1a, 0x58, 0x0a, 0x15, 0x4d, 0x65, 0x6c, 0x65, 0x65, 0x53, 0x6b, 0x69, 0x6c, 0x6c, 0x43, - 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, - 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x29, 0x0a, 0x05, - 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x4d, 0x65, 0x6c, 0x65, 0x65, 0x42, 0x75, 0x6c, 0x6c, 0x65, 0x74, - 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xd2, 0x02, 0x0a, 0x11, - 0x52, 0x6f, 0x6f, 0x6d, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x46, 0x72, 0x61, 0x6d, - 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, - 0x64, 0x12, 0x40, 0x0a, 0x07, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, - 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, - 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x2e, 0x50, 0x6c, - 0x61, 0x79, 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x70, 0x6c, 0x61, 0x79, - 0x65, 0x72, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e, - 0x4e, 0x61, 0x6e, 0x6f, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x63, 0x6f, 0x75, - 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x4e, 0x61, 0x6e, 0x6f, 0x73, 0x12, 0x37, 0x0a, 0x0c, 0x6d, - 0x65, 0x6c, 0x65, 0x65, 0x42, 0x75, 0x6c, 0x6c, 0x65, 0x74, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, + 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x15, 0x73, 0x74, 0x72, 0x54, 0x6f, 0x50, + 0x6f, 0x6c, 0x79, 0x67, 0x6f, 0x6e, 0x32, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x61, 0x70, 0x12, + 0x26, 0x0a, 0x0e, 0x73, 0x74, 0x61, 0x67, 0x65, 0x44, 0x69, 0x73, 0x63, 0x72, 0x65, 0x74, 0x65, + 0x57, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x73, 0x74, 0x61, 0x67, 0x65, 0x44, 0x69, + 0x73, 0x63, 0x72, 0x65, 0x74, 0x65, 0x57, 0x12, 0x26, 0x0a, 0x0e, 0x73, 0x74, 0x61, 0x67, 0x65, + 0x44, 0x69, 0x73, 0x63, 0x72, 0x65, 0x74, 0x65, 0x48, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, + 0x0e, 0x73, 0x74, 0x61, 0x67, 0x65, 0x44, 0x69, 0x73, 0x63, 0x72, 0x65, 0x74, 0x65, 0x48, 0x12, + 0x1e, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x67, 0x65, 0x54, 0x69, 0x6c, 0x65, 0x57, 0x18, 0x06, 0x20, + 0x01, 0x28, 0x05, 0x52, 0x0a, 0x73, 0x74, 0x61, 0x67, 0x65, 0x54, 0x69, 0x6c, 0x65, 0x57, 0x12, + 0x1e, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x67, 0x65, 0x54, 0x69, 0x6c, 0x65, 0x48, 0x18, 0x07, 0x20, + 0x01, 0x28, 0x05, 0x52, 0x0a, 0x73, 0x74, 0x61, 0x67, 0x65, 0x54, 0x69, 0x6c, 0x65, 0x48, 0x12, + 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x54, 0x6f, 0x50, 0x69, 0x6e, + 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, + 0x6c, 0x54, 0x6f, 0x50, 0x69, 0x6e, 0x67, 0x12, 0x34, 0x0a, 0x15, 0x77, 0x69, 0x6c, 0x6c, 0x4b, + 0x69, 0x63, 0x6b, 0x49, 0x66, 0x49, 0x6e, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x46, 0x6f, 0x72, + 0x18, 0x09, 0x20, 0x01, 0x28, 0x05, 0x52, 0x15, 0x77, 0x69, 0x6c, 0x6c, 0x4b, 0x69, 0x63, 0x6b, + 0x49, 0x66, 0x49, 0x6e, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x46, 0x6f, 0x72, 0x12, 0x20, 0x0a, + 0x0b, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x0a, 0x20, 0x01, + 0x28, 0x05, 0x52, 0x0b, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, + 0x32, 0x0a, 0x14, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x05, 0x52, 0x14, 0x62, + 0x61, 0x74, 0x74, 0x6c, 0x65, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x72, 0x61, + 0x6d, 0x65, 0x73, 0x12, 0x30, 0x0a, 0x13, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x44, 0x75, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x61, 0x6e, 0x6f, 0x73, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, + 0x52, 0x13, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x4e, 0x61, 0x6e, 0x6f, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x46, + 0x70, 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, + 0x46, 0x70, 0x73, 0x12, 0x2a, 0x0a, 0x10, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x44, 0x65, 0x6c, 0x61, + 0x79, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x69, + 0x6e, 0x70, 0x75, 0x74, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x12, + 0x2a, 0x0a, 0x10, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x53, 0x63, 0x61, 0x6c, 0x65, 0x46, 0x72, 0x61, + 0x6d, 0x65, 0x73, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x10, 0x69, 0x6e, 0x70, 0x75, 0x74, + 0x53, 0x63, 0x61, 0x6c, 0x65, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x6e, + 0x73, 0x74, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x11, 0x20, + 0x01, 0x28, 0x05, 0x52, 0x0e, 0x6e, 0x73, 0x74, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x46, 0x72, 0x61, + 0x6d, 0x65, 0x73, 0x12, 0x46, 0x0a, 0x1e, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, + 0x65, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x54, 0x6f, 0x6c, 0x65, + 0x72, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x05, 0x52, 0x1e, 0x69, 0x6e, 0x70, + 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x44, 0x65, 0x6c, + 0x61, 0x79, 0x54, 0x6f, 0x6c, 0x65, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x48, 0x0a, 0x1f, 0x6d, + 0x61, 0x78, 0x43, 0x68, 0x61, 0x73, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x46, + 0x72, 0x61, 0x6d, 0x65, 0x73, 0x50, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x13, + 0x20, 0x01, 0x28, 0x05, 0x52, 0x1f, 0x6d, 0x61, 0x78, 0x43, 0x68, 0x61, 0x73, 0x69, 0x6e, 0x67, + 0x52, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x50, 0x65, 0x72, 0x55, + 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x2c, 0x0a, 0x11, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x42, + 0x61, 0x74, 0x74, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x65, 0x18, 0x14, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x11, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x53, 0x74, + 0x61, 0x74, 0x65, 0x12, 0x3c, 0x0a, 0x19, 0x72, 0x6f, 0x6c, 0x6c, 0x62, 0x61, 0x63, 0x6b, 0x45, + 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, 0x44, 0x74, 0x4d, 0x69, 0x6c, 0x6c, 0x69, 0x73, + 0x18, 0x15, 0x20, 0x01, 0x28, 0x01, 0x52, 0x19, 0x72, 0x6f, 0x6c, 0x6c, 0x62, 0x61, 0x63, 0x6b, + 0x45, 0x73, 0x74, 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, 0x44, 0x74, 0x4d, 0x69, 0x6c, 0x6c, 0x69, + 0x73, 0x12, 0x3a, 0x0a, 0x18, 0x72, 0x6f, 0x6c, 0x6c, 0x62, 0x61, 0x63, 0x6b, 0x45, 0x73, 0x74, + 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, 0x44, 0x74, 0x4e, 0x61, 0x6e, 0x6f, 0x73, 0x18, 0x16, 0x20, + 0x01, 0x28, 0x03, 0x52, 0x18, 0x72, 0x6f, 0x6c, 0x6c, 0x62, 0x61, 0x63, 0x6b, 0x45, 0x73, 0x74, + 0x69, 0x6d, 0x61, 0x74, 0x65, 0x64, 0x44, 0x74, 0x4e, 0x61, 0x6e, 0x6f, 0x73, 0x12, 0x38, 0x0a, + 0x17, 0x77, 0x6f, 0x72, 0x6c, 0x64, 0x54, 0x6f, 0x56, 0x69, 0x72, 0x74, 0x75, 0x61, 0x6c, 0x47, + 0x72, 0x69, 0x64, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x17, 0x20, 0x01, 0x28, 0x01, 0x52, 0x17, + 0x77, 0x6f, 0x72, 0x6c, 0x64, 0x54, 0x6f, 0x56, 0x69, 0x72, 0x74, 0x75, 0x61, 0x6c, 0x47, 0x72, + 0x69, 0x64, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x12, 0x38, 0x0a, 0x17, 0x76, 0x69, 0x72, 0x74, 0x75, + 0x61, 0x6c, 0x47, 0x72, 0x69, 0x64, 0x54, 0x6f, 0x57, 0x6f, 0x72, 0x6c, 0x64, 0x52, 0x61, 0x74, + 0x69, 0x6f, 0x18, 0x18, 0x20, 0x01, 0x28, 0x01, 0x52, 0x17, 0x76, 0x69, 0x72, 0x74, 0x75, 0x61, + 0x6c, 0x47, 0x72, 0x69, 0x64, 0x54, 0x6f, 0x57, 0x6f, 0x72, 0x6c, 0x64, 0x52, 0x61, 0x74, 0x69, + 0x6f, 0x12, 0x2c, 0x0a, 0x11, 0x73, 0x70, 0x41, 0x74, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, + 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x19, 0x20, 0x01, 0x28, 0x05, 0x52, 0x11, 0x73, 0x70, + 0x41, 0x74, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x12, + 0x28, 0x0a, 0x0f, 0x72, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x43, 0x61, 0x63, 0x68, 0x65, 0x53, 0x69, + 0x7a, 0x65, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x72, 0x65, 0x6e, 0x64, 0x65, 0x72, + 0x43, 0x61, 0x63, 0x68, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x5c, 0x0a, 0x10, 0x6d, 0x65, 0x6c, + 0x65, 0x65, 0x53, 0x6b, 0x69, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x1b, 0x20, + 0x03, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x42, 0x61, 0x74, + 0x74, 0x6c, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x69, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x2e, + 0x4d, 0x65, 0x6c, 0x65, 0x65, 0x53, 0x6b, 0x69, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, + 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x10, 0x6d, 0x65, 0x6c, 0x65, 0x65, 0x53, 0x6b, 0x69, 0x6c, + 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x38, 0x0a, 0x17, 0x73, 0x6e, 0x61, 0x70, 0x49, + 0x6e, 0x74, 0x6f, 0x50, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x4f, 0x76, 0x65, 0x72, 0x6c, + 0x61, 0x70, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x17, 0x73, 0x6e, 0x61, 0x70, 0x49, 0x6e, + 0x74, 0x6f, 0x50, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, + 0x70, 0x12, 0x3c, 0x0a, 0x19, 0x73, 0x6e, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x6f, 0x50, 0x6c, 0x61, + 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x54, 0x68, 0x72, 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x18, 0x1d, + 0x20, 0x01, 0x28, 0x01, 0x52, 0x19, 0x73, 0x6e, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x6f, 0x50, 0x6c, + 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x54, 0x68, 0x72, 0x65, 0x73, 0x68, 0x6f, 0x6c, 0x64, 0x12, + 0x28, 0x0a, 0x0f, 0x6a, 0x75, 0x6d, 0x70, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x69, 0x74, 0x56, 0x65, + 0x6c, 0x59, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x6a, 0x75, 0x6d, 0x70, 0x69, 0x6e, + 0x67, 0x49, 0x6e, 0x69, 0x74, 0x56, 0x65, 0x6c, 0x59, 0x12, 0x1a, 0x0a, 0x08, 0x67, 0x72, 0x61, + 0x76, 0x69, 0x74, 0x79, 0x58, 0x18, 0x1f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x67, 0x72, 0x61, + 0x76, 0x69, 0x74, 0x79, 0x58, 0x12, 0x1a, 0x0a, 0x08, 0x67, 0x72, 0x61, 0x76, 0x69, 0x74, 0x79, + 0x59, 0x18, 0x20, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x67, 0x72, 0x61, 0x76, 0x69, 0x74, 0x79, + 0x59, 0x1a, 0x5d, 0x0a, 0x16, 0x53, 0x74, 0x72, 0x54, 0x6f, 0x56, 0x65, 0x63, 0x32, 0x44, 0x4c, + 0x69, 0x73, 0x74, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, + 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2d, 0x0a, + 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x73, + 0x68, 0x61, 0x72, 0x65, 0x64, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x56, 0x65, 0x63, 0x32, + 0x44, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, + 0x1a, 0x65, 0x0a, 0x1a, 0x53, 0x74, 0x72, 0x54, 0x6f, 0x50, 0x6f, 0x6c, 0x79, 0x67, 0x6f, 0x6e, + 0x32, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, + 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, + 0x12, 0x31, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x1b, 0x2e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x50, + 0x6f, 0x6c, 0x79, 0x67, 0x6f, 0x6e, 0x32, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x05, 0x76, 0x61, + 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x58, 0x0a, 0x15, 0x4d, 0x65, 0x6c, 0x65, 0x65, + 0x53, 0x6b, 0x69, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x45, 0x6e, 0x74, 0x72, 0x79, + 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, + 0x65, 0x79, 0x12, 0x29, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x4d, 0x65, 0x6c, 0x65, 0x65, - 0x42, 0x75, 0x6c, 0x6c, 0x65, 0x74, 0x52, 0x0c, 0x6d, 0x65, 0x6c, 0x65, 0x65, 0x42, 0x75, 0x6c, - 0x6c, 0x65, 0x74, 0x73, 0x12, 0x36, 0x0a, 0x16, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x55, - 0x6e, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x65, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x18, 0x05, - 0x20, 0x01, 0x28, 0x04, 0x52, 0x16, 0x62, 0x61, 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x55, 0x6e, 0x63, - 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x65, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x1a, 0x52, 0x0a, 0x0c, - 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, - 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2c, - 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x44, 0x6f, 0x77, - 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, - 0x42, 0x13, 0x5a, 0x11, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x73, 0x72, 0x76, 0x2f, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x42, 0x75, 0x6c, 0x6c, 0x65, 0x74, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, + 0x01, 0x22, 0xd2, 0x02, 0x0a, 0x11, 0x52, 0x6f, 0x6f, 0x6d, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, + 0x6e, 0x63, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x40, 0x0a, 0x07, 0x70, 0x6c, 0x61, 0x79, 0x65, + 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x73, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x46, 0x72, + 0x61, 0x6d, 0x65, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, + 0x52, 0x07, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x6f, 0x75, + 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x4e, 0x61, 0x6e, 0x6f, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, + 0x03, 0x52, 0x0e, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x4e, 0x61, 0x6e, 0x6f, + 0x73, 0x12, 0x37, 0x0a, 0x0c, 0x6d, 0x65, 0x6c, 0x65, 0x65, 0x42, 0x75, 0x6c, 0x6c, 0x65, 0x74, + 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, + 0x2e, 0x4d, 0x65, 0x6c, 0x65, 0x65, 0x42, 0x75, 0x6c, 0x6c, 0x65, 0x74, 0x52, 0x0c, 0x6d, 0x65, + 0x6c, 0x65, 0x65, 0x42, 0x75, 0x6c, 0x6c, 0x65, 0x74, 0x73, 0x12, 0x36, 0x0a, 0x16, 0x62, 0x61, + 0x63, 0x6b, 0x65, 0x6e, 0x64, 0x55, 0x6e, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x65, 0x64, + 0x4d, 0x61, 0x73, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x16, 0x62, 0x61, 0x63, 0x6b, + 0x65, 0x6e, 0x64, 0x55, 0x6e, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x65, 0x64, 0x4d, 0x61, + 0x73, 0x6b, 0x1a, 0x52, 0x0a, 0x0c, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, + 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, + 0x03, 0x6b, 0x65, 0x79, 0x12, 0x2c, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x50, 0x6c, 0x61, + 0x79, 0x65, 0x72, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x52, 0x05, 0x76, 0x61, 0x6c, + 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x42, 0x13, 0x5a, 0x11, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, + 0x5f, 0x73, 0x72, 0x76, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x33, } var ( diff --git a/battle_srv/ws/serve.go b/battle_srv/ws/serve.go index c0131c5..e8de933 100644 --- a/battle_srv/ws/serve.go +++ b/battle_srv/ws/serve.go @@ -265,9 +265,14 @@ func Serve(c *gin.Context) { WorldToVirtualGridRatio: pRoom.WorldToVirtualGridRatio, VirtualGridToWorldRatio: pRoom.VirtualGridToWorldRatio, - SpAtkLookupFrames: pRoom.SpAtkLookupFrames, - RenderCacheSize: pRoom.RenderCacheSize, - MeleeSkillConfig: pRoom.MeleeSkillConfig, + SpAtkLookupFrames: pRoom.SpAtkLookupFrames, + RenderCacheSize: pRoom.RenderCacheSize, + MeleeSkillConfig: pRoom.MeleeSkillConfig, + SnapIntoPlatformOverlap: pRoom.SnapIntoPlatformOverlap, + SnapIntoPlatformThreshold: pRoom.SnapIntoPlatformThreshold, + JumpingInitVelY: pRoom.JumpingInitVelY, + GravityX: pRoom.GravityX, + GravityY: pRoom.GravityY, } resp := &pb.WsResp{ diff --git a/charts/jump_sync_spedup.gif b/charts/jump_sync_spedup.gif new file mode 100644 index 0000000..8164ee2 Binary files /dev/null and b/charts/jump_sync_spedup.gif differ diff --git a/charts/smooth_melee_attack_spedup.gif b/charts/smooth_melee_attack_spedup.gif deleted file mode 100644 index d7a83e4..0000000 Binary files a/charts/smooth_melee_attack_spedup.gif and /dev/null differ diff --git a/collider_visualizer/worldColliderDisplay.go b/collider_visualizer/worldColliderDisplay.go index 8a89c11..9e26844 100644 --- a/collider_visualizer/worldColliderDisplay.go +++ b/collider_visualizer/worldColliderDisplay.go @@ -34,15 +34,18 @@ func NewWorldColliderDisplay(game *Game, stageDiscreteW, stageDiscreteH, stageTi spaceOffsetX := float64(spaceW) * 0.5 spaceOffsetY := float64(spaceH) * 0.5 - virtualGridToWorldRatio := 0.1 - playerDefaultSpeed := 20 + worldToVirtualGridRatio := float64(1000) + virtualGridToWorldRatio := float64(1) / worldToVirtualGridRatio + playerDefaultSpeed := 1 * worldToVirtualGridRatio minStep := (int(float64(playerDefaultSpeed)*virtualGridToWorldRatio) << 2) - playerColliderRadius := float64(24) + playerColliderRadius := float64(12) playerColliders := make([]*resolv.Object, len(playerPosList.Eles)) + snapIntoPlatformOverlap := float64(0.1) space := resolv.NewSpace(int(spaceW), int(spaceH), minStep, minStep) for i, playerPos := range playerPosList.Eles { - playerCollider := GenerateRectCollider(playerPos.X, playerPos.Y, playerColliderRadius*2, playerColliderRadius*2, spaceOffsetX, spaceOffsetY, "Player") // [WARNING] Deliberately not using a circle because "resolv v0.5.1" doesn't yet align circle center with space cell center, regardless of the "specified within-object offset" - Logger.Info(fmt.Sprintf("Player Collider#%d: player world pos =(%.2f, %.2f), shape=%v", i, playerPos.X, playerPos.Y, ConvexPolygonStr(playerCollider.Shape.(*resolv.ConvexPolygon)))) + colliderWidth, colliderHeight := playerColliderRadius*2, playerColliderRadius*4 + playerCollider := GenerateRectCollider(playerPos.X, playerPos.Y, colliderWidth, colliderHeight, snapIntoPlatformOverlap, spaceOffsetX, spaceOffsetY, "Player") // [WARNING] Deliberately not using a circle because "resolv v0.5.1" doesn't yet align circle center with space cell center, regardless of the "specified within-object offset" + Logger.Info(fmt.Sprintf("Player Collider#%d: player world pos=(%.2f, %.2f), shape=%v", i, playerPos.X, playerPos.Y, ConvexPolygonStr(playerCollider.Shape.(*resolv.ConvexPolygon)))) playerColliders[i] = playerCollider space.Add(playerCollider) } @@ -50,7 +53,7 @@ func NewWorldColliderDisplay(game *Game, stageDiscreteW, stageDiscreteH, stageTi barrierLocalId := 0 for _, barrierUnaligned := range barrierList.Eles { barrierCollider := GenerateConvexPolygonCollider(barrierUnaligned, spaceOffsetX, spaceOffsetY, "Barrier") - Logger.Info(fmt.Sprintf("Added barrier: shape=%v", ConvexPolygonStr(barrierCollider.Shape.(*resolv.ConvexPolygon)))) + Logger.Debug(fmt.Sprintf("Added barrier: shape=%v", ConvexPolygonStr(barrierCollider.Shape.(*resolv.ConvexPolygon)))) space.Add(barrierCollider) barrierLocalId++ } @@ -59,24 +62,26 @@ func NewWorldColliderDisplay(game *Game, stageDiscreteW, stageDiscreteH, stageTi moveToCollide := false if moveToCollide { - newVx, newVy := int32(-2959), int32(-2261) effPushback := Vec2D{X: float64(0), Y: float64(0)} toTestPlayerCollider := playerColliders[0] - toTestPlayerCollider.X, toTestPlayerCollider.Y = VirtualGridToPolygonColliderAnchorPos(newVx, newVy, playerColliderRadius, playerColliderRadius, spaceOffsetX, spaceOffsetY, virtualGridToWorldRatio) + newVx, newVy := int32(27999), int32(-420270) + colliderWidth, colliderHeight := playerColliderRadius*2, playerColliderRadius*4 + toTestPlayerCollider.X, toTestPlayerCollider.Y = VirtualGridToPolygonColliderTLPos(newVx, newVy, colliderWidth, colliderHeight, spaceOffsetX, spaceOffsetY, virtualGridToWorldRatio) - Logger.Info(fmt.Sprintf("Checking collision for virtual (%d, %d), now playerShape=%v", newVx, newVy, ConvexPolygonStr(toTestPlayerCollider.Shape.(*resolv.ConvexPolygon)))) + Logger.Info(fmt.Sprintf("Checking collision for playerShape=%v", ConvexPolygonStr(toTestPlayerCollider.Shape.(*resolv.ConvexPolygon)))) toTestPlayerCollider.Update() if collision := toTestPlayerCollider.Check(0, 0); collision != nil { playerShape := toTestPlayerCollider.Shape.(*resolv.ConvexPolygon) for _, obj := range collision.Objects { - barrierShape := obj.Shape.(*resolv.ConvexPolygon) - if overlapped, pushbackX, pushbackY, overlapResult := CalcPushbacks(0, 0, playerShape, barrierShape); overlapped { - Logger.Warn(fmt.Sprintf("Overlapped: a=%v, b=%v, pushbackX=%v, pushbackY=%v", ConvexPolygonStr(playerShape), ConvexPolygonStr(barrierShape), pushbackX, pushbackY)) + bShape := obj.Shape.(*resolv.ConvexPolygon) + Logger.Warn(fmt.Sprintf("Checking potential: a=%v, b=%v", ConvexPolygonStr(playerShape), ConvexPolygonStr(bShape))) + if overlapped, pushbackX, pushbackY, overlapResult := CalcPushbacks(0, 0, playerShape, bShape); overlapped { + Logger.Warn(fmt.Sprintf("Overlapped: a=%v, b=%v, pushbackX=%v, pushbackY=%v", ConvexPolygonStr(playerShape), ConvexPolygonStr(bShape), pushbackX, pushbackY)) effPushback.X += pushbackX effPushback.Y += pushbackY } else { - Logger.Warn(fmt.Sprintf("Collided BUT not overlapped: a=%v, b=%v, overlapResult=%v", ConvexPolygonStr(playerShape), ConvexPolygonStr(barrierShape), overlapResult)) + Logger.Warn(fmt.Sprintf("Collided BUT not overlapped: a=%v, b=%v, overlapResult=%v", ConvexPolygonStr(playerShape), ConvexPolygonStr(bShape), overlapResult)) } } toTestPlayerCollider.X -= effPushback.X @@ -115,7 +120,7 @@ func NewWorldColliderDisplay(game *Game, stageDiscreteW, stageDiscreteH, stageTi offenderWx, offenderWy := playerPosList.Eles[0].X, playerPosList.Eles[0].Y bulletWx, bulletWy := offenderWx+xfac*meleeBullet.HitboxOffset, offenderWy - newBulletCollider := GenerateRectCollider(bulletWx, bulletWy, meleeBullet.HitboxSize.X, meleeBullet.HitboxSize.Y, spaceOffsetX, spaceOffsetY, "MeleeBullet") + newBulletCollider := GenerateRectCollider(bulletWx, bulletWy, meleeBullet.HitboxSize.X, meleeBullet.HitboxSize.Y, 0, spaceOffsetX, spaceOffsetY, "MeleeBullet") space.Add(newBulletCollider) bulletShape := newBulletCollider.Shape.(*resolv.ConvexPolygon) Logger.Warn(fmt.Sprintf("bullet ->: Added bullet collider to space: a=%v", ConvexPolygonStr(bulletShape))) @@ -138,7 +143,7 @@ func NewWorldColliderDisplay(game *Game, stageDiscreteW, stageDiscreteH, stageTi offenderWx, offenderWy := playerPosList.Eles[1].X, playerPosList.Eles[1].Y bulletWx, bulletWy := offenderWx+xfac*meleeBullet.HitboxOffset, offenderWy - newBulletCollider := GenerateRectCollider(bulletWx, bulletWy, meleeBullet.HitboxSize.X, meleeBullet.HitboxSize.Y, spaceOffsetX, spaceOffsetY, "MeleeBullet") + newBulletCollider := GenerateRectCollider(bulletWx, bulletWy, meleeBullet.HitboxSize.X, meleeBullet.HitboxSize.Y, 0, spaceOffsetX, spaceOffsetY, "MeleeBullet") space.Add(newBulletCollider) bulletShape := newBulletCollider.Shape.(*resolv.ConvexPolygon) Logger.Warn(fmt.Sprintf("bullet <-: Added bullet collider to space: a=%v", ConvexPolygonStr(bulletShape))) @@ -177,7 +182,7 @@ func (world *WorldColliderDisplay) Draw(screen *ebiten.Image) { } } - world.Game.DebugDraw(screen, world.Space) + //world.Game.DebugDraw(screen, world.Space) if world.Game.ShowHelpText { diff --git a/dnmshared/geometry.go b/dnmshared/geometry.go index a084208..1b8e4c8 100644 --- a/dnmshared/geometry.go +++ b/dnmshared/geometry.go @@ -10,33 +10,33 @@ func NormVec2D(dx, dy float64) Vec2D { } func AlignPolygon2DToBoundingBox(input *Polygon2D) *Polygon2D { - // Transform again to put "anchor" at the top-left point of the bounding box for "resolv" - boundingBoxTL := &Vec2D{ + // Transform again to put "anchor" at the "bottom-left point (w.r.t. world space)" of the bounding box for "resolv" + boundingBoxBL := &Vec2D{ X: math.MaxFloat64, Y: math.MaxFloat64, } for _, p := range input.Points { - if p.X < boundingBoxTL.X { - boundingBoxTL.X = p.X + if p.X < boundingBoxBL.X { + boundingBoxBL.X = p.X } - if p.Y < boundingBoxTL.Y { - boundingBoxTL.Y = p.Y + if p.Y < boundingBoxBL.Y { + boundingBoxBL.Y = p.Y } } - // Now "input.Anchor" should move to "input.Anchor+boundingBoxTL", thus "boundingBoxTL" is also the value of the negative diff for all "input.Points" + // Now "input.Anchor" should move to "input.Anchor+boundingBoxBL", thus "boundingBoxBL" is also the value of the negative diff for all "input.Points" output := &Polygon2D{ Anchor: &Vec2D{ - X: input.Anchor.X + boundingBoxTL.X, - Y: input.Anchor.Y + boundingBoxTL.Y, + X: input.Anchor.X + boundingBoxBL.X, + Y: input.Anchor.Y + boundingBoxBL.Y, }, Points: make([]*Vec2D, len(input.Points)), } for i, p := range input.Points { output.Points[i] = &Vec2D{ - X: p.X - boundingBoxTL.X, - Y: p.Y - boundingBoxTL.Y, + X: p.X - boundingBoxBL.X, + Y: p.Y - boundingBoxBL.Y, } } diff --git a/dnmshared/resolv_helper.go b/dnmshared/resolv_helper.go index b534eb7..bf53908 100644 --- a/dnmshared/resolv_helper.go +++ b/dnmshared/resolv_helper.go @@ -18,13 +18,13 @@ func ConvexPolygonStr(body *resolv.ConvexPolygon) string { return fmt.Sprintf("{\n%s\n}", strings.Join(s, ",\n")) } -func GenerateRectCollider(origX, origY, w, h, spaceOffsetX, spaceOffsetY float64, tag string) *resolv.Object { - cx, cy := WorldToPolygonColliderAnchorPos(origX, origY, w*0.5, h*0.5, spaceOffsetX, spaceOffsetY) - return GenerateRectColliderInCollisionSpace(cx, cy, w, h, tag) +func GenerateRectCollider(wx, wy, w, h, bottomPadding, spaceOffsetX, spaceOffsetY float64, tag string) *resolv.Object { + blX, blY := WorldToPolygonColliderBLPos(wx, wy, w*0.5, h*0.5, bottomPadding, spaceOffsetX, spaceOffsetY) + return generateRectColliderInCollisionSpace(blX, blY, w, h+bottomPadding, tag) } -func GenerateRectColliderInCollisionSpace(cx, cy, w, h float64, tag string) *resolv.Object { - collider := resolv.NewObject(cx, cy, w, h, tag) +func generateRectColliderInCollisionSpace(blX, blY, w, h float64, tag string) *resolv.Object { + collider := resolv.NewObject(blX, blY, w, h, tag) // Unlike its frontend counter part, the position of a "resolv.Object" must be specified by "bottom-left point" because "w" and "h" must be positive, see "resolv.Object.BoundsToSpace" for details shape := resolv.NewRectangle(0, 0, w, h) collider.SetShape(shape) return collider @@ -66,6 +66,7 @@ func CalcPushbacks(oldDx, oldDy float64, playerShape, barrierShape *resolv.Conve playerShape.SetPosition(origX, origY) }() playerShape.SetPosition(origX+oldDx, origY+oldDy) + overlapResult := &SatResult{ Overlap: 0, OverlapX: 0, @@ -74,7 +75,7 @@ func CalcPushbacks(oldDx, oldDy float64, playerShape, barrierShape *resolv.Conve BContainedInA: true, Axis: vector.Vector{0, 0}, } - if overlapped := IsPolygonPairOverlapped(playerShape, barrierShape, overlapResult); overlapped { + if overlapped := isPolygonPairOverlapped(playerShape, barrierShape, overlapResult); overlapped { pushbackX, pushbackY := overlapResult.Overlap*overlapResult.OverlapX, overlapResult.Overlap*overlapResult.OverlapY return true, pushbackX, pushbackY, overlapResult } else { @@ -91,16 +92,17 @@ type SatResult struct { Axis vector.Vector } -func IsPolygonPairOverlapped(a, b *resolv.ConvexPolygon, result *SatResult) bool { +func isPolygonPairOverlapped(a, b *resolv.ConvexPolygon, result *SatResult) bool { aCnt, bCnt := len(a.Points), len(b.Points) // Single point case if 1 == aCnt && 1 == bCnt { if nil != result { result.Overlap = 0 } - return a.Points[0].X() == b.Points[0].X() && a.Points[0].Y() == b.Points[0].Y() + return a.Points[0][0] == b.Points[0][0] && a.Points[0][1] == b.Points[0][1] } + //Logger.Info(fmt.Sprintf("Checking collision between a=%v, b=%v", ConvexPolygonStr(a), ConvexPolygonStr(b))) if 1 < aCnt { for _, axis := range a.SATAxes() { if isPolygonPairSeparatedByDir(a, b, axis.Unit(), result) { @@ -116,6 +118,7 @@ func IsPolygonPairOverlapped(a, b *resolv.ConvexPolygon, result *SatResult) bool } } } + //Logger.Info(fmt.Sprintf("a=%v and b=%v are overlapped", ConvexPolygonStr(a), ConvexPolygonStr(b))) return true } @@ -137,9 +140,10 @@ func isPolygonPairSeparatedByDir(a, b *resolv.ConvexPolygon, e vector.Vector, re e = (-2.98, 1.49).Unit() */ + //Logger.Info(fmt.Sprintf("Checking separation between a=%v, b=%v along axis e={%.3f, %.3f}#1", ConvexPolygonStr(a), ConvexPolygonStr(b), e[0], e[1])) var aStart, aEnd, bStart, bEnd float64 = math.MaxFloat64, -math.MaxFloat64, math.MaxFloat64, -math.MaxFloat64 for _, p := range a.Points { - dot := (p.X()+a.X)*e.X() + (p.Y()+a.Y)*e.Y() + dot := (p[0]+a.X)*e[0] + (p[1]+a.Y)*e[1] if aStart > dot { aStart = dot @@ -151,7 +155,7 @@ func isPolygonPairSeparatedByDir(a, b *resolv.ConvexPolygon, e vector.Vector, re } for _, p := range b.Points { - dot := (p.X()+b.X)*e.X() + (p.Y()+b.Y)*e.Y() + dot := (p[0]+b.X)*e[0] + (p[1]+b.Y)*e[1] if bStart > dot { bStart = dot @@ -168,7 +172,6 @@ func isPolygonPairSeparatedByDir(a, b *resolv.ConvexPolygon, e vector.Vector, re } if nil != result { - result.Axis = e overlap := float64(0) if aStart < bStart { @@ -209,16 +212,19 @@ func isPolygonPairSeparatedByDir(a, b *resolv.ConvexPolygon, e vector.Vector, re absoluteOverlap = -overlap } - if 0 == currentOverlap || currentOverlap > absoluteOverlap { + if (0 == result.Axis[0] && 0 == result.Axis[1]) || currentOverlap > absoluteOverlap { var sign float64 = 1 if overlap < 0 { sign = -1 } result.Overlap = absoluteOverlap - result.OverlapX = e.X() * sign - result.OverlapY = e.Y() * sign + result.OverlapX = e[0] * sign + result.OverlapY = e[1] * sign } + + result.Axis = e + //Logger.Info(fmt.Sprintf("Checking separation between a=%v, b=%v along axis e={%.3f, %.3f}#2: aStart=%.3f, aEnd=%.3f, bStart=%.3f, bEnd=%.3f, overlap=%.3f, currentOverlap=%.3f, absoluteOverlap=%.3f, result=%v", ConvexPolygonStr(a), ConvexPolygonStr(b), e[0], e[1], aStart, aEnd, bStart, bEnd, overlap, currentOverlap, absoluteOverlap, result)) } // the specified unit vector "e" doesn't separate "a" and "b", overlap result is generated @@ -240,20 +246,38 @@ func VirtualGridToWorldPos(vx, vy int32, virtualGridToWorldRatio float64) (float return wx, wy } -func WorldToPolygonColliderAnchorPos(wx, wy, halfBoundingW, halfBoundingH, collisionSpaceOffsetX, collisionSpaceOffsetY float64) (float64, float64) { - return wx - halfBoundingW + collisionSpaceOffsetX, wy - halfBoundingH + collisionSpaceOffsetY +func WorldToPolygonColliderBLPos(wx, wy, halfBoundingW, halfBoundingH, bottomPadding, collisionSpaceOffsetX, collisionSpaceOffsetY float64) (float64, float64) { + return wx - halfBoundingW + collisionSpaceOffsetX, wy - halfBoundingH - bottomPadding + collisionSpaceOffsetY } -func PolygonColliderAnchorToWorldPos(cx, cy, halfBoundingW, halfBoundingH, collisionSpaceOffsetX, collisionSpaceOffsetY float64) (float64, float64) { - return cx + halfBoundingW - collisionSpaceOffsetX, cy + halfBoundingH - collisionSpaceOffsetY +func WorldToPolygonColliderTLPos(wx, wy, halfBoundingW, halfBoundingH, collisionSpaceOffsetX, collisionSpaceOffsetY float64) (float64, float64) { + return wx - halfBoundingW + collisionSpaceOffsetX, wy + halfBoundingH + collisionSpaceOffsetY } -func PolygonColliderAnchorToVirtualGridPos(cx, cy, halfBoundingW, halfBoundingH, collisionSpaceOffsetX, collisionSpaceOffsetY float64, worldToVirtualGridRatio float64) (int32, int32) { - wx, wy := PolygonColliderAnchorToWorldPos(cx, cy, halfBoundingW, halfBoundingH, collisionSpaceOffsetX, collisionSpaceOffsetY) +func PolygonColliderBLToWorldPos(cx, cy, halfBoundingW, halfBoundingH, bottomPadding, collisionSpaceOffsetX, collisionSpaceOffsetY float64) (float64, float64) { + return cx + halfBoundingW - collisionSpaceOffsetX, cy + halfBoundingH + bottomPadding - collisionSpaceOffsetY +} + +func PolygonColliderTLToWorldPos(cx, cy, halfBoundingW, halfBoundingH, collisionSpaceOffsetX, collisionSpaceOffsetY float64) (float64, float64) { + return cx + halfBoundingW - collisionSpaceOffsetX, cy - halfBoundingH - collisionSpaceOffsetY +} + +func PolygonColliderBLToVirtualGridPos(cx, cy, halfBoundingW, halfBoundingH, bottomPadding, collisionSpaceOffsetX, collisionSpaceOffsetY float64, worldToVirtualGridRatio float64) (int32, int32) { + wx, wy := PolygonColliderBLToWorldPos(cx, cy, halfBoundingW, halfBoundingH, bottomPadding, collisionSpaceOffsetX, collisionSpaceOffsetY) return WorldToVirtualGridPos(wx, wy, worldToVirtualGridRatio) } -func VirtualGridToPolygonColliderAnchorPos(vx, vy int32, halfBoundingW, halfBoundingH, collisionSpaceOffsetX, collisionSpaceOffsetY float64, virtualGridToWorldRatio float64) (float64, float64) { - wx, wy := VirtualGridToWorldPos(vx, vy, virtualGridToWorldRatio) - return WorldToPolygonColliderAnchorPos(wx, wy, halfBoundingW, halfBoundingH, collisionSpaceOffsetX, collisionSpaceOffsetY) +func PolygonColliderTLToVirtualGridPos(cx, cy, halfBoundingW, halfBoundingH, collisionSpaceOffsetX, collisionSpaceOffsetY float64, worldToVirtualGridRatio float64) (int32, int32) { + wx, wy := PolygonColliderTLToWorldPos(cx, cy, halfBoundingW, halfBoundingH, collisionSpaceOffsetX, collisionSpaceOffsetY) + return WorldToVirtualGridPos(wx, wy, worldToVirtualGridRatio) +} + +func VirtualGridToPolygonColliderBLPos(vx, vy int32, halfBoundingW, halfBoundingH, bottomPadding, collisionSpaceOffsetX, collisionSpaceOffsetY float64, virtualGridToWorldRatio float64) (float64, float64) { + wx, wy := VirtualGridToWorldPos(vx, vy, virtualGridToWorldRatio) + return WorldToPolygonColliderBLPos(wx, wy, halfBoundingW, halfBoundingH, bottomPadding, collisionSpaceOffsetX, collisionSpaceOffsetY) +} + +func VirtualGridToPolygonColliderTLPos(vx, vy int32, halfBoundingW, halfBoundingH, collisionSpaceOffsetX, collisionSpaceOffsetY float64, virtualGridToWorldRatio float64) (float64, float64) { + wx, wy := VirtualGridToWorldPos(vx, vy, virtualGridToWorldRatio) + return WorldToPolygonColliderTLPos(wx, wy, halfBoundingW, halfBoundingH, collisionSpaceOffsetX, collisionSpaceOffsetY) } diff --git a/dnmshared/tmx_parser.go b/dnmshared/tmx_parser.go index 7e9f81e..d46616d 100644 --- a/dnmshared/tmx_parser.go +++ b/dnmshared/tmx_parser.go @@ -7,6 +7,7 @@ import ( "encoding/base64" "encoding/xml" "errors" + "fmt" "go.uber.org/zap" "io/ioutil" "math" @@ -43,13 +44,13 @@ type TmxOrTsxPolyline struct { type TmxOrTsxObject struct { Id int `xml:"id,attr"` - Gid *int `xml:"gid,attr"` + Gid int `xml:"gid,attr"` X float64 `xml:"x,attr"` Y float64 `xml:"y,attr"` Properties *TmxOrTsxProperties `xml:"properties"` Polyline *TmxOrTsxPolyline `xml:"polyline"` - Width *float64 `xml:"width,attr"` - Height *float64 `xml:"height,attr"` + Width float64 `xml:"width,attr"` + Height float64 `xml:"height,attr"` } type TmxOrTsxObjectGroup struct { @@ -376,13 +377,37 @@ func ParseTmxLayersAndGroups(pTmxMapIns *TmxMap, gidBoundariesMap map[int]StrToP } for _, singleObjInTmxFile := range objGroup.Objects { - if nil == singleObjInTmxFile.Polyline { - continue - } if nil == singleObjInTmxFile.Properties.Property || "boundary_type" != singleObjInTmxFile.Properties.Property[0].Name || "barrier" != singleObjInTmxFile.Properties.Property[0].Value { continue } + if nil == singleObjInTmxFile.Polyline { + pts := make([]*Vec2D, 4) + s := make([]string, 0) + pts[0] = &Vec2D{ + X: float64(0), + Y: float64(0), + } + pts[1] = &Vec2D{ + X: float64(0), + Y: singleObjInTmxFile.Height, + } + pts[2] = &Vec2D{ + X: singleObjInTmxFile.Width, + Y: singleObjInTmxFile.Height, + } + pts[3] = &Vec2D{ + X: singleObjInTmxFile.Width, + Y: float64(0), + } + for _, pt := range pts { + s = append(s, fmt.Sprintf("%v,%v", pt.X, pt.Y)) + } + singleObjInTmxFile.Polyline = &TmxOrTsxPolyline{ + Points: strings.Join(s, " "), + } + } + thePolygon2DInWorld, err := tmxPolylineToPolygon2D(pTmxMapIns, singleObjInTmxFile, singleObjInTmxFile.Polyline) if nil != err { panic(err) diff --git a/dragonBonesProjects/SoldierFireGhost.dbproj b/dragonBonesProjects/SoldierFireGhost.dbproj index 135657e..e57fcb3 100644 Binary files a/dragonBonesProjects/SoldierFireGhost.dbproj and b/dragonBonesProjects/SoldierFireGhost.dbproj differ diff --git a/dragonBonesProjects/SoldierWaterGhost.dbproj b/dragonBonesProjects/SoldierWaterGhost.dbproj index 1af02a9..2354ac4 100644 Binary files a/dragonBonesProjects/SoldierWaterGhost.dbproj and b/dragonBonesProjects/SoldierWaterGhost.dbproj differ diff --git a/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_ske.json b/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_ske.json index e4bf555..04b73d3 100644 --- a/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_ske.json +++ b/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_ske.json @@ -1 +1 @@ -{"frameRate":60,"name":"SoldierWaterGhost","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":60,"name":"SoldierWaterGhost","aabb":{"x":-17.1,"y":-45.87,"width":38.84,"height":47.16},"bone":[{"name":"root"},{"inheritScale":false,"length":6.5,"name":"leftShoulder","parent":"root","transform":{"x":-5.60925,"y":-28.39315,"skX":156.8918,"skY":156.8918}},{"inheritScale":false,"name":"backLight","parent":"root","transform":{"x":0.1,"y":-23.0462,"scX":3,"scY":3}},{"inheritScale":false,"length":8.5,"name":"rightArm","parent":"root","transform":{"x":6.7954,"y":-26.8018,"skX":46.9769,"skY":46.9769}},{"inheritScale":false,"name":"effect4","parent":"root","transform":{"x":6.32,"y":-21.38935,"skX":-9.349,"skY":-9.349}},{"inheritScale":false,"name":"effect7","parent":"root"},{"inheritScale":false,"name":"effect3","parent":"root","transform":{"x":5.75,"y":-27.36735}},{"inheritScale":false,"length":8.5,"name":"leg","parent":"root","transform":{"x":-0.45525,"y":-1.41005,"skX":-85.7242,"skY":-85.7242}},{"inheritScale":false,"length":11,"name":"body","parent":"root","transform":{"x":1.00195,"y":-12.3951,"skX":-82.2714,"skY":-82.2714}},{"inheritScale":false,"length":6,"name":"rightShoulder","parent":"root","transform":{"x":9.1041,"y":-26.3402,"skX":22.0857,"skY":22.0857}},{"inheritScale":false,"length":5.5,"name":"head","parent":"root","transform":{"x":4.103,"y":-31.2905,"skX":-83.4757,"skY":-83.4757}},{"inheritScale":false,"length":5,"name":"leftArm","parent":"root","transform":{"x":-6.5059,"y":-26.80925,"skX":122.5397,"skY":122.5397}},{"inheritScale":false,"name":"effect2","parent":"root","transform":{"x":-5.0143,"y":-28.2204,"skX":-79.3059,"skY":-79.3059}},{"inheritScale":false,"name":"effect5","parent":"root","transform":{"x":-15.0286,"y":-16.5986,"skX":-72.4737,"skY":-72.4737}},{"inheritScale":false,"name":"effect6","parent":"root","transform":{"x":13.28445,"y":-15.03735}},{"inheritScale":false,"name":"rightFrontArm","parent":"rightArm","transform":{"x":8.82335,"y":0.6604,"skX":10.7237,"skY":10.7237}},{"inheritScale":false,"name":"leftFrontArm","parent":"leftArm","transform":{"x":7.37235,"y":1.7869,"skX":-39.1583,"skY":-39.1583}},{"inheritScale":false,"name":"rightHand","parent":"rightFrontArm","transform":{"x":5.3646,"y":-2.8911,"skX":21.9835,"skY":21.9835}},{"inheritScale":false,"name":"leftHand","parent":"leftFrontArm","transform":{"x":7.3904,"y":1.4291,"skX":-25.7356,"skY":-25.7356}}],"slot":[{"name":"backLight","parent":"backLight"},{"name":"rightArm","parent":"rightArm"},{"name":"leg","parent":"leg"},{"name":"body","parent":"body"},{"name":"rightShoulder","parent":"rightShoulder"},{"name":"rightFrontArm","parent":"rightFrontArm"},{"name":"rightHand","parent":"rightHand"},{"name":"leftArm","parent":"leftArm"},{"name":"leftShoulder","parent":"leftShoulder"},{"name":"leftFrontArm","parent":"leftFrontArm"},{"name":"head","parent":"head"},{"name":"leftHand","parent":"leftHand"},{"name":"effect2","parent":"effect2"},{"name":"effect3","parent":"effect3"},{"name":"effect4","parent":"effect4"},{"name":"effect5","parent":"effect5"},{"name":"effect6","parent":"effect6"},{"displayIndex":-1,"name":"effect7","parent":"effect7"}],"skin":[{"slot":[{"name":"effect5","display":[{"name":"huomiao01"}]},{"name":"leftArm","display":[{"name":"yinmo05","transform":{"x":3.46,"y":0.04,"skX":-112.43,"skY":-112.43},"path":"leftArm"}]},{"name":"effect3","display":[{"name":"huomiao01"}]},{"name":"effect6","display":[{"name":"huomiao01"}]},{"name":"effect2","display":[{"name":"huomiao01"}]},{"name":"body","display":[{"name":"yinmo02","transform":{"x":6.41,"y":-1.19,"skX":82.27,"skY":82.27},"path":"body"}]},{"name":"rightFrontArm","display":[{"name":"yinmo09","transform":{"x":1.87,"y":-0.59,"skX":-60.14,"skY":-60.14},"path":"rightFrontArm"}]},{"name":"rightShoulder","display":[{"name":"yinmo04","transform":{"x":1.71,"y":-0.41,"skX":-28.61,"skY":-28.61},"path":"rightShoulder"}]},{"name":"leftHand","display":[{"name":"yinmo07","transform":{"x":2.04,"y":-0.17,"skX":-66.8,"skY":-66.8},"path":"leftHand"}]},{"name":"effect4","display":[{"name":"huomiao01"}]},{"name":"rightArm","display":[{"name":"yinmo08","transform":{"x":4.54,"y":-0.2,"skX":-54.4,"skY":-54.4},"path":"rightArm"}]},{"name":"backLight","display":[{"name":"biu"}]},{"name":"leg","display":[{"name":"yinmoqe00","transform":{"x":5.32,"y":-0.07,"skX":85.72,"skY":85.72}}]},{"name":"rightHand","display":[{"name":"yinmo10","transform":{"x":2.69,"y":-0.12,"skX":-63.84,"skY":-63.84},"path":"rightHand"}]},{"name":"leftFrontArm","display":[{"name":"yinmo06","transform":{"x":3.15,"y":0.49,"skX":-76.83,"skY":-76.83},"path":"leftFrontArm"}]},{"name":"leftShoulder","display":[{"name":"yinmo03","transform":{"x":2.4,"y":-0.06,"skX":-154.62,"skY":-154.62},"path":"leftShoulder"}]},{"name":"head","display":[{"name":"yinmo01","transform":{"x":6.5,"y":-1.04,"skX":82.3,"skY":82.3,"scX":1.5,"scY":1.5},"path":"head"},{"name":"head2","transform":{"x":6.64,"y":-1.22,"skX":83.48,"skY":83.48}}]}]}],"animation":[{"duration":60,"playTimes":0,"name":"Walking","bone":[{"name":"effect5","translateFrame":[{"duration":12,"tweenEasing":0,"x":22.08,"y":7.04},{"duration":12,"tweenEasing":0,"x":22.08,"y":7.04},{"duration":15,"tweenEasing":0,"x":15.52,"y":7.68},{"duration":15,"tweenEasing":0,"x":11.04,"y":-0.32},{"duration":6,"x":-5.12,"y":-11.68}],"rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":21,"rotate":7.3}]},{"name":"effect4","translateFrame":[{"duration":6,"tweenEasing":0,"x":3.68,"y":-1.24},{"duration":9,"tweenEasing":0,"x":3.68,"y":-1.24},{"duration":15,"tweenEasing":0,"x":-1,"y":-7.88},{"duration":12,"tweenEasing":0,"x":-7.24,"y":-10.24},{"duration":12,"tweenEasing":0,"x":-7.32,"y":-18.4},{"duration":6,"x":-20.28,"y":-26.52}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-49.96},{"duration":15,"tweenEasing":0,"rotate":-49.96},{"duration":12,"tweenEasing":0,"rotate":-84.92},{"duration":12,"tweenEasing":0,"rotate":-11.77},{"duration":6,"rotate":-28.57}]},{"name":"effect3","translateFrame":[{"duration":6,"tweenEasing":0,"x":-7.4,"y":12.8},{"duration":12,"tweenEasing":0,"x":-7.4,"y":12.8},{"duration":18,"tweenEasing":0,"x":-14.6,"y":8.8},{"duration":12,"tweenEasing":0,"x":-19,"y":4.6},{"duration":9,"tweenEasing":0,"x":-28.2,"y":2.2},{"duration":3,"x":-34.4,"y":2}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-59.23},{"duration":12,"tweenEasing":0,"rotate":-36.85},{"duration":9,"tweenEasing":0,"rotate":-66.48},{"duration":3,"rotate":-111.5}]},{"name":"effect2","translateFrame":[{"duration":3,"tweenEasing":0,"x":5.28,"y":5.6},{"duration":12,"tweenEasing":0,"x":5.28,"y":5.6},{"duration":15,"tweenEasing":0,"x":-0.8,"y":0.8},{"duration":18,"tweenEasing":0,"x":-9.92,"y":1.6},{"duration":9,"tweenEasing":0,"x":-14.88,"y":-3.36},{"duration":3,"x":-19.84,"y":-12}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-61.22},{"duration":9,"tweenEasing":0,"rotate":0.48},{"duration":3,"rotate":27.59}]},{"name":"leftHand","rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":11.3},{"duration":15,"tweenEasing":0,"rotate":15.68},{"duration":15,"tweenEasing":0,"rotate":-5.06},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":0.07,"y":0.59},{"duration":15,"tweenEasing":0,"x":0.23,"y":-0.53},{"duration":15,"tweenEasing":0,"x":-0.17,"y":-1.03},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-4.65},{"duration":15,"tweenEasing":0,"rotate":12.03},{"duration":15,"tweenEasing":0,"rotate":23.96},{"duration":15,"tweenEasing":0,"rotate":16.54},{"duration":0,"rotate":-4.65}]},{"name":"leftShoulder","translateFrame":[{"duration":15,"tweenEasing":0,"x":2.88},{"duration":15,"tweenEasing":0,"x":2.57,"y":0.97},{"duration":15,"tweenEasing":0,"x":4.14,"y":-0.08},{"duration":15,"tweenEasing":0,"x":3.68,"y":1.09},{"duration":0,"x":2.88}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":20.1},{"duration":15,"tweenEasing":0,"rotate":-5.43},{"duration":15,"tweenEasing":0,"rotate":10.13},{"duration":15,"tweenEasing":0,"rotate":-2.7},{"duration":0,"rotate":20.1}]},{"name":"leftArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":1.92,"y":-0.48},{"duration":15,"tweenEasing":0,"x":3.59,"y":0.72},{"duration":15,"tweenEasing":0,"x":6.63,"y":1.54},{"duration":15,"tweenEasing":0,"x":5.95,"y":1.94},{"duration":0,"x":1.92,"y":-0.48}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":26.91},{"duration":15,"tweenEasing":0,"rotate":-35.34},{"duration":15,"tweenEasing":0,"rotate":-70.51},{"duration":15,"tweenEasing":0,"rotate":-30.69},{"duration":0,"rotate":26.91}]},{"name":"head","translateFrame":[{"duration":15,"tweenEasing":0,"x":2.72,"y":0.64},{"duration":15,"tweenEasing":0,"x":2.48,"y":2.44},{"duration":15,"tweenEasing":0,"x":3.65,"y":0.32},{"duration":15,"tweenEasing":0,"x":3.79,"y":2.71},{"duration":0,"x":2.72,"y":0.64}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":0.59},{"duration":15,"tweenEasing":0,"rotate":0.59},{"duration":15,"tweenEasing":0,"rotate":-0.72},{"duration":15,"tweenEasing":0,"rotate":-0.72},{"duration":0,"rotate":0.59}]},{"name":"rightShoulder","translateFrame":[{"duration":15,"tweenEasing":0,"x":1.71,"y":0.58},{"duration":15,"tweenEasing":0,"x":0.85,"y":1.34},{"duration":15,"tweenEasing":0,"x":1.95,"y":0.09},{"duration":15,"tweenEasing":0,"x":2.81,"y":1.94},{"duration":0,"x":1.71,"y":0.58}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":10.12},{"duration":15,"tweenEasing":0,"rotate":-14.23},{"duration":15,"tweenEasing":0,"rotate":5.57},{"duration":15,"tweenEasing":0,"rotate":-13.84},{"duration":0,"rotate":10.12}]},{"name":"body","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"y":1.36},{"duration":15,"tweenEasing":0,"x":0.48,"y":-0.09},{"duration":15,"tweenEasing":0,"x":0.71,"y":1.67},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.24},{"duration":15,"tweenEasing":0,"rotate":13},{"duration":15,"tweenEasing":0,"rotate":16.36},{"duration":15,"tweenEasing":0,"rotate":14.15},{"duration":0,"rotate":11.24}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-0.48},{"duration":6,"tweenEasing":0,"x":-0.4},{"duration":6,"tweenEasing":0,"x":-0.48},{"duration":6,"tweenEasing":0,"x":-0.48},{"duration":12,"tweenEasing":0,"x":0.32},{"duration":6,"tweenEasing":0,"x":0.32},{"duration":6,"tweenEasing":0,"x":-0.16},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":1.02},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-0.52},{"duration":6}],"scaleFrame":[{"duration":6,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":6,"tweenEasing":0,"y":1.1},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":12,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":12,"y":0.9}]},{"name":"rightHand","translateFrame":[{"duration":60,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-8},{"duration":15,"tweenEasing":0,"rotate":-1.89},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":0.14},{"duration":0,"rotate":-8}]},{"name":"rightFrontArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.1,"y":-0.85},{"duration":15,"tweenEasing":0,"x":0.41,"y":-1.03},{"duration":15,"tweenEasing":0,"x":0.06,"y":-0.05},{"duration":3,"tweenEasing":0,"x":0.06,"y":-0.05},{"duration":6,"tweenEasing":0,"x":-0.04,"y":-1.27},{"duration":6,"tweenEasing":0,"y":-1.32},{"duration":0,"x":-0.1,"y":-0.85}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-43.73},{"duration":15,"tweenEasing":0,"rotate":-66.02},{"duration":15,"tweenEasing":0,"rotate":-6.47},{"duration":3,"tweenEasing":0,"rotate":-62.6},{"duration":6,"tweenEasing":0,"rotate":-58.82},{"duration":6,"tweenEasing":0,"rotate":-51.28},{"duration":0,"rotate":-43.73}]},{"name":"rightArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":2.16,"y":2.04},{"duration":15,"tweenEasing":0,"x":2.48,"y":1.17},{"duration":15,"tweenEasing":0,"x":-4.18,"y":-2.13},{"duration":15,"tweenEasing":0,"x":2.1,"y":1.69},{"duration":0,"x":2.16,"y":2.04}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.28},{"duration":15,"tweenEasing":0,"rotate":63.1},{"duration":15,"tweenEasing":0,"rotate":74.64},{"duration":15,"tweenEasing":0,"rotate":55.11},{"duration":0,"rotate":11.28}]}],"slot":[{"name":"effect5","displayFrame":[{"duration":12,"value":-1},{"duration":45},{"duration":3,"value":-1}],"colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect4","displayFrame":[{"duration":6,"value":-1},{"duration":51},{"duration":3,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":27,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":6,"value":-1},{"duration":54},{"duration":0,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":60},{"duration":0,"value":-1}],"colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":33,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":60,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":60,"value":-1}]}]},{"duration":174,"name":"Atk2","bone":[{"name":"effect5","translateFrame":[{"duration":18,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":13.3,"y":-18.8},{"duration":12,"tweenEasing":0,"x":14.8,"y":-23.5},{"duration":24,"tweenEasing":0,"x":11.2,"y":-31.6},{"duration":12,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":13.3,"y":-18.8},{"duration":12,"tweenEasing":0,"x":14.8,"y":-23.5},{"duration":24,"tweenEasing":0,"x":11.2,"y":-31.6},{"duration":12,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":13.3,"y":-18.8},{"duration":9,"tweenEasing":0,"x":14.8,"y":-23.5},{"duration":3,"x":11.2,"y":-31.6}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":12,"tweenEasing":0,"rotate":11.57},{"duration":24,"tweenEasing":0,"rotate":61.88},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":12,"tweenEasing":0,"rotate":11.57},{"duration":24,"tweenEasing":0,"rotate":61.88},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":9,"tweenEasing":0,"rotate":11.57},{"duration":3,"rotate":61.88}]},{"name":"effect4","translateFrame":[{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":15,"tweenEasing":0,"x":4.34,"y":-5.6},{"duration":12,"tweenEasing":0,"x":-1.95,"y":-16.23},{"duration":21,"tweenEasing":0,"x":2.52,"y":-23.89},{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":15,"tweenEasing":0,"x":4.34,"y":-5.6},{"duration":12,"tweenEasing":0,"x":-1.95,"y":-16.23},{"duration":21,"tweenEasing":0,"x":2.52,"y":-23.89},{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":12,"tweenEasing":0,"x":4.34,"y":-5.6},{"duration":12,"tweenEasing":0,"x":-1.95,"y":-16.23},{"duration":6,"x":2.52,"y":-23.89}],"rotateFrame":[{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":15,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":21,"tweenEasing":0,"rotate":-53.65},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":15,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":21,"tweenEasing":0,"rotate":-53.65},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":12,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":6,"rotate":-53.65}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0,"y":7.54},{"duration":15,"tweenEasing":0,"y":7.54},{"duration":15,"tweenEasing":0,"x":-6.29,"y":-9.26},{"duration":12,"tweenEasing":0,"x":-12.12,"y":-17.95},{"duration":18,"tweenEasing":0,"x":-18.97,"y":-21.37},{"duration":15,"tweenEasing":0,"y":7.54},{"duration":15,"tweenEasing":0,"x":-6.29,"y":-9.26},{"duration":12,"tweenEasing":0,"x":-12.12,"y":-17.95},{"duration":18,"tweenEasing":0,"x":-18.97,"y":-21.37},{"duration":15,"tweenEasing":0,"y":7.54},{"duration":12,"tweenEasing":0,"x":-6.29,"y":-9.26},{"duration":12,"tweenEasing":0,"x":-12.12,"y":-17.95},{"duration":6,"x":-18.97,"y":-21.37}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-42.15},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":18,"tweenEasing":0,"rotate":-111.08},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":18,"tweenEasing":0,"rotate":-111.08},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":6,"rotate":-111.08}]},{"name":"effect2","translateFrame":[{"duration":6,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":9,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":15,"tweenEasing":0,"x":-1.6,"y":-0.23},{"duration":15,"tweenEasing":0,"x":-14.29,"y":-4.12},{"duration":15,"tweenEasing":0,"x":-13.71,"y":-10.29},{"duration":15,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":15,"tweenEasing":0,"x":-1.6,"y":-0.23},{"duration":15,"tweenEasing":0,"x":-14.29,"y":-4.12},{"duration":15,"tweenEasing":0,"x":-13.71,"y":-10.29},{"duration":15,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":15,"tweenEasing":0,"x":-1.6,"y":-0.23},{"duration":15,"tweenEasing":0,"x":-14.29,"y":-4.12},{"duration":9,"x":-13.71,"y":-10.29}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":15,"tweenEasing":0,"rotate":57.19},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":15,"tweenEasing":0,"rotate":57.19},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":9,"rotate":57.19}]},{"name":"leftHand","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":3,"tweenEasing":0,"x":0.35,"y":0.04},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.1},{"duration":12,"tweenEasing":0,"x":0.06,"y":0.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":3,"tweenEasing":0,"x":0.35,"y":0.04},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.1},{"duration":12,"tweenEasing":0,"x":0.06,"y":0.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":3,"tweenEasing":0,"x":0.35,"y":0.04},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.1},{"duration":12,"tweenEasing":0,"x":0.06,"y":0.29},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.6},{"duration":3,"tweenEasing":0,"x":0.14,"y":0.17},{"duration":15,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.33,"y":-1.5},{"duration":12,"tweenEasing":0,"x":0.24,"y":-0.45},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.6},{"duration":3,"tweenEasing":0,"x":0.14,"y":0.17},{"duration":15,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.33,"y":-1.5},{"duration":12,"tweenEasing":0,"x":0.24,"y":-0.45},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.6},{"duration":3,"tweenEasing":0,"x":0.14,"y":0.17},{"duration":15,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.33,"y":-1.5},{"duration":12,"tweenEasing":0,"x":0.24,"y":-0.45},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":0}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.16,"y":2.63},{"duration":3,"tweenEasing":0,"x":8,"y":1.03},{"duration":15,"tweenEasing":0,"x":-7.12,"y":1.65},{"duration":3,"tweenEasing":0,"x":-10.38,"y":-0.4},{"duration":3,"tweenEasing":0,"x":-3.7,"y":-0.01},{"duration":12,"tweenEasing":0,"x":4.67,"y":1.6},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.16,"y":2.63},{"duration":3,"tweenEasing":0,"x":8,"y":1.03},{"duration":15,"tweenEasing":0,"x":-7.12,"y":1.65},{"duration":3,"tweenEasing":0,"x":-10.38,"y":-0.4},{"duration":3,"tweenEasing":0,"x":-3.7,"y":-0.01},{"duration":12,"tweenEasing":0,"x":4.67,"y":1.6},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.16,"y":2.63},{"duration":3,"tweenEasing":0,"x":8,"y":1.03},{"duration":15,"tweenEasing":0,"x":-7.12,"y":1.65},{"duration":3,"tweenEasing":0,"x":-10.38,"y":-0.4},{"duration":3,"tweenEasing":0,"x":-3.7,"y":-0.01},{"duration":12,"tweenEasing":0,"x":4.67,"y":1.6},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":4.25,"y":-0.63},{"duration":3,"tweenEasing":0,"x":7.94,"y":0.21},{"duration":15,"tweenEasing":0,"x":-0.18,"y":0.53},{"duration":3,"tweenEasing":0,"x":-2.9,"y":-0.6},{"duration":3,"tweenEasing":0,"x":1.72,"y":1.3},{"duration":12,"tweenEasing":0,"x":4.92,"y":0.26},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":4.25,"y":-0.63},{"duration":3,"tweenEasing":0,"x":7.94,"y":0.21},{"duration":15,"tweenEasing":0,"x":-0.18,"y":0.53},{"duration":3,"tweenEasing":0,"x":-2.9,"y":-0.6},{"duration":3,"tweenEasing":0,"x":1.72,"y":1.3},{"duration":12,"tweenEasing":0,"x":4.92,"y":0.26},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":4.25,"y":-0.63},{"duration":3,"tweenEasing":0,"x":7.94,"y":0.21},{"duration":15,"tweenEasing":0,"x":-0.18,"y":0.53},{"duration":3,"tweenEasing":0,"x":-2.9,"y":-0.6},{"duration":3,"tweenEasing":0,"x":1.72,"y":1.3},{"duration":12,"tweenEasing":0,"x":4.92,"y":0.26},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":0}],"scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":15}]},{"name":"head","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.58,"y":5.97},{"duration":3,"tweenEasing":0,"x":8.94,"y":8.11},{"duration":15,"tweenEasing":0,"x":-8.84,"y":0.61},{"duration":3,"tweenEasing":0,"x":-9.28,"y":-1},{"duration":3,"tweenEasing":0,"x":-4.25,"y":-0.36},{"duration":12,"tweenEasing":0,"x":4.59,"y":3.9},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.58,"y":5.97},{"duration":3,"tweenEasing":0,"x":8.94,"y":8.11},{"duration":15,"tweenEasing":0,"x":-8.84,"y":0.61},{"duration":3,"tweenEasing":0,"x":-9.28,"y":-1},{"duration":3,"tweenEasing":0,"x":-4.25,"y":-0.36},{"duration":12,"tweenEasing":0,"x":4.59,"y":3.9},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.58,"y":5.97},{"duration":3,"tweenEasing":0,"x":8.94,"y":8.11},{"duration":15,"tweenEasing":0,"x":-8.84,"y":0.61},{"duration":3,"tweenEasing":0,"x":-9.28,"y":-1},{"duration":3,"tweenEasing":0,"x":-4.25,"y":-0.36},{"duration":12,"tweenEasing":0,"x":4.59,"y":3.9},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":3.56,"y":2.23},{"duration":3,"tweenEasing":0,"x":5.16,"y":3.53},{"duration":15,"tweenEasing":0,"x":-11.15,"y":-1.1},{"duration":3,"tweenEasing":0,"x":-10.46,"y":-2.84},{"duration":3,"tweenEasing":0,"x":-4.45,"y":-0.43},{"duration":12,"tweenEasing":0,"x":3.48,"y":2.71},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":3.56,"y":2.23},{"duration":3,"tweenEasing":0,"x":5.16,"y":3.53},{"duration":15,"tweenEasing":0,"x":-11.15,"y":-1.1},{"duration":3,"tweenEasing":0,"x":-10.46,"y":-2.84},{"duration":3,"tweenEasing":0,"x":-4.45,"y":-0.43},{"duration":12,"tweenEasing":0,"x":3.48,"y":2.71},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":3.56,"y":2.23},{"duration":3,"tweenEasing":0,"x":5.16,"y":3.53},{"duration":15,"tweenEasing":0,"x":-11.15,"y":-1.1},{"duration":3,"tweenEasing":0,"x":-10.46,"y":-2.84},{"duration":3,"tweenEasing":0,"x":-4.45,"y":-0.43},{"duration":12,"tweenEasing":0,"x":3.48,"y":2.71},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":0}]},{"name":"body","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.45,"y":1.64},{"duration":3,"tweenEasing":0,"x":0.03,"y":1.08},{"duration":9,"tweenEasing":0,"x":-1.44,"y":-0.71},{"duration":6,"tweenEasing":0,"x":-1.68,"y":-0.49},{"duration":3,"tweenEasing":0,"x":-1.84,"y":-0.35},{"duration":3,"tweenEasing":0,"x":-0.61,"y":-0.37},{"duration":12,"tweenEasing":0,"x":0.05,"y":1.11},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.45,"y":1.64},{"duration":3,"tweenEasing":0,"x":0.03,"y":1.08},{"duration":9,"tweenEasing":0,"x":-1.44,"y":-0.71},{"duration":6,"tweenEasing":0,"x":-1.68,"y":-0.49},{"duration":3,"tweenEasing":0,"x":-1.84,"y":-0.35},{"duration":3,"tweenEasing":0,"x":-0.61,"y":-0.37},{"duration":12,"tweenEasing":0,"x":0.05,"y":1.11},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.45,"y":1.64},{"duration":3,"tweenEasing":0,"x":0.03,"y":1.08},{"duration":9,"tweenEasing":0,"x":-1.44,"y":-0.71},{"duration":6,"tweenEasing":0,"x":-1.68,"y":-0.49},{"duration":3,"tweenEasing":0,"x":-1.84,"y":-0.35},{"duration":3,"tweenEasing":0,"x":-0.61,"y":-0.37},{"duration":12,"tweenEasing":0,"x":0.05,"y":1.11},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":0}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.24},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.32},{"duration":3,"tweenEasing":0,"y":-0.32},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.24},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.32},{"duration":3,"tweenEasing":0,"y":-0.32},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.24},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.32},{"duration":3,"tweenEasing":0,"y":-0.32},{"duration":15}],"scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":15}]},{"name":"rightHand","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":3,"tweenEasing":0,"x":-1.3,"y":-0.62},{"duration":18,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":12,"tweenEasing":0,"x":-1.21,"y":-0.17},{"duration":6,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":15,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":3,"tweenEasing":0,"x":-1.3,"y":-0.62},{"duration":18,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":12,"tweenEasing":0,"x":-1.21,"y":-0.17},{"duration":6,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":15,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":3,"tweenEasing":0,"x":-1.3,"y":-0.62},{"duration":18,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":12,"tweenEasing":0,"x":-1.21,"y":-0.17},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-30.35},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":3,"tweenEasing":0,"x":1.56,"y":-1.53},{"duration":15,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":12,"tweenEasing":0,"x":0.62,"y":-1.61},{"duration":6,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":15,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":3,"tweenEasing":0,"x":1.56,"y":-1.53},{"duration":15,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":12,"tweenEasing":0,"x":0.62,"y":-1.61},{"duration":6,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":15,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":3,"tweenEasing":0,"x":1.56,"y":-1.53},{"duration":15,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":12,"tweenEasing":0,"x":0.62,"y":-1.61},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-42.6},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-55.76},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-55.76},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":0,"rotate":21.7}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":0}]},{"name":"rightArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":3.52,"y":0.28},{"duration":3,"tweenEasing":0,"x":4.23,"y":2.19},{"duration":15,"tweenEasing":0,"x":-4.97,"y":-2.79},{"duration":3,"tweenEasing":0,"x":-5.28,"y":-3.39},{"duration":3,"tweenEasing":0,"x":-3.67,"y":-0.35},{"duration":12,"tweenEasing":0,"x":2.15,"y":1.63},{"duration":6,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":15,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":3.52,"y":0.28},{"duration":3,"tweenEasing":0,"x":4.23,"y":2.19},{"duration":15,"tweenEasing":0,"x":-4.97,"y":-2.79},{"duration":3,"tweenEasing":0,"x":-5.28,"y":-3.39},{"duration":3,"tweenEasing":0,"x":-3.67,"y":-0.35},{"duration":12,"tweenEasing":0,"x":2.15,"y":1.63},{"duration":6,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":15,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":3.52,"y":0.28},{"duration":3,"tweenEasing":0,"x":4.23,"y":2.19},{"duration":15,"tweenEasing":0,"x":-4.97,"y":-2.79},{"duration":3,"tweenEasing":0,"x":-5.28,"y":-3.39},{"duration":3,"tweenEasing":0,"x":-3.67,"y":-0.35},{"duration":12,"tweenEasing":0,"x":2.15,"y":1.63},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":0,"rotate":-6.67}],"scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":36,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":36,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":12}]}],"slot":[{"name":"effect5","displayFrame":[{"duration":18,"value":-1},{"duration":156},{"duration":0,"value":-1}],"colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect4","displayFrame":[{"duration":12,"value":-1},{"duration":159},{"duration":3,"value":-1}],"colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":9,"value":-1},{"duration":162},{"duration":3,"value":-1}],"colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":6,"value":-1},{"duration":162},{"duration":6,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"rightHand","displayFrame":[{"duration":21},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":15}],"colorFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":42,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":15}]},{"name":"rightFrontArm","displayFrame":[{"duration":21},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":15}],"colorFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":42,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":15}]},{"name":"backLight","displayFrame":[{"duration":174,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":174,"value":-1}]}]},{"duration":34,"name":"Atk1","bone":[{"name":"effect4","translateFrame":[{"duration":4,"tweenEasing":0,"x":-9.1,"y":6.7},{"duration":8,"tweenEasing":0,"x":-9.1,"y":6.7},{"duration":8,"tweenEasing":0,"x":-17.8,"y":1.8},{"duration":8,"tweenEasing":0,"x":-24,"y":0.4},{"duration":6,"x":-30.6}],"rotateFrame":[{"duration":4,"tweenEasing":0,"rotate":-105.08},{"duration":8,"tweenEasing":0,"rotate":-105.08},{"duration":8,"tweenEasing":0,"rotate":-96.73},{"duration":8,"tweenEasing":0,"rotate":-69.9},{"duration":6,"rotate":-94.04}]},{"name":"effect3","translateFrame":[{"duration":2,"tweenEasing":0,"x":-14.66,"y":10.66},{"duration":4,"tweenEasing":0,"x":-14.66,"y":10.66},{"duration":10,"tweenEasing":0,"x":-23.07,"y":6},{"duration":8,"tweenEasing":0,"x":-26.93,"y":9.46},{"duration":10,"x":-31.07,"y":7.33}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-108.91},{"duration":10,"tweenEasing":0,"rotate":-108.91},{"duration":8,"tweenEasing":0,"rotate":-127.09},{"duration":10,"rotate":-108.09}]},{"name":"effect2","translateFrame":[{"duration":2,"tweenEasing":0,"x":-4.54,"y":13.2},{"duration":6,"tweenEasing":0,"x":-4.54,"y":13.2},{"duration":10,"tweenEasing":0,"x":-13.6,"y":2.8},{"duration":4,"tweenEasing":0,"x":-23.46,"y":-4.26},{"duration":12,"x":-27.46,"y":-5.46}],"rotateFrame":[{"duration":2,"tweenEasing":0,"rotate":31.2},{"duration":6,"tweenEasing":0,"rotate":31.2},{"duration":10,"tweenEasing":0,"rotate":-0.05},{"duration":4,"tweenEasing":0,"rotate":-26.91},{"duration":12,"rotate":-24.71}]},{"name":"leftHand","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":8,"tweenEasing":0,"x":0.01,"y":0.07},{"duration":8,"tweenEasing":0,"x":0.01,"y":0.07},{"duration":8,"tweenEasing":0,"x":0.1,"y":0.49},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-12.3},{"duration":8,"tweenEasing":0,"rotate":18.53},{"duration":8,"tweenEasing":0,"rotate":-9},{"duration":8,"tweenEasing":0,"rotate":9.5},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.71,"y":0.04},{"duration":8,"tweenEasing":0,"x":0.18,"y":0.12},{"duration":8,"tweenEasing":0,"x":0.69,"y":-0.78},{"duration":8,"tweenEasing":0,"x":0.2,"y":0.24},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":13.83},{"duration":8,"tweenEasing":0,"rotate":25.06},{"duration":8,"tweenEasing":0,"rotate":17.69},{"duration":8,"tweenEasing":0,"rotate":12.39},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-2.88,"y":-0.6},{"duration":8,"tweenEasing":0,"x":8.4,"y":-0.74},{"duration":8,"tweenEasing":0,"x":8.01,"y":-0.58},{"duration":8,"tweenEasing":0,"x":1.14,"y":-0.23},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":40},{"duration":8,"tweenEasing":0,"rotate":-12.39},{"duration":8,"tweenEasing":0,"rotate":4.99},{"duration":8,"tweenEasing":0,"rotate":8.69},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-3.42,"y":-1.95},{"duration":8,"tweenEasing":0,"x":12.95,"y":0.1},{"duration":8,"tweenEasing":0,"x":12.47,"y":0.42},{"duration":8,"tweenEasing":0,"x":1.5,"y":-2.19},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":66.79},{"duration":8,"tweenEasing":0,"rotate":-95.1},{"duration":8,"tweenEasing":0,"rotate":-98.37},{"duration":8,"tweenEasing":0,"rotate":-44.89},{"duration":0}]},{"name":"head","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-4.17,"y":0.46},{"duration":8,"tweenEasing":0,"x":9.35,"y":1.83},{"duration":8,"tweenEasing":0,"x":8.79,"y":2.23},{"duration":8,"tweenEasing":0,"x":1.23,"y":0.91},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":15.73},{"duration":8,"tweenEasing":0,"rotate":2.95},{"duration":8,"tweenEasing":0,"rotate":2.83},{"duration":8,"tweenEasing":0,"rotate":0.01},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-3.63,"y":-0.73},{"duration":8,"tweenEasing":0,"x":6.29,"y":2.04},{"duration":8,"tweenEasing":0,"x":6.13,"y":2.27},{"duration":8,"tweenEasing":0,"x":0.4,"y":0.34},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-11.02},{"duration":8,"tweenEasing":0,"rotate":-27.15},{"duration":8,"tweenEasing":0,"rotate":-15.36},{"duration":8,"tweenEasing":0,"rotate":3.41},{"duration":0}]},{"name":"body","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-1.47,"y":-1.01},{"duration":8,"tweenEasing":0,"x":1.27,"y":-0.09},{"duration":8,"tweenEasing":0,"x":1.44,"y":0.23},{"duration":8,"tweenEasing":0,"y":0.4},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-11.15},{"duration":8,"tweenEasing":0,"rotate":29.43},{"duration":8,"tweenEasing":0,"rotate":30.7},{"duration":8,"tweenEasing":0,"rotate":1.09},{"duration":0}],"scaleFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":14,"tweenEasing":0,"y":-0.03},{"duration":4,"tweenEasing":0,"y":-0.03},{"duration":4,"tweenEasing":0,"y":-0.16},{"duration":2,"tweenEasing":0,"y":-0.16},{"duration":0}],"scaleFrame":[{"duration":4,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.1,"y":1.3},{"duration":4,"tweenEasing":0,"x":1.01,"y":1.1},{"duration":4,"tweenEasing":0,"x":1.01,"y":1.1},{"duration":6,"tweenEasing":0,"x":1.01,"y":0.9},{"duration":4,"tweenEasing":0,"x":1.01,"y":0.9},{"duration":4,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":2,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":8,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":2,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":8,"tweenEasing":0,"x":-0.97,"y":-0.2},{"duration":8,"tweenEasing":0,"x":-0.97,"y":-0.2},{"duration":8,"tweenEasing":0,"x":-0.54,"y":-0.17},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":8,"tweenEasing":0,"rotate":11.7},{"duration":2,"tweenEasing":0,"rotate":-34.26},{"duration":8,"tweenEasing":0,"rotate":-8.09},{"duration":8,"tweenEasing":0,"rotate":-36.51},{"duration":8,"tweenEasing":0,"rotate":-12.04},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":8,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":2,"tweenEasing":0,"x":-0.7,"y":0.18},{"duration":8,"tweenEasing":0,"x":-0.34,"y":0.12},{"duration":8,"tweenEasing":0,"x":-0.44,"y":0.07},{"duration":8,"tweenEasing":0,"x":0.31,"y":0.26},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":8,"tweenEasing":0,"rotate":21.7},{"duration":2,"tweenEasing":0,"rotate":-36.51},{"duration":8,"tweenEasing":0,"rotate":-41.51},{"duration":8,"tweenEasing":0,"rotate":-50.9},{"duration":8,"tweenEasing":0,"rotate":-42.18},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":8,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":2,"tweenEasing":0,"x":-2.96,"y":-0.32},{"duration":8,"tweenEasing":0,"x":1.4,"y":3.87},{"duration":8,"tweenEasing":0,"x":1.48,"y":4.19},{"duration":8,"tweenEasing":0,"x":-3.83,"y":-3.08},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":8,"tweenEasing":0,"rotate":-6.67},{"duration":2,"tweenEasing":0,"rotate":8.81},{"duration":8,"tweenEasing":0,"rotate":7.26},{"duration":8,"tweenEasing":0,"rotate":15.7},{"duration":8,"tweenEasing":0,"rotate":25.83},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect4","displayFrame":[{"duration":4,"value":-1},{"duration":26},{"duration":4,"value":-1}],"colorFrame":[{"duration":4,"tweenEasing":0,"value":{"aM":0}},{"duration":8,"tweenEasing":0,"value":{"aM":0}},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":2,"value":-1},{"duration":24},{"duration":8,"value":-1}],"colorFrame":[{"duration":2,"tweenEasing":0,"value":{"aM":0}},{"duration":4,"tweenEasing":0,"value":{"aM":0}},{"duration":10,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":10,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":2,"value":-1},{"duration":22},{"duration":10,"value":-1}],"colorFrame":[{"duration":2,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":10,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":12,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":34,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":34,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":34,"value":-1}]}]},{"duration":18,"name":"Atked1","bone":[{"name":"effect6","translateFrame":[{"duration":6,"tweenEasing":0,"x":-2.52,"y":1.72},{"duration":3,"tweenEasing":0,"x":-0.66,"y":-0.23},{"duration":6,"tweenEasing":0,"x":3.25,"y":-1.37},{"duration":3,"x":4.8,"y":-6.29}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"rotate":-20.99}]},{"name":"effect4","translateFrame":[{"duration":3,"tweenEasing":0,"x":-4.5,"y":3.8},{"duration":3,"tweenEasing":0,"x":-4.5,"y":3.8},{"duration":3,"tweenEasing":0,"x":-10.13,"y":-1.13},{"duration":9,"tweenEasing":0,"x":-11.84,"y":-6.3},{"duration":0,"x":-24,"y":-16.3}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-9.48},{"duration":3,"tweenEasing":0,"rotate":-9.48},{"duration":3,"tweenEasing":0,"rotate":-12.21},{"duration":9,"rotate":-14.93}]},{"name":"effect3","translateFrame":[{"duration":6,"tweenEasing":0,"x":-3.68,"y":5.44},{"duration":3,"tweenEasing":0,"x":-0.76,"y":-7.24},{"duration":6,"tweenEasing":0,"x":1.84,"y":-9.36},{"duration":3,"x":6.56,"y":-13.6}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-20.49},{"duration":6,"tweenEasing":0,"rotate":-21.44},{"duration":3,"rotate":-23.34}]},{"name":"effect2","translateFrame":[{"duration":6,"tweenEasing":0,"x":2.72,"y":0.96},{"duration":3,"tweenEasing":0,"x":-6.04,"y":-7.24},{"duration":9,"tweenEasing":0,"x":-6.73,"y":-8.87},{"duration":0,"x":-9.44,"y":-13.76}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":55.47},{"duration":9,"tweenEasing":0,"rotate":51.89},{"duration":0,"rotate":41.14}]},{"name":"leftHand","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.01,"y":-0.23},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-26.56},{"duration":9,"tweenEasing":0,"rotate":-11.41},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":6.05},{"duration":9,"tweenEasing":0,"rotate":-2.27},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-3.15,"y":2.3},{"duration":9,"tweenEasing":0,"x":-3.52,"y":1.7},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":22.93},{"duration":9,"tweenEasing":0,"rotate":-13.8},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-3.16,"y":1.05},{"duration":9,"tweenEasing":0,"x":-2.29,"y":0.44},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-15.21},{"duration":9,"tweenEasing":0,"rotate":-28.28},{"duration":0}]},{"name":"head","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-2.98,"y":2.9},{"duration":9,"tweenEasing":0,"x":-2.31,"y":0.72},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":20.08},{"duration":9,"tweenEasing":0,"rotate":-25.26},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-3.02,"y":0.27},{"duration":9,"tweenEasing":0,"x":-2.56,"y":-0.29},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-17.61},{"duration":9,"tweenEasing":0,"rotate":-22.45},{"duration":0}]},{"name":"body","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-2.1,"y":1.19},{"duration":9,"tweenEasing":0,"x":0.4,"y":0.88},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-5.23},{"duration":9,"tweenEasing":0,"rotate":-13.28},{"duration":0}],"scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-1.64,"y":0.12},{"duration":9,"tweenEasing":0,"x":0.32,"y":-0.04},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":13.63},{"duration":9,"tweenEasing":0,"rotate":6.92},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":0.22,"y":-0.36},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-6.33},{"duration":9,"tweenEasing":0,"rotate":14.55},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":6,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":-2.48,"y":2.58},{"duration":9,"tweenEasing":0,"x":-1.94,"y":0.96},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":-17.02},{"duration":9,"tweenEasing":0,"rotate":-28.28},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":66}},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":49}},{"duration":9,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":18,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":18,"value":-1}]}]},{"duration":78,"name":"Dying","bone":[{"name":"effect5","translateFrame":[{"duration":24,"tweenEasing":0,"x":7.2,"y":1.72},{"duration":18,"tweenEasing":0,"x":7.2,"y":1.72},{"duration":15,"tweenEasing":0,"x":3.2,"y":-5.14},{"duration":15,"tweenEasing":0,"x":4.23,"y":-11.54},{"duration":6,"x":0.57,"y":-16.23}],"rotateFrame":[{"duration":42,"tweenEasing":0,"rotate":30.08},{"duration":15,"tweenEasing":0,"rotate":30.08},{"duration":15,"tweenEasing":0,"rotate":46.89},{"duration":6,"rotate":26.37}]},{"name":"effect4","translateFrame":[{"duration":18,"tweenEasing":0,"x":-1.6,"y":0.8},{"duration":15,"tweenEasing":0,"x":-1.6,"y":0.8},{"duration":18,"tweenEasing":0,"x":0.12,"y":-12.12},{"duration":18,"tweenEasing":0,"x":-4.34,"y":-19.77},{"duration":9,"x":-5.8,"y":-24.16}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":20.94},{"duration":15,"tweenEasing":0,"rotate":20.94},{"duration":18,"tweenEasing":0,"rotate":-3.4},{"duration":18,"tweenEasing":0,"rotate":-10.49},{"duration":9,"rotate":-4.63}]},{"name":"effect3","translateFrame":[{"duration":27,"tweenEasing":0,"x":-3.06,"y":11.2},{"duration":12,"tweenEasing":0,"x":-3.06,"y":11.2},{"duration":18,"tweenEasing":0,"x":-1.38,"y":-2.44},{"duration":12,"tweenEasing":0,"x":4.45,"y":-9.82},{"duration":9,"x":11.24,"y":-11.69}],"rotateFrame":[{"duration":27,"tweenEasing":0,"rotate":31.61},{"duration":12,"tweenEasing":0,"rotate":31.61},{"duration":18,"tweenEasing":0,"rotate":-12.51},{"duration":12,"tweenEasing":0,"rotate":-13.38},{"duration":9,"rotate":9.35}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0,"x":2,"y":3.06},{"duration":9,"tweenEasing":0,"x":2,"y":3.06},{"duration":9,"tweenEasing":0,"x":0.54,"y":-3.87},{"duration":15,"tweenEasing":0,"x":-6.54,"y":-10.13},{"duration":24,"x":-20.27,"y":-14.8}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":29.59},{"duration":15,"tweenEasing":0,"rotate":2.18},{"duration":24,"rotate":-22.33}]},{"name":"leftHand","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":6,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":9,"tweenEasing":0,"x":0.15,"y":-0.21},{"duration":3,"tweenEasing":0,"x":0.15,"y":-0.21},{"duration":42,"x":-0.33,"y":-0.04}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":3.01},{"duration":6,"tweenEasing":0,"rotate":3.01},{"duration":9,"tweenEasing":0,"rotate":-18.54},{"duration":3,"tweenEasing":0,"rotate":-18.54},{"duration":24,"tweenEasing":0,"rotate":6.38},{"duration":6,"tweenEasing":0,"rotate":6.38},{"duration":12,"rotate":11.01}]},{"name":"leftFrontArm","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.68,"y":-0.95},{"duration":6,"tweenEasing":0,"x":0.68,"y":-0.95},{"duration":9,"tweenEasing":0,"x":0.65,"y":-1.15},{"duration":3,"tweenEasing":0,"x":0.65,"y":-1.15},{"duration":15,"tweenEasing":0,"x":0.15,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.83,"y":0.94},{"duration":6,"tweenEasing":0,"x":0.64,"y":-3.63},{"duration":12,"x":0.49,"y":-4.08}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-33.88},{"duration":3,"tweenEasing":0,"rotate":-26.38},{"duration":6,"tweenEasing":0,"rotate":-26.38},{"duration":9,"tweenEasing":0,"rotate":-47.87},{"duration":3,"tweenEasing":0,"rotate":-65.3},{"duration":15,"tweenEasing":0,"rotate":46.32},{"duration":9,"tweenEasing":0,"rotate":15},{"duration":6,"tweenEasing":0,"rotate":113.18},{"duration":12,"rotate":106.03}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":69,"x":1.05,"y":1.05}]},{"name":"leftShoulder","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":3.92,"y":0.22},{"duration":3,"tweenEasing":0,"x":3.65,"y":-0.2},{"duration":6,"tweenEasing":0,"x":3.65,"y":0.04},{"duration":9,"tweenEasing":0,"x":5.47,"y":0.93},{"duration":3,"tweenEasing":0,"x":5.34,"y":-0.94},{"duration":15,"tweenEasing":0,"x":-1,"y":-5.83},{"duration":9,"tweenEasing":0,"x":-4.61,"y":-8.44},{"duration":6,"tweenEasing":0,"x":-0.2,"y":19},{"duration":12,"tweenEasing":0,"x":-1.65,"y":17.16},{"duration":0,"x":-1.65,"y":18.77}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":13.57},{"duration":3,"tweenEasing":0,"rotate":24.2},{"duration":6,"tweenEasing":0,"rotate":16.88},{"duration":9,"tweenEasing":0,"rotate":10.9},{"duration":3,"tweenEasing":0,"rotate":16.99},{"duration":15,"tweenEasing":0,"rotate":-5.17},{"duration":9,"tweenEasing":0,"rotate":-12.82},{"duration":6,"tweenEasing":0,"rotate":-8.56},{"duration":12,"tweenEasing":0,"rotate":-2.65},{"duration":0,"rotate":-7.04}]},{"name":"leftArm","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":3.38,"y":-2.31},{"duration":3,"tweenEasing":0,"x":3.38,"y":-2.55},{"duration":6,"tweenEasing":0,"x":3.38,"y":-2.31},{"duration":9,"tweenEasing":0,"x":6.04,"y":-0.88},{"duration":3,"tweenEasing":0,"x":5.92,"y":-2.75},{"duration":15,"tweenEasing":0,"x":0.43,"y":-5.91},{"duration":9,"tweenEasing":0,"x":1.24,"y":-0.91},{"duration":6,"tweenEasing":0,"x":1.44,"y":14.13},{"duration":12,"tweenEasing":0,"x":0.64,"y":12.94},{"duration":0,"x":0.8,"y":13.73}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":0.58},{"duration":3,"tweenEasing":0,"rotate":4.94},{"duration":6,"tweenEasing":0,"rotate":4.94},{"duration":9,"tweenEasing":0,"rotate":10.19},{"duration":3,"tweenEasing":0,"rotate":25.77},{"duration":15,"tweenEasing":0,"rotate":-11.12},{"duration":9,"tweenEasing":0,"rotate":-2.99},{"duration":18,"rotate":-14.6}]},{"name":"head","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":4.09,"y":3.06},{"duration":3,"tweenEasing":0,"x":3.85,"y":2.9},{"duration":6,"tweenEasing":0,"x":3.85,"y":3.14},{"duration":9,"tweenEasing":0,"x":4.46,"y":5.23},{"duration":3,"tweenEasing":0,"x":4.79,"y":5.7},{"duration":15,"tweenEasing":0,"x":-1.35,"y":-7.2},{"duration":9,"tweenEasing":0,"x":-0.62,"y":-11.06},{"duration":6,"tweenEasing":0,"x":-1.1,"y":18.3},{"duration":12,"tweenEasing":0,"x":-2.54,"y":16.94},{"duration":0,"x":0.02,"y":21.42}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":29.23},{"duration":3,"tweenEasing":0,"rotate":8.49},{"duration":6,"tweenEasing":0,"rotate":13.15},{"duration":9,"tweenEasing":0,"rotate":15.69},{"duration":3,"tweenEasing":0,"rotate":15.69},{"duration":15,"tweenEasing":0,"rotate":-29.7},{"duration":9,"tweenEasing":0,"rotate":-25.43},{"duration":6,"tweenEasing":0,"rotate":-25.43},{"duration":12,"tweenEasing":0,"rotate":11.43},{"duration":0,"rotate":-13.96}]},{"name":"rightShoulder","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":3.03,"y":0.83},{"duration":3,"tweenEasing":0,"x":3.03,"y":0.59},{"duration":6,"tweenEasing":0,"x":3.03,"y":0.83},{"duration":9,"tweenEasing":0,"x":3.4,"y":1.55},{"duration":3,"tweenEasing":0,"x":3.26,"y":-0.84},{"duration":15,"tweenEasing":0,"x":-2.59,"y":-8.54},{"duration":9,"tweenEasing":0,"x":-0.19,"y":-6.93},{"duration":6,"tweenEasing":0,"x":-1.19,"y":16.3},{"duration":12,"tweenEasing":0,"x":-0.23,"y":16.86},{"duration":0,"x":-0.23,"y":19.27}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-2.21},{"duration":3,"tweenEasing":0,"rotate":-17.5},{"duration":6,"tweenEasing":0,"rotate":-5.8},{"duration":9,"tweenEasing":0,"rotate":7.6},{"duration":3,"tweenEasing":0,"rotate":-0.59},{"duration":15,"tweenEasing":0,"rotate":-0.22},{"duration":9,"tweenEasing":0,"rotate":-16.47},{"duration":6,"tweenEasing":0,"rotate":20.03},{"duration":12,"rotate":10.97}]},{"name":"body","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-0.09,"y":0.24},{"duration":3,"tweenEasing":0,"x":-0.17,"y":0.09},{"duration":6,"tweenEasing":0,"x":-0.17,"y":0.33},{"duration":9,"tweenEasing":0,"x":-0.09,"y":1.13},{"duration":3,"tweenEasing":0,"x":-0.22,"y":-0.74},{"duration":15,"tweenEasing":0,"x":1.18,"y":-7.26},{"duration":9,"tweenEasing":0,"x":1.65,"y":-4.2},{"duration":6,"tweenEasing":0,"x":4.98,"y":12.38},{"duration":12,"tweenEasing":0,"x":5.3,"y":9.58},{"duration":0,"x":5.46,"y":10.7}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":18.08},{"duration":6,"tweenEasing":0,"rotate":18.08},{"duration":9,"tweenEasing":0,"rotate":21.06},{"duration":3,"tweenEasing":0,"rotate":22.64},{"duration":15,"tweenEasing":0,"rotate":-10.59},{"duration":9,"tweenEasing":0,"rotate":-22.36},{"duration":6,"tweenEasing":0,"rotate":-49.93},{"duration":12,"tweenEasing":0,"rotate":-57.44},{"duration":0,"rotate":-66.41}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.96},{"duration":6,"tweenEasing":0,"x":1.01,"y":0.96},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.16},{"duration":15,"tweenEasing":0},{"duration":27,"y":0.9}]},{"name":"leg","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":-0.42},{"duration":9,"tweenEasing":0,"x":-0.42},{"duration":3,"tweenEasing":0,"x":-0.26,"y":-0.32},{"duration":15,"tweenEasing":0,"x":-0.26,"y":-1.92},{"duration":6,"tweenEasing":0,"x":-0.26,"y":-2.64},{"duration":21,"x":-0.26,"y":-1.76}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.25},{"duration":6,"tweenEasing":0,"x":0.95,"y":0.85},{"duration":9,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.25,"y":1.05},{"duration":15,"tweenEasing":0,"x":1.85,"y":1.05},{"duration":6,"tweenEasing":0,"x":2.15,"y":1.05},{"duration":21,"x":1.55,"y":1.05}]},{"name":"rightHand","translateFrame":[{"duration":9,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":9,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":6,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":27,"tweenEasing":0,"x":-1.12,"y":-0.8},{"duration":9,"tweenEasing":0,"x":-1.12,"y":-0.8},{"duration":18,"x":-0.52,"y":-0.81}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":11.7},{"duration":6,"tweenEasing":0,"rotate":23.26},{"duration":3,"tweenEasing":0,"rotate":-19.83},{"duration":6,"tweenEasing":0,"rotate":-19.83},{"duration":9,"tweenEasing":0,"rotate":23.75},{"duration":3,"tweenEasing":0,"rotate":20.82},{"duration":15,"tweenEasing":0,"rotate":-5.18},{"duration":9,"tweenEasing":0,"rotate":22.15},{"duration":6,"tweenEasing":0,"rotate":-22.3},{"duration":12,"tweenEasing":0,"rotate":-45.66},{"duration":0,"rotate":-37}]},{"name":"rightFrontArm","translateFrame":[{"duration":9,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":9,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":6,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":12,"tweenEasing":0,"x":-0.66,"y":-0.14},{"duration":15,"tweenEasing":0,"x":-0.66,"y":-0.14},{"duration":9,"tweenEasing":0,"x":-1.47,"y":-1.53},{"duration":6,"tweenEasing":0,"x":-3.21,"y":1.78},{"duration":12,"tweenEasing":0,"x":-2.78,"y":2.31},{"duration":0,"x":-3.77,"y":2.53}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":21.7},{"duration":6,"tweenEasing":0,"rotate":59.44},{"duration":3,"tweenEasing":0,"rotate":75.81},{"duration":6,"tweenEasing":0,"rotate":75.81},{"duration":9,"tweenEasing":0,"rotate":75.52},{"duration":3,"tweenEasing":0,"rotate":94.88},{"duration":15,"tweenEasing":0,"rotate":-2.28},{"duration":9,"tweenEasing":0,"rotate":12.05},{"duration":6,"tweenEasing":0,"rotate":12.5},{"duration":12,"tweenEasing":0,"rotate":17.33},{"duration":0,"rotate":11.94}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":69,"x":1.05,"y":1.05}]},{"name":"rightArm","translateFrame":[{"duration":9,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":6,"tweenEasing":0,"x":3.9,"y":0.71},{"duration":3,"tweenEasing":0,"x":3.42,"y":0.4},{"duration":6,"tweenEasing":0,"x":3.42,"y":0.64},{"duration":9,"tweenEasing":0,"x":3.25,"y":1.44},{"duration":3,"tweenEasing":0,"x":3.12,"y":-0.43},{"duration":15,"tweenEasing":0,"x":-0.94,"y":-5.88},{"duration":9,"tweenEasing":0,"x":0.06,"y":0.45},{"duration":6,"tweenEasing":0,"x":-2.26,"y":21.07},{"duration":12,"tweenEasing":0,"x":-3.06,"y":19.87},{"duration":0,"x":-2.9,"y":20.67}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":-6.67},{"duration":6,"tweenEasing":0,"rotate":2.1},{"duration":3,"tweenEasing":0,"rotate":1.1},{"duration":6,"tweenEasing":0,"rotate":1.1},{"duration":9,"tweenEasing":0,"rotate":-6.84},{"duration":3,"tweenEasing":0,"rotate":-18.94},{"duration":15,"tweenEasing":0,"rotate":15.53},{"duration":9,"tweenEasing":0,"rotate":-13.72},{"duration":18,"rotate":-52.69}]},{"name":"backLight","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":12,"tweenEasing":0,"y":-3.65},{"duration":9,"tweenEasing":0,"y":-6.4},{"duration":6,"tweenEasing":0,"y":-6.4},{"duration":27,"x":0.4,"y":-20.8}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":0.69,"y":0.5},{"duration":9,"tweenEasing":0,"x":1.56,"y":1.71},{"duration":6,"tweenEasing":0,"x":0.6,"y":2.57},{"duration":27,"x":0.11,"y":2.79}]}],"slot":[{"name":"effect5","colorFrame":[{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":27,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":24,"value":{"aM":0}}]},{"name":"leftArm","colorFrame":[{"duration":36,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12}]},{"name":"head","displayFrame":[{"duration":78,"value":1}]},{"name":"rightArm","colorFrame":[{"duration":36,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12}]},{"name":"backLight","colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":27,"value":{"aM":0}}]},{"name":"effect6","displayFrame":[{"duration":78,"value":-1}]}]},{"duration":72,"playTimes":0,"name":"Atked2","bone":[{"name":"effect4","translateFrame":[{"duration":3,"tweenEasing":0,"x":-9.24,"y":3.38},{"duration":18,"tweenEasing":0,"x":-9.24,"y":3.38},{"duration":21,"tweenEasing":0,"x":-8,"y":-5.07},{"duration":21,"tweenEasing":0,"x":-12.36,"y":-12.18},{"duration":9,"x":-12.27,"y":-18.84}],"rotateFrame":[{"duration":3,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-28.4},{"duration":21,"tweenEasing":0,"rotate":-16.18},{"duration":9,"rotate":-31.27}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0,"x":-0.94,"y":5.33},{"duration":24,"tweenEasing":0,"x":-0.94,"y":5.33},{"duration":21,"tweenEasing":0,"x":1.63,"y":-8.11},{"duration":18,"tweenEasing":0,"x":0.34,"y":-14.59},{"duration":0,"x":0.58,"y":-17.3}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-39.38},{"duration":18,"rotate":-22.72}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":2,"y":-8.5},{"duration":24,"tweenEasing":0,"x":0.5,"y":-14.6},{"duration":3,"x":-0.1,"y":-19.9}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":29.43},{"duration":24,"tweenEasing":0,"rotate":65.43},{"duration":24,"tweenEasing":0,"rotate":44.46},{"duration":3,"rotate":60}]},{"name":"leftHand","rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":15.92},{"duration":24,"tweenEasing":0,"rotate":12.42},{"duration":24,"tweenEasing":0,"rotate":-2.24},{"duration":0,"rotate":15.92}]},{"name":"leftFrontArm","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":-0.3,"y":0.2},{"duration":0}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":29.06},{"duration":24,"tweenEasing":0,"rotate":26.02},{"duration":24,"tweenEasing":0,"rotate":16.87},{"duration":0,"rotate":29.06}]},{"name":"leftShoulder","translateFrame":[{"duration":24,"tweenEasing":0,"x":2.06,"y":-0.8},{"duration":24,"tweenEasing":0,"x":2.73,"y":-0.64},{"duration":24,"tweenEasing":0,"x":3.04,"y":-0.99},{"duration":0,"x":2.06,"y":-0.8}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-12.27},{"duration":24,"tweenEasing":0,"rotate":-15.89},{"duration":24,"tweenEasing":0,"rotate":-12.23},{"duration":0,"rotate":-12.27}]},{"name":"leftArm","translateFrame":[{"duration":24,"tweenEasing":0,"x":2.4,"y":0.46},{"duration":24,"tweenEasing":0,"x":2.4,"y":0.46},{"duration":24,"tweenEasing":0,"x":2.54,"y":0.65},{"duration":0,"x":2.4,"y":0.46}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-23.09},{"duration":24,"tweenEasing":0,"rotate":-31.16},{"duration":24,"tweenEasing":0,"rotate":-21.98},{"duration":0,"rotate":-23.09}]},{"name":"head","translateFrame":[{"duration":24,"tweenEasing":0,"x":2.1,"y":2.36},{"duration":24,"tweenEasing":0,"x":3.17,"y":2.85},{"duration":24,"tweenEasing":0,"x":3.07,"y":2.85},{"duration":0,"x":2.1,"y":2.36}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":27.28},{"duration":24,"tweenEasing":0,"rotate":21.12},{"duration":24,"tweenEasing":0,"rotate":18.96},{"duration":0,"rotate":27.28}]},{"name":"rightShoulder","translateFrame":[{"duration":24,"tweenEasing":0,"x":1.72,"y":0.12},{"duration":24,"tweenEasing":0,"x":2.73,"y":0.63},{"duration":24,"tweenEasing":0,"x":2.71,"y":0.23},{"duration":0,"x":1.72,"y":0.12}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":13.3},{"duration":24,"tweenEasing":0,"rotate":9.28},{"duration":24,"tweenEasing":0,"rotate":14.42},{"duration":0,"rotate":13.3}]},{"name":"body","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":0.12,"y":0.12},{"duration":24,"tweenEasing":0,"x":0.25,"y":-0.28},{"duration":0}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":13.71},{"duration":24,"tweenEasing":0,"rotate":17.86},{"duration":24,"tweenEasing":0,"rotate":16.11},{"duration":0,"rotate":13.71}]},{"name":"leg","scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.9},{"duration":18,"tweenEasing":0,"x":1.1,"y":0.8},{"duration":6,"tweenEasing":0,"x":1.1,"y":0.8},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":72,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":11.7},{"duration":24,"tweenEasing":0,"rotate":1.26},{"duration":24,"tweenEasing":0,"rotate":-11.03},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":72,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":1.98},{"duration":24,"tweenEasing":0,"rotate":-1.3},{"duration":24,"tweenEasing":0,"rotate":-0.66},{"duration":0,"rotate":1.98}]},{"name":"rightArm","translateFrame":[{"duration":24,"tweenEasing":0,"x":3.28,"y":1.58},{"duration":24,"tweenEasing":0,"x":3.28,"y":1.58},{"duration":24,"tweenEasing":0,"x":3.54,"y":1.45},{"duration":0,"x":3.28,"y":1.58}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":29.2},{"duration":24,"tweenEasing":0,"rotate":11.66},{"duration":24,"tweenEasing":0,"rotate":23.61},{"duration":0,"rotate":29.2}]}],"slot":[{"name":"effect4","colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":72,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":72,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":72,"value":-1}]}]},{"duration":102,"playTimes":0,"name":"Idle2","bone":[{"name":"effect6","translateFrame":[{"duration":39,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":3.2,"y":-5.6},{"duration":24,"tweenEasing":0,"x":3.2,"y":-11.9},{"duration":0,"x":7,"y":-15.1}],"rotateFrame":[{"duration":39,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-27.23},{"duration":24,"tweenEasing":0,"rotate":-17.6},{"duration":0,"rotate":-35.03}]},{"name":"effect5","translateFrame":[{"duration":27,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-5.2,"y":-9.12},{"duration":21,"tweenEasing":0,"x":-5.04,"y":-16.4},{"duration":12,"x":-6.4,"y":-19.84}],"rotateFrame":[{"duration":27,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":22.39},{"duration":21,"tweenEasing":0,"rotate":39.5},{"duration":12,"rotate":22.14}]},{"name":"effect4","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":4.4,"y":-6.1},{"duration":24,"tweenEasing":0,"x":5.5,"y":-13.8},{"duration":24,"x":6.1,"y":-19.3}],"rotateFrame":[{"duration":33,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-24.94},{"duration":24,"rotate":-14.84}]},{"name":"effect3","translateFrame":[{"duration":36,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":2.4,"y":-5.6},{"duration":18,"tweenEasing":0,"x":3.8,"y":-11.1},{"duration":9,"x":4.3,"y":-15.2}],"rotateFrame":[{"duration":36,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-17.53},{"duration":18,"tweenEasing":0,"rotate":-36.39},{"duration":9,"rotate":-23.84}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":-2.27,"y":-6.67},{"duration":18,"tweenEasing":0,"x":-1.74,"y":-10.54},{"duration":33,"x":-3.06,"y":-17.46}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":20.36},{"duration":18,"tweenEasing":0,"rotate":68.81},{"duration":33,"rotate":27.88}]},{"name":"leftHand","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":18,"tweenEasing":0,"rotate":-14.11},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":18,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":6.55},{"duration":9,"tweenEasing":0,"rotate":-2.77},{"duration":9,"tweenEasing":0,"rotate":-0.86},{"duration":9,"tweenEasing":0,"rotate":-2.77},{"duration":9,"tweenEasing":0,"rotate":-6.22},{"duration":9,"tweenEasing":0,"rotate":3.34},{"duration":9,"tweenEasing":0,"rotate":-6.22},{"duration":18,"tweenEasing":0,"rotate":-2.77},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":21,"tweenEasing":0,"x":-1.2,"y":0.14},{"duration":9,"tweenEasing":0,"x":-0.15,"y":-0.46},{"duration":9,"tweenEasing":0,"x":-0.1,"y":-0.64},{"duration":9,"tweenEasing":0,"x":0.01,"y":-1.1},{"duration":9,"tweenEasing":0,"x":-0.1,"y":-0.64},{"duration":9,"tweenEasing":0,"x":0.01,"y":-1.1},{"duration":9,"tweenEasing":0,"x":-0.1,"y":-0.64},{"duration":9,"tweenEasing":0,"x":0.01,"y":-1.1},{"duration":18,"tweenEasing":0,"x":-0.1,"y":-0.71},{"duration":0,"x":-1.2,"y":0.14}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":31.61},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":37.04},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":35.61},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":18,"tweenEasing":0,"rotate":31.61},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-1.2,"y":0.14},{"duration":9,"tweenEasing":0,"x":-0.42,"y":-1.18},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-2.19},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-1.81},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-2.19},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-1.81},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-2.19},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-1.81},{"duration":18,"tweenEasing":0,"x":-0.27,"y":-2.27},{"duration":0,"x":-1.2,"y":0.14}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":30.08},{"duration":9,"tweenEasing":0,"rotate":22.76},{"duration":9,"tweenEasing":0,"rotate":19.34},{"duration":9,"tweenEasing":0,"rotate":25.64},{"duration":9,"tweenEasing":0,"rotate":20.36},{"duration":9,"tweenEasing":0,"rotate":26.38},{"duration":9,"tweenEasing":0,"rotate":18.94},{"duration":18,"tweenEasing":0,"rotate":22.76},{"duration":0}]},{"name":"head","translateFrame":[{"duration":21,"tweenEasing":0,"x":-1.06,"y":0.14},{"duration":9,"tweenEasing":0,"x":-0.14,"y":0.3},{"duration":9,"tweenEasing":0,"x":0.28,"y":-0.74},{"duration":9,"tweenEasing":0,"x":0.34,"y":-0.17},{"duration":9,"tweenEasing":0,"x":0.28,"y":-0.74},{"duration":9,"tweenEasing":0,"x":0.34,"y":0.07},{"duration":9,"tweenEasing":0,"x":0.28,"y":-1.06},{"duration":9,"tweenEasing":0,"x":0.34,"y":0.3},{"duration":18,"tweenEasing":0,"x":0.28,"y":-1.06},{"duration":0,"x":-1.06,"y":0.14}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-4.1},{"duration":9,"tweenEasing":0,"rotate":0.06},{"duration":54,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"rotate":-4.1}]},{"name":"rightShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.51,"y":-0.36},{"duration":9,"tweenEasing":0,"x":0.86,"y":-1.3},{"duration":9,"tweenEasing":0,"x":0.67,"y":-1},{"duration":9,"tweenEasing":0,"x":0.86,"y":-1.3},{"duration":9,"tweenEasing":0,"x":0.67,"y":-1},{"duration":9,"tweenEasing":0,"x":0.86,"y":-1.39},{"duration":9,"tweenEasing":0,"x":0.67,"y":-1},{"duration":18,"tweenEasing":0,"x":0.86,"y":-1.86},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-38.24},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-39.74},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-45.24},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":18,"tweenEasing":0,"rotate":-38.24},{"duration":0}]},{"name":"body","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":-0.16,"y":0.16},{"duration":9,"tweenEasing":0,"y":-0.49},{"duration":9,"tweenEasing":0,"y":-0.48},{"duration":9,"tweenEasing":0,"y":-0.73},{"duration":9,"tweenEasing":0,"y":-0.56},{"duration":9,"tweenEasing":0,"y":-0.97},{"duration":9,"tweenEasing":0,"y":-0.48},{"duration":18,"tweenEasing":0,"y":-1.05},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.48},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":0.41},{"duration":0,"rotate":-6.48}],"scaleFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":18,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.06},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.06},{"duration":30}],"scaleFrame":[{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.04,"y":1.1},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.04,"y":1.1},{"duration":30}]},{"name":"rightHand","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":18,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":11.7},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":18,"tweenEasing":0,"rotate":10.34},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":9,"tweenEasing":0,"x":-0.17,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":9,"tweenEasing":0,"x":-0.17,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":9,"tweenEasing":0,"x":-0.17,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":18,"tweenEasing":0,"x":-0.2,"y":0.01},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":21.7},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":9,"tweenEasing":0,"rotate":48.89},{"duration":9,"tweenEasing":0,"rotate":45.22},{"duration":9,"tweenEasing":0,"rotate":48.89},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":9,"tweenEasing":0,"rotate":46.54},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":18,"tweenEasing":0,"rotate":48.89},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":9,"tweenEasing":0,"x":0.76,"y":0.39},{"duration":9,"tweenEasing":0,"x":1.13,"y":-0.75},{"duration":9,"tweenEasing":0,"x":0.92,"y":-0.26},{"duration":9,"tweenEasing":0,"x":1.13,"y":-0.75},{"duration":9,"tweenEasing":0,"x":0.92,"y":-0.26},{"duration":9,"tweenEasing":0,"x":1.13,"y":-0.75},{"duration":9,"tweenEasing":0,"x":0.92,"y":-0.49},{"duration":18,"tweenEasing":0,"x":1.13,"y":-1.07},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.67},{"duration":9,"tweenEasing":0,"rotate":-30.66},{"duration":9,"tweenEasing":0,"rotate":-31.48},{"duration":9,"tweenEasing":0,"rotate":-27.88},{"duration":9,"tweenEasing":0,"rotate":-34.28},{"duration":9,"tweenEasing":0,"rotate":-25.77},{"duration":9,"tweenEasing":0,"rotate":-35.22},{"duration":9,"tweenEasing":0,"rotate":-23.55},{"duration":18,"tweenEasing":0,"rotate":-31.48},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":39,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect5","colorFrame":[{"duration":27,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":12,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":36,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":33,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":102,"value":-1}]}]},{"duration":66,"playTimes":0,"name":"Idle1","bone":[{"name":"effect6","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":3.46,"y":-6.84},{"duration":0,"x":5.42,"y":-9.87}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"rotate":-10.38}]},{"name":"effect5","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":-4,"y":-3.31},{"duration":15,"tweenEasing":0,"x":-5.03,"y":-8.91},{"duration":9,"x":-5.37,"y":-12.35}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":27.97},{"duration":15,"tweenEasing":0,"rotate":-3.77},{"duration":9,"rotate":-10.94}]},{"name":"effect4","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":3.88,"y":-6.4},{"duration":21,"tweenEasing":0,"x":6.75,"y":-10.97},{"duration":9,"x":6.51,"y":-13.37}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":19.87},{"duration":21,"tweenEasing":0,"rotate":-1.94},{"duration":9,"rotate":-29.35}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":3.4,"y":-7.87},{"duration":18,"tweenEasing":0,"x":3.13,"y":-14.13},{"duration":0,"x":3.67,"y":-17.86}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-25.82},{"duration":18,"tweenEasing":0,"rotate":-13.32},{"duration":0,"rotate":-23.08}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":-2.32,"y":-5.92},{"duration":21,"tweenEasing":0,"x":-5.84,"y":-9.44},{"duration":6,"x":-7.52,"y":-12}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":35.13},{"duration":21,"tweenEasing":0,"rotate":-4.98},{"duration":6,"rotate":29.58}]},{"name":"leftHand","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.29,"y":0.43},{"duration":24,"tweenEasing":0,"x":0.29,"y":0.43},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-4.45},{"duration":24,"tweenEasing":0,"rotate":-6.58},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.03,"y":0.23},{"duration":24}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-3.35},{"duration":24,"tweenEasing":0,"rotate":7.11},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-0.08,"y":-0.56},{"duration":24,"tweenEasing":0,"x":-0.08,"y":-0.56},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":13.8},{"duration":24,"tweenEasing":0,"rotate":4.52},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.1,"y":-0.99},{"duration":24,"tweenEasing":0,"x":0.18,"y":-0.92},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":16.02},{"duration":24,"tweenEasing":0,"rotate":12.08},{"duration":0}]},{"name":"head","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-0.16,"y":-0.69},{"duration":24,"tweenEasing":0,"y":-0.45},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.32,"y":-1.9},{"duration":24,"tweenEasing":0,"x":0.32,"y":-0.78},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-10.95},{"duration":24,"tweenEasing":0,"rotate":-8.38},{"duration":0}]},{"name":"body","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"y":-0.72},{"duration":24,"tweenEasing":0,"x":0.08,"y":-0.32},{"duration":0}],"scaleFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":24,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":66,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":11.7},{"duration":21,"tweenEasing":0,"rotate":16.12},{"duration":24,"tweenEasing":0,"rotate":15.51},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":21,"tweenEasing":0,"x":-0.09,"y":0.52},{"duration":24,"tweenEasing":0,"x":-0.07,"y":0.13},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":21.7},{"duration":21,"tweenEasing":0,"rotate":45.3},{"duration":24,"tweenEasing":0,"rotate":32.17},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":21,"tweenEasing":0,"x":0.74,"y":0.46},{"duration":24,"tweenEasing":0,"x":1.06,"y":0.7},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.67},{"duration":21,"tweenEasing":0,"rotate":-26.33},{"duration":24,"tweenEasing":0,"rotate":-19.75},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect5","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":66,"value":-1}]}]}],"defaultActions":[{"gotoAndPlay":"Idle1"}]}]} \ No newline at end of file +{"frameRate":60,"name":"SoldierWaterGhost","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":60,"name":"SoldierWaterGhost","aabb":{"x":-17.1,"y":-45.87,"width":38.84,"height":47.16},"bone":[{"name":"root"},{"inheritScale":false,"length":6.5,"name":"leftShoulder","parent":"root","transform":{"x":-5.60925,"y":-28.39315,"skX":156.8918,"skY":156.8918}},{"inheritScale":false,"name":"backLight","parent":"root","transform":{"x":0.1,"y":-23.0462,"scX":3,"scY":3}},{"inheritScale":false,"length":8.5,"name":"rightArm","parent":"root","transform":{"x":6.7954,"y":-26.8018,"skX":46.9769,"skY":46.9769}},{"inheritScale":false,"name":"effect4","parent":"root","transform":{"x":6.32,"y":-21.38935,"skX":-9.349,"skY":-9.349}},{"inheritScale":false,"name":"effect7","parent":"root"},{"inheritScale":false,"name":"effect3","parent":"root","transform":{"x":5.75,"y":-27.36735}},{"inheritScale":false,"length":8.5,"name":"leg","parent":"root","transform":{"x":-0.45525,"y":-1.41005,"skX":-85.7242,"skY":-85.7242}},{"inheritScale":false,"length":11,"name":"body","parent":"root","transform":{"x":1.00195,"y":-12.3951,"skX":-82.2714,"skY":-82.2714}},{"inheritScale":false,"length":6,"name":"rightShoulder","parent":"root","transform":{"x":9.1041,"y":-26.3402,"skX":22.0857,"skY":22.0857}},{"inheritScale":false,"length":5.5,"name":"head","parent":"root","transform":{"x":4.103,"y":-31.2905,"skX":-83.4757,"skY":-83.4757}},{"inheritScale":false,"length":5,"name":"leftArm","parent":"root","transform":{"x":-6.5059,"y":-26.80925,"skX":122.5397,"skY":122.5397}},{"inheritScale":false,"name":"effect2","parent":"root","transform":{"x":-5.0143,"y":-28.2204,"skX":-79.3059,"skY":-79.3059}},{"inheritScale":false,"name":"effect5","parent":"root","transform":{"x":-15.0286,"y":-16.5986,"skX":-72.4737,"skY":-72.4737}},{"inheritScale":false,"name":"effect6","parent":"root","transform":{"x":13.28445,"y":-15.03735}},{"inheritScale":false,"name":"rightFrontArm","parent":"rightArm","transform":{"x":8.82335,"y":0.6604,"skX":10.7237,"skY":10.7237}},{"inheritScale":false,"name":"leftFrontArm","parent":"leftArm","transform":{"x":7.37235,"y":1.7869,"skX":-39.1583,"skY":-39.1583}},{"inheritScale":false,"name":"rightHand","parent":"rightFrontArm","transform":{"x":5.3646,"y":-2.8911,"skX":21.9835,"skY":21.9835}},{"inheritScale":false,"name":"leftHand","parent":"leftFrontArm","transform":{"x":7.3904,"y":1.4291,"skX":-25.7356,"skY":-25.7356}}],"slot":[{"name":"backLight","parent":"backLight"},{"name":"rightArm","parent":"rightArm"},{"name":"leg","parent":"leg"},{"name":"body","parent":"body"},{"name":"rightShoulder","parent":"rightShoulder"},{"name":"rightFrontArm","parent":"rightFrontArm"},{"name":"rightHand","parent":"rightHand"},{"name":"leftArm","parent":"leftArm"},{"name":"leftShoulder","parent":"leftShoulder"},{"name":"leftFrontArm","parent":"leftFrontArm"},{"name":"head","parent":"head"},{"name":"leftHand","parent":"leftHand"},{"name":"effect2","parent":"effect2"},{"name":"effect3","parent":"effect3"},{"name":"effect4","parent":"effect4"},{"name":"effect5","parent":"effect5"},{"name":"effect6","parent":"effect6"},{"displayIndex":-1,"name":"effect7","parent":"effect7"}],"skin":[{"slot":[{"name":"rightArm","display":[{"name":"yinmo08","transform":{"x":4.54,"y":-0.2,"skX":-54.4,"skY":-54.4},"path":"rightArm"}]},{"name":"effect6","display":[{"name":"huomiao01"}]},{"name":"leftHand","display":[{"name":"yinmo07","transform":{"x":2.04,"y":-0.17,"skX":-66.8,"skY":-66.8},"path":"leftHand"}]},{"name":"effect4","display":[{"name":"huomiao01"}]},{"name":"leftFrontArm","display":[{"name":"yinmo06","transform":{"x":3.15,"y":0.49,"skX":-76.83,"skY":-76.83},"path":"leftFrontArm"}]},{"name":"effect2","display":[{"name":"huomiao01"}]},{"name":"leftArm","display":[{"name":"yinmo05","transform":{"x":3.46,"y":0.04,"skX":-112.43,"skY":-112.43},"path":"leftArm"}]},{"name":"head","display":[{"name":"yinmo01","transform":{"x":6.5,"y":-1.04,"skX":82.3,"skY":82.3,"scX":1.5,"scY":1.5},"path":"head"},{"name":"head2","transform":{"x":6.64,"y":-1.22,"skX":83.48,"skY":83.48}}]},{"name":"rightFrontArm","display":[{"name":"yinmo09","transform":{"x":1.87,"y":-0.59,"skX":-60.14,"skY":-60.14},"path":"rightFrontArm"}]},{"name":"backLight","display":[{"name":"biu"}]},{"name":"rightShoulder","display":[{"name":"yinmo04","transform":{"x":1.71,"y":-0.41,"skX":-28.61,"skY":-28.61},"path":"rightShoulder"}]},{"name":"effect5","display":[{"name":"huomiao01"}]},{"name":"leg","display":[{"name":"yinmoqe00","transform":{"x":5.32,"y":-0.07,"skX":85.72,"skY":85.72}}]},{"name":"effect3","display":[{"name":"huomiao01"}]},{"name":"leftShoulder","display":[{"name":"yinmo03","transform":{"x":2.4,"y":-0.06,"skX":-154.62,"skY":-154.62},"path":"leftShoulder"}]},{"name":"body","display":[{"name":"yinmo02","transform":{"x":6.41,"y":-1.19,"skX":82.27,"skY":82.27},"path":"body"}]},{"name":"rightHand","display":[{"name":"yinmo10","transform":{"x":2.69,"y":-0.12,"skX":-63.84,"skY":-63.84},"path":"rightHand"}]}]}],"animation":[{"duration":60,"playTimes":0,"name":"Walking","bone":[{"name":"effect5","translateFrame":[{"duration":12,"tweenEasing":0,"x":22.08,"y":7.04},{"duration":12,"tweenEasing":0,"x":22.08,"y":7.04},{"duration":15,"tweenEasing":0,"x":15.52,"y":7.68},{"duration":15,"tweenEasing":0,"x":11.04,"y":-0.32},{"duration":6,"x":-5.12,"y":-11.68}],"rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":21,"rotate":7.3}]},{"name":"effect4","translateFrame":[{"duration":6,"tweenEasing":0,"x":3.68,"y":-1.24},{"duration":9,"tweenEasing":0,"x":3.68,"y":-1.24},{"duration":15,"tweenEasing":0,"x":-1,"y":-7.88},{"duration":12,"tweenEasing":0,"x":-7.24,"y":-10.24},{"duration":12,"tweenEasing":0,"x":-7.32,"y":-18.4},{"duration":6,"x":-20.28,"y":-26.52}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-49.96},{"duration":15,"tweenEasing":0,"rotate":-49.96},{"duration":12,"tweenEasing":0,"rotate":-84.92},{"duration":12,"tweenEasing":0,"rotate":-11.77},{"duration":6,"rotate":-28.57}]},{"name":"effect3","translateFrame":[{"duration":6,"tweenEasing":0,"x":-7.4,"y":12.8},{"duration":12,"tweenEasing":0,"x":-7.4,"y":12.8},{"duration":18,"tweenEasing":0,"x":-14.6,"y":8.8},{"duration":12,"tweenEasing":0,"x":-19,"y":4.6},{"duration":9,"tweenEasing":0,"x":-28.2,"y":2.2},{"duration":3,"x":-34.4,"y":2}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-59.23},{"duration":12,"tweenEasing":0,"rotate":-36.85},{"duration":9,"tweenEasing":0,"rotate":-66.48},{"duration":3,"rotate":-111.5}]},{"name":"effect2","translateFrame":[{"duration":3,"tweenEasing":0,"x":5.28,"y":5.6},{"duration":12,"tweenEasing":0,"x":5.28,"y":5.6},{"duration":15,"tweenEasing":0,"x":-0.8,"y":0.8},{"duration":18,"tweenEasing":0,"x":-9.92,"y":1.6},{"duration":9,"tweenEasing":0,"x":-14.88,"y":-3.36},{"duration":3,"x":-19.84,"y":-12}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-61.22},{"duration":9,"tweenEasing":0,"rotate":0.48},{"duration":3,"rotate":27.59}]},{"name":"leftHand","rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":11.3},{"duration":15,"tweenEasing":0,"rotate":15.68},{"duration":15,"tweenEasing":0,"rotate":-5.06},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":0.07,"y":0.59},{"duration":15,"tweenEasing":0,"x":0.23,"y":-0.53},{"duration":15,"tweenEasing":0,"x":-0.17,"y":-1.03},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-4.65},{"duration":15,"tweenEasing":0,"rotate":12.03},{"duration":15,"tweenEasing":0,"rotate":23.96},{"duration":15,"tweenEasing":0,"rotate":16.54},{"duration":0,"rotate":-4.65}]},{"name":"leftShoulder","translateFrame":[{"duration":15,"tweenEasing":0,"x":2.88},{"duration":15,"tweenEasing":0,"x":2.57,"y":0.97},{"duration":15,"tweenEasing":0,"x":4.14,"y":-0.08},{"duration":15,"tweenEasing":0,"x":3.68,"y":1.09},{"duration":0,"x":2.88}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":20.1},{"duration":15,"tweenEasing":0,"rotate":-5.43},{"duration":15,"tweenEasing":0,"rotate":10.13},{"duration":15,"tweenEasing":0,"rotate":-2.7},{"duration":0,"rotate":20.1}]},{"name":"leftArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":1.92,"y":-0.48},{"duration":15,"tweenEasing":0,"x":3.59,"y":0.72},{"duration":15,"tweenEasing":0,"x":6.63,"y":1.54},{"duration":15,"tweenEasing":0,"x":5.95,"y":1.94},{"duration":0,"x":1.92,"y":-0.48}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":26.91},{"duration":15,"tweenEasing":0,"rotate":-35.34},{"duration":15,"tweenEasing":0,"rotate":-70.51},{"duration":15,"tweenEasing":0,"rotate":-30.69},{"duration":0,"rotate":26.91}]},{"name":"head","translateFrame":[{"duration":15,"tweenEasing":0,"x":2.72,"y":0.64},{"duration":15,"tweenEasing":0,"x":2.48,"y":2.44},{"duration":15,"tweenEasing":0,"x":3.65,"y":0.32},{"duration":15,"tweenEasing":0,"x":3.79,"y":2.71},{"duration":0,"x":2.72,"y":0.64}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":0.59},{"duration":15,"tweenEasing":0,"rotate":0.59},{"duration":15,"tweenEasing":0,"rotate":-0.72},{"duration":15,"tweenEasing":0,"rotate":-0.72},{"duration":0,"rotate":0.59}]},{"name":"rightShoulder","translateFrame":[{"duration":15,"tweenEasing":0,"x":1.71,"y":0.58},{"duration":15,"tweenEasing":0,"x":0.85,"y":1.34},{"duration":15,"tweenEasing":0,"x":1.95,"y":0.09},{"duration":15,"tweenEasing":0,"x":2.81,"y":1.94},{"duration":0,"x":1.71,"y":0.58}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":10.12},{"duration":15,"tweenEasing":0,"rotate":-14.23},{"duration":15,"tweenEasing":0,"rotate":5.57},{"duration":15,"tweenEasing":0,"rotate":-13.84},{"duration":0,"rotate":10.12}]},{"name":"body","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"y":1.36},{"duration":15,"tweenEasing":0,"x":0.48,"y":-0.09},{"duration":15,"tweenEasing":0,"x":0.71,"y":1.67},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.24},{"duration":15,"tweenEasing":0,"rotate":13},{"duration":15,"tweenEasing":0,"rotate":16.36},{"duration":15,"tweenEasing":0,"rotate":14.15},{"duration":0,"rotate":11.24}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-0.48},{"duration":6,"tweenEasing":0,"x":-0.4},{"duration":6,"tweenEasing":0,"x":-0.48},{"duration":6,"tweenEasing":0,"x":-0.48},{"duration":12,"tweenEasing":0,"x":0.32},{"duration":6,"tweenEasing":0,"x":0.32},{"duration":6,"tweenEasing":0,"x":-0.16},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":1.02},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-0.52},{"duration":6}],"scaleFrame":[{"duration":6,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":6,"tweenEasing":0,"y":1.1},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":12,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":12,"y":0.9}]},{"name":"rightHand","translateFrame":[{"duration":60,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-8},{"duration":15,"tweenEasing":0,"rotate":-1.89},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":0.14},{"duration":0,"rotate":-8}]},{"name":"rightFrontArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.1,"y":-0.85},{"duration":15,"tweenEasing":0,"x":0.41,"y":-1.03},{"duration":15,"tweenEasing":0,"x":0.06,"y":-0.05},{"duration":3,"tweenEasing":0,"x":0.06,"y":-0.05},{"duration":6,"tweenEasing":0,"x":-0.04,"y":-1.27},{"duration":6,"tweenEasing":0,"y":-1.32},{"duration":0,"x":-0.1,"y":-0.85}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-43.73},{"duration":15,"tweenEasing":0,"rotate":-66.02},{"duration":15,"tweenEasing":0,"rotate":-6.47},{"duration":3,"tweenEasing":0,"rotate":-62.6},{"duration":6,"tweenEasing":0,"rotate":-58.82},{"duration":6,"tweenEasing":0,"rotate":-51.28},{"duration":0,"rotate":-43.73}]},{"name":"rightArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":2.16,"y":2.04},{"duration":15,"tweenEasing":0,"x":2.48,"y":1.17},{"duration":15,"tweenEasing":0,"x":-4.18,"y":-2.13},{"duration":15,"tweenEasing":0,"x":2.1,"y":1.69},{"duration":0,"x":2.16,"y":2.04}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.28},{"duration":15,"tweenEasing":0,"rotate":63.1},{"duration":15,"tweenEasing":0,"rotate":74.64},{"duration":15,"tweenEasing":0,"rotate":55.11},{"duration":0,"rotate":11.28}]}],"slot":[{"name":"effect5","displayFrame":[{"duration":12,"value":-1},{"duration":45},{"duration":3,"value":-1}],"colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect4","displayFrame":[{"duration":6,"value":-1},{"duration":51},{"duration":3,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":27,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":6,"value":-1},{"duration":54},{"duration":0,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":60},{"duration":0,"value":-1}],"colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":33,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":60,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":60,"value":-1}]}]},{"duration":174,"name":"Atk2","bone":[{"name":"effect5","translateFrame":[{"duration":18,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":13.3,"y":-18.8},{"duration":12,"tweenEasing":0,"x":14.8,"y":-23.5},{"duration":24,"tweenEasing":0,"x":11.2,"y":-31.6},{"duration":12,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":13.3,"y":-18.8},{"duration":12,"tweenEasing":0,"x":14.8,"y":-23.5},{"duration":24,"tweenEasing":0,"x":11.2,"y":-31.6},{"duration":12,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":13.3,"y":-18.8},{"duration":9,"tweenEasing":0,"x":14.8,"y":-23.5},{"duration":3,"x":11.2,"y":-31.6}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":12,"tweenEasing":0,"rotate":11.57},{"duration":24,"tweenEasing":0,"rotate":61.88},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":12,"tweenEasing":0,"rotate":11.57},{"duration":24,"tweenEasing":0,"rotate":61.88},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":9,"tweenEasing":0,"rotate":11.57},{"duration":3,"rotate":61.88}]},{"name":"effect4","translateFrame":[{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":15,"tweenEasing":0,"x":4.34,"y":-5.6},{"duration":12,"tweenEasing":0,"x":-1.95,"y":-16.23},{"duration":21,"tweenEasing":0,"x":2.52,"y":-23.89},{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":15,"tweenEasing":0,"x":4.34,"y":-5.6},{"duration":12,"tweenEasing":0,"x":-1.95,"y":-16.23},{"duration":21,"tweenEasing":0,"x":2.52,"y":-23.89},{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":12,"tweenEasing":0,"x":4.34,"y":-5.6},{"duration":12,"tweenEasing":0,"x":-1.95,"y":-16.23},{"duration":6,"x":2.52,"y":-23.89}],"rotateFrame":[{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":15,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":21,"tweenEasing":0,"rotate":-53.65},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":15,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":21,"tweenEasing":0,"rotate":-53.65},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":12,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":6,"rotate":-53.65}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0,"y":7.54},{"duration":15,"tweenEasing":0,"y":7.54},{"duration":15,"tweenEasing":0,"x":-6.29,"y":-9.26},{"duration":12,"tweenEasing":0,"x":-12.12,"y":-17.95},{"duration":18,"tweenEasing":0,"x":-18.97,"y":-21.37},{"duration":15,"tweenEasing":0,"y":7.54},{"duration":15,"tweenEasing":0,"x":-6.29,"y":-9.26},{"duration":12,"tweenEasing":0,"x":-12.12,"y":-17.95},{"duration":18,"tweenEasing":0,"x":-18.97,"y":-21.37},{"duration":15,"tweenEasing":0,"y":7.54},{"duration":12,"tweenEasing":0,"x":-6.29,"y":-9.26},{"duration":12,"tweenEasing":0,"x":-12.12,"y":-17.95},{"duration":6,"x":-18.97,"y":-21.37}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-42.15},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":18,"tweenEasing":0,"rotate":-111.08},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":18,"tweenEasing":0,"rotate":-111.08},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":6,"rotate":-111.08}]},{"name":"effect2","translateFrame":[{"duration":6,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":9,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":15,"tweenEasing":0,"x":-1.6,"y":-0.23},{"duration":15,"tweenEasing":0,"x":-14.29,"y":-4.12},{"duration":15,"tweenEasing":0,"x":-13.71,"y":-10.29},{"duration":15,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":15,"tweenEasing":0,"x":-1.6,"y":-0.23},{"duration":15,"tweenEasing":0,"x":-14.29,"y":-4.12},{"duration":15,"tweenEasing":0,"x":-13.71,"y":-10.29},{"duration":15,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":15,"tweenEasing":0,"x":-1.6,"y":-0.23},{"duration":15,"tweenEasing":0,"x":-14.29,"y":-4.12},{"duration":9,"x":-13.71,"y":-10.29}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":15,"tweenEasing":0,"rotate":57.19},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":15,"tweenEasing":0,"rotate":57.19},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":9,"rotate":57.19}]},{"name":"leftHand","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":3,"tweenEasing":0,"x":0.35,"y":0.04},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.1},{"duration":12,"tweenEasing":0,"x":0.06,"y":0.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":3,"tweenEasing":0,"x":0.35,"y":0.04},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.1},{"duration":12,"tweenEasing":0,"x":0.06,"y":0.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":3,"tweenEasing":0,"x":0.35,"y":0.04},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.1},{"duration":12,"tweenEasing":0,"x":0.06,"y":0.29},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.6},{"duration":3,"tweenEasing":0,"x":0.14,"y":0.17},{"duration":15,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.33,"y":-1.5},{"duration":12,"tweenEasing":0,"x":0.24,"y":-0.45},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.6},{"duration":3,"tweenEasing":0,"x":0.14,"y":0.17},{"duration":15,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.33,"y":-1.5},{"duration":12,"tweenEasing":0,"x":0.24,"y":-0.45},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.6},{"duration":3,"tweenEasing":0,"x":0.14,"y":0.17},{"duration":15,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.33,"y":-1.5},{"duration":12,"tweenEasing":0,"x":0.24,"y":-0.45},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":0}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.16,"y":2.63},{"duration":3,"tweenEasing":0,"x":8,"y":1.03},{"duration":15,"tweenEasing":0,"x":-7.12,"y":1.65},{"duration":3,"tweenEasing":0,"x":-10.38,"y":-0.4},{"duration":3,"tweenEasing":0,"x":-3.7,"y":-0.01},{"duration":12,"tweenEasing":0,"x":4.67,"y":1.6},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.16,"y":2.63},{"duration":3,"tweenEasing":0,"x":8,"y":1.03},{"duration":15,"tweenEasing":0,"x":-7.12,"y":1.65},{"duration":3,"tweenEasing":0,"x":-10.38,"y":-0.4},{"duration":3,"tweenEasing":0,"x":-3.7,"y":-0.01},{"duration":12,"tweenEasing":0,"x":4.67,"y":1.6},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.16,"y":2.63},{"duration":3,"tweenEasing":0,"x":8,"y":1.03},{"duration":15,"tweenEasing":0,"x":-7.12,"y":1.65},{"duration":3,"tweenEasing":0,"x":-10.38,"y":-0.4},{"duration":3,"tweenEasing":0,"x":-3.7,"y":-0.01},{"duration":12,"tweenEasing":0,"x":4.67,"y":1.6},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":4.25,"y":-0.63},{"duration":3,"tweenEasing":0,"x":7.94,"y":0.21},{"duration":15,"tweenEasing":0,"x":-0.18,"y":0.53},{"duration":3,"tweenEasing":0,"x":-2.9,"y":-0.6},{"duration":3,"tweenEasing":0,"x":1.72,"y":1.3},{"duration":12,"tweenEasing":0,"x":4.92,"y":0.26},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":4.25,"y":-0.63},{"duration":3,"tweenEasing":0,"x":7.94,"y":0.21},{"duration":15,"tweenEasing":0,"x":-0.18,"y":0.53},{"duration":3,"tweenEasing":0,"x":-2.9,"y":-0.6},{"duration":3,"tweenEasing":0,"x":1.72,"y":1.3},{"duration":12,"tweenEasing":0,"x":4.92,"y":0.26},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":4.25,"y":-0.63},{"duration":3,"tweenEasing":0,"x":7.94,"y":0.21},{"duration":15,"tweenEasing":0,"x":-0.18,"y":0.53},{"duration":3,"tweenEasing":0,"x":-2.9,"y":-0.6},{"duration":3,"tweenEasing":0,"x":1.72,"y":1.3},{"duration":12,"tweenEasing":0,"x":4.92,"y":0.26},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":0}],"scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":15}]},{"name":"head","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.58,"y":5.97},{"duration":3,"tweenEasing":0,"x":8.94,"y":8.11},{"duration":15,"tweenEasing":0,"x":-8.84,"y":0.61},{"duration":3,"tweenEasing":0,"x":-9.28,"y":-1},{"duration":3,"tweenEasing":0,"x":-4.25,"y":-0.36},{"duration":12,"tweenEasing":0,"x":4.59,"y":3.9},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.58,"y":5.97},{"duration":3,"tweenEasing":0,"x":8.94,"y":8.11},{"duration":15,"tweenEasing":0,"x":-8.84,"y":0.61},{"duration":3,"tweenEasing":0,"x":-9.28,"y":-1},{"duration":3,"tweenEasing":0,"x":-4.25,"y":-0.36},{"duration":12,"tweenEasing":0,"x":4.59,"y":3.9},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.58,"y":5.97},{"duration":3,"tweenEasing":0,"x":8.94,"y":8.11},{"duration":15,"tweenEasing":0,"x":-8.84,"y":0.61},{"duration":3,"tweenEasing":0,"x":-9.28,"y":-1},{"duration":3,"tweenEasing":0,"x":-4.25,"y":-0.36},{"duration":12,"tweenEasing":0,"x":4.59,"y":3.9},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":3.56,"y":2.23},{"duration":3,"tweenEasing":0,"x":5.16,"y":3.53},{"duration":15,"tweenEasing":0,"x":-11.15,"y":-1.1},{"duration":3,"tweenEasing":0,"x":-10.46,"y":-2.84},{"duration":3,"tweenEasing":0,"x":-4.45,"y":-0.43},{"duration":12,"tweenEasing":0,"x":3.48,"y":2.71},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":3.56,"y":2.23},{"duration":3,"tweenEasing":0,"x":5.16,"y":3.53},{"duration":15,"tweenEasing":0,"x":-11.15,"y":-1.1},{"duration":3,"tweenEasing":0,"x":-10.46,"y":-2.84},{"duration":3,"tweenEasing":0,"x":-4.45,"y":-0.43},{"duration":12,"tweenEasing":0,"x":3.48,"y":2.71},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":3.56,"y":2.23},{"duration":3,"tweenEasing":0,"x":5.16,"y":3.53},{"duration":15,"tweenEasing":0,"x":-11.15,"y":-1.1},{"duration":3,"tweenEasing":0,"x":-10.46,"y":-2.84},{"duration":3,"tweenEasing":0,"x":-4.45,"y":-0.43},{"duration":12,"tweenEasing":0,"x":3.48,"y":2.71},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":0}]},{"name":"body","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.45,"y":1.64},{"duration":3,"tweenEasing":0,"x":0.03,"y":1.08},{"duration":9,"tweenEasing":0,"x":-1.44,"y":-0.71},{"duration":6,"tweenEasing":0,"x":-1.68,"y":-0.49},{"duration":3,"tweenEasing":0,"x":-1.84,"y":-0.35},{"duration":3,"tweenEasing":0,"x":-0.61,"y":-0.37},{"duration":12,"tweenEasing":0,"x":0.05,"y":1.11},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.45,"y":1.64},{"duration":3,"tweenEasing":0,"x":0.03,"y":1.08},{"duration":9,"tweenEasing":0,"x":-1.44,"y":-0.71},{"duration":6,"tweenEasing":0,"x":-1.68,"y":-0.49},{"duration":3,"tweenEasing":0,"x":-1.84,"y":-0.35},{"duration":3,"tweenEasing":0,"x":-0.61,"y":-0.37},{"duration":12,"tweenEasing":0,"x":0.05,"y":1.11},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.45,"y":1.64},{"duration":3,"tweenEasing":0,"x":0.03,"y":1.08},{"duration":9,"tweenEasing":0,"x":-1.44,"y":-0.71},{"duration":6,"tweenEasing":0,"x":-1.68,"y":-0.49},{"duration":3,"tweenEasing":0,"x":-1.84,"y":-0.35},{"duration":3,"tweenEasing":0,"x":-0.61,"y":-0.37},{"duration":12,"tweenEasing":0,"x":0.05,"y":1.11},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":0}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.24},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.32},{"duration":3,"tweenEasing":0,"y":-0.32},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.24},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.32},{"duration":3,"tweenEasing":0,"y":-0.32},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.24},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.32},{"duration":3,"tweenEasing":0,"y":-0.32},{"duration":15}],"scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":15}]},{"name":"rightHand","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":3,"tweenEasing":0,"x":-1.3,"y":-0.62},{"duration":18,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":12,"tweenEasing":0,"x":-1.21,"y":-0.17},{"duration":6,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":15,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":3,"tweenEasing":0,"x":-1.3,"y":-0.62},{"duration":18,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":12,"tweenEasing":0,"x":-1.21,"y":-0.17},{"duration":6,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":15,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":3,"tweenEasing":0,"x":-1.3,"y":-0.62},{"duration":18,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":12,"tweenEasing":0,"x":-1.21,"y":-0.17},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-30.35},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":3,"tweenEasing":0,"x":1.56,"y":-1.53},{"duration":15,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":12,"tweenEasing":0,"x":0.62,"y":-1.61},{"duration":6,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":15,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":3,"tweenEasing":0,"x":1.56,"y":-1.53},{"duration":15,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":12,"tweenEasing":0,"x":0.62,"y":-1.61},{"duration":6,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":15,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":3,"tweenEasing":0,"x":1.56,"y":-1.53},{"duration":15,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":12,"tweenEasing":0,"x":0.62,"y":-1.61},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-42.6},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-55.76},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-55.76},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":0,"rotate":21.7}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":0}]},{"name":"rightArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":3.52,"y":0.28},{"duration":3,"tweenEasing":0,"x":4.23,"y":2.19},{"duration":15,"tweenEasing":0,"x":-4.97,"y":-2.79},{"duration":3,"tweenEasing":0,"x":-5.28,"y":-3.39},{"duration":3,"tweenEasing":0,"x":-3.67,"y":-0.35},{"duration":12,"tweenEasing":0,"x":2.15,"y":1.63},{"duration":6,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":15,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":3.52,"y":0.28},{"duration":3,"tweenEasing":0,"x":4.23,"y":2.19},{"duration":15,"tweenEasing":0,"x":-4.97,"y":-2.79},{"duration":3,"tweenEasing":0,"x":-5.28,"y":-3.39},{"duration":3,"tweenEasing":0,"x":-3.67,"y":-0.35},{"duration":12,"tweenEasing":0,"x":2.15,"y":1.63},{"duration":6,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":15,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":3.52,"y":0.28},{"duration":3,"tweenEasing":0,"x":4.23,"y":2.19},{"duration":15,"tweenEasing":0,"x":-4.97,"y":-2.79},{"duration":3,"tweenEasing":0,"x":-5.28,"y":-3.39},{"duration":3,"tweenEasing":0,"x":-3.67,"y":-0.35},{"duration":12,"tweenEasing":0,"x":2.15,"y":1.63},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":0,"rotate":-6.67}],"scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":36,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":36,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":12}]}],"slot":[{"name":"effect5","displayFrame":[{"duration":18,"value":-1},{"duration":156},{"duration":0,"value":-1}],"colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect4","displayFrame":[{"duration":12,"value":-1},{"duration":159},{"duration":3,"value":-1}],"colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":9,"value":-1},{"duration":162},{"duration":3,"value":-1}],"colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":6,"value":-1},{"duration":162},{"duration":6,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"rightHand","displayFrame":[{"duration":21},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":15}],"colorFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":42,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":15}]},{"name":"rightFrontArm","displayFrame":[{"duration":21},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":15}],"colorFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":42,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":15}]},{"name":"backLight","displayFrame":[{"duration":174,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":174,"value":-1}]}]},{"duration":34,"name":"Atk1","bone":[{"name":"effect4","translateFrame":[{"duration":4,"tweenEasing":0,"x":-9.1,"y":6.7},{"duration":8,"tweenEasing":0,"x":-9.1,"y":6.7},{"duration":8,"tweenEasing":0,"x":-17.8,"y":1.8},{"duration":8,"tweenEasing":0,"x":-24,"y":0.4},{"duration":6,"x":-30.6}],"rotateFrame":[{"duration":4,"tweenEasing":0,"rotate":-105.08},{"duration":8,"tweenEasing":0,"rotate":-105.08},{"duration":8,"tweenEasing":0,"rotate":-96.73},{"duration":8,"tweenEasing":0,"rotate":-69.9},{"duration":6,"rotate":-94.04}]},{"name":"effect3","translateFrame":[{"duration":2,"tweenEasing":0,"x":-14.66,"y":10.66},{"duration":4,"tweenEasing":0,"x":-14.66,"y":10.66},{"duration":10,"tweenEasing":0,"x":-23.07,"y":6},{"duration":8,"tweenEasing":0,"x":-26.93,"y":9.46},{"duration":10,"x":-31.07,"y":7.33}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-108.91},{"duration":10,"tweenEasing":0,"rotate":-108.91},{"duration":8,"tweenEasing":0,"rotate":-127.09},{"duration":10,"rotate":-108.09}]},{"name":"effect2","translateFrame":[{"duration":2,"tweenEasing":0,"x":-4.54,"y":13.2},{"duration":6,"tweenEasing":0,"x":-4.54,"y":13.2},{"duration":10,"tweenEasing":0,"x":-13.6,"y":2.8},{"duration":4,"tweenEasing":0,"x":-23.46,"y":-4.26},{"duration":12,"x":-27.46,"y":-5.46}],"rotateFrame":[{"duration":2,"tweenEasing":0,"rotate":31.2},{"duration":6,"tweenEasing":0,"rotate":31.2},{"duration":10,"tweenEasing":0,"rotate":-0.05},{"duration":4,"tweenEasing":0,"rotate":-26.91},{"duration":12,"rotate":-24.71}]},{"name":"leftHand","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":8,"tweenEasing":0,"x":0.01,"y":0.07},{"duration":8,"tweenEasing":0,"x":0.01,"y":0.07},{"duration":8,"tweenEasing":0,"x":0.1,"y":0.49},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-12.3},{"duration":8,"tweenEasing":0,"rotate":18.53},{"duration":8,"tweenEasing":0,"rotate":-9},{"duration":8,"tweenEasing":0,"rotate":9.5},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.71,"y":0.04},{"duration":8,"tweenEasing":0,"x":0.18,"y":0.12},{"duration":8,"tweenEasing":0,"x":0.69,"y":-0.78},{"duration":8,"tweenEasing":0,"x":0.2,"y":0.24},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":13.83},{"duration":8,"tweenEasing":0,"rotate":25.06},{"duration":8,"tweenEasing":0,"rotate":17.69},{"duration":8,"tweenEasing":0,"rotate":12.39},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-2.88,"y":-0.6},{"duration":8,"tweenEasing":0,"x":8.4,"y":-0.74},{"duration":8,"tweenEasing":0,"x":8.01,"y":-0.58},{"duration":8,"tweenEasing":0,"x":1.14,"y":-0.23},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":40},{"duration":8,"tweenEasing":0,"rotate":-12.39},{"duration":8,"tweenEasing":0,"rotate":4.99},{"duration":8,"tweenEasing":0,"rotate":8.69},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-3.42,"y":-1.95},{"duration":8,"tweenEasing":0,"x":12.95,"y":0.1},{"duration":8,"tweenEasing":0,"x":12.47,"y":0.42},{"duration":8,"tweenEasing":0,"x":1.5,"y":-2.19},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":66.79},{"duration":8,"tweenEasing":0,"rotate":-95.1},{"duration":8,"tweenEasing":0,"rotate":-98.37},{"duration":8,"tweenEasing":0,"rotate":-44.89},{"duration":0}]},{"name":"head","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-4.17,"y":0.46},{"duration":8,"tweenEasing":0,"x":9.35,"y":1.83},{"duration":8,"tweenEasing":0,"x":8.79,"y":2.23},{"duration":8,"tweenEasing":0,"x":1.23,"y":0.91},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":15.73},{"duration":8,"tweenEasing":0,"rotate":2.95},{"duration":8,"tweenEasing":0,"rotate":2.83},{"duration":8,"tweenEasing":0,"rotate":0.01},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-3.63,"y":-0.73},{"duration":8,"tweenEasing":0,"x":6.29,"y":2.04},{"duration":8,"tweenEasing":0,"x":6.13,"y":2.27},{"duration":8,"tweenEasing":0,"x":0.4,"y":0.34},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-11.02},{"duration":8,"tweenEasing":0,"rotate":-27.15},{"duration":8,"tweenEasing":0,"rotate":-15.36},{"duration":8,"tweenEasing":0,"rotate":3.41},{"duration":0}]},{"name":"body","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-1.47,"y":-1.01},{"duration":8,"tweenEasing":0,"x":1.27,"y":-0.09},{"duration":8,"tweenEasing":0,"x":1.44,"y":0.23},{"duration":8,"tweenEasing":0,"y":0.4},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-11.15},{"duration":8,"tweenEasing":0,"rotate":29.43},{"duration":8,"tweenEasing":0,"rotate":30.7},{"duration":8,"tweenEasing":0,"rotate":1.09},{"duration":0}],"scaleFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":14,"tweenEasing":0,"y":-0.03},{"duration":4,"tweenEasing":0,"y":-0.03},{"duration":4,"tweenEasing":0,"y":-0.16},{"duration":2,"tweenEasing":0,"y":-0.16},{"duration":0}],"scaleFrame":[{"duration":4,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.1,"y":1.3},{"duration":4,"tweenEasing":0,"x":1.01,"y":1.1},{"duration":4,"tweenEasing":0,"x":1.01,"y":1.1},{"duration":6,"tweenEasing":0,"x":1.01,"y":0.9},{"duration":4,"tweenEasing":0,"x":1.01,"y":0.9},{"duration":4,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":2,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":8,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":2,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":8,"tweenEasing":0,"x":-0.97,"y":-0.2},{"duration":8,"tweenEasing":0,"x":-0.97,"y":-0.2},{"duration":8,"tweenEasing":0,"x":-0.54,"y":-0.17},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":8,"tweenEasing":0,"rotate":11.7},{"duration":2,"tweenEasing":0,"rotate":-34.26},{"duration":8,"tweenEasing":0,"rotate":-8.09},{"duration":8,"tweenEasing":0,"rotate":-36.51},{"duration":8,"tweenEasing":0,"rotate":-12.04},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":8,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":2,"tweenEasing":0,"x":-0.7,"y":0.18},{"duration":8,"tweenEasing":0,"x":-0.34,"y":0.12},{"duration":8,"tweenEasing":0,"x":-0.44,"y":0.07},{"duration":8,"tweenEasing":0,"x":0.31,"y":0.26},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":8,"tweenEasing":0,"rotate":21.7},{"duration":2,"tweenEasing":0,"rotate":-36.51},{"duration":8,"tweenEasing":0,"rotate":-41.51},{"duration":8,"tweenEasing":0,"rotate":-50.9},{"duration":8,"tweenEasing":0,"rotate":-42.18},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":8,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":2,"tweenEasing":0,"x":-2.96,"y":-0.32},{"duration":8,"tweenEasing":0,"x":1.4,"y":3.87},{"duration":8,"tweenEasing":0,"x":1.48,"y":4.19},{"duration":8,"tweenEasing":0,"x":-3.83,"y":-3.08},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":8,"tweenEasing":0,"rotate":-6.67},{"duration":2,"tweenEasing":0,"rotate":8.81},{"duration":8,"tweenEasing":0,"rotate":7.26},{"duration":8,"tweenEasing":0,"rotate":15.7},{"duration":8,"tweenEasing":0,"rotate":25.83},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect4","displayFrame":[{"duration":4,"value":-1},{"duration":26},{"duration":4,"value":-1}],"colorFrame":[{"duration":4,"tweenEasing":0,"value":{"aM":0}},{"duration":8,"tweenEasing":0,"value":{"aM":0}},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":2,"value":-1},{"duration":24},{"duration":8,"value":-1}],"colorFrame":[{"duration":2,"tweenEasing":0,"value":{"aM":0}},{"duration":4,"tweenEasing":0,"value":{"aM":0}},{"duration":10,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":10,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":2,"value":-1},{"duration":22},{"duration":10,"value":-1}],"colorFrame":[{"duration":2,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":10,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":12,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":34,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":34,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":34,"value":-1}]}]},{"duration":18,"name":"Atked1","bone":[{"name":"effect6","translateFrame":[{"duration":6,"tweenEasing":0,"x":-2.52,"y":1.72},{"duration":3,"tweenEasing":0,"x":-0.66,"y":-0.23},{"duration":6,"tweenEasing":0,"x":3.25,"y":-1.37},{"duration":3,"x":4.8,"y":-6.29}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"rotate":-20.99}]},{"name":"effect4","translateFrame":[{"duration":3,"tweenEasing":0,"x":-4.5,"y":3.8},{"duration":3,"tweenEasing":0,"x":-4.5,"y":3.8},{"duration":3,"tweenEasing":0,"x":-10.13,"y":-1.13},{"duration":9,"tweenEasing":0,"x":-11.84,"y":-6.3},{"duration":0,"x":-24,"y":-16.3}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-9.48},{"duration":3,"tweenEasing":0,"rotate":-9.48},{"duration":3,"tweenEasing":0,"rotate":-12.21},{"duration":9,"rotate":-14.93}]},{"name":"effect3","translateFrame":[{"duration":6,"tweenEasing":0,"x":-3.68,"y":5.44},{"duration":3,"tweenEasing":0,"x":-0.76,"y":-7.24},{"duration":6,"tweenEasing":0,"x":1.84,"y":-9.36},{"duration":3,"x":6.56,"y":-13.6}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-20.49},{"duration":6,"tweenEasing":0,"rotate":-21.44},{"duration":3,"rotate":-23.34}]},{"name":"effect2","translateFrame":[{"duration":6,"tweenEasing":0,"x":2.72,"y":0.96},{"duration":3,"tweenEasing":0,"x":-6.04,"y":-7.24},{"duration":9,"tweenEasing":0,"x":-6.73,"y":-8.87},{"duration":0,"x":-9.44,"y":-13.76}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":55.47},{"duration":9,"tweenEasing":0,"rotate":51.89},{"duration":0,"rotate":41.14}]},{"name":"leftHand","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.01,"y":-0.23},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-26.56},{"duration":9,"tweenEasing":0,"rotate":-11.41},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":6.05},{"duration":9,"tweenEasing":0,"rotate":-2.27},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-3.15,"y":2.3},{"duration":9,"tweenEasing":0,"x":-3.52,"y":1.7},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":22.93},{"duration":9,"tweenEasing":0,"rotate":-13.8},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-3.16,"y":1.05},{"duration":9,"tweenEasing":0,"x":-2.29,"y":0.44},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-15.21},{"duration":9,"tweenEasing":0,"rotate":-28.28},{"duration":0}]},{"name":"head","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-2.98,"y":2.9},{"duration":9,"tweenEasing":0,"x":-2.31,"y":0.72},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":20.08},{"duration":9,"tweenEasing":0,"rotate":-25.26},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-3.02,"y":0.27},{"duration":9,"tweenEasing":0,"x":-2.56,"y":-0.29},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-17.61},{"duration":9,"tweenEasing":0,"rotate":-22.45},{"duration":0}]},{"name":"body","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-2.1,"y":1.19},{"duration":9,"tweenEasing":0,"x":0.4,"y":0.88},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-5.23},{"duration":9,"tweenEasing":0,"rotate":-13.28},{"duration":0}],"scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-1.64,"y":0.12},{"duration":9,"tweenEasing":0,"x":0.32,"y":-0.04},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":13.63},{"duration":9,"tweenEasing":0,"rotate":6.92},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":0.22,"y":-0.36},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-6.33},{"duration":9,"tweenEasing":0,"rotate":14.55},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":6,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":-2.48,"y":2.58},{"duration":9,"tweenEasing":0,"x":-1.94,"y":0.96},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":-17.02},{"duration":9,"tweenEasing":0,"rotate":-28.28},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":66}},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":49}},{"duration":9,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":18,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":18,"value":-1}]}]},{"duration":78,"name":"Dying","bone":[{"name":"effect5","translateFrame":[{"duration":24,"tweenEasing":0,"x":7.2,"y":1.72},{"duration":18,"tweenEasing":0,"x":7.2,"y":1.72},{"duration":15,"tweenEasing":0,"x":3.2,"y":-5.14},{"duration":15,"tweenEasing":0,"x":4.23,"y":-11.54},{"duration":6,"x":0.57,"y":-16.23}],"rotateFrame":[{"duration":42,"tweenEasing":0,"rotate":30.08},{"duration":15,"tweenEasing":0,"rotate":30.08},{"duration":15,"tweenEasing":0,"rotate":46.89},{"duration":6,"rotate":26.37}]},{"name":"effect4","translateFrame":[{"duration":18,"tweenEasing":0,"x":-1.6,"y":0.8},{"duration":15,"tweenEasing":0,"x":-1.6,"y":0.8},{"duration":18,"tweenEasing":0,"x":0.12,"y":-12.12},{"duration":18,"tweenEasing":0,"x":-4.34,"y":-19.77},{"duration":9,"x":-5.8,"y":-24.16}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":20.94},{"duration":15,"tweenEasing":0,"rotate":20.94},{"duration":18,"tweenEasing":0,"rotate":-3.4},{"duration":18,"tweenEasing":0,"rotate":-10.49},{"duration":9,"rotate":-4.63}]},{"name":"effect3","translateFrame":[{"duration":27,"tweenEasing":0,"x":-3.06,"y":11.2},{"duration":12,"tweenEasing":0,"x":-3.06,"y":11.2},{"duration":18,"tweenEasing":0,"x":-1.38,"y":-2.44},{"duration":12,"tweenEasing":0,"x":4.45,"y":-9.82},{"duration":9,"x":11.24,"y":-11.69}],"rotateFrame":[{"duration":27,"tweenEasing":0,"rotate":31.61},{"duration":12,"tweenEasing":0,"rotate":31.61},{"duration":18,"tweenEasing":0,"rotate":-12.51},{"duration":12,"tweenEasing":0,"rotate":-13.38},{"duration":9,"rotate":9.35}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0,"x":2,"y":3.06},{"duration":9,"tweenEasing":0,"x":2,"y":3.06},{"duration":9,"tweenEasing":0,"x":0.54,"y":-3.87},{"duration":15,"tweenEasing":0,"x":-6.54,"y":-10.13},{"duration":24,"x":-20.27,"y":-14.8}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":29.59},{"duration":15,"tweenEasing":0,"rotate":2.18},{"duration":24,"rotate":-22.33}]},{"name":"leftHand","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":6,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":9,"tweenEasing":0,"x":0.15,"y":-0.21},{"duration":3,"tweenEasing":0,"x":0.15,"y":-0.21},{"duration":42,"x":-0.33,"y":-0.04}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":3.01},{"duration":6,"tweenEasing":0,"rotate":3.01},{"duration":9,"tweenEasing":0,"rotate":-18.54},{"duration":3,"tweenEasing":0,"rotate":-18.54},{"duration":24,"tweenEasing":0,"rotate":6.38},{"duration":6,"tweenEasing":0,"rotate":6.38},{"duration":12,"rotate":11.01}]},{"name":"leftFrontArm","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.68,"y":-0.95},{"duration":6,"tweenEasing":0,"x":0.68,"y":-0.95},{"duration":9,"tweenEasing":0,"x":0.65,"y":-1.15},{"duration":3,"tweenEasing":0,"x":0.65,"y":-1.15},{"duration":15,"tweenEasing":0,"x":0.15,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.83,"y":0.94},{"duration":6,"tweenEasing":0,"x":0.64,"y":-3.63},{"duration":12,"x":0.49,"y":-4.08}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-33.88},{"duration":3,"tweenEasing":0,"rotate":-26.38},{"duration":6,"tweenEasing":0,"rotate":-26.38},{"duration":9,"tweenEasing":0,"rotate":-47.87},{"duration":3,"tweenEasing":0,"rotate":-65.3},{"duration":15,"tweenEasing":0,"rotate":46.32},{"duration":9,"tweenEasing":0,"rotate":15},{"duration":6,"tweenEasing":0,"rotate":113.18},{"duration":12,"rotate":106.03}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":69,"x":1.05,"y":1.05}]},{"name":"leftShoulder","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":3.92,"y":0.22},{"duration":3,"tweenEasing":0,"x":3.65,"y":-0.2},{"duration":6,"tweenEasing":0,"x":3.65,"y":0.04},{"duration":9,"tweenEasing":0,"x":5.47,"y":0.93},{"duration":3,"tweenEasing":0,"x":5.34,"y":-0.94},{"duration":15,"tweenEasing":0,"x":-1,"y":-5.83},{"duration":9,"tweenEasing":0,"x":-4.61,"y":-8.44},{"duration":6,"tweenEasing":0,"x":-0.2,"y":19},{"duration":12,"tweenEasing":0,"x":-1.65,"y":17.16},{"duration":0,"x":-1.65,"y":18.77}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":13.57},{"duration":3,"tweenEasing":0,"rotate":24.2},{"duration":6,"tweenEasing":0,"rotate":16.88},{"duration":9,"tweenEasing":0,"rotate":10.9},{"duration":3,"tweenEasing":0,"rotate":16.99},{"duration":15,"tweenEasing":0,"rotate":-5.17},{"duration":9,"tweenEasing":0,"rotate":-12.82},{"duration":6,"tweenEasing":0,"rotate":-8.56},{"duration":12,"tweenEasing":0,"rotate":-2.65},{"duration":0,"rotate":-7.04}]},{"name":"leftArm","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":3.38,"y":-2.31},{"duration":3,"tweenEasing":0,"x":3.38,"y":-2.55},{"duration":6,"tweenEasing":0,"x":3.38,"y":-2.31},{"duration":9,"tweenEasing":0,"x":6.04,"y":-0.88},{"duration":3,"tweenEasing":0,"x":5.92,"y":-2.75},{"duration":15,"tweenEasing":0,"x":0.43,"y":-5.91},{"duration":9,"tweenEasing":0,"x":1.24,"y":-0.91},{"duration":6,"tweenEasing":0,"x":1.44,"y":14.13},{"duration":12,"tweenEasing":0,"x":0.64,"y":12.94},{"duration":0,"x":0.8,"y":13.73}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":0.58},{"duration":3,"tweenEasing":0,"rotate":4.94},{"duration":6,"tweenEasing":0,"rotate":4.94},{"duration":9,"tweenEasing":0,"rotate":10.19},{"duration":3,"tweenEasing":0,"rotate":25.77},{"duration":15,"tweenEasing":0,"rotate":-11.12},{"duration":9,"tweenEasing":0,"rotate":-2.99},{"duration":18,"rotate":-14.6}]},{"name":"head","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":4.09,"y":3.06},{"duration":3,"tweenEasing":0,"x":3.85,"y":2.9},{"duration":6,"tweenEasing":0,"x":3.85,"y":3.14},{"duration":9,"tweenEasing":0,"x":4.46,"y":5.23},{"duration":3,"tweenEasing":0,"x":4.79,"y":5.7},{"duration":15,"tweenEasing":0,"x":-1.35,"y":-7.2},{"duration":9,"tweenEasing":0,"x":-0.62,"y":-11.06},{"duration":6,"tweenEasing":0,"x":-1.1,"y":18.3},{"duration":12,"tweenEasing":0,"x":-2.54,"y":16.94},{"duration":0,"x":0.02,"y":21.42}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":29.23},{"duration":3,"tweenEasing":0,"rotate":8.49},{"duration":6,"tweenEasing":0,"rotate":13.15},{"duration":9,"tweenEasing":0,"rotate":15.69},{"duration":3,"tweenEasing":0,"rotate":15.69},{"duration":15,"tweenEasing":0,"rotate":-29.7},{"duration":9,"tweenEasing":0,"rotate":-25.43},{"duration":6,"tweenEasing":0,"rotate":-25.43},{"duration":12,"tweenEasing":0,"rotate":11.43},{"duration":0,"rotate":-13.96}]},{"name":"rightShoulder","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":3.03,"y":0.83},{"duration":3,"tweenEasing":0,"x":3.03,"y":0.59},{"duration":6,"tweenEasing":0,"x":3.03,"y":0.83},{"duration":9,"tweenEasing":0,"x":3.4,"y":1.55},{"duration":3,"tweenEasing":0,"x":3.26,"y":-0.84},{"duration":15,"tweenEasing":0,"x":-2.59,"y":-8.54},{"duration":9,"tweenEasing":0,"x":-0.19,"y":-6.93},{"duration":6,"tweenEasing":0,"x":-1.19,"y":16.3},{"duration":12,"tweenEasing":0,"x":-0.23,"y":16.86},{"duration":0,"x":-0.23,"y":19.27}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-2.21},{"duration":3,"tweenEasing":0,"rotate":-17.5},{"duration":6,"tweenEasing":0,"rotate":-5.8},{"duration":9,"tweenEasing":0,"rotate":7.6},{"duration":3,"tweenEasing":0,"rotate":-0.59},{"duration":15,"tweenEasing":0,"rotate":-0.22},{"duration":9,"tweenEasing":0,"rotate":-16.47},{"duration":6,"tweenEasing":0,"rotate":20.03},{"duration":12,"rotate":10.97}]},{"name":"body","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-0.09,"y":0.24},{"duration":3,"tweenEasing":0,"x":-0.17,"y":0.09},{"duration":6,"tweenEasing":0,"x":-0.17,"y":0.33},{"duration":9,"tweenEasing":0,"x":-0.09,"y":1.13},{"duration":3,"tweenEasing":0,"x":-0.22,"y":-0.74},{"duration":15,"tweenEasing":0,"x":1.18,"y":-7.26},{"duration":9,"tweenEasing":0,"x":1.65,"y":-4.2},{"duration":6,"tweenEasing":0,"x":4.98,"y":12.38},{"duration":12,"tweenEasing":0,"x":5.3,"y":9.58},{"duration":0,"x":5.46,"y":10.7}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":18.08},{"duration":6,"tweenEasing":0,"rotate":18.08},{"duration":9,"tweenEasing":0,"rotate":21.06},{"duration":3,"tweenEasing":0,"rotate":22.64},{"duration":15,"tweenEasing":0,"rotate":-10.59},{"duration":9,"tweenEasing":0,"rotate":-22.36},{"duration":6,"tweenEasing":0,"rotate":-49.93},{"duration":12,"tweenEasing":0,"rotate":-57.44},{"duration":0,"rotate":-66.41}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.96},{"duration":6,"tweenEasing":0,"x":1.01,"y":0.96},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.16},{"duration":15,"tweenEasing":0},{"duration":27,"y":0.9}]},{"name":"leg","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":-0.42},{"duration":9,"tweenEasing":0,"x":-0.42},{"duration":3,"tweenEasing":0,"x":-0.26,"y":-0.32},{"duration":15,"tweenEasing":0,"x":-0.26,"y":-1.92},{"duration":6,"tweenEasing":0,"x":-0.26,"y":-2.64},{"duration":21,"x":-0.26,"y":-1.76}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.25},{"duration":6,"tweenEasing":0,"x":0.95,"y":0.85},{"duration":9,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.25,"y":1.05},{"duration":15,"tweenEasing":0,"x":1.85,"y":1.05},{"duration":6,"tweenEasing":0,"x":2.15,"y":1.05},{"duration":21,"x":1.55,"y":1.05}]},{"name":"rightHand","translateFrame":[{"duration":9,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":9,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":6,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":27,"tweenEasing":0,"x":-1.12,"y":-0.8},{"duration":9,"tweenEasing":0,"x":-1.12,"y":-0.8},{"duration":18,"x":-0.52,"y":-0.81}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":11.7},{"duration":6,"tweenEasing":0,"rotate":23.26},{"duration":3,"tweenEasing":0,"rotate":-19.83},{"duration":6,"tweenEasing":0,"rotate":-19.83},{"duration":9,"tweenEasing":0,"rotate":23.75},{"duration":3,"tweenEasing":0,"rotate":20.82},{"duration":15,"tweenEasing":0,"rotate":-5.18},{"duration":9,"tweenEasing":0,"rotate":22.15},{"duration":6,"tweenEasing":0,"rotate":-22.3},{"duration":12,"tweenEasing":0,"rotate":-45.66},{"duration":0,"rotate":-37}]},{"name":"rightFrontArm","translateFrame":[{"duration":9,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":9,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":6,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":12,"tweenEasing":0,"x":-0.66,"y":-0.14},{"duration":15,"tweenEasing":0,"x":-0.66,"y":-0.14},{"duration":9,"tweenEasing":0,"x":-1.47,"y":-1.53},{"duration":6,"tweenEasing":0,"x":-3.21,"y":1.78},{"duration":12,"tweenEasing":0,"x":-2.78,"y":2.31},{"duration":0,"x":-3.77,"y":2.53}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":21.7},{"duration":6,"tweenEasing":0,"rotate":59.44},{"duration":3,"tweenEasing":0,"rotate":75.81},{"duration":6,"tweenEasing":0,"rotate":75.81},{"duration":9,"tweenEasing":0,"rotate":75.52},{"duration":3,"tweenEasing":0,"rotate":94.88},{"duration":15,"tweenEasing":0,"rotate":-2.28},{"duration":9,"tweenEasing":0,"rotate":12.05},{"duration":6,"tweenEasing":0,"rotate":12.5},{"duration":12,"tweenEasing":0,"rotate":17.33},{"duration":0,"rotate":11.94}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":69,"x":1.05,"y":1.05}]},{"name":"rightArm","translateFrame":[{"duration":9,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":6,"tweenEasing":0,"x":3.9,"y":0.71},{"duration":3,"tweenEasing":0,"x":3.42,"y":0.4},{"duration":6,"tweenEasing":0,"x":3.42,"y":0.64},{"duration":9,"tweenEasing":0,"x":3.25,"y":1.44},{"duration":3,"tweenEasing":0,"x":3.12,"y":-0.43},{"duration":15,"tweenEasing":0,"x":-0.94,"y":-5.88},{"duration":9,"tweenEasing":0,"x":0.06,"y":0.45},{"duration":6,"tweenEasing":0,"x":-2.26,"y":21.07},{"duration":12,"tweenEasing":0,"x":-3.06,"y":19.87},{"duration":0,"x":-2.9,"y":20.67}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":-6.67},{"duration":6,"tweenEasing":0,"rotate":2.1},{"duration":3,"tweenEasing":0,"rotate":1.1},{"duration":6,"tweenEasing":0,"rotate":1.1},{"duration":9,"tweenEasing":0,"rotate":-6.84},{"duration":3,"tweenEasing":0,"rotate":-18.94},{"duration":15,"tweenEasing":0,"rotate":15.53},{"duration":9,"tweenEasing":0,"rotate":-13.72},{"duration":18,"rotate":-52.69}]},{"name":"backLight","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":12,"tweenEasing":0,"y":-3.65},{"duration":9,"tweenEasing":0,"y":-6.4},{"duration":6,"tweenEasing":0,"y":-6.4},{"duration":27,"x":0.4,"y":-20.8}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":0.69,"y":0.5},{"duration":9,"tweenEasing":0,"x":1.56,"y":1.71},{"duration":6,"tweenEasing":0,"x":0.6,"y":2.57},{"duration":27,"x":0.11,"y":2.79}]}],"slot":[{"name":"effect5","colorFrame":[{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":27,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":24,"value":{"aM":0}}]},{"name":"leftArm","colorFrame":[{"duration":36,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12}]},{"name":"head","displayFrame":[{"duration":78,"value":1}]},{"name":"rightArm","colorFrame":[{"duration":36,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12}]},{"name":"backLight","colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":27,"value":{"aM":0}}]},{"name":"effect6","displayFrame":[{"duration":78,"value":-1}]}]},{"duration":72,"playTimes":0,"name":"Atked2","bone":[{"name":"effect4","translateFrame":[{"duration":3,"tweenEasing":0,"x":-9.24,"y":3.38},{"duration":18,"tweenEasing":0,"x":-9.24,"y":3.38},{"duration":21,"tweenEasing":0,"x":-8,"y":-5.07},{"duration":21,"tweenEasing":0,"x":-12.36,"y":-12.18},{"duration":9,"x":-12.27,"y":-18.84}],"rotateFrame":[{"duration":3,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-28.4},{"duration":21,"tweenEasing":0,"rotate":-16.18},{"duration":9,"rotate":-31.27}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0,"x":-0.94,"y":5.33},{"duration":24,"tweenEasing":0,"x":-0.94,"y":5.33},{"duration":21,"tweenEasing":0,"x":1.63,"y":-8.11},{"duration":18,"tweenEasing":0,"x":0.34,"y":-14.59},{"duration":0,"x":0.58,"y":-17.3}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-39.38},{"duration":18,"rotate":-22.72}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":2,"y":-8.5},{"duration":24,"tweenEasing":0,"x":0.5,"y":-14.6},{"duration":3,"x":-0.1,"y":-19.9}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":29.43},{"duration":24,"tweenEasing":0,"rotate":65.43},{"duration":24,"tweenEasing":0,"rotate":44.46},{"duration":3,"rotate":60}]},{"name":"leftHand","rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":15.92},{"duration":24,"tweenEasing":0,"rotate":12.42},{"duration":24,"tweenEasing":0,"rotate":-2.24},{"duration":0,"rotate":15.92}]},{"name":"leftFrontArm","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":-0.3,"y":0.2},{"duration":0}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":29.06},{"duration":24,"tweenEasing":0,"rotate":26.02},{"duration":24,"tweenEasing":0,"rotate":16.87},{"duration":0,"rotate":29.06}]},{"name":"leftShoulder","translateFrame":[{"duration":24,"tweenEasing":0,"x":2.06,"y":-0.8},{"duration":24,"tweenEasing":0,"x":2.73,"y":-0.64},{"duration":24,"tweenEasing":0,"x":3.04,"y":-0.99},{"duration":0,"x":2.06,"y":-0.8}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-12.27},{"duration":24,"tweenEasing":0,"rotate":-15.89},{"duration":24,"tweenEasing":0,"rotate":-12.23},{"duration":0,"rotate":-12.27}]},{"name":"leftArm","translateFrame":[{"duration":24,"tweenEasing":0,"x":2.4,"y":0.46},{"duration":24,"tweenEasing":0,"x":2.4,"y":0.46},{"duration":24,"tweenEasing":0,"x":2.54,"y":0.65},{"duration":0,"x":2.4,"y":0.46}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-23.09},{"duration":24,"tweenEasing":0,"rotate":-31.16},{"duration":24,"tweenEasing":0,"rotate":-21.98},{"duration":0,"rotate":-23.09}]},{"name":"head","translateFrame":[{"duration":24,"tweenEasing":0,"x":2.1,"y":2.36},{"duration":24,"tweenEasing":0,"x":3.17,"y":2.85},{"duration":24,"tweenEasing":0,"x":3.07,"y":2.85},{"duration":0,"x":2.1,"y":2.36}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":27.28},{"duration":24,"tweenEasing":0,"rotate":21.12},{"duration":24,"tweenEasing":0,"rotate":18.96},{"duration":0,"rotate":27.28}]},{"name":"rightShoulder","translateFrame":[{"duration":24,"tweenEasing":0,"x":1.72,"y":0.12},{"duration":24,"tweenEasing":0,"x":2.73,"y":0.63},{"duration":24,"tweenEasing":0,"x":2.71,"y":0.23},{"duration":0,"x":1.72,"y":0.12}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":13.3},{"duration":24,"tweenEasing":0,"rotate":9.28},{"duration":24,"tweenEasing":0,"rotate":14.42},{"duration":0,"rotate":13.3}]},{"name":"body","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":0.12,"y":0.12},{"duration":24,"tweenEasing":0,"x":0.25,"y":-0.28},{"duration":0}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":13.71},{"duration":24,"tweenEasing":0,"rotate":17.86},{"duration":24,"tweenEasing":0,"rotate":16.11},{"duration":0,"rotate":13.71}]},{"name":"leg","scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.9},{"duration":18,"tweenEasing":0,"x":1.1,"y":0.8},{"duration":6,"tweenEasing":0,"x":1.1,"y":0.8},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":72,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":11.7},{"duration":24,"tweenEasing":0,"rotate":1.26},{"duration":24,"tweenEasing":0,"rotate":-11.03},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":72,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":1.98},{"duration":24,"tweenEasing":0,"rotate":-1.3},{"duration":24,"tweenEasing":0,"rotate":-0.66},{"duration":0,"rotate":1.98}]},{"name":"rightArm","translateFrame":[{"duration":24,"tweenEasing":0,"x":3.28,"y":1.58},{"duration":24,"tweenEasing":0,"x":3.28,"y":1.58},{"duration":24,"tweenEasing":0,"x":3.54,"y":1.45},{"duration":0,"x":3.28,"y":1.58}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":29.2},{"duration":24,"tweenEasing":0,"rotate":11.66},{"duration":24,"tweenEasing":0,"rotate":23.61},{"duration":0,"rotate":29.2}]}],"slot":[{"name":"effect4","colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":72,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":72,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":72,"value":-1}]}]},{"duration":102,"playTimes":0,"name":"Idle2","bone":[{"name":"effect6","translateFrame":[{"duration":39,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":3.2,"y":-5.6},{"duration":24,"tweenEasing":0,"x":3.2,"y":-11.9},{"duration":0,"x":7,"y":-15.1}],"rotateFrame":[{"duration":39,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-27.23},{"duration":24,"tweenEasing":0,"rotate":-17.6},{"duration":0,"rotate":-35.03}]},{"name":"effect5","translateFrame":[{"duration":27,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-5.2,"y":-9.12},{"duration":21,"tweenEasing":0,"x":-5.04,"y":-16.4},{"duration":12,"x":-6.4,"y":-19.84}],"rotateFrame":[{"duration":27,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":22.39},{"duration":21,"tweenEasing":0,"rotate":39.5},{"duration":12,"rotate":22.14}]},{"name":"effect4","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":4.4,"y":-6.1},{"duration":24,"tweenEasing":0,"x":5.5,"y":-13.8},{"duration":24,"x":6.1,"y":-19.3}],"rotateFrame":[{"duration":33,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-24.94},{"duration":24,"rotate":-14.84}]},{"name":"effect3","translateFrame":[{"duration":36,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":2.4,"y":-5.6},{"duration":18,"tweenEasing":0,"x":3.8,"y":-11.1},{"duration":9,"x":4.3,"y":-15.2}],"rotateFrame":[{"duration":36,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-17.53},{"duration":18,"tweenEasing":0,"rotate":-36.39},{"duration":9,"rotate":-23.84}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":-2.27,"y":-6.67},{"duration":18,"tweenEasing":0,"x":-1.74,"y":-10.54},{"duration":33,"x":-3.06,"y":-17.46}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":20.36},{"duration":18,"tweenEasing":0,"rotate":68.81},{"duration":33,"rotate":27.88}]},{"name":"leftHand","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":18,"tweenEasing":0,"rotate":-14.11},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":18,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":6.55},{"duration":9,"tweenEasing":0,"rotate":-2.77},{"duration":9,"tweenEasing":0,"rotate":-0.86},{"duration":9,"tweenEasing":0,"rotate":-2.77},{"duration":9,"tweenEasing":0,"rotate":-6.22},{"duration":9,"tweenEasing":0,"rotate":3.34},{"duration":9,"tweenEasing":0,"rotate":-6.22},{"duration":18,"tweenEasing":0,"rotate":-2.77},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":21,"tweenEasing":0,"x":-1.2,"y":0.14},{"duration":9,"tweenEasing":0,"x":-0.15,"y":-0.46},{"duration":9,"tweenEasing":0,"x":-0.1,"y":-0.64},{"duration":9,"tweenEasing":0,"x":0.01,"y":-1.1},{"duration":9,"tweenEasing":0,"x":-0.1,"y":-0.64},{"duration":9,"tweenEasing":0,"x":0.01,"y":-1.1},{"duration":9,"tweenEasing":0,"x":-0.1,"y":-0.64},{"duration":9,"tweenEasing":0,"x":0.01,"y":-1.1},{"duration":18,"tweenEasing":0,"x":-0.1,"y":-0.71},{"duration":0,"x":-1.2,"y":0.14}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":31.61},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":37.04},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":35.61},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":18,"tweenEasing":0,"rotate":31.61},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-1.2,"y":0.14},{"duration":9,"tweenEasing":0,"x":-0.42,"y":-1.18},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-2.19},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-1.81},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-2.19},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-1.81},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-2.19},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-1.81},{"duration":18,"tweenEasing":0,"x":-0.27,"y":-2.27},{"duration":0,"x":-1.2,"y":0.14}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":30.08},{"duration":9,"tweenEasing":0,"rotate":22.76},{"duration":9,"tweenEasing":0,"rotate":19.34},{"duration":9,"tweenEasing":0,"rotate":25.64},{"duration":9,"tweenEasing":0,"rotate":20.36},{"duration":9,"tweenEasing":0,"rotate":26.38},{"duration":9,"tweenEasing":0,"rotate":18.94},{"duration":18,"tweenEasing":0,"rotate":22.76},{"duration":0}]},{"name":"head","translateFrame":[{"duration":21,"tweenEasing":0,"x":-1.06,"y":0.14},{"duration":9,"tweenEasing":0,"x":-0.14,"y":0.3},{"duration":9,"tweenEasing":0,"x":0.28,"y":-0.74},{"duration":9,"tweenEasing":0,"x":0.34,"y":-0.17},{"duration":9,"tweenEasing":0,"x":0.28,"y":-0.74},{"duration":9,"tweenEasing":0,"x":0.34,"y":0.07},{"duration":9,"tweenEasing":0,"x":0.28,"y":-1.06},{"duration":9,"tweenEasing":0,"x":0.34,"y":0.3},{"duration":18,"tweenEasing":0,"x":0.28,"y":-1.06},{"duration":0,"x":-1.06,"y":0.14}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-4.1},{"duration":9,"tweenEasing":0,"rotate":0.06},{"duration":54,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"rotate":-4.1}]},{"name":"rightShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.51,"y":-0.36},{"duration":9,"tweenEasing":0,"x":0.86,"y":-1.3},{"duration":9,"tweenEasing":0,"x":0.67,"y":-1},{"duration":9,"tweenEasing":0,"x":0.86,"y":-1.3},{"duration":9,"tweenEasing":0,"x":0.67,"y":-1},{"duration":9,"tweenEasing":0,"x":0.86,"y":-1.39},{"duration":9,"tweenEasing":0,"x":0.67,"y":-1},{"duration":18,"tweenEasing":0,"x":0.86,"y":-1.86},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-38.24},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-39.74},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-45.24},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":18,"tweenEasing":0,"rotate":-38.24},{"duration":0}]},{"name":"body","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":-0.16,"y":0.16},{"duration":9,"tweenEasing":0,"y":-0.49},{"duration":9,"tweenEasing":0,"y":-0.48},{"duration":9,"tweenEasing":0,"y":-0.73},{"duration":9,"tweenEasing":0,"y":-0.56},{"duration":9,"tweenEasing":0,"y":-0.97},{"duration":9,"tweenEasing":0,"y":-0.48},{"duration":18,"tweenEasing":0,"y":-1.05},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.48},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":0.41},{"duration":0,"rotate":-6.48}],"scaleFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":18,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.06},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.06},{"duration":30}],"scaleFrame":[{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.04,"y":1.1},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.04,"y":1.1},{"duration":30}]},{"name":"rightHand","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":18,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":11.7},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":18,"tweenEasing":0,"rotate":10.34},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":9,"tweenEasing":0,"x":-0.17,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":9,"tweenEasing":0,"x":-0.17,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":9,"tweenEasing":0,"x":-0.17,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":18,"tweenEasing":0,"x":-0.2,"y":0.01},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":21.7},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":9,"tweenEasing":0,"rotate":48.89},{"duration":9,"tweenEasing":0,"rotate":45.22},{"duration":9,"tweenEasing":0,"rotate":48.89},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":9,"tweenEasing":0,"rotate":46.54},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":18,"tweenEasing":0,"rotate":48.89},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":9,"tweenEasing":0,"x":0.76,"y":0.39},{"duration":9,"tweenEasing":0,"x":1.13,"y":-0.75},{"duration":9,"tweenEasing":0,"x":0.92,"y":-0.26},{"duration":9,"tweenEasing":0,"x":1.13,"y":-0.75},{"duration":9,"tweenEasing":0,"x":0.92,"y":-0.26},{"duration":9,"tweenEasing":0,"x":1.13,"y":-0.75},{"duration":9,"tweenEasing":0,"x":0.92,"y":-0.49},{"duration":18,"tweenEasing":0,"x":1.13,"y":-1.07},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.67},{"duration":9,"tweenEasing":0,"rotate":-30.66},{"duration":9,"tweenEasing":0,"rotate":-31.48},{"duration":9,"tweenEasing":0,"rotate":-27.88},{"duration":9,"tweenEasing":0,"rotate":-34.28},{"duration":9,"tweenEasing":0,"rotate":-25.77},{"duration":9,"tweenEasing":0,"rotate":-35.22},{"duration":9,"tweenEasing":0,"rotate":-23.55},{"duration":18,"tweenEasing":0,"rotate":-31.48},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":39,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect5","colorFrame":[{"duration":27,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":12,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":36,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":33,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":102,"value":-1}]}]},{"duration":66,"playTimes":0,"name":"Idle1","bone":[{"name":"effect6","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":3.46,"y":-6.84},{"duration":0,"x":5.42,"y":-9.87}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"rotate":-10.38}]},{"name":"effect5","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":-4,"y":-3.31},{"duration":15,"tweenEasing":0,"x":-5.03,"y":-8.91},{"duration":9,"x":-5.37,"y":-12.35}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":27.97},{"duration":15,"tweenEasing":0,"rotate":-3.77},{"duration":9,"rotate":-10.94}]},{"name":"effect4","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":3.88,"y":-6.4},{"duration":21,"tweenEasing":0,"x":6.75,"y":-10.97},{"duration":9,"x":6.51,"y":-13.37}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":19.87},{"duration":21,"tweenEasing":0,"rotate":-1.94},{"duration":9,"rotate":-29.35}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":3.4,"y":-7.87},{"duration":18,"tweenEasing":0,"x":3.13,"y":-14.13},{"duration":0,"x":3.67,"y":-17.86}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-25.82},{"duration":18,"tweenEasing":0,"rotate":-13.32},{"duration":0,"rotate":-23.08}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":-2.32,"y":-5.92},{"duration":21,"tweenEasing":0,"x":-5.84,"y":-9.44},{"duration":6,"x":-7.52,"y":-12}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":35.13},{"duration":21,"tweenEasing":0,"rotate":-4.98},{"duration":6,"rotate":29.58}]},{"name":"leftHand","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.29,"y":0.43},{"duration":24,"tweenEasing":0,"x":0.29,"y":0.43},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-4.45},{"duration":24,"tweenEasing":0,"rotate":-6.58},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.03,"y":0.23},{"duration":24}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-3.35},{"duration":24,"tweenEasing":0,"rotate":7.11},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-0.08,"y":-0.56},{"duration":24,"tweenEasing":0,"x":-0.08,"y":-0.56},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":13.8},{"duration":24,"tweenEasing":0,"rotate":4.52},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.1,"y":-0.99},{"duration":24,"tweenEasing":0,"x":0.18,"y":-0.92},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":16.02},{"duration":24,"tweenEasing":0,"rotate":12.08},{"duration":0}]},{"name":"head","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-0.16,"y":-0.69},{"duration":24,"tweenEasing":0,"y":-0.45},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.32,"y":-1.9},{"duration":24,"tweenEasing":0,"x":0.32,"y":-0.78},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-10.95},{"duration":24,"tweenEasing":0,"rotate":-8.38},{"duration":0}]},{"name":"body","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"y":-0.72},{"duration":24,"tweenEasing":0,"x":0.08,"y":-0.32},{"duration":0}],"scaleFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":24,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":66,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":11.7},{"duration":21,"tweenEasing":0,"rotate":16.12},{"duration":24,"tweenEasing":0,"rotate":15.51},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":21,"tweenEasing":0,"x":-0.09,"y":0.52},{"duration":24,"tweenEasing":0,"x":-0.07,"y":0.13},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":21.7},{"duration":21,"tweenEasing":0,"rotate":45.3},{"duration":24,"tweenEasing":0,"rotate":32.17},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":21,"tweenEasing":0,"x":0.74,"y":0.46},{"duration":24,"tweenEasing":0,"x":1.06,"y":0.7},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.67},{"duration":21,"tweenEasing":0,"rotate":-26.33},{"duration":24,"tweenEasing":0,"rotate":-19.75},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect5","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":66,"value":-1}]}]},{"duration":30,"name":"InAirIdle1","bone":[{"name":"effect5","translateFrame":[{"duration":30,"x":13.3,"y":-18.8}],"rotateFrame":[{"duration":30,"rotate":56.49}]},{"name":"effect4","translateFrame":[{"duration":30,"x":4.34,"y":-5.6}],"rotateFrame":[{"duration":30,"rotate":-56.61}]},{"name":"effect3","translateFrame":[{"duration":30,"x":-6.29,"y":-9.26}],"rotateFrame":[{"duration":30,"rotate":-42.15}]},{"name":"effect2","translateFrame":[{"duration":30,"x":-14.29,"y":-4.12}],"rotateFrame":[{"duration":30,"rotate":26.09}]},{"name":"leftHand","rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":15,"tweenEasing":0,"rotate":9.3},{"duration":0,"rotate":8.11}]},{"name":"leftFrontArm","translateFrame":[{"duration":30,"x":0.75,"y":-1.99}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":15,"tweenEasing":0,"rotate":-10.43},{"duration":0,"rotate":17.13}]},{"name":"leftShoulder","translateFrame":[{"duration":15,"tweenEasing":0,"x":-7.12,"y":1.65},{"duration":15,"tweenEasing":0,"x":-10.38,"y":-0.4},{"duration":0,"x":-7.12,"y":1.65}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":15,"tweenEasing":0,"rotate":-44.38},{"duration":0,"rotate":-26.65}]},{"name":"leftArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.18,"y":0.53},{"duration":15,"tweenEasing":0,"x":-2.9,"y":-0.6},{"duration":0,"x":-0.18,"y":0.53}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":15,"tweenEasing":0,"rotate":177.69},{"duration":0,"rotate":-161.51}],"scaleFrame":[{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":15,"tweenEasing":0,"x":1.1},{"duration":0,"x":1.1,"y":1.1}]},{"name":"head","translateFrame":[{"duration":15,"tweenEasing":0,"x":-8.84,"y":0.61},{"duration":15,"tweenEasing":0,"x":-9.28,"y":-1},{"duration":0,"x":-8.84,"y":0.61}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":15,"tweenEasing":0,"rotate":-28.02},{"duration":0,"rotate":-41.98}]},{"name":"rightShoulder","translateFrame":[{"duration":15,"tweenEasing":0,"x":-11.15,"y":-1.1},{"duration":15,"tweenEasing":0,"x":-10.46,"y":-2.84},{"duration":0,"x":-11.15,"y":-1.1}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":15,"tweenEasing":0,"rotate":-39.69},{"duration":0,"rotate":-45.17}]},{"name":"body","translateFrame":[{"duration":15,"tweenEasing":0,"x":-1.44,"y":-0.71},{"duration":15,"tweenEasing":0,"x":-1.84,"y":-0.35},{"duration":0,"x":-1.44,"y":-0.71}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-28.34},{"duration":15,"tweenEasing":0,"rotate":-23.86},{"duration":0,"rotate":-28.34}]},{"name":"rightHand","translateFrame":[{"duration":30,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":15,"tweenEasing":0,"rotate":-30.35},{"duration":0,"rotate":-40.03}]},{"name":"rightFrontArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":15,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":0,"x":-0.55,"y":0.89}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":15,"tweenEasing":0,"rotate":-42.6},{"duration":0,"rotate":-60.6}]},{"name":"rightArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-4.97,"y":-2.79},{"duration":15,"tweenEasing":0,"x":-5.28,"y":-3.39},{"duration":0,"x":-4.97,"y":-2.79}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":15,"tweenEasing":0,"rotate":-119.79},{"duration":0,"rotate":-61.71}],"scaleFrame":[{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":15,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":0,"x":1.1,"y":-1.1}]},{"name":"backLight","scaleFrame":[{"duration":30,"x":0,"y":0}]}],"slot":[{"name":"rightHand","displayFrame":[{"duration":30,"value":-1}],"colorFrame":[{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"rightFrontArm","displayFrame":[{"duration":30,"value":-1}],"colorFrame":[{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]}]}],"defaultActions":[{"gotoAndPlay":"Idle1"}]}]} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_ske.json.meta b/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_ske.json.meta index 13ed19a..b74300a 100644 --- a/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_ske.json.meta +++ b/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_ske.json.meta @@ -1,6 +1,6 @@ { "ver": "1.0.0", "uuid": "2ae76843-1f61-48cf-bbfb-384c0dcf77e1", - "dragonBonesJson": "{\"frameRate\":60,\"name\":\"SoldierWaterGhost\",\"version\":\"5.5\",\"compatibleVersion\":\"5.5\",\"armature\":[{\"type\":\"Armature\",\"frameRate\":60,\"name\":\"SoldierWaterGhost\",\"aabb\":{\"x\":-17.1,\"y\":-45.87,\"width\":38.84,\"height\":47.16},\"bone\":[{\"name\":\"root\"},{\"inheritScale\":false,\"length\":6.5,\"name\":\"leftShoulder\",\"parent\":\"root\",\"transform\":{\"x\":-5.60925,\"y\":-28.39315,\"skX\":156.8918,\"skY\":156.8918}},{\"inheritScale\":false,\"name\":\"backLight\",\"parent\":\"root\",\"transform\":{\"x\":0.1,\"y\":-23.0462,\"scX\":3,\"scY\":3}},{\"inheritScale\":false,\"length\":8.5,\"name\":\"rightArm\",\"parent\":\"root\",\"transform\":{\"x\":6.7954,\"y\":-26.8018,\"skX\":46.9769,\"skY\":46.9769}},{\"inheritScale\":false,\"name\":\"effect4\",\"parent\":\"root\",\"transform\":{\"x\":6.32,\"y\":-21.38935,\"skX\":-9.349,\"skY\":-9.349}},{\"inheritScale\":false,\"name\":\"effect7\",\"parent\":\"root\"},{\"inheritScale\":false,\"name\":\"effect3\",\"parent\":\"root\",\"transform\":{\"x\":5.75,\"y\":-27.36735}},{\"inheritScale\":false,\"length\":8.5,\"name\":\"leg\",\"parent\":\"root\",\"transform\":{\"x\":-0.45525,\"y\":-1.41005,\"skX\":-85.7242,\"skY\":-85.7242}},{\"inheritScale\":false,\"length\":11,\"name\":\"body\",\"parent\":\"root\",\"transform\":{\"x\":1.00195,\"y\":-12.3951,\"skX\":-82.2714,\"skY\":-82.2714}},{\"inheritScale\":false,\"length\":6,\"name\":\"rightShoulder\",\"parent\":\"root\",\"transform\":{\"x\":9.1041,\"y\":-26.3402,\"skX\":22.0857,\"skY\":22.0857}},{\"inheritScale\":false,\"length\":5.5,\"name\":\"head\",\"parent\":\"root\",\"transform\":{\"x\":4.103,\"y\":-31.2905,\"skX\":-83.4757,\"skY\":-83.4757}},{\"inheritScale\":false,\"length\":5,\"name\":\"leftArm\",\"parent\":\"root\",\"transform\":{\"x\":-6.5059,\"y\":-26.80925,\"skX\":122.5397,\"skY\":122.5397}},{\"inheritScale\":false,\"name\":\"effect2\",\"parent\":\"root\",\"transform\":{\"x\":-5.0143,\"y\":-28.2204,\"skX\":-79.3059,\"skY\":-79.3059}},{\"inheritScale\":false,\"name\":\"effect5\",\"parent\":\"root\",\"transform\":{\"x\":-15.0286,\"y\":-16.5986,\"skX\":-72.4737,\"skY\":-72.4737}},{\"inheritScale\":false,\"name\":\"effect6\",\"parent\":\"root\",\"transform\":{\"x\":13.28445,\"y\":-15.03735}},{\"inheritScale\":false,\"name\":\"rightFrontArm\",\"parent\":\"rightArm\",\"transform\":{\"x\":8.82335,\"y\":0.6604,\"skX\":10.7237,\"skY\":10.7237}},{\"inheritScale\":false,\"name\":\"leftFrontArm\",\"parent\":\"leftArm\",\"transform\":{\"x\":7.37235,\"y\":1.7869,\"skX\":-39.1583,\"skY\":-39.1583}},{\"inheritScale\":false,\"name\":\"rightHand\",\"parent\":\"rightFrontArm\",\"transform\":{\"x\":5.3646,\"y\":-2.8911,\"skX\":21.9835,\"skY\":21.9835}},{\"inheritScale\":false,\"name\":\"leftHand\",\"parent\":\"leftFrontArm\",\"transform\":{\"x\":7.3904,\"y\":1.4291,\"skX\":-25.7356,\"skY\":-25.7356}}],\"slot\":[{\"name\":\"backLight\",\"parent\":\"backLight\"},{\"name\":\"rightArm\",\"parent\":\"rightArm\"},{\"name\":\"leg\",\"parent\":\"leg\"},{\"name\":\"body\",\"parent\":\"body\"},{\"name\":\"rightShoulder\",\"parent\":\"rightShoulder\"},{\"name\":\"rightFrontArm\",\"parent\":\"rightFrontArm\"},{\"name\":\"rightHand\",\"parent\":\"rightHand\"},{\"name\":\"leftArm\",\"parent\":\"leftArm\"},{\"name\":\"leftShoulder\",\"parent\":\"leftShoulder\"},{\"name\":\"leftFrontArm\",\"parent\":\"leftFrontArm\"},{\"name\":\"head\",\"parent\":\"head\"},{\"name\":\"leftHand\",\"parent\":\"leftHand\"},{\"name\":\"effect2\",\"parent\":\"effect2\"},{\"name\":\"effect3\",\"parent\":\"effect3\"},{\"name\":\"effect4\",\"parent\":\"effect4\"},{\"name\":\"effect5\",\"parent\":\"effect5\"},{\"name\":\"effect6\",\"parent\":\"effect6\"},{\"displayIndex\":-1,\"name\":\"effect7\",\"parent\":\"effect7\"}],\"skin\":[{\"slot\":[{\"name\":\"effect5\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"leftArm\",\"display\":[{\"name\":\"yinmo05\",\"transform\":{\"x\":3.46,\"y\":0.04,\"skX\":-112.43,\"skY\":-112.43},\"path\":\"leftArm\"}]},{\"name\":\"effect3\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"effect6\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"effect2\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"body\",\"display\":[{\"name\":\"yinmo02\",\"transform\":{\"x\":6.41,\"y\":-1.19,\"skX\":82.27,\"skY\":82.27},\"path\":\"body\"}]},{\"name\":\"rightFrontArm\",\"display\":[{\"name\":\"yinmo09\",\"transform\":{\"x\":1.87,\"y\":-0.59,\"skX\":-60.14,\"skY\":-60.14},\"path\":\"rightFrontArm\"}]},{\"name\":\"rightShoulder\",\"display\":[{\"name\":\"yinmo04\",\"transform\":{\"x\":1.71,\"y\":-0.41,\"skX\":-28.61,\"skY\":-28.61},\"path\":\"rightShoulder\"}]},{\"name\":\"leftHand\",\"display\":[{\"name\":\"yinmo07\",\"transform\":{\"x\":2.04,\"y\":-0.17,\"skX\":-66.8,\"skY\":-66.8},\"path\":\"leftHand\"}]},{\"name\":\"effect4\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"rightArm\",\"display\":[{\"name\":\"yinmo08\",\"transform\":{\"x\":4.54,\"y\":-0.2,\"skX\":-54.4,\"skY\":-54.4},\"path\":\"rightArm\"}]},{\"name\":\"backLight\",\"display\":[{\"name\":\"biu\"}]},{\"name\":\"leg\",\"display\":[{\"name\":\"yinmoqe00\",\"transform\":{\"x\":5.32,\"y\":-0.07,\"skX\":85.72,\"skY\":85.72}}]},{\"name\":\"rightHand\",\"display\":[{\"name\":\"yinmo10\",\"transform\":{\"x\":2.69,\"y\":-0.12,\"skX\":-63.84,\"skY\":-63.84},\"path\":\"rightHand\"}]},{\"name\":\"leftFrontArm\",\"display\":[{\"name\":\"yinmo06\",\"transform\":{\"x\":3.15,\"y\":0.49,\"skX\":-76.83,\"skY\":-76.83},\"path\":\"leftFrontArm\"}]},{\"name\":\"leftShoulder\",\"display\":[{\"name\":\"yinmo03\",\"transform\":{\"x\":2.4,\"y\":-0.06,\"skX\":-154.62,\"skY\":-154.62},\"path\":\"leftShoulder\"}]},{\"name\":\"head\",\"display\":[{\"name\":\"yinmo01\",\"transform\":{\"x\":6.5,\"y\":-1.04,\"skX\":82.3,\"skY\":82.3,\"scX\":1.5,\"scY\":1.5},\"path\":\"head\"},{\"name\":\"head2\",\"transform\":{\"x\":6.64,\"y\":-1.22,\"skX\":83.48,\"skY\":83.48}}]}]}],\"animation\":[{\"duration\":60,\"playTimes\":0,\"name\":\"Walking\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"x\":22.08,\"y\":7.04},{\"duration\":12,\"tweenEasing\":0,\"x\":22.08,\"y\":7.04},{\"duration\":15,\"tweenEasing\":0,\"x\":15.52,\"y\":7.68},{\"duration\":15,\"tweenEasing\":0,\"x\":11.04,\"y\":-0.32},{\"duration\":6,\"x\":-5.12,\"y\":-11.68}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":21,\"rotate\":7.3}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":3.68,\"y\":-1.24},{\"duration\":9,\"tweenEasing\":0,\"x\":3.68,\"y\":-1.24},{\"duration\":15,\"tweenEasing\":0,\"x\":-1,\"y\":-7.88},{\"duration\":12,\"tweenEasing\":0,\"x\":-7.24,\"y\":-10.24},{\"duration\":12,\"tweenEasing\":0,\"x\":-7.32,\"y\":-18.4},{\"duration\":6,\"x\":-20.28,\"y\":-26.52}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-49.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-49.96},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-84.92},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-11.77},{\"duration\":6,\"rotate\":-28.57}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-7.4,\"y\":12.8},{\"duration\":12,\"tweenEasing\":0,\"x\":-7.4,\"y\":12.8},{\"duration\":18,\"tweenEasing\":0,\"x\":-14.6,\"y\":8.8},{\"duration\":12,\"tweenEasing\":0,\"x\":-19,\"y\":4.6},{\"duration\":9,\"tweenEasing\":0,\"x\":-28.2,\"y\":2.2},{\"duration\":3,\"x\":-34.4,\"y\":2}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-59.23},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-36.85},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-66.48},{\"duration\":3,\"rotate\":-111.5}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":5.28,\"y\":5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":5.28,\"y\":5.6},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.8,\"y\":0.8},{\"duration\":18,\"tweenEasing\":0,\"x\":-9.92,\"y\":1.6},{\"duration\":9,\"tweenEasing\":0,\"x\":-14.88,\"y\":-3.36},{\"duration\":3,\"x\":-19.84,\"y\":-12}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-61.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.48},{\"duration\":3,\"rotate\":27.59}]},{\"name\":\"leftHand\",\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.3},{\"duration\":15,\"tweenEasing\":0,\"rotate\":15.68},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.06},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":0.07,\"y\":0.59},{\"duration\":15,\"tweenEasing\":0,\"x\":0.23,\"y\":-0.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.17,\"y\":-1.03},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-4.65},{\"duration\":15,\"tweenEasing\":0,\"rotate\":12.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":23.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":16.54},{\"duration\":0,\"rotate\":-4.65}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":2.88},{\"duration\":15,\"tweenEasing\":0,\"x\":2.57,\"y\":0.97},{\"duration\":15,\"tweenEasing\":0,\"x\":4.14,\"y\":-0.08},{\"duration\":15,\"tweenEasing\":0,\"x\":3.68,\"y\":1.09},{\"duration\":0,\"x\":2.88}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.1},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.43},{\"duration\":15,\"tweenEasing\":0,\"rotate\":10.13},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-2.7},{\"duration\":0,\"rotate\":20.1}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":1.92,\"y\":-0.48},{\"duration\":15,\"tweenEasing\":0,\"x\":3.59,\"y\":0.72},{\"duration\":15,\"tweenEasing\":0,\"x\":6.63,\"y\":1.54},{\"duration\":15,\"tweenEasing\":0,\"x\":5.95,\"y\":1.94},{\"duration\":0,\"x\":1.92,\"y\":-0.48}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-35.34},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-70.51},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-30.69},{\"duration\":0,\"rotate\":26.91}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":2.72,\"y\":0.64},{\"duration\":15,\"tweenEasing\":0,\"x\":2.48,\"y\":2.44},{\"duration\":15,\"tweenEasing\":0,\"x\":3.65,\"y\":0.32},{\"duration\":15,\"tweenEasing\":0,\"x\":3.79,\"y\":2.71},{\"duration\":0,\"x\":2.72,\"y\":0.64}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.72},{\"duration\":0,\"rotate\":0.59}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":1.71,\"y\":0.58},{\"duration\":15,\"tweenEasing\":0,\"x\":0.85,\"y\":1.34},{\"duration\":15,\"tweenEasing\":0,\"x\":1.95,\"y\":0.09},{\"duration\":15,\"tweenEasing\":0,\"x\":2.81,\"y\":1.94},{\"duration\":0,\"x\":1.71,\"y\":0.58}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":10.12},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-14.23},{\"duration\":15,\"tweenEasing\":0,\"rotate\":5.57},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-13.84},{\"duration\":0,\"rotate\":10.12}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"y\":1.36},{\"duration\":15,\"tweenEasing\":0,\"x\":0.48,\"y\":-0.09},{\"duration\":15,\"tweenEasing\":0,\"x\":0.71,\"y\":1.67},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.24},{\"duration\":15,\"tweenEasing\":0,\"rotate\":13},{\"duration\":15,\"tweenEasing\":0,\"rotate\":16.36},{\"duration\":15,\"tweenEasing\":0,\"rotate\":14.15},{\"duration\":0,\"rotate\":11.24}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.48},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.4},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.48},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.48},{\"duration\":12,\"tweenEasing\":0,\"x\":0.32},{\"duration\":6,\"tweenEasing\":0,\"x\":0.32},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.16},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":1.02},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-0.52},{\"duration\":6}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":6,\"tweenEasing\":0,\"y\":1.1},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":12,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":12,\"y\":0.9}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":60,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-8},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-1.89},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.14},{\"duration\":0,\"rotate\":-8}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.85},{\"duration\":15,\"tweenEasing\":0,\"x\":0.41,\"y\":-1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.05},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.04,\"y\":-1.27},{\"duration\":6,\"tweenEasing\":0,\"y\":-1.32},{\"duration\":0,\"x\":-0.1,\"y\":-0.85}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-43.73},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-66.02},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.47},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-62.6},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-58.82},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-51.28},{\"duration\":0,\"rotate\":-43.73}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":2.16,\"y\":2.04},{\"duration\":15,\"tweenEasing\":0,\"x\":2.48,\"y\":1.17},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.18,\"y\":-2.13},{\"duration\":15,\"tweenEasing\":0,\"x\":2.1,\"y\":1.69},{\"duration\":0,\"x\":2.16,\"y\":2.04}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.28},{\"duration\":15,\"tweenEasing\":0,\"rotate\":63.1},{\"duration\":15,\"tweenEasing\":0,\"rotate\":74.64},{\"duration\":15,\"tweenEasing\":0,\"rotate\":55.11},{\"duration\":0,\"rotate\":11.28}]}],\"slot\":[{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":12,\"value\":-1},{\"duration\":45},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":51},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":27,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":54},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":30,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":60},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":33,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]}]},{\"duration\":174,\"name\":\"Atk2\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":13.3,\"y\":-18.8},{\"duration\":12,\"tweenEasing\":0,\"x\":14.8,\"y\":-23.5},{\"duration\":24,\"tweenEasing\":0,\"x\":11.2,\"y\":-31.6},{\"duration\":12,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":13.3,\"y\":-18.8},{\"duration\":12,\"tweenEasing\":0,\"x\":14.8,\"y\":-23.5},{\"duration\":24,\"tweenEasing\":0,\"x\":11.2,\"y\":-31.6},{\"duration\":12,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":13.3,\"y\":-18.8},{\"duration\":9,\"tweenEasing\":0,\"x\":14.8,\"y\":-23.5},{\"duration\":3,\"x\":11.2,\"y\":-31.6}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":24,\"tweenEasing\":0,\"rotate\":61.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":24,\"tweenEasing\":0,\"rotate\":61.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":3,\"rotate\":61.88}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":15,\"tweenEasing\":0,\"x\":4.34,\"y\":-5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.95,\"y\":-16.23},{\"duration\":21,\"tweenEasing\":0,\"x\":2.52,\"y\":-23.89},{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":15,\"tweenEasing\":0,\"x\":4.34,\"y\":-5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.95,\"y\":-16.23},{\"duration\":21,\"tweenEasing\":0,\"x\":2.52,\"y\":-23.89},{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":12,\"tweenEasing\":0,\"x\":4.34,\"y\":-5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.95,\"y\":-16.23},{\"duration\":6,\"x\":2.52,\"y\":-23.89}],\"rotateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-53.65},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-53.65},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":6,\"rotate\":-53.65}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"y\":7.54},{\"duration\":15,\"tweenEasing\":0,\"y\":7.54},{\"duration\":15,\"tweenEasing\":0,\"x\":-6.29,\"y\":-9.26},{\"duration\":12,\"tweenEasing\":0,\"x\":-12.12,\"y\":-17.95},{\"duration\":18,\"tweenEasing\":0,\"x\":-18.97,\"y\":-21.37},{\"duration\":15,\"tweenEasing\":0,\"y\":7.54},{\"duration\":15,\"tweenEasing\":0,\"x\":-6.29,\"y\":-9.26},{\"duration\":12,\"tweenEasing\":0,\"x\":-12.12,\"y\":-17.95},{\"duration\":18,\"tweenEasing\":0,\"x\":-18.97,\"y\":-21.37},{\"duration\":15,\"tweenEasing\":0,\"y\":7.54},{\"duration\":12,\"tweenEasing\":0,\"x\":-6.29,\"y\":-9.26},{\"duration\":12,\"tweenEasing\":0,\"x\":-12.12,\"y\":-17.95},{\"duration\":6,\"x\":-18.97,\"y\":-21.37}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-111.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-111.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":6,\"rotate\":-111.08}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":9,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":-0.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.29,\"y\":-4.12},{\"duration\":15,\"tweenEasing\":0,\"x\":-13.71,\"y\":-10.29},{\"duration\":15,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":-0.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.29,\"y\":-4.12},{\"duration\":15,\"tweenEasing\":0,\"x\":-13.71,\"y\":-10.29},{\"duration\":15,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":-0.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.29,\"y\":-4.12},{\"duration\":9,\"x\":-13.71,\"y\":-10.29}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":57.19},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":57.19},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":9,\"rotate\":57.19}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":3,\"tweenEasing\":0,\"x\":0.35,\"y\":0.04},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.1},{\"duration\":12,\"tweenEasing\":0,\"x\":0.06,\"y\":0.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":3,\"tweenEasing\":0,\"x\":0.35,\"y\":0.04},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.1},{\"duration\":12,\"tweenEasing\":0,\"x\":0.06,\"y\":0.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":3,\"tweenEasing\":0,\"x\":0.35,\"y\":0.04},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.1},{\"duration\":12,\"tweenEasing\":0,\"x\":0.06,\"y\":0.29},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":0.14,\"y\":0.17},{\"duration\":15,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.33,\"y\":-1.5},{\"duration\":12,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.45},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":0.14,\"y\":0.17},{\"duration\":15,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.33,\"y\":-1.5},{\"duration\":12,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.45},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":0.14,\"y\":0.17},{\"duration\":15,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.33,\"y\":-1.5},{\"duration\":12,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.45},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":0}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":2.63},{\"duration\":3,\"tweenEasing\":0,\"x\":8,\"y\":1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":-7.12,\"y\":1.65},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.38,\"y\":-0.4},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.7,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":4.67,\"y\":1.6},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":2.63},{\"duration\":3,\"tweenEasing\":0,\"x\":8,\"y\":1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":-7.12,\"y\":1.65},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.38,\"y\":-0.4},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.7,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":4.67,\"y\":1.6},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":2.63},{\"duration\":3,\"tweenEasing\":0,\"x\":8,\"y\":1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":-7.12,\"y\":1.65},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.38,\"y\":-0.4},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.7,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":4.67,\"y\":1.6},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":4.25,\"y\":-0.63},{\"duration\":3,\"tweenEasing\":0,\"x\":7.94,\"y\":0.21},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.53},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.9,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":1.72,\"y\":1.3},{\"duration\":12,\"tweenEasing\":0,\"x\":4.92,\"y\":0.26},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":4.25,\"y\":-0.63},{\"duration\":3,\"tweenEasing\":0,\"x\":7.94,\"y\":0.21},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.53},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.9,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":1.72,\"y\":1.3},{\"duration\":12,\"tweenEasing\":0,\"x\":4.92,\"y\":0.26},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":4.25,\"y\":-0.63},{\"duration\":3,\"tweenEasing\":0,\"x\":7.94,\"y\":0.21},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.53},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.9,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":1.72,\"y\":1.3},{\"duration\":12,\"tweenEasing\":0,\"x\":4.92,\"y\":0.26},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":0}],\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":15}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.58,\"y\":5.97},{\"duration\":3,\"tweenEasing\":0,\"x\":8.94,\"y\":8.11},{\"duration\":15,\"tweenEasing\":0,\"x\":-8.84,\"y\":0.61},{\"duration\":3,\"tweenEasing\":0,\"x\":-9.28,\"y\":-1},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.25,\"y\":-0.36},{\"duration\":12,\"tweenEasing\":0,\"x\":4.59,\"y\":3.9},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.58,\"y\":5.97},{\"duration\":3,\"tweenEasing\":0,\"x\":8.94,\"y\":8.11},{\"duration\":15,\"tweenEasing\":0,\"x\":-8.84,\"y\":0.61},{\"duration\":3,\"tweenEasing\":0,\"x\":-9.28,\"y\":-1},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.25,\"y\":-0.36},{\"duration\":12,\"tweenEasing\":0,\"x\":4.59,\"y\":3.9},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.58,\"y\":5.97},{\"duration\":3,\"tweenEasing\":0,\"x\":8.94,\"y\":8.11},{\"duration\":15,\"tweenEasing\":0,\"x\":-8.84,\"y\":0.61},{\"duration\":3,\"tweenEasing\":0,\"x\":-9.28,\"y\":-1},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.25,\"y\":-0.36},{\"duration\":12,\"tweenEasing\":0,\"x\":4.59,\"y\":3.9},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":3.56,\"y\":2.23},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":3.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-11.15,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.46,\"y\":-2.84},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.45,\"y\":-0.43},{\"duration\":12,\"tweenEasing\":0,\"x\":3.48,\"y\":2.71},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":3.56,\"y\":2.23},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":3.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-11.15,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.46,\"y\":-2.84},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.45,\"y\":-0.43},{\"duration\":12,\"tweenEasing\":0,\"x\":3.48,\"y\":2.71},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":3.56,\"y\":2.23},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":3.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-11.15,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.46,\"y\":-2.84},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.45,\"y\":-0.43},{\"duration\":12,\"tweenEasing\":0,\"x\":3.48,\"y\":2.71},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.45,\"y\":1.64},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":1.08},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.44,\"y\":-0.71},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.68,\"y\":-0.49},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.84,\"y\":-0.35},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.61,\"y\":-0.37},{\"duration\":12,\"tweenEasing\":0,\"x\":0.05,\"y\":1.11},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.45,\"y\":1.64},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":1.08},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.44,\"y\":-0.71},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.68,\"y\":-0.49},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.84,\"y\":-0.35},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.61,\"y\":-0.37},{\"duration\":12,\"tweenEasing\":0,\"x\":0.05,\"y\":1.11},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.45,\"y\":1.64},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":1.08},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.44,\"y\":-0.71},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.68,\"y\":-0.49},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.84,\"y\":-0.35},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.61,\"y\":-0.37},{\"duration\":12,\"tweenEasing\":0,\"x\":0.05,\"y\":1.11},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":0}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":15}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":15}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.3,\"y\":-0.62},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.21,\"y\":-0.17},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.3,\"y\":-0.62},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.21,\"y\":-0.17},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.3,\"y\":-0.62},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.21,\"y\":-0.17},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-30.35},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"x\":1.56,\"y\":-1.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":12,\"tweenEasing\":0,\"x\":0.62,\"y\":-1.61},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"x\":1.56,\"y\":-1.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":12,\"tweenEasing\":0,\"x\":0.62,\"y\":-1.61},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"x\":1.56,\"y\":-1.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":12,\"tweenEasing\":0,\"x\":0.62,\"y\":-1.61},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-42.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-55.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-55.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":0,\"rotate\":21.7}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":0}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":3.52,\"y\":0.28},{\"duration\":3,\"tweenEasing\":0,\"x\":4.23,\"y\":2.19},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.97,\"y\":-2.79},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.28,\"y\":-3.39},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.67,\"y\":-0.35},{\"duration\":12,\"tweenEasing\":0,\"x\":2.15,\"y\":1.63},{\"duration\":6,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":15,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":3.52,\"y\":0.28},{\"duration\":3,\"tweenEasing\":0,\"x\":4.23,\"y\":2.19},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.97,\"y\":-2.79},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.28,\"y\":-3.39},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.67,\"y\":-0.35},{\"duration\":12,\"tweenEasing\":0,\"x\":2.15,\"y\":1.63},{\"duration\":6,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":15,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":3.52,\"y\":0.28},{\"duration\":3,\"tweenEasing\":0,\"x\":4.23,\"y\":2.19},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.97,\"y\":-2.79},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.28,\"y\":-3.39},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.67,\"y\":-0.35},{\"duration\":12,\"tweenEasing\":0,\"x\":2.15,\"y\":1.63},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":0,\"rotate\":-6.67}],\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":36,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":36,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":12}]}],\"slot\":[{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":18,\"value\":-1},{\"duration\":156},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":12,\"value\":-1},{\"duration\":159},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":9,\"value\":-1},{\"duration\":162},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":162},{\"duration\":6,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"rightHand\",\"displayFrame\":[{\"duration\":21},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":15}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":42,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15}]},{\"name\":\"rightFrontArm\",\"displayFrame\":[{\"duration\":21},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":15}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":42,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":174,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":174,\"value\":-1}]}]},{\"duration\":34,\"name\":\"Atk1\",\"bone\":[{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":-9.1,\"y\":6.7},{\"duration\":8,\"tweenEasing\":0,\"x\":-9.1,\"y\":6.7},{\"duration\":8,\"tweenEasing\":0,\"x\":-17.8,\"y\":1.8},{\"duration\":8,\"tweenEasing\":0,\"x\":-24,\"y\":0.4},{\"duration\":6,\"x\":-30.6}],\"rotateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"rotate\":-105.08},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-105.08},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-96.73},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-69.9},{\"duration\":6,\"rotate\":-94.04}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":-14.66,\"y\":10.66},{\"duration\":4,\"tweenEasing\":0,\"x\":-14.66,\"y\":10.66},{\"duration\":10,\"tweenEasing\":0,\"x\":-23.07,\"y\":6},{\"duration\":8,\"tweenEasing\":0,\"x\":-26.93,\"y\":9.46},{\"duration\":10,\"x\":-31.07,\"y\":7.33}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-108.91},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-108.91},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-127.09},{\"duration\":10,\"rotate\":-108.09}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":-4.54,\"y\":13.2},{\"duration\":6,\"tweenEasing\":0,\"x\":-4.54,\"y\":13.2},{\"duration\":10,\"tweenEasing\":0,\"x\":-13.6,\"y\":2.8},{\"duration\":4,\"tweenEasing\":0,\"x\":-23.46,\"y\":-4.26},{\"duration\":12,\"x\":-27.46,\"y\":-5.46}],\"rotateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"rotate\":31.2},{\"duration\":6,\"tweenEasing\":0,\"rotate\":31.2},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-0.05},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-26.91},{\"duration\":12,\"rotate\":-24.71}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0,\"x\":0.01,\"y\":0.07},{\"duration\":8,\"tweenEasing\":0,\"x\":0.01,\"y\":0.07},{\"duration\":8,\"tweenEasing\":0,\"x\":0.1,\"y\":0.49},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":8,\"tweenEasing\":0,\"rotate\":18.53},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-9},{\"duration\":8,\"tweenEasing\":0,\"rotate\":9.5},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.71,\"y\":0.04},{\"duration\":8,\"tweenEasing\":0,\"x\":0.18,\"y\":0.12},{\"duration\":8,\"tweenEasing\":0,\"x\":0.69,\"y\":-0.78},{\"duration\":8,\"tweenEasing\":0,\"x\":0.2,\"y\":0.24},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":13.83},{\"duration\":8,\"tweenEasing\":0,\"rotate\":25.06},{\"duration\":8,\"tweenEasing\":0,\"rotate\":17.69},{\"duration\":8,\"tweenEasing\":0,\"rotate\":12.39},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.88,\"y\":-0.6},{\"duration\":8,\"tweenEasing\":0,\"x\":8.4,\"y\":-0.74},{\"duration\":8,\"tweenEasing\":0,\"x\":8.01,\"y\":-0.58},{\"duration\":8,\"tweenEasing\":0,\"x\":1.14,\"y\":-0.23},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":40},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-12.39},{\"duration\":8,\"tweenEasing\":0,\"rotate\":4.99},{\"duration\":8,\"tweenEasing\":0,\"rotate\":8.69},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-3.42,\"y\":-1.95},{\"duration\":8,\"tweenEasing\":0,\"x\":12.95,\"y\":0.1},{\"duration\":8,\"tweenEasing\":0,\"x\":12.47,\"y\":0.42},{\"duration\":8,\"tweenEasing\":0,\"x\":1.5,\"y\":-2.19},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":66.79},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-95.1},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-98.37},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-44.89},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-4.17,\"y\":0.46},{\"duration\":8,\"tweenEasing\":0,\"x\":9.35,\"y\":1.83},{\"duration\":8,\"tweenEasing\":0,\"x\":8.79,\"y\":2.23},{\"duration\":8,\"tweenEasing\":0,\"x\":1.23,\"y\":0.91},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":15.73},{\"duration\":8,\"tweenEasing\":0,\"rotate\":2.95},{\"duration\":8,\"tweenEasing\":0,\"rotate\":2.83},{\"duration\":8,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-3.63,\"y\":-0.73},{\"duration\":8,\"tweenEasing\":0,\"x\":6.29,\"y\":2.04},{\"duration\":8,\"tweenEasing\":0,\"x\":6.13,\"y\":2.27},{\"duration\":8,\"tweenEasing\":0,\"x\":0.4,\"y\":0.34},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.02},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-27.15},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-15.36},{\"duration\":8,\"tweenEasing\":0,\"rotate\":3.41},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.47,\"y\":-1.01},{\"duration\":8,\"tweenEasing\":0,\"x\":1.27,\"y\":-0.09},{\"duration\":8,\"tweenEasing\":0,\"x\":1.44,\"y\":0.23},{\"duration\":8,\"tweenEasing\":0,\"y\":0.4},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.15},{\"duration\":8,\"tweenEasing\":0,\"rotate\":29.43},{\"duration\":8,\"tweenEasing\":0,\"rotate\":30.7},{\"duration\":8,\"tweenEasing\":0,\"rotate\":1.09},{\"duration\":0}],\"scaleFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":8,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":14,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.16},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.16},{\"duration\":0}],\"scaleFrame\":[{\"duration\":4,\"tweenEasing\":0},{\"duration\":4,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.1,\"y\":1.3},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":1.1},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":1.1},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.9},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":0.9},{\"duration\":4,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":2,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.2},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.2},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.54,\"y\":-0.17},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-34.26},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-8.09},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-36.51},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-12.04},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.7,\"y\":0.18},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.34,\"y\":0.12},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.44,\"y\":0.07},{\"duration\":8,\"tweenEasing\":0,\"x\":0.31,\"y\":0.26},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-36.51},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-41.51},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-50.9},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-42.18},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.96,\"y\":-0.32},{\"duration\":8,\"tweenEasing\":0,\"x\":1.4,\"y\":3.87},{\"duration\":8,\"tweenEasing\":0,\"x\":1.48,\"y\":4.19},{\"duration\":8,\"tweenEasing\":0,\"x\":-3.83,\"y\":-3.08},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":2,\"tweenEasing\":0,\"rotate\":8.81},{\"duration\":8,\"tweenEasing\":0,\"rotate\":7.26},{\"duration\":8,\"tweenEasing\":0,\"rotate\":15.7},{\"duration\":8,\"tweenEasing\":0,\"rotate\":25.83},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":4,\"value\":-1},{\"duration\":26},{\"duration\":4,\"value\":-1}],\"colorFrame\":[{\"duration\":4,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":8,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":8,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":2,\"value\":-1},{\"duration\":24},{\"duration\":8,\"value\":-1}],\"colorFrame\":[{\"duration\":2,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":4,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":10,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0},{\"duration\":10,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":2,\"value\":-1},{\"duration\":22},{\"duration\":10,\"value\":-1}],\"colorFrame\":[{\"duration\":2,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":10,\"tweenEasing\":0},{\"duration\":4,\"tweenEasing\":0},{\"duration\":12,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":34,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":34,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":34,\"value\":-1}]}]},{\"duration\":18,\"name\":\"Atked1\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-2.52,\"y\":1.72},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.66,\"y\":-0.23},{\"duration\":6,\"tweenEasing\":0,\"x\":3.25,\"y\":-1.37},{\"duration\":3,\"x\":4.8,\"y\":-6.29}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"rotate\":-20.99}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-4.5,\"y\":3.8},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.5,\"y\":3.8},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.13,\"y\":-1.13},{\"duration\":9,\"tweenEasing\":0,\"x\":-11.84,\"y\":-6.3},{\"duration\":0,\"x\":-24,\"y\":-16.3}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-9.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-9.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-12.21},{\"duration\":9,\"rotate\":-14.93}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-3.68,\"y\":5.44},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.76,\"y\":-7.24},{\"duration\":6,\"tweenEasing\":0,\"x\":1.84,\"y\":-9.36},{\"duration\":3,\"x\":6.56,\"y\":-13.6}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-20.49},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-21.44},{\"duration\":3,\"rotate\":-23.34}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":2.72,\"y\":0.96},{\"duration\":3,\"tweenEasing\":0,\"x\":-6.04,\"y\":-7.24},{\"duration\":9,\"tweenEasing\":0,\"x\":-6.73,\"y\":-8.87},{\"duration\":0,\"x\":-9.44,\"y\":-13.76}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":55.47},{\"duration\":9,\"tweenEasing\":0,\"rotate\":51.89},{\"duration\":0,\"rotate\":41.14}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.23},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-26.56},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-11.41},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.05},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.27},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.15,\"y\":2.3},{\"duration\":9,\"tweenEasing\":0,\"x\":-3.52,\"y\":1.7},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.93},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.8},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.16,\"y\":1.05},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.29,\"y\":0.44},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-15.21},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.28},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.98,\"y\":2.9},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.31,\"y\":0.72},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.26},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.02,\"y\":0.27},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.56,\"y\":-0.29},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-22.45},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.1,\"y\":1.19},{\"duration\":9,\"tweenEasing\":0,\"x\":0.4,\"y\":0.88},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.23},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.28},{\"duration\":0}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.64,\"y\":0.12},{\"duration\":9,\"tweenEasing\":0,\"x\":0.32,\"y\":-0.04},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.63},{\"duration\":9,\"tweenEasing\":0,\"rotate\":6.92},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.22,\"y\":-0.36},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.33},{\"duration\":9,\"tweenEasing\":0,\"rotate\":14.55},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.48,\"y\":2.58},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.94,\"y\":0.96},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.02},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.28},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":66}},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":49}},{\"duration\":9,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":18,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":18,\"value\":-1}]}]},{\"duration\":78,\"name\":\"Dying\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":7.2,\"y\":1.72},{\"duration\":18,\"tweenEasing\":0,\"x\":7.2,\"y\":1.72},{\"duration\":15,\"tweenEasing\":0,\"x\":3.2,\"y\":-5.14},{\"duration\":15,\"tweenEasing\":0,\"x\":4.23,\"y\":-11.54},{\"duration\":6,\"x\":0.57,\"y\":-16.23}],\"rotateFrame\":[{\"duration\":42,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":46.89},{\"duration\":6,\"rotate\":26.37}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":-1.6,\"y\":0.8},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":0.8},{\"duration\":18,\"tweenEasing\":0,\"x\":0.12,\"y\":-12.12},{\"duration\":18,\"tweenEasing\":0,\"x\":-4.34,\"y\":-19.77},{\"duration\":9,\"x\":-5.8,\"y\":-24.16}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":20.94},{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-3.4},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-10.49},{\"duration\":9,\"rotate\":-4.63}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":27,\"tweenEasing\":0,\"x\":-3.06,\"y\":11.2},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.06,\"y\":11.2},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.38,\"y\":-2.44},{\"duration\":12,\"tweenEasing\":0,\"x\":4.45,\"y\":-9.82},{\"duration\":9,\"x\":11.24,\"y\":-11.69}],\"rotateFrame\":[{\"duration\":27,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-12.51},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-13.38},{\"duration\":9,\"rotate\":9.35}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":2,\"y\":3.06},{\"duration\":9,\"tweenEasing\":0,\"x\":2,\"y\":3.06},{\"duration\":9,\"tweenEasing\":0,\"x\":0.54,\"y\":-3.87},{\"duration\":15,\"tweenEasing\":0,\"x\":-6.54,\"y\":-10.13},{\"duration\":24,\"x\":-20.27,\"y\":-14.8}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":29.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":2.18},{\"duration\":24,\"rotate\":-22.33}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":6,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":9,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.21},{\"duration\":3,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.21},{\"duration\":42,\"x\":-0.33,\"y\":-0.04}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":6,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-18.54},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-18.54},{\"duration\":24,\"tweenEasing\":0,\"rotate\":6.38},{\"duration\":6,\"tweenEasing\":0,\"rotate\":6.38},{\"duration\":12,\"rotate\":11.01}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.68,\"y\":-0.95},{\"duration\":6,\"tweenEasing\":0,\"x\":0.68,\"y\":-0.95},{\"duration\":9,\"tweenEasing\":0,\"x\":0.65,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":0.65,\"y\":-1.15},{\"duration\":15,\"tweenEasing\":0,\"x\":0.15,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.83,\"y\":0.94},{\"duration\":6,\"tweenEasing\":0,\"x\":0.64,\"y\":-3.63},{\"duration\":12,\"x\":0.49,\"y\":-4.08}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-33.88},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-26.38},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-26.38},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-47.87},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-65.3},{\"duration\":15,\"tweenEasing\":0,\"rotate\":46.32},{\"duration\":9,\"tweenEasing\":0,\"rotate\":15},{\"duration\":6,\"tweenEasing\":0,\"rotate\":113.18},{\"duration\":12,\"rotate\":106.03}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":69,\"x\":1.05,\"y\":1.05}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":3.92,\"y\":0.22},{\"duration\":3,\"tweenEasing\":0,\"x\":3.65,\"y\":-0.2},{\"duration\":6,\"tweenEasing\":0,\"x\":3.65,\"y\":0.04},{\"duration\":9,\"tweenEasing\":0,\"x\":5.47,\"y\":0.93},{\"duration\":3,\"tweenEasing\":0,\"x\":5.34,\"y\":-0.94},{\"duration\":15,\"tweenEasing\":0,\"x\":-1,\"y\":-5.83},{\"duration\":9,\"tweenEasing\":0,\"x\":-4.61,\"y\":-8.44},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.2,\"y\":19},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.65,\"y\":17.16},{\"duration\":0,\"x\":-1.65,\"y\":18.77}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.57},{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.2},{\"duration\":6,\"tweenEasing\":0,\"rotate\":16.88},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.9},{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.99},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.17},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.82},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-8.56},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-2.65},{\"duration\":0,\"rotate\":-7.04}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":3.38,\"y\":-2.31},{\"duration\":3,\"tweenEasing\":0,\"x\":3.38,\"y\":-2.55},{\"duration\":6,\"tweenEasing\":0,\"x\":3.38,\"y\":-2.31},{\"duration\":9,\"tweenEasing\":0,\"x\":6.04,\"y\":-0.88},{\"duration\":3,\"tweenEasing\":0,\"x\":5.92,\"y\":-2.75},{\"duration\":15,\"tweenEasing\":0,\"x\":0.43,\"y\":-5.91},{\"duration\":9,\"tweenEasing\":0,\"x\":1.24,\"y\":-0.91},{\"duration\":6,\"tweenEasing\":0,\"x\":1.44,\"y\":14.13},{\"duration\":12,\"tweenEasing\":0,\"x\":0.64,\"y\":12.94},{\"duration\":0,\"x\":0.8,\"y\":13.73}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":0.58},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.94},{\"duration\":6,\"tweenEasing\":0,\"rotate\":4.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.19},{\"duration\":3,\"tweenEasing\":0,\"rotate\":25.77},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-11.12},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.99},{\"duration\":18,\"rotate\":-14.6}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":4.09,\"y\":3.06},{\"duration\":3,\"tweenEasing\":0,\"x\":3.85,\"y\":2.9},{\"duration\":6,\"tweenEasing\":0,\"x\":3.85,\"y\":3.14},{\"duration\":9,\"tweenEasing\":0,\"x\":4.46,\"y\":5.23},{\"duration\":3,\"tweenEasing\":0,\"x\":4.79,\"y\":5.7},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.35,\"y\":-7.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.62,\"y\":-11.06},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.1,\"y\":18.3},{\"duration\":12,\"tweenEasing\":0,\"x\":-2.54,\"y\":16.94},{\"duration\":0,\"x\":0.02,\"y\":21.42}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":29.23},{\"duration\":3,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.15},{\"duration\":9,\"tweenEasing\":0,\"rotate\":15.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.69},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-29.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.43},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.43},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.43},{\"duration\":0,\"rotate\":-13.96}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":3.03,\"y\":0.83},{\"duration\":3,\"tweenEasing\":0,\"x\":3.03,\"y\":0.59},{\"duration\":6,\"tweenEasing\":0,\"x\":3.03,\"y\":0.83},{\"duration\":9,\"tweenEasing\":0,\"x\":3.4,\"y\":1.55},{\"duration\":3,\"tweenEasing\":0,\"x\":3.26,\"y\":-0.84},{\"duration\":15,\"tweenEasing\":0,\"x\":-2.59,\"y\":-8.54},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.19,\"y\":-6.93},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.19,\"y\":16.3},{\"duration\":12,\"tweenEasing\":0,\"x\":-0.23,\"y\":16.86},{\"duration\":0,\"x\":-0.23,\"y\":19.27}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-2.21},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.5},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-5.8},{\"duration\":9,\"tweenEasing\":0,\"rotate\":7.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-16.47},{\"duration\":6,\"tweenEasing\":0,\"rotate\":20.03},{\"duration\":12,\"rotate\":10.97}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.09,\"y\":0.24},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.09},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.33},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.09,\"y\":1.13},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.22,\"y\":-0.74},{\"duration\":15,\"tweenEasing\":0,\"x\":1.18,\"y\":-7.26},{\"duration\":9,\"tweenEasing\":0,\"x\":1.65,\"y\":-4.2},{\"duration\":6,\"tweenEasing\":0,\"x\":4.98,\"y\":12.38},{\"duration\":12,\"tweenEasing\":0,\"x\":5.3,\"y\":9.58},{\"duration\":0,\"x\":5.46,\"y\":10.7}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":6,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":21.06},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.64},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-10.59},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-22.36},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-49.93},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-57.44},{\"duration\":0,\"rotate\":-66.41}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.96},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.96},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.16},{\"duration\":15,\"tweenEasing\":0},{\"duration\":27,\"y\":0.9}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.42},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.42},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.26,\"y\":-0.32},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.26,\"y\":-1.92},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.26,\"y\":-2.64},{\"duration\":21,\"x\":-0.26,\"y\":-1.76}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.25},{\"duration\":6,\"tweenEasing\":0,\"x\":0.95,\"y\":0.85},{\"duration\":9,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.25,\"y\":1.05},{\"duration\":15,\"tweenEasing\":0,\"x\":1.85,\"y\":1.05},{\"duration\":6,\"tweenEasing\":0,\"x\":2.15,\"y\":1.05},{\"duration\":21,\"x\":1.55,\"y\":1.05}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":27,\"tweenEasing\":0,\"x\":-1.12,\"y\":-0.8},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.12,\"y\":-0.8},{\"duration\":18,\"x\":-0.52,\"y\":-0.81}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":6,\"tweenEasing\":0,\"rotate\":23.26},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.83},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-19.83},{\"duration\":9,\"tweenEasing\":0,\"rotate\":23.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.82},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.18},{\"duration\":9,\"tweenEasing\":0,\"rotate\":22.15},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-22.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-45.66},{\"duration\":0,\"rotate\":-37}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":12,\"tweenEasing\":0,\"x\":-0.66,\"y\":-0.14},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.66,\"y\":-0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.47,\"y\":-1.53},{\"duration\":6,\"tweenEasing\":0,\"x\":-3.21,\"y\":1.78},{\"duration\":12,\"tweenEasing\":0,\"x\":-2.78,\"y\":2.31},{\"duration\":0,\"x\":-3.77,\"y\":2.53}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":6,\"tweenEasing\":0,\"rotate\":59.44},{\"duration\":3,\"tweenEasing\":0,\"rotate\":75.81},{\"duration\":6,\"tweenEasing\":0,\"rotate\":75.81},{\"duration\":9,\"tweenEasing\":0,\"rotate\":75.52},{\"duration\":3,\"tweenEasing\":0,\"rotate\":94.88},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-2.28},{\"duration\":9,\"tweenEasing\":0,\"rotate\":12.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":12.5},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.33},{\"duration\":0,\"rotate\":11.94}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":69,\"x\":1.05,\"y\":1.05}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":6,\"tweenEasing\":0,\"x\":3.9,\"y\":0.71},{\"duration\":3,\"tweenEasing\":0,\"x\":3.42,\"y\":0.4},{\"duration\":6,\"tweenEasing\":0,\"x\":3.42,\"y\":0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":3.25,\"y\":1.44},{\"duration\":3,\"tweenEasing\":0,\"x\":3.12,\"y\":-0.43},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.94,\"y\":-5.88},{\"duration\":9,\"tweenEasing\":0,\"x\":0.06,\"y\":0.45},{\"duration\":6,\"tweenEasing\":0,\"x\":-2.26,\"y\":21.07},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.06,\"y\":19.87},{\"duration\":0,\"x\":-2.9,\"y\":20.67}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":6,\"tweenEasing\":0,\"rotate\":2.1},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.1},{\"duration\":6,\"tweenEasing\":0,\"rotate\":1.1},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.84},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-18.94},{\"duration\":15,\"tweenEasing\":0,\"rotate\":15.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.72},{\"duration\":18,\"rotate\":-52.69}]},{\"name\":\"backLight\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"y\":-3.65},{\"duration\":9,\"tweenEasing\":0,\"y\":-6.4},{\"duration\":6,\"tweenEasing\":0,\"y\":-6.4},{\"duration\":27,\"x\":0.4,\"y\":-20.8}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":0.69,\"y\":0.5},{\"duration\":9,\"tweenEasing\":0,\"x\":1.56,\"y\":1.71},{\"duration\":6,\"tweenEasing\":0,\"x\":0.6,\"y\":2.57},{\"duration\":27,\"x\":0.11,\"y\":2.79}]}],\"slot\":[{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":27,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":24,\"value\":{\"aM\":0}}]},{\"name\":\"leftArm\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12}]},{\"name\":\"head\",\"displayFrame\":[{\"duration\":78,\"value\":1}]},{\"name\":\"rightArm\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12}]},{\"name\":\"backLight\",\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":30,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":27,\"value\":{\"aM\":0}}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":78,\"value\":-1}]}]},{\"duration\":72,\"playTimes\":0,\"name\":\"Atked2\",\"bone\":[{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-9.24,\"y\":3.38},{\"duration\":18,\"tweenEasing\":0,\"x\":-9.24,\"y\":3.38},{\"duration\":21,\"tweenEasing\":0,\"x\":-8,\"y\":-5.07},{\"duration\":21,\"tweenEasing\":0,\"x\":-12.36,\"y\":-12.18},{\"duration\":9,\"x\":-12.27,\"y\":-18.84}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-28.4},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-16.18},{\"duration\":9,\"rotate\":-31.27}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-0.94,\"y\":5.33},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.94,\"y\":5.33},{\"duration\":21,\"tweenEasing\":0,\"x\":1.63,\"y\":-8.11},{\"duration\":18,\"tweenEasing\":0,\"x\":0.34,\"y\":-14.59},{\"duration\":0,\"x\":0.58,\"y\":-17.3}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-39.38},{\"duration\":18,\"rotate\":-22.72}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":2,\"y\":-8.5},{\"duration\":24,\"tweenEasing\":0,\"x\":0.5,\"y\":-14.6},{\"duration\":3,\"x\":-0.1,\"y\":-19.9}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":29.43},{\"duration\":24,\"tweenEasing\":0,\"rotate\":65.43},{\"duration\":24,\"tweenEasing\":0,\"rotate\":44.46},{\"duration\":3,\"rotate\":60}]},{\"name\":\"leftHand\",\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":15.92},{\"duration\":24,\"tweenEasing\":0,\"rotate\":12.42},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-2.24},{\"duration\":0,\"rotate\":15.92}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.3,\"y\":0.2},{\"duration\":0}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":29.06},{\"duration\":24,\"tweenEasing\":0,\"rotate\":26.02},{\"duration\":24,\"tweenEasing\":0,\"rotate\":16.87},{\"duration\":0,\"rotate\":29.06}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":2.06,\"y\":-0.8},{\"duration\":24,\"tweenEasing\":0,\"x\":2.73,\"y\":-0.64},{\"duration\":24,\"tweenEasing\":0,\"x\":3.04,\"y\":-0.99},{\"duration\":0,\"x\":2.06,\"y\":-0.8}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-12.27},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-15.89},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-12.23},{\"duration\":0,\"rotate\":-12.27}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":2.4,\"y\":0.46},{\"duration\":24,\"tweenEasing\":0,\"x\":2.4,\"y\":0.46},{\"duration\":24,\"tweenEasing\":0,\"x\":2.54,\"y\":0.65},{\"duration\":0,\"x\":2.4,\"y\":0.46}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-23.09},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-31.16},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-21.98},{\"duration\":0,\"rotate\":-23.09}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":2.1,\"y\":2.36},{\"duration\":24,\"tweenEasing\":0,\"x\":3.17,\"y\":2.85},{\"duration\":24,\"tweenEasing\":0,\"x\":3.07,\"y\":2.85},{\"duration\":0,\"x\":2.1,\"y\":2.36}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":27.28},{\"duration\":24,\"tweenEasing\":0,\"rotate\":21.12},{\"duration\":24,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":0,\"rotate\":27.28}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":1.72,\"y\":0.12},{\"duration\":24,\"tweenEasing\":0,\"x\":2.73,\"y\":0.63},{\"duration\":24,\"tweenEasing\":0,\"x\":2.71,\"y\":0.23},{\"duration\":0,\"x\":1.72,\"y\":0.12}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":13.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":9.28},{\"duration\":24,\"tweenEasing\":0,\"rotate\":14.42},{\"duration\":0,\"rotate\":13.3}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":0.12,\"y\":0.12},{\"duration\":24,\"tweenEasing\":0,\"x\":0.25,\"y\":-0.28},{\"duration\":0}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":13.71},{\"duration\":24,\"tweenEasing\":0,\"rotate\":17.86},{\"duration\":24,\"tweenEasing\":0,\"rotate\":16.11},{\"duration\":0,\"rotate\":13.71}]},{\"name\":\"leg\",\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":18,\"tweenEasing\":0,\"x\":1.1,\"y\":0.8},{\"duration\":6,\"tweenEasing\":0,\"x\":1.1,\"y\":0.8},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":72,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":24,\"tweenEasing\":0,\"rotate\":1.26},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-11.03},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":72,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":1.98},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-1.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":0,\"rotate\":1.98}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":3.28,\"y\":1.58},{\"duration\":24,\"tweenEasing\":0,\"x\":3.28,\"y\":1.58},{\"duration\":24,\"tweenEasing\":0,\"x\":3.54,\"y\":1.45},{\"duration\":0,\"x\":3.28,\"y\":1.58}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":29.2},{\"duration\":24,\"tweenEasing\":0,\"rotate\":11.66},{\"duration\":24,\"tweenEasing\":0,\"rotate\":23.61},{\"duration\":0,\"rotate\":29.2}]}],\"slot\":[{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]}]},{\"duration\":102,\"playTimes\":0,\"name\":\"Idle2\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":39,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":3.2,\"y\":-5.6},{\"duration\":24,\"tweenEasing\":0,\"x\":3.2,\"y\":-11.9},{\"duration\":0,\"x\":7,\"y\":-15.1}],\"rotateFrame\":[{\"duration\":39,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-27.23},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-17.6},{\"duration\":0,\"rotate\":-35.03}]},{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":27,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-5.2,\"y\":-9.12},{\"duration\":21,\"tweenEasing\":0,\"x\":-5.04,\"y\":-16.4},{\"duration\":12,\"x\":-6.4,\"y\":-19.84}],\"rotateFrame\":[{\"duration\":27,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":22.39},{\"duration\":21,\"tweenEasing\":0,\"rotate\":39.5},{\"duration\":12,\"rotate\":22.14}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":4.4,\"y\":-6.1},{\"duration\":24,\"tweenEasing\":0,\"x\":5.5,\"y\":-13.8},{\"duration\":24,\"x\":6.1,\"y\":-19.3}],\"rotateFrame\":[{\"duration\":33,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-24.94},{\"duration\":24,\"rotate\":-14.84}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":2.4,\"y\":-5.6},{\"duration\":18,\"tweenEasing\":0,\"x\":3.8,\"y\":-11.1},{\"duration\":9,\"x\":4.3,\"y\":-15.2}],\"rotateFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-17.53},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-36.39},{\"duration\":9,\"rotate\":-23.84}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":-2.27,\"y\":-6.67},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.74,\"y\":-10.54},{\"duration\":33,\"x\":-3.06,\"y\":-17.46}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.36},{\"duration\":18,\"tweenEasing\":0,\"rotate\":68.81},{\"duration\":33,\"rotate\":27.88}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":18,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":6.55},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-0.86},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":3.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.22},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-1.2,\"y\":0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.46},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-1.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-1.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-1.1},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.71},{\"duration\":0,\"x\":-1.2,\"y\":0.14}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":37.04},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":35.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":18,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-1.2,\"y\":0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.42,\"y\":-1.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.19},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-1.81},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.19},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-1.81},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.19},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-1.81},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.27},{\"duration\":0,\"x\":-1.2,\"y\":0.14}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":22.76},{\"duration\":9,\"tweenEasing\":0,\"rotate\":19.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":25.64},{\"duration\":9,\"tweenEasing\":0,\"rotate\":20.36},{\"duration\":9,\"tweenEasing\":0,\"rotate\":26.38},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":22.76},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-1.06,\"y\":0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.14,\"y\":0.3},{\"duration\":9,\"tweenEasing\":0,\"x\":0.28,\"y\":-0.74},{\"duration\":9,\"tweenEasing\":0,\"x\":0.34,\"y\":-0.17},{\"duration\":9,\"tweenEasing\":0,\"x\":0.28,\"y\":-0.74},{\"duration\":9,\"tweenEasing\":0,\"x\":0.34,\"y\":0.07},{\"duration\":9,\"tweenEasing\":0,\"x\":0.28,\"y\":-1.06},{\"duration\":9,\"tweenEasing\":0,\"x\":0.34,\"y\":0.3},{\"duration\":18,\"tweenEasing\":0,\"x\":0.28,\"y\":-1.06},{\"duration\":0,\"x\":-1.06,\"y\":0.14}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.1},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.06},{\"duration\":54,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"rotate\":-4.1}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.51,\"y\":-0.36},{\"duration\":9,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.3},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":-1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.3},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":-1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.39},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":-1},{\"duration\":18,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.86},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-38.24},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-39.74},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-45.24},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-38.24},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.16,\"y\":0.16},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.49},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.48},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.73},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.56},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.97},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.48},{\"duration\":18,\"tweenEasing\":0,\"y\":-1.05},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.48},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":0,\"rotate\":-6.48}],\"scaleFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":18,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.06},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.06},{\"duration\":30}],\"scaleFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.04,\"y\":1.1},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.04,\"y\":1.1},{\"duration\":30}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":18,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.2,\"y\":0.01},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":9,\"tweenEasing\":0,\"rotate\":45.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":46.54},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":18,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":9,\"tweenEasing\":0,\"x\":0.76,\"y\":0.39},{\"duration\":9,\"tweenEasing\":0,\"x\":1.13,\"y\":-0.75},{\"duration\":9,\"tweenEasing\":0,\"x\":0.92,\"y\":-0.26},{\"duration\":9,\"tweenEasing\":0,\"x\":1.13,\"y\":-0.75},{\"duration\":9,\"tweenEasing\":0,\"x\":0.92,\"y\":-0.26},{\"duration\":9,\"tweenEasing\":0,\"x\":1.13,\"y\":-0.75},{\"duration\":9,\"tweenEasing\":0,\"x\":0.92,\"y\":-0.49},{\"duration\":18,\"tweenEasing\":0,\"x\":1.13,\"y\":-1.07},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.66},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-31.48},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-27.88},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-34.28},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-35.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-23.55},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-31.48},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":39,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":27,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":12,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":33,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":102,\"value\":-1}]}]},{\"duration\":66,\"playTimes\":0,\"name\":\"Idle1\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":3.46,\"y\":-6.84},{\"duration\":0,\"x\":5.42,\"y\":-9.87}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"rotate\":-10.38}]},{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":-4,\"y\":-3.31},{\"duration\":15,\"tweenEasing\":0,\"x\":-5.03,\"y\":-8.91},{\"duration\":9,\"x\":-5.37,\"y\":-12.35}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":27.97},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-3.77},{\"duration\":9,\"rotate\":-10.94}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":3.88,\"y\":-6.4},{\"duration\":21,\"tweenEasing\":0,\"x\":6.75,\"y\":-10.97},{\"duration\":9,\"x\":6.51,\"y\":-13.37}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":19.87},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-1.94},{\"duration\":9,\"rotate\":-29.35}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":3.4,\"y\":-7.87},{\"duration\":18,\"tweenEasing\":0,\"x\":3.13,\"y\":-14.13},{\"duration\":0,\"x\":3.67,\"y\":-17.86}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-25.82},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-13.32},{\"duration\":0,\"rotate\":-23.08}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":-2.32,\"y\":-5.92},{\"duration\":21,\"tweenEasing\":0,\"x\":-5.84,\"y\":-9.44},{\"duration\":6,\"x\":-7.52,\"y\":-12}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":35.13},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.98},{\"duration\":6,\"rotate\":29.58}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.29,\"y\":0.43},{\"duration\":24,\"tweenEasing\":0,\"x\":0.29,\"y\":0.43},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.45},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-6.58},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.03,\"y\":0.23},{\"duration\":24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-3.35},{\"duration\":24,\"tweenEasing\":0,\"rotate\":7.11},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.08,\"y\":-0.56},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.08,\"y\":-0.56},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":13.8},{\"duration\":24,\"tweenEasing\":0,\"rotate\":4.52},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.1,\"y\":-0.99},{\"duration\":24,\"tweenEasing\":0,\"x\":0.18,\"y\":-0.92},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":16.02},{\"duration\":24,\"tweenEasing\":0,\"rotate\":12.08},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.16,\"y\":-0.69},{\"duration\":24,\"tweenEasing\":0,\"y\":-0.45},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.32,\"y\":-1.9},{\"duration\":24,\"tweenEasing\":0,\"x\":0.32,\"y\":-0.78},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-10.95},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-8.38},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"y\":-0.72},{\"duration\":24,\"tweenEasing\":0,\"x\":0.08,\"y\":-0.32},{\"duration\":0}],\"scaleFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":24,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":66,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":21,\"tweenEasing\":0,\"rotate\":16.12},{\"duration\":24,\"tweenEasing\":0,\"rotate\":15.51},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.09,\"y\":0.52},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.07,\"y\":0.13},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":21,\"tweenEasing\":0,\"rotate\":45.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":32.17},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":21,\"tweenEasing\":0,\"x\":0.74,\"y\":0.46},{\"duration\":24,\"tweenEasing\":0,\"x\":1.06,\"y\":0.7},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-26.33},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-19.75},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":66,\"value\":-1}]}]}],\"defaultActions\":[{\"gotoAndPlay\":\"Idle1\"}]}]}", + "dragonBonesJson": "{\"frameRate\":60,\"name\":\"SoldierWaterGhost\",\"version\":\"5.5\",\"compatibleVersion\":\"5.5\",\"armature\":[{\"type\":\"Armature\",\"frameRate\":60,\"name\":\"SoldierWaterGhost\",\"aabb\":{\"x\":-17.1,\"y\":-45.87,\"width\":38.84,\"height\":47.16},\"bone\":[{\"name\":\"root\"},{\"inheritScale\":false,\"length\":6.5,\"name\":\"leftShoulder\",\"parent\":\"root\",\"transform\":{\"x\":-5.60925,\"y\":-28.39315,\"skX\":156.8918,\"skY\":156.8918}},{\"inheritScale\":false,\"name\":\"backLight\",\"parent\":\"root\",\"transform\":{\"x\":0.1,\"y\":-23.0462,\"scX\":3,\"scY\":3}},{\"inheritScale\":false,\"length\":8.5,\"name\":\"rightArm\",\"parent\":\"root\",\"transform\":{\"x\":6.7954,\"y\":-26.8018,\"skX\":46.9769,\"skY\":46.9769}},{\"inheritScale\":false,\"name\":\"effect4\",\"parent\":\"root\",\"transform\":{\"x\":6.32,\"y\":-21.38935,\"skX\":-9.349,\"skY\":-9.349}},{\"inheritScale\":false,\"name\":\"effect7\",\"parent\":\"root\"},{\"inheritScale\":false,\"name\":\"effect3\",\"parent\":\"root\",\"transform\":{\"x\":5.75,\"y\":-27.36735}},{\"inheritScale\":false,\"length\":8.5,\"name\":\"leg\",\"parent\":\"root\",\"transform\":{\"x\":-0.45525,\"y\":-1.41005,\"skX\":-85.7242,\"skY\":-85.7242}},{\"inheritScale\":false,\"length\":11,\"name\":\"body\",\"parent\":\"root\",\"transform\":{\"x\":1.00195,\"y\":-12.3951,\"skX\":-82.2714,\"skY\":-82.2714}},{\"inheritScale\":false,\"length\":6,\"name\":\"rightShoulder\",\"parent\":\"root\",\"transform\":{\"x\":9.1041,\"y\":-26.3402,\"skX\":22.0857,\"skY\":22.0857}},{\"inheritScale\":false,\"length\":5.5,\"name\":\"head\",\"parent\":\"root\",\"transform\":{\"x\":4.103,\"y\":-31.2905,\"skX\":-83.4757,\"skY\":-83.4757}},{\"inheritScale\":false,\"length\":5,\"name\":\"leftArm\",\"parent\":\"root\",\"transform\":{\"x\":-6.5059,\"y\":-26.80925,\"skX\":122.5397,\"skY\":122.5397}},{\"inheritScale\":false,\"name\":\"effect2\",\"parent\":\"root\",\"transform\":{\"x\":-5.0143,\"y\":-28.2204,\"skX\":-79.3059,\"skY\":-79.3059}},{\"inheritScale\":false,\"name\":\"effect5\",\"parent\":\"root\",\"transform\":{\"x\":-15.0286,\"y\":-16.5986,\"skX\":-72.4737,\"skY\":-72.4737}},{\"inheritScale\":false,\"name\":\"effect6\",\"parent\":\"root\",\"transform\":{\"x\":13.28445,\"y\":-15.03735}},{\"inheritScale\":false,\"name\":\"rightFrontArm\",\"parent\":\"rightArm\",\"transform\":{\"x\":8.82335,\"y\":0.6604,\"skX\":10.7237,\"skY\":10.7237}},{\"inheritScale\":false,\"name\":\"leftFrontArm\",\"parent\":\"leftArm\",\"transform\":{\"x\":7.37235,\"y\":1.7869,\"skX\":-39.1583,\"skY\":-39.1583}},{\"inheritScale\":false,\"name\":\"rightHand\",\"parent\":\"rightFrontArm\",\"transform\":{\"x\":5.3646,\"y\":-2.8911,\"skX\":21.9835,\"skY\":21.9835}},{\"inheritScale\":false,\"name\":\"leftHand\",\"parent\":\"leftFrontArm\",\"transform\":{\"x\":7.3904,\"y\":1.4291,\"skX\":-25.7356,\"skY\":-25.7356}}],\"slot\":[{\"name\":\"backLight\",\"parent\":\"backLight\"},{\"name\":\"rightArm\",\"parent\":\"rightArm\"},{\"name\":\"leg\",\"parent\":\"leg\"},{\"name\":\"body\",\"parent\":\"body\"},{\"name\":\"rightShoulder\",\"parent\":\"rightShoulder\"},{\"name\":\"rightFrontArm\",\"parent\":\"rightFrontArm\"},{\"name\":\"rightHand\",\"parent\":\"rightHand\"},{\"name\":\"leftArm\",\"parent\":\"leftArm\"},{\"name\":\"leftShoulder\",\"parent\":\"leftShoulder\"},{\"name\":\"leftFrontArm\",\"parent\":\"leftFrontArm\"},{\"name\":\"head\",\"parent\":\"head\"},{\"name\":\"leftHand\",\"parent\":\"leftHand\"},{\"name\":\"effect2\",\"parent\":\"effect2\"},{\"name\":\"effect3\",\"parent\":\"effect3\"},{\"name\":\"effect4\",\"parent\":\"effect4\"},{\"name\":\"effect5\",\"parent\":\"effect5\"},{\"name\":\"effect6\",\"parent\":\"effect6\"},{\"displayIndex\":-1,\"name\":\"effect7\",\"parent\":\"effect7\"}],\"skin\":[{\"slot\":[{\"name\":\"rightArm\",\"display\":[{\"name\":\"yinmo08\",\"transform\":{\"x\":4.54,\"y\":-0.2,\"skX\":-54.4,\"skY\":-54.4},\"path\":\"rightArm\"}]},{\"name\":\"effect6\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"leftHand\",\"display\":[{\"name\":\"yinmo07\",\"transform\":{\"x\":2.04,\"y\":-0.17,\"skX\":-66.8,\"skY\":-66.8},\"path\":\"leftHand\"}]},{\"name\":\"effect4\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"leftFrontArm\",\"display\":[{\"name\":\"yinmo06\",\"transform\":{\"x\":3.15,\"y\":0.49,\"skX\":-76.83,\"skY\":-76.83},\"path\":\"leftFrontArm\"}]},{\"name\":\"effect2\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"leftArm\",\"display\":[{\"name\":\"yinmo05\",\"transform\":{\"x\":3.46,\"y\":0.04,\"skX\":-112.43,\"skY\":-112.43},\"path\":\"leftArm\"}]},{\"name\":\"head\",\"display\":[{\"name\":\"yinmo01\",\"transform\":{\"x\":6.5,\"y\":-1.04,\"skX\":82.3,\"skY\":82.3,\"scX\":1.5,\"scY\":1.5},\"path\":\"head\"},{\"name\":\"head2\",\"transform\":{\"x\":6.64,\"y\":-1.22,\"skX\":83.48,\"skY\":83.48}}]},{\"name\":\"rightFrontArm\",\"display\":[{\"name\":\"yinmo09\",\"transform\":{\"x\":1.87,\"y\":-0.59,\"skX\":-60.14,\"skY\":-60.14},\"path\":\"rightFrontArm\"}]},{\"name\":\"backLight\",\"display\":[{\"name\":\"biu\"}]},{\"name\":\"rightShoulder\",\"display\":[{\"name\":\"yinmo04\",\"transform\":{\"x\":1.71,\"y\":-0.41,\"skX\":-28.61,\"skY\":-28.61},\"path\":\"rightShoulder\"}]},{\"name\":\"effect5\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"leg\",\"display\":[{\"name\":\"yinmoqe00\",\"transform\":{\"x\":5.32,\"y\":-0.07,\"skX\":85.72,\"skY\":85.72}}]},{\"name\":\"effect3\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"leftShoulder\",\"display\":[{\"name\":\"yinmo03\",\"transform\":{\"x\":2.4,\"y\":-0.06,\"skX\":-154.62,\"skY\":-154.62},\"path\":\"leftShoulder\"}]},{\"name\":\"body\",\"display\":[{\"name\":\"yinmo02\",\"transform\":{\"x\":6.41,\"y\":-1.19,\"skX\":82.27,\"skY\":82.27},\"path\":\"body\"}]},{\"name\":\"rightHand\",\"display\":[{\"name\":\"yinmo10\",\"transform\":{\"x\":2.69,\"y\":-0.12,\"skX\":-63.84,\"skY\":-63.84},\"path\":\"rightHand\"}]}]}],\"animation\":[{\"duration\":60,\"playTimes\":0,\"name\":\"Walking\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"x\":22.08,\"y\":7.04},{\"duration\":12,\"tweenEasing\":0,\"x\":22.08,\"y\":7.04},{\"duration\":15,\"tweenEasing\":0,\"x\":15.52,\"y\":7.68},{\"duration\":15,\"tweenEasing\":0,\"x\":11.04,\"y\":-0.32},{\"duration\":6,\"x\":-5.12,\"y\":-11.68}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":21,\"rotate\":7.3}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":3.68,\"y\":-1.24},{\"duration\":9,\"tweenEasing\":0,\"x\":3.68,\"y\":-1.24},{\"duration\":15,\"tweenEasing\":0,\"x\":-1,\"y\":-7.88},{\"duration\":12,\"tweenEasing\":0,\"x\":-7.24,\"y\":-10.24},{\"duration\":12,\"tweenEasing\":0,\"x\":-7.32,\"y\":-18.4},{\"duration\":6,\"x\":-20.28,\"y\":-26.52}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-49.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-49.96},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-84.92},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-11.77},{\"duration\":6,\"rotate\":-28.57}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-7.4,\"y\":12.8},{\"duration\":12,\"tweenEasing\":0,\"x\":-7.4,\"y\":12.8},{\"duration\":18,\"tweenEasing\":0,\"x\":-14.6,\"y\":8.8},{\"duration\":12,\"tweenEasing\":0,\"x\":-19,\"y\":4.6},{\"duration\":9,\"tweenEasing\":0,\"x\":-28.2,\"y\":2.2},{\"duration\":3,\"x\":-34.4,\"y\":2}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-59.23},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-36.85},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-66.48},{\"duration\":3,\"rotate\":-111.5}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":5.28,\"y\":5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":5.28,\"y\":5.6},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.8,\"y\":0.8},{\"duration\":18,\"tweenEasing\":0,\"x\":-9.92,\"y\":1.6},{\"duration\":9,\"tweenEasing\":0,\"x\":-14.88,\"y\":-3.36},{\"duration\":3,\"x\":-19.84,\"y\":-12}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-61.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.48},{\"duration\":3,\"rotate\":27.59}]},{\"name\":\"leftHand\",\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.3},{\"duration\":15,\"tweenEasing\":0,\"rotate\":15.68},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.06},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":0.07,\"y\":0.59},{\"duration\":15,\"tweenEasing\":0,\"x\":0.23,\"y\":-0.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.17,\"y\":-1.03},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-4.65},{\"duration\":15,\"tweenEasing\":0,\"rotate\":12.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":23.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":16.54},{\"duration\":0,\"rotate\":-4.65}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":2.88},{\"duration\":15,\"tweenEasing\":0,\"x\":2.57,\"y\":0.97},{\"duration\":15,\"tweenEasing\":0,\"x\":4.14,\"y\":-0.08},{\"duration\":15,\"tweenEasing\":0,\"x\":3.68,\"y\":1.09},{\"duration\":0,\"x\":2.88}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.1},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.43},{\"duration\":15,\"tweenEasing\":0,\"rotate\":10.13},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-2.7},{\"duration\":0,\"rotate\":20.1}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":1.92,\"y\":-0.48},{\"duration\":15,\"tweenEasing\":0,\"x\":3.59,\"y\":0.72},{\"duration\":15,\"tweenEasing\":0,\"x\":6.63,\"y\":1.54},{\"duration\":15,\"tweenEasing\":0,\"x\":5.95,\"y\":1.94},{\"duration\":0,\"x\":1.92,\"y\":-0.48}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-35.34},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-70.51},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-30.69},{\"duration\":0,\"rotate\":26.91}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":2.72,\"y\":0.64},{\"duration\":15,\"tweenEasing\":0,\"x\":2.48,\"y\":2.44},{\"duration\":15,\"tweenEasing\":0,\"x\":3.65,\"y\":0.32},{\"duration\":15,\"tweenEasing\":0,\"x\":3.79,\"y\":2.71},{\"duration\":0,\"x\":2.72,\"y\":0.64}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.72},{\"duration\":0,\"rotate\":0.59}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":1.71,\"y\":0.58},{\"duration\":15,\"tweenEasing\":0,\"x\":0.85,\"y\":1.34},{\"duration\":15,\"tweenEasing\":0,\"x\":1.95,\"y\":0.09},{\"duration\":15,\"tweenEasing\":0,\"x\":2.81,\"y\":1.94},{\"duration\":0,\"x\":1.71,\"y\":0.58}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":10.12},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-14.23},{\"duration\":15,\"tweenEasing\":0,\"rotate\":5.57},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-13.84},{\"duration\":0,\"rotate\":10.12}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"y\":1.36},{\"duration\":15,\"tweenEasing\":0,\"x\":0.48,\"y\":-0.09},{\"duration\":15,\"tweenEasing\":0,\"x\":0.71,\"y\":1.67},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.24},{\"duration\":15,\"tweenEasing\":0,\"rotate\":13},{\"duration\":15,\"tweenEasing\":0,\"rotate\":16.36},{\"duration\":15,\"tweenEasing\":0,\"rotate\":14.15},{\"duration\":0,\"rotate\":11.24}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.48},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.4},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.48},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.48},{\"duration\":12,\"tweenEasing\":0,\"x\":0.32},{\"duration\":6,\"tweenEasing\":0,\"x\":0.32},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.16},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":1.02},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-0.52},{\"duration\":6}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":6,\"tweenEasing\":0,\"y\":1.1},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":12,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":12,\"y\":0.9}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":60,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-8},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-1.89},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.14},{\"duration\":0,\"rotate\":-8}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.85},{\"duration\":15,\"tweenEasing\":0,\"x\":0.41,\"y\":-1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.05},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.04,\"y\":-1.27},{\"duration\":6,\"tweenEasing\":0,\"y\":-1.32},{\"duration\":0,\"x\":-0.1,\"y\":-0.85}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-43.73},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-66.02},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.47},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-62.6},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-58.82},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-51.28},{\"duration\":0,\"rotate\":-43.73}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":2.16,\"y\":2.04},{\"duration\":15,\"tweenEasing\":0,\"x\":2.48,\"y\":1.17},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.18,\"y\":-2.13},{\"duration\":15,\"tweenEasing\":0,\"x\":2.1,\"y\":1.69},{\"duration\":0,\"x\":2.16,\"y\":2.04}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.28},{\"duration\":15,\"tweenEasing\":0,\"rotate\":63.1},{\"duration\":15,\"tweenEasing\":0,\"rotate\":74.64},{\"duration\":15,\"tweenEasing\":0,\"rotate\":55.11},{\"duration\":0,\"rotate\":11.28}]}],\"slot\":[{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":12,\"value\":-1},{\"duration\":45},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":51},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":27,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":54},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":30,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":60},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":33,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]}]},{\"duration\":174,\"name\":\"Atk2\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":13.3,\"y\":-18.8},{\"duration\":12,\"tweenEasing\":0,\"x\":14.8,\"y\":-23.5},{\"duration\":24,\"tweenEasing\":0,\"x\":11.2,\"y\":-31.6},{\"duration\":12,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":13.3,\"y\":-18.8},{\"duration\":12,\"tweenEasing\":0,\"x\":14.8,\"y\":-23.5},{\"duration\":24,\"tweenEasing\":0,\"x\":11.2,\"y\":-31.6},{\"duration\":12,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":13.3,\"y\":-18.8},{\"duration\":9,\"tweenEasing\":0,\"x\":14.8,\"y\":-23.5},{\"duration\":3,\"x\":11.2,\"y\":-31.6}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":24,\"tweenEasing\":0,\"rotate\":61.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":24,\"tweenEasing\":0,\"rotate\":61.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":3,\"rotate\":61.88}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":15,\"tweenEasing\":0,\"x\":4.34,\"y\":-5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.95,\"y\":-16.23},{\"duration\":21,\"tweenEasing\":0,\"x\":2.52,\"y\":-23.89},{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":15,\"tweenEasing\":0,\"x\":4.34,\"y\":-5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.95,\"y\":-16.23},{\"duration\":21,\"tweenEasing\":0,\"x\":2.52,\"y\":-23.89},{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":12,\"tweenEasing\":0,\"x\":4.34,\"y\":-5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.95,\"y\":-16.23},{\"duration\":6,\"x\":2.52,\"y\":-23.89}],\"rotateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-53.65},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-53.65},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":6,\"rotate\":-53.65}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"y\":7.54},{\"duration\":15,\"tweenEasing\":0,\"y\":7.54},{\"duration\":15,\"tweenEasing\":0,\"x\":-6.29,\"y\":-9.26},{\"duration\":12,\"tweenEasing\":0,\"x\":-12.12,\"y\":-17.95},{\"duration\":18,\"tweenEasing\":0,\"x\":-18.97,\"y\":-21.37},{\"duration\":15,\"tweenEasing\":0,\"y\":7.54},{\"duration\":15,\"tweenEasing\":0,\"x\":-6.29,\"y\":-9.26},{\"duration\":12,\"tweenEasing\":0,\"x\":-12.12,\"y\":-17.95},{\"duration\":18,\"tweenEasing\":0,\"x\":-18.97,\"y\":-21.37},{\"duration\":15,\"tweenEasing\":0,\"y\":7.54},{\"duration\":12,\"tweenEasing\":0,\"x\":-6.29,\"y\":-9.26},{\"duration\":12,\"tweenEasing\":0,\"x\":-12.12,\"y\":-17.95},{\"duration\":6,\"x\":-18.97,\"y\":-21.37}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-111.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-111.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":6,\"rotate\":-111.08}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":9,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":-0.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.29,\"y\":-4.12},{\"duration\":15,\"tweenEasing\":0,\"x\":-13.71,\"y\":-10.29},{\"duration\":15,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":-0.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.29,\"y\":-4.12},{\"duration\":15,\"tweenEasing\":0,\"x\":-13.71,\"y\":-10.29},{\"duration\":15,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":-0.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.29,\"y\":-4.12},{\"duration\":9,\"x\":-13.71,\"y\":-10.29}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":57.19},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":57.19},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":9,\"rotate\":57.19}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":3,\"tweenEasing\":0,\"x\":0.35,\"y\":0.04},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.1},{\"duration\":12,\"tweenEasing\":0,\"x\":0.06,\"y\":0.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":3,\"tweenEasing\":0,\"x\":0.35,\"y\":0.04},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.1},{\"duration\":12,\"tweenEasing\":0,\"x\":0.06,\"y\":0.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":3,\"tweenEasing\":0,\"x\":0.35,\"y\":0.04},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.1},{\"duration\":12,\"tweenEasing\":0,\"x\":0.06,\"y\":0.29},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":0.14,\"y\":0.17},{\"duration\":15,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.33,\"y\":-1.5},{\"duration\":12,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.45},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":0.14,\"y\":0.17},{\"duration\":15,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.33,\"y\":-1.5},{\"duration\":12,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.45},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":0.14,\"y\":0.17},{\"duration\":15,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.33,\"y\":-1.5},{\"duration\":12,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.45},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":0}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":2.63},{\"duration\":3,\"tweenEasing\":0,\"x\":8,\"y\":1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":-7.12,\"y\":1.65},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.38,\"y\":-0.4},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.7,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":4.67,\"y\":1.6},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":2.63},{\"duration\":3,\"tweenEasing\":0,\"x\":8,\"y\":1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":-7.12,\"y\":1.65},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.38,\"y\":-0.4},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.7,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":4.67,\"y\":1.6},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":2.63},{\"duration\":3,\"tweenEasing\":0,\"x\":8,\"y\":1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":-7.12,\"y\":1.65},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.38,\"y\":-0.4},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.7,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":4.67,\"y\":1.6},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":4.25,\"y\":-0.63},{\"duration\":3,\"tweenEasing\":0,\"x\":7.94,\"y\":0.21},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.53},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.9,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":1.72,\"y\":1.3},{\"duration\":12,\"tweenEasing\":0,\"x\":4.92,\"y\":0.26},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":4.25,\"y\":-0.63},{\"duration\":3,\"tweenEasing\":0,\"x\":7.94,\"y\":0.21},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.53},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.9,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":1.72,\"y\":1.3},{\"duration\":12,\"tweenEasing\":0,\"x\":4.92,\"y\":0.26},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":4.25,\"y\":-0.63},{\"duration\":3,\"tweenEasing\":0,\"x\":7.94,\"y\":0.21},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.53},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.9,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":1.72,\"y\":1.3},{\"duration\":12,\"tweenEasing\":0,\"x\":4.92,\"y\":0.26},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":0}],\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":15}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.58,\"y\":5.97},{\"duration\":3,\"tweenEasing\":0,\"x\":8.94,\"y\":8.11},{\"duration\":15,\"tweenEasing\":0,\"x\":-8.84,\"y\":0.61},{\"duration\":3,\"tweenEasing\":0,\"x\":-9.28,\"y\":-1},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.25,\"y\":-0.36},{\"duration\":12,\"tweenEasing\":0,\"x\":4.59,\"y\":3.9},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.58,\"y\":5.97},{\"duration\":3,\"tweenEasing\":0,\"x\":8.94,\"y\":8.11},{\"duration\":15,\"tweenEasing\":0,\"x\":-8.84,\"y\":0.61},{\"duration\":3,\"tweenEasing\":0,\"x\":-9.28,\"y\":-1},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.25,\"y\":-0.36},{\"duration\":12,\"tweenEasing\":0,\"x\":4.59,\"y\":3.9},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.58,\"y\":5.97},{\"duration\":3,\"tweenEasing\":0,\"x\":8.94,\"y\":8.11},{\"duration\":15,\"tweenEasing\":0,\"x\":-8.84,\"y\":0.61},{\"duration\":3,\"tweenEasing\":0,\"x\":-9.28,\"y\":-1},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.25,\"y\":-0.36},{\"duration\":12,\"tweenEasing\":0,\"x\":4.59,\"y\":3.9},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":3.56,\"y\":2.23},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":3.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-11.15,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.46,\"y\":-2.84},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.45,\"y\":-0.43},{\"duration\":12,\"tweenEasing\":0,\"x\":3.48,\"y\":2.71},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":3.56,\"y\":2.23},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":3.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-11.15,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.46,\"y\":-2.84},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.45,\"y\":-0.43},{\"duration\":12,\"tweenEasing\":0,\"x\":3.48,\"y\":2.71},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":3.56,\"y\":2.23},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":3.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-11.15,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.46,\"y\":-2.84},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.45,\"y\":-0.43},{\"duration\":12,\"tweenEasing\":0,\"x\":3.48,\"y\":2.71},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.45,\"y\":1.64},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":1.08},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.44,\"y\":-0.71},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.68,\"y\":-0.49},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.84,\"y\":-0.35},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.61,\"y\":-0.37},{\"duration\":12,\"tweenEasing\":0,\"x\":0.05,\"y\":1.11},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.45,\"y\":1.64},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":1.08},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.44,\"y\":-0.71},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.68,\"y\":-0.49},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.84,\"y\":-0.35},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.61,\"y\":-0.37},{\"duration\":12,\"tweenEasing\":0,\"x\":0.05,\"y\":1.11},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.45,\"y\":1.64},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":1.08},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.44,\"y\":-0.71},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.68,\"y\":-0.49},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.84,\"y\":-0.35},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.61,\"y\":-0.37},{\"duration\":12,\"tweenEasing\":0,\"x\":0.05,\"y\":1.11},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":0}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":15}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":15}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.3,\"y\":-0.62},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.21,\"y\":-0.17},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.3,\"y\":-0.62},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.21,\"y\":-0.17},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.3,\"y\":-0.62},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.21,\"y\":-0.17},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-30.35},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"x\":1.56,\"y\":-1.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":12,\"tweenEasing\":0,\"x\":0.62,\"y\":-1.61},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"x\":1.56,\"y\":-1.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":12,\"tweenEasing\":0,\"x\":0.62,\"y\":-1.61},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"x\":1.56,\"y\":-1.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":12,\"tweenEasing\":0,\"x\":0.62,\"y\":-1.61},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-42.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-55.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-55.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":0,\"rotate\":21.7}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":0}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":3.52,\"y\":0.28},{\"duration\":3,\"tweenEasing\":0,\"x\":4.23,\"y\":2.19},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.97,\"y\":-2.79},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.28,\"y\":-3.39},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.67,\"y\":-0.35},{\"duration\":12,\"tweenEasing\":0,\"x\":2.15,\"y\":1.63},{\"duration\":6,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":15,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":3.52,\"y\":0.28},{\"duration\":3,\"tweenEasing\":0,\"x\":4.23,\"y\":2.19},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.97,\"y\":-2.79},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.28,\"y\":-3.39},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.67,\"y\":-0.35},{\"duration\":12,\"tweenEasing\":0,\"x\":2.15,\"y\":1.63},{\"duration\":6,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":15,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":3.52,\"y\":0.28},{\"duration\":3,\"tweenEasing\":0,\"x\":4.23,\"y\":2.19},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.97,\"y\":-2.79},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.28,\"y\":-3.39},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.67,\"y\":-0.35},{\"duration\":12,\"tweenEasing\":0,\"x\":2.15,\"y\":1.63},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":0,\"rotate\":-6.67}],\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":36,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":36,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":12}]}],\"slot\":[{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":18,\"value\":-1},{\"duration\":156},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":12,\"value\":-1},{\"duration\":159},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":9,\"value\":-1},{\"duration\":162},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":162},{\"duration\":6,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"rightHand\",\"displayFrame\":[{\"duration\":21},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":15}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":42,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15}]},{\"name\":\"rightFrontArm\",\"displayFrame\":[{\"duration\":21},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":15}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":42,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":174,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":174,\"value\":-1}]}]},{\"duration\":34,\"name\":\"Atk1\",\"bone\":[{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":-9.1,\"y\":6.7},{\"duration\":8,\"tweenEasing\":0,\"x\":-9.1,\"y\":6.7},{\"duration\":8,\"tweenEasing\":0,\"x\":-17.8,\"y\":1.8},{\"duration\":8,\"tweenEasing\":0,\"x\":-24,\"y\":0.4},{\"duration\":6,\"x\":-30.6}],\"rotateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"rotate\":-105.08},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-105.08},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-96.73},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-69.9},{\"duration\":6,\"rotate\":-94.04}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":-14.66,\"y\":10.66},{\"duration\":4,\"tweenEasing\":0,\"x\":-14.66,\"y\":10.66},{\"duration\":10,\"tweenEasing\":0,\"x\":-23.07,\"y\":6},{\"duration\":8,\"tweenEasing\":0,\"x\":-26.93,\"y\":9.46},{\"duration\":10,\"x\":-31.07,\"y\":7.33}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-108.91},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-108.91},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-127.09},{\"duration\":10,\"rotate\":-108.09}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":-4.54,\"y\":13.2},{\"duration\":6,\"tweenEasing\":0,\"x\":-4.54,\"y\":13.2},{\"duration\":10,\"tweenEasing\":0,\"x\":-13.6,\"y\":2.8},{\"duration\":4,\"tweenEasing\":0,\"x\":-23.46,\"y\":-4.26},{\"duration\":12,\"x\":-27.46,\"y\":-5.46}],\"rotateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"rotate\":31.2},{\"duration\":6,\"tweenEasing\":0,\"rotate\":31.2},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-0.05},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-26.91},{\"duration\":12,\"rotate\":-24.71}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0,\"x\":0.01,\"y\":0.07},{\"duration\":8,\"tweenEasing\":0,\"x\":0.01,\"y\":0.07},{\"duration\":8,\"tweenEasing\":0,\"x\":0.1,\"y\":0.49},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":8,\"tweenEasing\":0,\"rotate\":18.53},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-9},{\"duration\":8,\"tweenEasing\":0,\"rotate\":9.5},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.71,\"y\":0.04},{\"duration\":8,\"tweenEasing\":0,\"x\":0.18,\"y\":0.12},{\"duration\":8,\"tweenEasing\":0,\"x\":0.69,\"y\":-0.78},{\"duration\":8,\"tweenEasing\":0,\"x\":0.2,\"y\":0.24},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":13.83},{\"duration\":8,\"tweenEasing\":0,\"rotate\":25.06},{\"duration\":8,\"tweenEasing\":0,\"rotate\":17.69},{\"duration\":8,\"tweenEasing\":0,\"rotate\":12.39},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.88,\"y\":-0.6},{\"duration\":8,\"tweenEasing\":0,\"x\":8.4,\"y\":-0.74},{\"duration\":8,\"tweenEasing\":0,\"x\":8.01,\"y\":-0.58},{\"duration\":8,\"tweenEasing\":0,\"x\":1.14,\"y\":-0.23},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":40},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-12.39},{\"duration\":8,\"tweenEasing\":0,\"rotate\":4.99},{\"duration\":8,\"tweenEasing\":0,\"rotate\":8.69},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-3.42,\"y\":-1.95},{\"duration\":8,\"tweenEasing\":0,\"x\":12.95,\"y\":0.1},{\"duration\":8,\"tweenEasing\":0,\"x\":12.47,\"y\":0.42},{\"duration\":8,\"tweenEasing\":0,\"x\":1.5,\"y\":-2.19},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":66.79},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-95.1},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-98.37},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-44.89},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-4.17,\"y\":0.46},{\"duration\":8,\"tweenEasing\":0,\"x\":9.35,\"y\":1.83},{\"duration\":8,\"tweenEasing\":0,\"x\":8.79,\"y\":2.23},{\"duration\":8,\"tweenEasing\":0,\"x\":1.23,\"y\":0.91},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":15.73},{\"duration\":8,\"tweenEasing\":0,\"rotate\":2.95},{\"duration\":8,\"tweenEasing\":0,\"rotate\":2.83},{\"duration\":8,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-3.63,\"y\":-0.73},{\"duration\":8,\"tweenEasing\":0,\"x\":6.29,\"y\":2.04},{\"duration\":8,\"tweenEasing\":0,\"x\":6.13,\"y\":2.27},{\"duration\":8,\"tweenEasing\":0,\"x\":0.4,\"y\":0.34},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.02},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-27.15},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-15.36},{\"duration\":8,\"tweenEasing\":0,\"rotate\":3.41},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.47,\"y\":-1.01},{\"duration\":8,\"tweenEasing\":0,\"x\":1.27,\"y\":-0.09},{\"duration\":8,\"tweenEasing\":0,\"x\":1.44,\"y\":0.23},{\"duration\":8,\"tweenEasing\":0,\"y\":0.4},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.15},{\"duration\":8,\"tweenEasing\":0,\"rotate\":29.43},{\"duration\":8,\"tweenEasing\":0,\"rotate\":30.7},{\"duration\":8,\"tweenEasing\":0,\"rotate\":1.09},{\"duration\":0}],\"scaleFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":8,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":14,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.16},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.16},{\"duration\":0}],\"scaleFrame\":[{\"duration\":4,\"tweenEasing\":0},{\"duration\":4,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.1,\"y\":1.3},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":1.1},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":1.1},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.9},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":0.9},{\"duration\":4,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":2,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.2},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.2},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.54,\"y\":-0.17},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-34.26},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-8.09},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-36.51},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-12.04},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.7,\"y\":0.18},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.34,\"y\":0.12},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.44,\"y\":0.07},{\"duration\":8,\"tweenEasing\":0,\"x\":0.31,\"y\":0.26},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-36.51},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-41.51},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-50.9},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-42.18},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.96,\"y\":-0.32},{\"duration\":8,\"tweenEasing\":0,\"x\":1.4,\"y\":3.87},{\"duration\":8,\"tweenEasing\":0,\"x\":1.48,\"y\":4.19},{\"duration\":8,\"tweenEasing\":0,\"x\":-3.83,\"y\":-3.08},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":2,\"tweenEasing\":0,\"rotate\":8.81},{\"duration\":8,\"tweenEasing\":0,\"rotate\":7.26},{\"duration\":8,\"tweenEasing\":0,\"rotate\":15.7},{\"duration\":8,\"tweenEasing\":0,\"rotate\":25.83},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":4,\"value\":-1},{\"duration\":26},{\"duration\":4,\"value\":-1}],\"colorFrame\":[{\"duration\":4,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":8,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":8,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":2,\"value\":-1},{\"duration\":24},{\"duration\":8,\"value\":-1}],\"colorFrame\":[{\"duration\":2,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":4,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":10,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0},{\"duration\":10,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":2,\"value\":-1},{\"duration\":22},{\"duration\":10,\"value\":-1}],\"colorFrame\":[{\"duration\":2,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":10,\"tweenEasing\":0},{\"duration\":4,\"tweenEasing\":0},{\"duration\":12,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":34,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":34,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":34,\"value\":-1}]}]},{\"duration\":18,\"name\":\"Atked1\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-2.52,\"y\":1.72},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.66,\"y\":-0.23},{\"duration\":6,\"tweenEasing\":0,\"x\":3.25,\"y\":-1.37},{\"duration\":3,\"x\":4.8,\"y\":-6.29}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"rotate\":-20.99}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-4.5,\"y\":3.8},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.5,\"y\":3.8},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.13,\"y\":-1.13},{\"duration\":9,\"tweenEasing\":0,\"x\":-11.84,\"y\":-6.3},{\"duration\":0,\"x\":-24,\"y\":-16.3}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-9.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-9.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-12.21},{\"duration\":9,\"rotate\":-14.93}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-3.68,\"y\":5.44},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.76,\"y\":-7.24},{\"duration\":6,\"tweenEasing\":0,\"x\":1.84,\"y\":-9.36},{\"duration\":3,\"x\":6.56,\"y\":-13.6}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-20.49},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-21.44},{\"duration\":3,\"rotate\":-23.34}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":2.72,\"y\":0.96},{\"duration\":3,\"tweenEasing\":0,\"x\":-6.04,\"y\":-7.24},{\"duration\":9,\"tweenEasing\":0,\"x\":-6.73,\"y\":-8.87},{\"duration\":0,\"x\":-9.44,\"y\":-13.76}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":55.47},{\"duration\":9,\"tweenEasing\":0,\"rotate\":51.89},{\"duration\":0,\"rotate\":41.14}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.23},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-26.56},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-11.41},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.05},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.27},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.15,\"y\":2.3},{\"duration\":9,\"tweenEasing\":0,\"x\":-3.52,\"y\":1.7},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.93},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.8},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.16,\"y\":1.05},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.29,\"y\":0.44},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-15.21},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.28},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.98,\"y\":2.9},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.31,\"y\":0.72},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.26},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.02,\"y\":0.27},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.56,\"y\":-0.29},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-22.45},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.1,\"y\":1.19},{\"duration\":9,\"tweenEasing\":0,\"x\":0.4,\"y\":0.88},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.23},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.28},{\"duration\":0}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.64,\"y\":0.12},{\"duration\":9,\"tweenEasing\":0,\"x\":0.32,\"y\":-0.04},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.63},{\"duration\":9,\"tweenEasing\":0,\"rotate\":6.92},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.22,\"y\":-0.36},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.33},{\"duration\":9,\"tweenEasing\":0,\"rotate\":14.55},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.48,\"y\":2.58},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.94,\"y\":0.96},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.02},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.28},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":66}},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":49}},{\"duration\":9,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":18,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":18,\"value\":-1}]}]},{\"duration\":78,\"name\":\"Dying\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":7.2,\"y\":1.72},{\"duration\":18,\"tweenEasing\":0,\"x\":7.2,\"y\":1.72},{\"duration\":15,\"tweenEasing\":0,\"x\":3.2,\"y\":-5.14},{\"duration\":15,\"tweenEasing\":0,\"x\":4.23,\"y\":-11.54},{\"duration\":6,\"x\":0.57,\"y\":-16.23}],\"rotateFrame\":[{\"duration\":42,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":46.89},{\"duration\":6,\"rotate\":26.37}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":-1.6,\"y\":0.8},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":0.8},{\"duration\":18,\"tweenEasing\":0,\"x\":0.12,\"y\":-12.12},{\"duration\":18,\"tweenEasing\":0,\"x\":-4.34,\"y\":-19.77},{\"duration\":9,\"x\":-5.8,\"y\":-24.16}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":20.94},{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-3.4},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-10.49},{\"duration\":9,\"rotate\":-4.63}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":27,\"tweenEasing\":0,\"x\":-3.06,\"y\":11.2},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.06,\"y\":11.2},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.38,\"y\":-2.44},{\"duration\":12,\"tweenEasing\":0,\"x\":4.45,\"y\":-9.82},{\"duration\":9,\"x\":11.24,\"y\":-11.69}],\"rotateFrame\":[{\"duration\":27,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-12.51},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-13.38},{\"duration\":9,\"rotate\":9.35}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":2,\"y\":3.06},{\"duration\":9,\"tweenEasing\":0,\"x\":2,\"y\":3.06},{\"duration\":9,\"tweenEasing\":0,\"x\":0.54,\"y\":-3.87},{\"duration\":15,\"tweenEasing\":0,\"x\":-6.54,\"y\":-10.13},{\"duration\":24,\"x\":-20.27,\"y\":-14.8}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":29.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":2.18},{\"duration\":24,\"rotate\":-22.33}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":6,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":9,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.21},{\"duration\":3,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.21},{\"duration\":42,\"x\":-0.33,\"y\":-0.04}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":6,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-18.54},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-18.54},{\"duration\":24,\"tweenEasing\":0,\"rotate\":6.38},{\"duration\":6,\"tweenEasing\":0,\"rotate\":6.38},{\"duration\":12,\"rotate\":11.01}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.68,\"y\":-0.95},{\"duration\":6,\"tweenEasing\":0,\"x\":0.68,\"y\":-0.95},{\"duration\":9,\"tweenEasing\":0,\"x\":0.65,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":0.65,\"y\":-1.15},{\"duration\":15,\"tweenEasing\":0,\"x\":0.15,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.83,\"y\":0.94},{\"duration\":6,\"tweenEasing\":0,\"x\":0.64,\"y\":-3.63},{\"duration\":12,\"x\":0.49,\"y\":-4.08}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-33.88},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-26.38},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-26.38},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-47.87},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-65.3},{\"duration\":15,\"tweenEasing\":0,\"rotate\":46.32},{\"duration\":9,\"tweenEasing\":0,\"rotate\":15},{\"duration\":6,\"tweenEasing\":0,\"rotate\":113.18},{\"duration\":12,\"rotate\":106.03}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":69,\"x\":1.05,\"y\":1.05}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":3.92,\"y\":0.22},{\"duration\":3,\"tweenEasing\":0,\"x\":3.65,\"y\":-0.2},{\"duration\":6,\"tweenEasing\":0,\"x\":3.65,\"y\":0.04},{\"duration\":9,\"tweenEasing\":0,\"x\":5.47,\"y\":0.93},{\"duration\":3,\"tweenEasing\":0,\"x\":5.34,\"y\":-0.94},{\"duration\":15,\"tweenEasing\":0,\"x\":-1,\"y\":-5.83},{\"duration\":9,\"tweenEasing\":0,\"x\":-4.61,\"y\":-8.44},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.2,\"y\":19},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.65,\"y\":17.16},{\"duration\":0,\"x\":-1.65,\"y\":18.77}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.57},{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.2},{\"duration\":6,\"tweenEasing\":0,\"rotate\":16.88},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.9},{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.99},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.17},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.82},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-8.56},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-2.65},{\"duration\":0,\"rotate\":-7.04}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":3.38,\"y\":-2.31},{\"duration\":3,\"tweenEasing\":0,\"x\":3.38,\"y\":-2.55},{\"duration\":6,\"tweenEasing\":0,\"x\":3.38,\"y\":-2.31},{\"duration\":9,\"tweenEasing\":0,\"x\":6.04,\"y\":-0.88},{\"duration\":3,\"tweenEasing\":0,\"x\":5.92,\"y\":-2.75},{\"duration\":15,\"tweenEasing\":0,\"x\":0.43,\"y\":-5.91},{\"duration\":9,\"tweenEasing\":0,\"x\":1.24,\"y\":-0.91},{\"duration\":6,\"tweenEasing\":0,\"x\":1.44,\"y\":14.13},{\"duration\":12,\"tweenEasing\":0,\"x\":0.64,\"y\":12.94},{\"duration\":0,\"x\":0.8,\"y\":13.73}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":0.58},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.94},{\"duration\":6,\"tweenEasing\":0,\"rotate\":4.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.19},{\"duration\":3,\"tweenEasing\":0,\"rotate\":25.77},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-11.12},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.99},{\"duration\":18,\"rotate\":-14.6}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":4.09,\"y\":3.06},{\"duration\":3,\"tweenEasing\":0,\"x\":3.85,\"y\":2.9},{\"duration\":6,\"tweenEasing\":0,\"x\":3.85,\"y\":3.14},{\"duration\":9,\"tweenEasing\":0,\"x\":4.46,\"y\":5.23},{\"duration\":3,\"tweenEasing\":0,\"x\":4.79,\"y\":5.7},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.35,\"y\":-7.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.62,\"y\":-11.06},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.1,\"y\":18.3},{\"duration\":12,\"tweenEasing\":0,\"x\":-2.54,\"y\":16.94},{\"duration\":0,\"x\":0.02,\"y\":21.42}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":29.23},{\"duration\":3,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.15},{\"duration\":9,\"tweenEasing\":0,\"rotate\":15.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.69},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-29.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.43},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.43},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.43},{\"duration\":0,\"rotate\":-13.96}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":3.03,\"y\":0.83},{\"duration\":3,\"tweenEasing\":0,\"x\":3.03,\"y\":0.59},{\"duration\":6,\"tweenEasing\":0,\"x\":3.03,\"y\":0.83},{\"duration\":9,\"tweenEasing\":0,\"x\":3.4,\"y\":1.55},{\"duration\":3,\"tweenEasing\":0,\"x\":3.26,\"y\":-0.84},{\"duration\":15,\"tweenEasing\":0,\"x\":-2.59,\"y\":-8.54},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.19,\"y\":-6.93},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.19,\"y\":16.3},{\"duration\":12,\"tweenEasing\":0,\"x\":-0.23,\"y\":16.86},{\"duration\":0,\"x\":-0.23,\"y\":19.27}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-2.21},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.5},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-5.8},{\"duration\":9,\"tweenEasing\":0,\"rotate\":7.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-16.47},{\"duration\":6,\"tweenEasing\":0,\"rotate\":20.03},{\"duration\":12,\"rotate\":10.97}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.09,\"y\":0.24},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.09},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.33},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.09,\"y\":1.13},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.22,\"y\":-0.74},{\"duration\":15,\"tweenEasing\":0,\"x\":1.18,\"y\":-7.26},{\"duration\":9,\"tweenEasing\":0,\"x\":1.65,\"y\":-4.2},{\"duration\":6,\"tweenEasing\":0,\"x\":4.98,\"y\":12.38},{\"duration\":12,\"tweenEasing\":0,\"x\":5.3,\"y\":9.58},{\"duration\":0,\"x\":5.46,\"y\":10.7}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":6,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":21.06},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.64},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-10.59},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-22.36},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-49.93},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-57.44},{\"duration\":0,\"rotate\":-66.41}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.96},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.96},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.16},{\"duration\":15,\"tweenEasing\":0},{\"duration\":27,\"y\":0.9}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.42},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.42},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.26,\"y\":-0.32},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.26,\"y\":-1.92},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.26,\"y\":-2.64},{\"duration\":21,\"x\":-0.26,\"y\":-1.76}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.25},{\"duration\":6,\"tweenEasing\":0,\"x\":0.95,\"y\":0.85},{\"duration\":9,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.25,\"y\":1.05},{\"duration\":15,\"tweenEasing\":0,\"x\":1.85,\"y\":1.05},{\"duration\":6,\"tweenEasing\":0,\"x\":2.15,\"y\":1.05},{\"duration\":21,\"x\":1.55,\"y\":1.05}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":27,\"tweenEasing\":0,\"x\":-1.12,\"y\":-0.8},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.12,\"y\":-0.8},{\"duration\":18,\"x\":-0.52,\"y\":-0.81}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":6,\"tweenEasing\":0,\"rotate\":23.26},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.83},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-19.83},{\"duration\":9,\"tweenEasing\":0,\"rotate\":23.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.82},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.18},{\"duration\":9,\"tweenEasing\":0,\"rotate\":22.15},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-22.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-45.66},{\"duration\":0,\"rotate\":-37}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":12,\"tweenEasing\":0,\"x\":-0.66,\"y\":-0.14},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.66,\"y\":-0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.47,\"y\":-1.53},{\"duration\":6,\"tweenEasing\":0,\"x\":-3.21,\"y\":1.78},{\"duration\":12,\"tweenEasing\":0,\"x\":-2.78,\"y\":2.31},{\"duration\":0,\"x\":-3.77,\"y\":2.53}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":6,\"tweenEasing\":0,\"rotate\":59.44},{\"duration\":3,\"tweenEasing\":0,\"rotate\":75.81},{\"duration\":6,\"tweenEasing\":0,\"rotate\":75.81},{\"duration\":9,\"tweenEasing\":0,\"rotate\":75.52},{\"duration\":3,\"tweenEasing\":0,\"rotate\":94.88},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-2.28},{\"duration\":9,\"tweenEasing\":0,\"rotate\":12.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":12.5},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.33},{\"duration\":0,\"rotate\":11.94}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":69,\"x\":1.05,\"y\":1.05}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":6,\"tweenEasing\":0,\"x\":3.9,\"y\":0.71},{\"duration\":3,\"tweenEasing\":0,\"x\":3.42,\"y\":0.4},{\"duration\":6,\"tweenEasing\":0,\"x\":3.42,\"y\":0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":3.25,\"y\":1.44},{\"duration\":3,\"tweenEasing\":0,\"x\":3.12,\"y\":-0.43},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.94,\"y\":-5.88},{\"duration\":9,\"tweenEasing\":0,\"x\":0.06,\"y\":0.45},{\"duration\":6,\"tweenEasing\":0,\"x\":-2.26,\"y\":21.07},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.06,\"y\":19.87},{\"duration\":0,\"x\":-2.9,\"y\":20.67}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":6,\"tweenEasing\":0,\"rotate\":2.1},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.1},{\"duration\":6,\"tweenEasing\":0,\"rotate\":1.1},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.84},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-18.94},{\"duration\":15,\"tweenEasing\":0,\"rotate\":15.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.72},{\"duration\":18,\"rotate\":-52.69}]},{\"name\":\"backLight\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"y\":-3.65},{\"duration\":9,\"tweenEasing\":0,\"y\":-6.4},{\"duration\":6,\"tweenEasing\":0,\"y\":-6.4},{\"duration\":27,\"x\":0.4,\"y\":-20.8}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":0.69,\"y\":0.5},{\"duration\":9,\"tweenEasing\":0,\"x\":1.56,\"y\":1.71},{\"duration\":6,\"tweenEasing\":0,\"x\":0.6,\"y\":2.57},{\"duration\":27,\"x\":0.11,\"y\":2.79}]}],\"slot\":[{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":27,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":24,\"value\":{\"aM\":0}}]},{\"name\":\"leftArm\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12}]},{\"name\":\"head\",\"displayFrame\":[{\"duration\":78,\"value\":1}]},{\"name\":\"rightArm\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12}]},{\"name\":\"backLight\",\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":30,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":27,\"value\":{\"aM\":0}}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":78,\"value\":-1}]}]},{\"duration\":72,\"playTimes\":0,\"name\":\"Atked2\",\"bone\":[{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-9.24,\"y\":3.38},{\"duration\":18,\"tweenEasing\":0,\"x\":-9.24,\"y\":3.38},{\"duration\":21,\"tweenEasing\":0,\"x\":-8,\"y\":-5.07},{\"duration\":21,\"tweenEasing\":0,\"x\":-12.36,\"y\":-12.18},{\"duration\":9,\"x\":-12.27,\"y\":-18.84}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-28.4},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-16.18},{\"duration\":9,\"rotate\":-31.27}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-0.94,\"y\":5.33},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.94,\"y\":5.33},{\"duration\":21,\"tweenEasing\":0,\"x\":1.63,\"y\":-8.11},{\"duration\":18,\"tweenEasing\":0,\"x\":0.34,\"y\":-14.59},{\"duration\":0,\"x\":0.58,\"y\":-17.3}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-39.38},{\"duration\":18,\"rotate\":-22.72}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":2,\"y\":-8.5},{\"duration\":24,\"tweenEasing\":0,\"x\":0.5,\"y\":-14.6},{\"duration\":3,\"x\":-0.1,\"y\":-19.9}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":29.43},{\"duration\":24,\"tweenEasing\":0,\"rotate\":65.43},{\"duration\":24,\"tweenEasing\":0,\"rotate\":44.46},{\"duration\":3,\"rotate\":60}]},{\"name\":\"leftHand\",\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":15.92},{\"duration\":24,\"tweenEasing\":0,\"rotate\":12.42},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-2.24},{\"duration\":0,\"rotate\":15.92}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.3,\"y\":0.2},{\"duration\":0}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":29.06},{\"duration\":24,\"tweenEasing\":0,\"rotate\":26.02},{\"duration\":24,\"tweenEasing\":0,\"rotate\":16.87},{\"duration\":0,\"rotate\":29.06}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":2.06,\"y\":-0.8},{\"duration\":24,\"tweenEasing\":0,\"x\":2.73,\"y\":-0.64},{\"duration\":24,\"tweenEasing\":0,\"x\":3.04,\"y\":-0.99},{\"duration\":0,\"x\":2.06,\"y\":-0.8}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-12.27},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-15.89},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-12.23},{\"duration\":0,\"rotate\":-12.27}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":2.4,\"y\":0.46},{\"duration\":24,\"tweenEasing\":0,\"x\":2.4,\"y\":0.46},{\"duration\":24,\"tweenEasing\":0,\"x\":2.54,\"y\":0.65},{\"duration\":0,\"x\":2.4,\"y\":0.46}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-23.09},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-31.16},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-21.98},{\"duration\":0,\"rotate\":-23.09}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":2.1,\"y\":2.36},{\"duration\":24,\"tweenEasing\":0,\"x\":3.17,\"y\":2.85},{\"duration\":24,\"tweenEasing\":0,\"x\":3.07,\"y\":2.85},{\"duration\":0,\"x\":2.1,\"y\":2.36}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":27.28},{\"duration\":24,\"tweenEasing\":0,\"rotate\":21.12},{\"duration\":24,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":0,\"rotate\":27.28}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":1.72,\"y\":0.12},{\"duration\":24,\"tweenEasing\":0,\"x\":2.73,\"y\":0.63},{\"duration\":24,\"tweenEasing\":0,\"x\":2.71,\"y\":0.23},{\"duration\":0,\"x\":1.72,\"y\":0.12}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":13.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":9.28},{\"duration\":24,\"tweenEasing\":0,\"rotate\":14.42},{\"duration\":0,\"rotate\":13.3}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":0.12,\"y\":0.12},{\"duration\":24,\"tweenEasing\":0,\"x\":0.25,\"y\":-0.28},{\"duration\":0}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":13.71},{\"duration\":24,\"tweenEasing\":0,\"rotate\":17.86},{\"duration\":24,\"tweenEasing\":0,\"rotate\":16.11},{\"duration\":0,\"rotate\":13.71}]},{\"name\":\"leg\",\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":18,\"tweenEasing\":0,\"x\":1.1,\"y\":0.8},{\"duration\":6,\"tweenEasing\":0,\"x\":1.1,\"y\":0.8},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":72,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":24,\"tweenEasing\":0,\"rotate\":1.26},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-11.03},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":72,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":1.98},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-1.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":0,\"rotate\":1.98}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":3.28,\"y\":1.58},{\"duration\":24,\"tweenEasing\":0,\"x\":3.28,\"y\":1.58},{\"duration\":24,\"tweenEasing\":0,\"x\":3.54,\"y\":1.45},{\"duration\":0,\"x\":3.28,\"y\":1.58}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":29.2},{\"duration\":24,\"tweenEasing\":0,\"rotate\":11.66},{\"duration\":24,\"tweenEasing\":0,\"rotate\":23.61},{\"duration\":0,\"rotate\":29.2}]}],\"slot\":[{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]}]},{\"duration\":102,\"playTimes\":0,\"name\":\"Idle2\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":39,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":3.2,\"y\":-5.6},{\"duration\":24,\"tweenEasing\":0,\"x\":3.2,\"y\":-11.9},{\"duration\":0,\"x\":7,\"y\":-15.1}],\"rotateFrame\":[{\"duration\":39,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-27.23},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-17.6},{\"duration\":0,\"rotate\":-35.03}]},{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":27,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-5.2,\"y\":-9.12},{\"duration\":21,\"tweenEasing\":0,\"x\":-5.04,\"y\":-16.4},{\"duration\":12,\"x\":-6.4,\"y\":-19.84}],\"rotateFrame\":[{\"duration\":27,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":22.39},{\"duration\":21,\"tweenEasing\":0,\"rotate\":39.5},{\"duration\":12,\"rotate\":22.14}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":4.4,\"y\":-6.1},{\"duration\":24,\"tweenEasing\":0,\"x\":5.5,\"y\":-13.8},{\"duration\":24,\"x\":6.1,\"y\":-19.3}],\"rotateFrame\":[{\"duration\":33,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-24.94},{\"duration\":24,\"rotate\":-14.84}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":2.4,\"y\":-5.6},{\"duration\":18,\"tweenEasing\":0,\"x\":3.8,\"y\":-11.1},{\"duration\":9,\"x\":4.3,\"y\":-15.2}],\"rotateFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-17.53},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-36.39},{\"duration\":9,\"rotate\":-23.84}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":-2.27,\"y\":-6.67},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.74,\"y\":-10.54},{\"duration\":33,\"x\":-3.06,\"y\":-17.46}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.36},{\"duration\":18,\"tweenEasing\":0,\"rotate\":68.81},{\"duration\":33,\"rotate\":27.88}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":18,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":6.55},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-0.86},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":3.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.22},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-1.2,\"y\":0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.46},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-1.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-1.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-1.1},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.71},{\"duration\":0,\"x\":-1.2,\"y\":0.14}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":37.04},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":35.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":18,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-1.2,\"y\":0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.42,\"y\":-1.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.19},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-1.81},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.19},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-1.81},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.19},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-1.81},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.27},{\"duration\":0,\"x\":-1.2,\"y\":0.14}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":22.76},{\"duration\":9,\"tweenEasing\":0,\"rotate\":19.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":25.64},{\"duration\":9,\"tweenEasing\":0,\"rotate\":20.36},{\"duration\":9,\"tweenEasing\":0,\"rotate\":26.38},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":22.76},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-1.06,\"y\":0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.14,\"y\":0.3},{\"duration\":9,\"tweenEasing\":0,\"x\":0.28,\"y\":-0.74},{\"duration\":9,\"tweenEasing\":0,\"x\":0.34,\"y\":-0.17},{\"duration\":9,\"tweenEasing\":0,\"x\":0.28,\"y\":-0.74},{\"duration\":9,\"tweenEasing\":0,\"x\":0.34,\"y\":0.07},{\"duration\":9,\"tweenEasing\":0,\"x\":0.28,\"y\":-1.06},{\"duration\":9,\"tweenEasing\":0,\"x\":0.34,\"y\":0.3},{\"duration\":18,\"tweenEasing\":0,\"x\":0.28,\"y\":-1.06},{\"duration\":0,\"x\":-1.06,\"y\":0.14}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.1},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.06},{\"duration\":54,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"rotate\":-4.1}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.51,\"y\":-0.36},{\"duration\":9,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.3},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":-1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.3},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":-1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.39},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":-1},{\"duration\":18,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.86},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-38.24},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-39.74},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-45.24},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-38.24},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.16,\"y\":0.16},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.49},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.48},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.73},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.56},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.97},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.48},{\"duration\":18,\"tweenEasing\":0,\"y\":-1.05},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.48},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":0,\"rotate\":-6.48}],\"scaleFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":18,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.06},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.06},{\"duration\":30}],\"scaleFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.04,\"y\":1.1},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.04,\"y\":1.1},{\"duration\":30}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":18,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.2,\"y\":0.01},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":9,\"tweenEasing\":0,\"rotate\":45.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":46.54},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":18,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":9,\"tweenEasing\":0,\"x\":0.76,\"y\":0.39},{\"duration\":9,\"tweenEasing\":0,\"x\":1.13,\"y\":-0.75},{\"duration\":9,\"tweenEasing\":0,\"x\":0.92,\"y\":-0.26},{\"duration\":9,\"tweenEasing\":0,\"x\":1.13,\"y\":-0.75},{\"duration\":9,\"tweenEasing\":0,\"x\":0.92,\"y\":-0.26},{\"duration\":9,\"tweenEasing\":0,\"x\":1.13,\"y\":-0.75},{\"duration\":9,\"tweenEasing\":0,\"x\":0.92,\"y\":-0.49},{\"duration\":18,\"tweenEasing\":0,\"x\":1.13,\"y\":-1.07},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.66},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-31.48},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-27.88},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-34.28},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-35.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-23.55},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-31.48},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":39,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":27,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":12,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":33,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":102,\"value\":-1}]}]},{\"duration\":66,\"playTimes\":0,\"name\":\"Idle1\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":3.46,\"y\":-6.84},{\"duration\":0,\"x\":5.42,\"y\":-9.87}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"rotate\":-10.38}]},{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":-4,\"y\":-3.31},{\"duration\":15,\"tweenEasing\":0,\"x\":-5.03,\"y\":-8.91},{\"duration\":9,\"x\":-5.37,\"y\":-12.35}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":27.97},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-3.77},{\"duration\":9,\"rotate\":-10.94}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":3.88,\"y\":-6.4},{\"duration\":21,\"tweenEasing\":0,\"x\":6.75,\"y\":-10.97},{\"duration\":9,\"x\":6.51,\"y\":-13.37}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":19.87},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-1.94},{\"duration\":9,\"rotate\":-29.35}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":3.4,\"y\":-7.87},{\"duration\":18,\"tweenEasing\":0,\"x\":3.13,\"y\":-14.13},{\"duration\":0,\"x\":3.67,\"y\":-17.86}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-25.82},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-13.32},{\"duration\":0,\"rotate\":-23.08}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":-2.32,\"y\":-5.92},{\"duration\":21,\"tweenEasing\":0,\"x\":-5.84,\"y\":-9.44},{\"duration\":6,\"x\":-7.52,\"y\":-12}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":35.13},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.98},{\"duration\":6,\"rotate\":29.58}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.29,\"y\":0.43},{\"duration\":24,\"tweenEasing\":0,\"x\":0.29,\"y\":0.43},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.45},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-6.58},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.03,\"y\":0.23},{\"duration\":24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-3.35},{\"duration\":24,\"tweenEasing\":0,\"rotate\":7.11},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.08,\"y\":-0.56},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.08,\"y\":-0.56},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":13.8},{\"duration\":24,\"tweenEasing\":0,\"rotate\":4.52},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.1,\"y\":-0.99},{\"duration\":24,\"tweenEasing\":0,\"x\":0.18,\"y\":-0.92},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":16.02},{\"duration\":24,\"tweenEasing\":0,\"rotate\":12.08},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.16,\"y\":-0.69},{\"duration\":24,\"tweenEasing\":0,\"y\":-0.45},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.32,\"y\":-1.9},{\"duration\":24,\"tweenEasing\":0,\"x\":0.32,\"y\":-0.78},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-10.95},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-8.38},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"y\":-0.72},{\"duration\":24,\"tweenEasing\":0,\"x\":0.08,\"y\":-0.32},{\"duration\":0}],\"scaleFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":24,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":66,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":21,\"tweenEasing\":0,\"rotate\":16.12},{\"duration\":24,\"tweenEasing\":0,\"rotate\":15.51},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.09,\"y\":0.52},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.07,\"y\":0.13},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":21,\"tweenEasing\":0,\"rotate\":45.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":32.17},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":21,\"tweenEasing\":0,\"x\":0.74,\"y\":0.46},{\"duration\":24,\"tweenEasing\":0,\"x\":1.06,\"y\":0.7},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-26.33},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-19.75},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":66,\"value\":-1}]}]},{\"duration\":30,\"name\":\"InAirIdle1\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":30,\"x\":13.3,\"y\":-18.8}],\"rotateFrame\":[{\"duration\":30,\"rotate\":56.49}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":30,\"x\":4.34,\"y\":-5.6}],\"rotateFrame\":[{\"duration\":30,\"rotate\":-56.61}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":30,\"x\":-6.29,\"y\":-9.26}],\"rotateFrame\":[{\"duration\":30,\"rotate\":-42.15}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":30,\"x\":-14.29,\"y\":-4.12}],\"rotateFrame\":[{\"duration\":30,\"rotate\":26.09}]},{\"name\":\"leftHand\",\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":15,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":0,\"rotate\":8.11}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":30,\"x\":0.75,\"y\":-1.99}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":0,\"rotate\":17.13}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-7.12,\"y\":1.65},{\"duration\":15,\"tweenEasing\":0,\"x\":-10.38,\"y\":-0.4},{\"duration\":0,\"x\":-7.12,\"y\":1.65}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":0,\"rotate\":-26.65}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-2.9,\"y\":-0.6},{\"duration\":0,\"x\":-0.18,\"y\":0.53}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":15,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":0,\"rotate\":-161.51}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1},{\"duration\":0,\"x\":1.1,\"y\":1.1}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-8.84,\"y\":0.61},{\"duration\":15,\"tweenEasing\":0,\"x\":-9.28,\"y\":-1},{\"duration\":0,\"x\":-8.84,\"y\":0.61}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":0,\"rotate\":-41.98}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-11.15,\"y\":-1.1},{\"duration\":15,\"tweenEasing\":0,\"x\":-10.46,\"y\":-2.84},{\"duration\":0,\"x\":-11.15,\"y\":-1.1}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":0,\"rotate\":-45.17}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-1.44,\"y\":-0.71},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.84,\"y\":-0.35},{\"duration\":0,\"x\":-1.44,\"y\":-0.71}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":0,\"rotate\":-28.34}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":30,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-30.35},{\"duration\":0,\"rotate\":-40.03}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":15,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":0,\"x\":-0.55,\"y\":0.89}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.6},{\"duration\":0,\"rotate\":-60.6}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-4.97,\"y\":-2.79},{\"duration\":15,\"tweenEasing\":0,\"x\":-5.28,\"y\":-3.39},{\"duration\":0,\"x\":-4.97,\"y\":-2.79}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":0,\"rotate\":-61.71}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":15,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":0,\"x\":1.1,\"y\":-1.1}]},{\"name\":\"backLight\",\"scaleFrame\":[{\"duration\":30,\"x\":0,\"y\":0}]}],\"slot\":[{\"name\":\"rightHand\",\"displayFrame\":[{\"duration\":30,\"value\":-1}],\"colorFrame\":[{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"rightFrontArm\",\"displayFrame\":[{\"duration\":30,\"value\":-1}],\"colorFrame\":[{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]}]}],\"defaultActions\":[{\"gotoAndPlay\":\"Idle1\"}]}]}", "subMetas": {} } \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json index e0f5453..517fd0a 100644 --- a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json +++ b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json @@ -1 +1 @@ -{"frameRate":60,"name":"SoldierFireGhost","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":60,"name":"SoldierFireGhost","aabb":{"x":-17.1,"y":-45.87,"width":38.84,"height":47.16},"bone":[{"name":"root"},{"inheritScale":false,"length":6.5,"name":"leftShoulder","parent":"root","transform":{"x":-5.60925,"y":-28.39315,"skX":156.8918,"skY":156.8918}},{"inheritScale":false,"name":"backLight","parent":"root","transform":{"x":0.1,"y":-23.0462,"scX":3,"scY":3}},{"inheritScale":false,"length":8.5,"name":"rightArm","parent":"root","transform":{"x":6.7954,"y":-26.8018,"skX":46.9769,"skY":46.9769}},{"inheritScale":false,"name":"effect4","parent":"root","transform":{"x":6.32,"y":-21.38935,"skX":-9.349,"skY":-9.349}},{"inheritScale":false,"name":"effect7","parent":"root"},{"inheritScale":false,"name":"effect3","parent":"root","transform":{"x":5.75,"y":-27.36735}},{"inheritScale":false,"length":8.5,"name":"leg","parent":"root","transform":{"x":-0.45525,"y":-1.41005,"skX":-85.7242,"skY":-85.7242}},{"inheritScale":false,"length":11,"name":"body","parent":"root","transform":{"x":1.00195,"y":-12.3951,"skX":-82.2714,"skY":-82.2714}},{"inheritScale":false,"length":6,"name":"rightShoulder","parent":"root","transform":{"x":9.1041,"y":-26.3402,"skX":22.0857,"skY":22.0857}},{"inheritScale":false,"length":5.5,"name":"head","parent":"root","transform":{"x":4.103,"y":-31.2905,"skX":-83.4757,"skY":-83.4757}},{"inheritScale":false,"length":5,"name":"leftArm","parent":"root","transform":{"x":-6.5059,"y":-26.80925,"skX":122.5397,"skY":122.5397}},{"inheritScale":false,"name":"effect2","parent":"root","transform":{"x":-5.0143,"y":-28.2204,"skX":-79.3059,"skY":-79.3059}},{"inheritScale":false,"name":"effect5","parent":"root","transform":{"x":-15.0286,"y":-16.5986,"skX":-72.4737,"skY":-72.4737}},{"inheritScale":false,"name":"effect6","parent":"root","transform":{"x":13.28445,"y":-15.03735}},{"inheritScale":false,"name":"rightFrontArm","parent":"rightArm","transform":{"x":8.82335,"y":0.6604,"skX":10.7237,"skY":10.7237}},{"inheritScale":false,"name":"leftFrontArm","parent":"leftArm","transform":{"x":7.37235,"y":1.7869,"skX":-39.1583,"skY":-39.1583}},{"inheritScale":false,"name":"rightHand","parent":"rightFrontArm","transform":{"x":5.3646,"y":-2.8911,"skX":21.9835,"skY":21.9835}},{"inheritScale":false,"name":"leftHand","parent":"leftFrontArm","transform":{"x":7.3904,"y":1.4291,"skX":-25.7356,"skY":-25.7356}}],"slot":[{"name":"backLight","parent":"backLight"},{"name":"rightArm","parent":"rightArm"},{"name":"leg","parent":"leg"},{"name":"body","parent":"body"},{"name":"rightShoulder","parent":"rightShoulder"},{"name":"rightFrontArm","parent":"rightFrontArm"},{"name":"rightHand","parent":"rightHand"},{"name":"leftArm","parent":"leftArm"},{"name":"leftShoulder","parent":"leftShoulder"},{"name":"leftFrontArm","parent":"leftFrontArm"},{"name":"head","parent":"head"},{"name":"leftHand","parent":"leftHand"},{"name":"effect2","parent":"effect2"},{"name":"effect3","parent":"effect3"},{"name":"effect4","parent":"effect4"},{"name":"effect5","parent":"effect5"},{"name":"effect6","parent":"effect6"},{"displayIndex":-1,"name":"effect7","parent":"effect7"}],"skin":[{"slot":[{"name":"effect5","display":[{"name":"huomiao01"}]},{"name":"leftShoulder","display":[{"name":"yinmo03","transform":{"x":2.4,"y":-0.06,"skX":-154.62,"skY":-154.62},"path":"leftShoulder"}]},{"name":"leg","display":[{"name":"yinmoqe00","transform":{"x":5.32,"y":-0.07,"skX":85.72,"skY":85.72}}]},{"name":"head","display":[{"name":"yinmo01","transform":{"x":6.5,"y":-1.04,"skX":82.3,"skY":82.3,"scX":1.5,"scY":1.5},"path":"head"},{"name":"head2","transform":{"x":6.64,"y":-1.22,"skX":83.48,"skY":83.48}}]},{"name":"body","display":[{"name":"yinmo02","transform":{"x":6.41,"y":-1.19,"skX":82.27,"skY":82.27},"path":"body"}]},{"name":"backLight","display":[{"name":"biu"}]},{"name":"effect2","display":[{"name":"huomiao01"}]},{"name":"rightFrontArm","display":[{"name":"yinmo09","transform":{"x":1.87,"y":-0.59,"skX":-60.14,"skY":-60.14},"path":"rightFrontArm"}]},{"name":"rightArm","display":[{"name":"yinmo08","transform":{"x":4.54,"y":-0.2,"skX":-54.4,"skY":-54.4},"path":"rightArm"}]},{"name":"leftArm","display":[{"name":"yinmo05","transform":{"x":3.46,"y":0.04,"skX":-112.43,"skY":-112.43},"path":"leftArm"}]},{"name":"effect6","display":[{"name":"huomiao01"}]},{"name":"leftFrontArm","display":[{"name":"yinmo06","transform":{"x":3.15,"y":0.49,"skX":-76.83,"skY":-76.83},"path":"leftFrontArm"}]},{"name":"effect4","display":[{"name":"huomiao01"}]},{"name":"leftHand","display":[{"name":"yinmo07","transform":{"x":2.04,"y":-0.17,"skX":-66.8,"skY":-66.8},"path":"leftHand"}]},{"name":"rightShoulder","display":[{"name":"yinmo04","transform":{"x":1.71,"y":-0.41,"skX":-28.61,"skY":-28.61},"path":"rightShoulder"}]},{"name":"effect3","display":[{"name":"huomiao01"}]},{"name":"rightHand","display":[{"name":"yinmo10","transform":{"x":2.69,"y":-0.12,"skX":-63.84,"skY":-63.84},"path":"rightHand"}]}]}],"animation":[{"duration":60,"playTimes":0,"name":"Walking","bone":[{"name":"effect5","translateFrame":[{"duration":12,"tweenEasing":0,"x":22.08,"y":7.04},{"duration":12,"tweenEasing":0,"x":22.08,"y":7.04},{"duration":15,"tweenEasing":0,"x":15.52,"y":7.68},{"duration":15,"tweenEasing":0,"x":11.04,"y":-0.32},{"duration":6,"x":-5.12,"y":-11.68}],"rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":21,"rotate":7.3}]},{"name":"effect4","translateFrame":[{"duration":6,"tweenEasing":0,"x":3.68,"y":-1.24},{"duration":9,"tweenEasing":0,"x":3.68,"y":-1.24},{"duration":15,"tweenEasing":0,"x":-1,"y":-7.88},{"duration":12,"tweenEasing":0,"x":-7.24,"y":-10.24},{"duration":12,"tweenEasing":0,"x":-7.32,"y":-18.4},{"duration":6,"x":-20.28,"y":-26.52}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-49.96},{"duration":15,"tweenEasing":0,"rotate":-49.96},{"duration":12,"tweenEasing":0,"rotate":-84.92},{"duration":12,"tweenEasing":0,"rotate":-11.77},{"duration":6,"rotate":-28.57}]},{"name":"effect3","translateFrame":[{"duration":6,"tweenEasing":0,"x":-7.4,"y":12.8},{"duration":12,"tweenEasing":0,"x":-7.4,"y":12.8},{"duration":18,"tweenEasing":0,"x":-14.6,"y":8.8},{"duration":12,"tweenEasing":0,"x":-19,"y":4.6},{"duration":9,"tweenEasing":0,"x":-28.2,"y":2.2},{"duration":3,"x":-34.4,"y":2}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-59.23},{"duration":12,"tweenEasing":0,"rotate":-36.85},{"duration":9,"tweenEasing":0,"rotate":-66.48},{"duration":3,"rotate":-111.5}]},{"name":"effect2","translateFrame":[{"duration":3,"tweenEasing":0,"x":5.28,"y":5.6},{"duration":12,"tweenEasing":0,"x":5.28,"y":5.6},{"duration":15,"tweenEasing":0,"x":-0.8,"y":0.8},{"duration":18,"tweenEasing":0,"x":-9.92,"y":1.6},{"duration":9,"tweenEasing":0,"x":-14.88,"y":-3.36},{"duration":3,"x":-19.84,"y":-12}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-61.22},{"duration":9,"tweenEasing":0,"rotate":0.48},{"duration":3,"rotate":27.59}]},{"name":"leftHand","rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":11.3},{"duration":15,"tweenEasing":0,"rotate":15.68},{"duration":15,"tweenEasing":0,"rotate":-5.06},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":0.07,"y":0.59},{"duration":15,"tweenEasing":0,"x":0.23,"y":-0.53},{"duration":15,"tweenEasing":0,"x":-0.17,"y":-1.03},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-4.65},{"duration":15,"tweenEasing":0,"rotate":12.03},{"duration":15,"tweenEasing":0,"rotate":23.96},{"duration":15,"tweenEasing":0,"rotate":16.54},{"duration":0,"rotate":-4.65}]},{"name":"leftShoulder","translateFrame":[{"duration":15,"tweenEasing":0,"x":2.88},{"duration":15,"tweenEasing":0,"x":2.57,"y":0.97},{"duration":15,"tweenEasing":0,"x":4.14,"y":-0.08},{"duration":15,"tweenEasing":0,"x":3.68,"y":1.09},{"duration":0,"x":2.88}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":20.1},{"duration":15,"tweenEasing":0,"rotate":-5.43},{"duration":15,"tweenEasing":0,"rotate":10.13},{"duration":15,"tweenEasing":0,"rotate":-2.7},{"duration":0,"rotate":20.1}]},{"name":"leftArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":1.92,"y":-0.48},{"duration":15,"tweenEasing":0,"x":3.59,"y":0.72},{"duration":15,"tweenEasing":0,"x":6.63,"y":1.54},{"duration":15,"tweenEasing":0,"x":5.95,"y":1.94},{"duration":0,"x":1.92,"y":-0.48}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":26.91},{"duration":15,"tweenEasing":0,"rotate":-35.34},{"duration":15,"tweenEasing":0,"rotate":-70.51},{"duration":15,"tweenEasing":0,"rotate":-30.69},{"duration":0,"rotate":26.91}]},{"name":"head","translateFrame":[{"duration":15,"tweenEasing":0,"x":2.72,"y":0.64},{"duration":15,"tweenEasing":0,"x":2.48,"y":2.44},{"duration":15,"tweenEasing":0,"x":3.65,"y":0.32},{"duration":15,"tweenEasing":0,"x":3.79,"y":2.71},{"duration":0,"x":2.72,"y":0.64}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":0.59},{"duration":15,"tweenEasing":0,"rotate":0.59},{"duration":15,"tweenEasing":0,"rotate":-0.72},{"duration":15,"tweenEasing":0,"rotate":-0.72},{"duration":0,"rotate":0.59}]},{"name":"rightShoulder","translateFrame":[{"duration":15,"tweenEasing":0,"x":1.71,"y":0.58},{"duration":15,"tweenEasing":0,"x":0.85,"y":1.34},{"duration":15,"tweenEasing":0,"x":1.95,"y":0.09},{"duration":15,"tweenEasing":0,"x":2.81,"y":1.94},{"duration":0,"x":1.71,"y":0.58}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":10.12},{"duration":15,"tweenEasing":0,"rotate":-14.23},{"duration":15,"tweenEasing":0,"rotate":5.57},{"duration":15,"tweenEasing":0,"rotate":-13.84},{"duration":0,"rotate":10.12}]},{"name":"body","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"y":1.36},{"duration":15,"tweenEasing":0,"x":0.48,"y":-0.09},{"duration":15,"tweenEasing":0,"x":0.71,"y":1.67},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.24},{"duration":15,"tweenEasing":0,"rotate":13},{"duration":15,"tweenEasing":0,"rotate":16.36},{"duration":15,"tweenEasing":0,"rotate":14.15},{"duration":0,"rotate":11.24}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-0.48},{"duration":6,"tweenEasing":0,"x":-0.4},{"duration":6,"tweenEasing":0,"x":-0.48},{"duration":6,"tweenEasing":0,"x":-0.48},{"duration":12,"tweenEasing":0,"x":0.32},{"duration":6,"tweenEasing":0,"x":0.32},{"duration":6,"tweenEasing":0,"x":-0.16},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":1.02},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-0.52},{"duration":6}],"scaleFrame":[{"duration":6,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":6,"tweenEasing":0,"y":1.1},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":12,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":12,"y":0.9}]},{"name":"rightHand","translateFrame":[{"duration":60,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-8},{"duration":15,"tweenEasing":0,"rotate":-1.89},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":0.14},{"duration":0,"rotate":-8}]},{"name":"rightFrontArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.1,"y":-0.85},{"duration":15,"tweenEasing":0,"x":0.41,"y":-1.03},{"duration":15,"tweenEasing":0,"x":0.06,"y":-0.05},{"duration":3,"tweenEasing":0,"x":0.06,"y":-0.05},{"duration":6,"tweenEasing":0,"x":-0.04,"y":-1.27},{"duration":6,"tweenEasing":0,"y":-1.32},{"duration":0,"x":-0.1,"y":-0.85}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-43.73},{"duration":15,"tweenEasing":0,"rotate":-66.02},{"duration":15,"tweenEasing":0,"rotate":-6.47},{"duration":3,"tweenEasing":0,"rotate":-62.6},{"duration":6,"tweenEasing":0,"rotate":-58.82},{"duration":6,"tweenEasing":0,"rotate":-51.28},{"duration":0,"rotate":-43.73}]},{"name":"rightArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":2.16,"y":2.04},{"duration":15,"tweenEasing":0,"x":2.48,"y":1.17},{"duration":15,"tweenEasing":0,"x":-4.18,"y":-2.13},{"duration":15,"tweenEasing":0,"x":2.1,"y":1.69},{"duration":0,"x":2.16,"y":2.04}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.28},{"duration":15,"tweenEasing":0,"rotate":63.1},{"duration":15,"tweenEasing":0,"rotate":74.64},{"duration":15,"tweenEasing":0,"rotate":55.11},{"duration":0,"rotate":11.28}]}],"slot":[{"name":"effect5","displayFrame":[{"duration":12,"value":-1},{"duration":45},{"duration":3,"value":-1}],"colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect4","displayFrame":[{"duration":6,"value":-1},{"duration":51},{"duration":3,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":27,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":6,"value":-1},{"duration":54},{"duration":0,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":60},{"duration":0,"value":-1}],"colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":33,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":60,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":60,"value":-1}]}]},{"duration":174,"name":"Atk2","bone":[{"name":"effect5","translateFrame":[{"duration":18,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":13.3,"y":-18.8},{"duration":12,"tweenEasing":0,"x":14.8,"y":-23.5},{"duration":24,"tweenEasing":0,"x":11.2,"y":-31.6},{"duration":12,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":13.3,"y":-18.8},{"duration":12,"tweenEasing":0,"x":14.8,"y":-23.5},{"duration":24,"tweenEasing":0,"x":11.2,"y":-31.6},{"duration":12,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":13.3,"y":-18.8},{"duration":9,"tweenEasing":0,"x":14.8,"y":-23.5},{"duration":3,"x":11.2,"y":-31.6}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":12,"tweenEasing":0,"rotate":11.57},{"duration":24,"tweenEasing":0,"rotate":61.88},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":12,"tweenEasing":0,"rotate":11.57},{"duration":24,"tweenEasing":0,"rotate":61.88},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":9,"tweenEasing":0,"rotate":11.57},{"duration":3,"rotate":61.88}]},{"name":"effect4","translateFrame":[{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":15,"tweenEasing":0,"x":4.34,"y":-5.6},{"duration":12,"tweenEasing":0,"x":-1.95,"y":-16.23},{"duration":21,"tweenEasing":0,"x":2.52,"y":-23.89},{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":15,"tweenEasing":0,"x":4.34,"y":-5.6},{"duration":12,"tweenEasing":0,"x":-1.95,"y":-16.23},{"duration":21,"tweenEasing":0,"x":2.52,"y":-23.89},{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":12,"tweenEasing":0,"x":4.34,"y":-5.6},{"duration":12,"tweenEasing":0,"x":-1.95,"y":-16.23},{"duration":6,"x":2.52,"y":-23.89}],"rotateFrame":[{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":15,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":21,"tweenEasing":0,"rotate":-53.65},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":15,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":21,"tweenEasing":0,"rotate":-53.65},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":12,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":6,"rotate":-53.65}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0,"y":7.54},{"duration":15,"tweenEasing":0,"y":7.54},{"duration":15,"tweenEasing":0,"x":-6.29,"y":-9.26},{"duration":12,"tweenEasing":0,"x":-12.12,"y":-17.95},{"duration":18,"tweenEasing":0,"x":-18.97,"y":-21.37},{"duration":15,"tweenEasing":0,"y":7.54},{"duration":15,"tweenEasing":0,"x":-6.29,"y":-9.26},{"duration":12,"tweenEasing":0,"x":-12.12,"y":-17.95},{"duration":18,"tweenEasing":0,"x":-18.97,"y":-21.37},{"duration":15,"tweenEasing":0,"y":7.54},{"duration":12,"tweenEasing":0,"x":-6.29,"y":-9.26},{"duration":12,"tweenEasing":0,"x":-12.12,"y":-17.95},{"duration":6,"x":-18.97,"y":-21.37}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-42.15},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":18,"tweenEasing":0,"rotate":-111.08},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":18,"tweenEasing":0,"rotate":-111.08},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":6,"rotate":-111.08}]},{"name":"effect2","translateFrame":[{"duration":6,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":9,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":15,"tweenEasing":0,"x":-1.6,"y":-0.23},{"duration":15,"tweenEasing":0,"x":-14.29,"y":-4.12},{"duration":15,"tweenEasing":0,"x":-13.71,"y":-10.29},{"duration":15,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":15,"tweenEasing":0,"x":-1.6,"y":-0.23},{"duration":15,"tweenEasing":0,"x":-14.29,"y":-4.12},{"duration":15,"tweenEasing":0,"x":-13.71,"y":-10.29},{"duration":15,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":15,"tweenEasing":0,"x":-1.6,"y":-0.23},{"duration":15,"tweenEasing":0,"x":-14.29,"y":-4.12},{"duration":9,"x":-13.71,"y":-10.29}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":15,"tweenEasing":0,"rotate":57.19},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":15,"tweenEasing":0,"rotate":57.19},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":9,"rotate":57.19}]},{"name":"leftHand","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":3,"tweenEasing":0,"x":0.35,"y":0.04},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.1},{"duration":12,"tweenEasing":0,"x":0.06,"y":0.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":3,"tweenEasing":0,"x":0.35,"y":0.04},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.1},{"duration":12,"tweenEasing":0,"x":0.06,"y":0.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":3,"tweenEasing":0,"x":0.35,"y":0.04},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.1},{"duration":12,"tweenEasing":0,"x":0.06,"y":0.29},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.6},{"duration":3,"tweenEasing":0,"x":0.14,"y":0.17},{"duration":15,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.33,"y":-1.5},{"duration":12,"tweenEasing":0,"x":0.24,"y":-0.45},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.6},{"duration":3,"tweenEasing":0,"x":0.14,"y":0.17},{"duration":15,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.33,"y":-1.5},{"duration":12,"tweenEasing":0,"x":0.24,"y":-0.45},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.6},{"duration":3,"tweenEasing":0,"x":0.14,"y":0.17},{"duration":15,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.33,"y":-1.5},{"duration":12,"tweenEasing":0,"x":0.24,"y":-0.45},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":0}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.16,"y":2.63},{"duration":3,"tweenEasing":0,"x":8,"y":1.03},{"duration":15,"tweenEasing":0,"x":-7.12,"y":1.65},{"duration":3,"tweenEasing":0,"x":-10.38,"y":-0.4},{"duration":3,"tweenEasing":0,"x":-3.7,"y":-0.01},{"duration":12,"tweenEasing":0,"x":4.67,"y":1.6},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.16,"y":2.63},{"duration":3,"tweenEasing":0,"x":8,"y":1.03},{"duration":15,"tweenEasing":0,"x":-7.12,"y":1.65},{"duration":3,"tweenEasing":0,"x":-10.38,"y":-0.4},{"duration":3,"tweenEasing":0,"x":-3.7,"y":-0.01},{"duration":12,"tweenEasing":0,"x":4.67,"y":1.6},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.16,"y":2.63},{"duration":3,"tweenEasing":0,"x":8,"y":1.03},{"duration":15,"tweenEasing":0,"x":-7.12,"y":1.65},{"duration":3,"tweenEasing":0,"x":-10.38,"y":-0.4},{"duration":3,"tweenEasing":0,"x":-3.7,"y":-0.01},{"duration":12,"tweenEasing":0,"x":4.67,"y":1.6},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":4.25,"y":-0.63},{"duration":3,"tweenEasing":0,"x":7.94,"y":0.21},{"duration":15,"tweenEasing":0,"x":-0.18,"y":0.53},{"duration":3,"tweenEasing":0,"x":-2.9,"y":-0.6},{"duration":3,"tweenEasing":0,"x":1.72,"y":1.3},{"duration":12,"tweenEasing":0,"x":4.92,"y":0.26},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":4.25,"y":-0.63},{"duration":3,"tweenEasing":0,"x":7.94,"y":0.21},{"duration":15,"tweenEasing":0,"x":-0.18,"y":0.53},{"duration":3,"tweenEasing":0,"x":-2.9,"y":-0.6},{"duration":3,"tweenEasing":0,"x":1.72,"y":1.3},{"duration":12,"tweenEasing":0,"x":4.92,"y":0.26},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":4.25,"y":-0.63},{"duration":3,"tweenEasing":0,"x":7.94,"y":0.21},{"duration":15,"tweenEasing":0,"x":-0.18,"y":0.53},{"duration":3,"tweenEasing":0,"x":-2.9,"y":-0.6},{"duration":3,"tweenEasing":0,"x":1.72,"y":1.3},{"duration":12,"tweenEasing":0,"x":4.92,"y":0.26},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":0}],"scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":15}]},{"name":"head","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.58,"y":5.97},{"duration":3,"tweenEasing":0,"x":8.94,"y":8.11},{"duration":15,"tweenEasing":0,"x":-8.84,"y":0.61},{"duration":3,"tweenEasing":0,"x":-9.28,"y":-1},{"duration":3,"tweenEasing":0,"x":-4.25,"y":-0.36},{"duration":12,"tweenEasing":0,"x":4.59,"y":3.9},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.58,"y":5.97},{"duration":3,"tweenEasing":0,"x":8.94,"y":8.11},{"duration":15,"tweenEasing":0,"x":-8.84,"y":0.61},{"duration":3,"tweenEasing":0,"x":-9.28,"y":-1},{"duration":3,"tweenEasing":0,"x":-4.25,"y":-0.36},{"duration":12,"tweenEasing":0,"x":4.59,"y":3.9},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.58,"y":5.97},{"duration":3,"tweenEasing":0,"x":8.94,"y":8.11},{"duration":15,"tweenEasing":0,"x":-8.84,"y":0.61},{"duration":3,"tweenEasing":0,"x":-9.28,"y":-1},{"duration":3,"tweenEasing":0,"x":-4.25,"y":-0.36},{"duration":12,"tweenEasing":0,"x":4.59,"y":3.9},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":3.56,"y":2.23},{"duration":3,"tweenEasing":0,"x":5.16,"y":3.53},{"duration":15,"tweenEasing":0,"x":-11.15,"y":-1.1},{"duration":3,"tweenEasing":0,"x":-10.46,"y":-2.84},{"duration":3,"tweenEasing":0,"x":-4.45,"y":-0.43},{"duration":12,"tweenEasing":0,"x":3.48,"y":2.71},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":3.56,"y":2.23},{"duration":3,"tweenEasing":0,"x":5.16,"y":3.53},{"duration":15,"tweenEasing":0,"x":-11.15,"y":-1.1},{"duration":3,"tweenEasing":0,"x":-10.46,"y":-2.84},{"duration":3,"tweenEasing":0,"x":-4.45,"y":-0.43},{"duration":12,"tweenEasing":0,"x":3.48,"y":2.71},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":3.56,"y":2.23},{"duration":3,"tweenEasing":0,"x":5.16,"y":3.53},{"duration":15,"tweenEasing":0,"x":-11.15,"y":-1.1},{"duration":3,"tweenEasing":0,"x":-10.46,"y":-2.84},{"duration":3,"tweenEasing":0,"x":-4.45,"y":-0.43},{"duration":12,"tweenEasing":0,"x":3.48,"y":2.71},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":0}]},{"name":"body","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.45,"y":1.64},{"duration":3,"tweenEasing":0,"x":0.03,"y":1.08},{"duration":9,"tweenEasing":0,"x":-1.44,"y":-0.71},{"duration":6,"tweenEasing":0,"x":-1.68,"y":-0.49},{"duration":3,"tweenEasing":0,"x":-1.84,"y":-0.35},{"duration":3,"tweenEasing":0,"x":-0.61,"y":-0.37},{"duration":12,"tweenEasing":0,"x":0.05,"y":1.11},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.45,"y":1.64},{"duration":3,"tweenEasing":0,"x":0.03,"y":1.08},{"duration":9,"tweenEasing":0,"x":-1.44,"y":-0.71},{"duration":6,"tweenEasing":0,"x":-1.68,"y":-0.49},{"duration":3,"tweenEasing":0,"x":-1.84,"y":-0.35},{"duration":3,"tweenEasing":0,"x":-0.61,"y":-0.37},{"duration":12,"tweenEasing":0,"x":0.05,"y":1.11},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.45,"y":1.64},{"duration":3,"tweenEasing":0,"x":0.03,"y":1.08},{"duration":9,"tweenEasing":0,"x":-1.44,"y":-0.71},{"duration":6,"tweenEasing":0,"x":-1.68,"y":-0.49},{"duration":3,"tweenEasing":0,"x":-1.84,"y":-0.35},{"duration":3,"tweenEasing":0,"x":-0.61,"y":-0.37},{"duration":12,"tweenEasing":0,"x":0.05,"y":1.11},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":0}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.24},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.32},{"duration":3,"tweenEasing":0,"y":-0.32},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.24},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.32},{"duration":3,"tweenEasing":0,"y":-0.32},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.24},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.32},{"duration":3,"tweenEasing":0,"y":-0.32},{"duration":15}],"scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":15}]},{"name":"rightHand","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":3,"tweenEasing":0,"x":-1.3,"y":-0.62},{"duration":18,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":12,"tweenEasing":0,"x":-1.21,"y":-0.17},{"duration":6,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":15,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":3,"tweenEasing":0,"x":-1.3,"y":-0.62},{"duration":18,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":12,"tweenEasing":0,"x":-1.21,"y":-0.17},{"duration":6,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":15,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":3,"tweenEasing":0,"x":-1.3,"y":-0.62},{"duration":18,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":12,"tweenEasing":0,"x":-1.21,"y":-0.17},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-30.35},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":3,"tweenEasing":0,"x":1.56,"y":-1.53},{"duration":15,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":12,"tweenEasing":0,"x":0.62,"y":-1.61},{"duration":6,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":15,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":3,"tweenEasing":0,"x":1.56,"y":-1.53},{"duration":15,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":12,"tweenEasing":0,"x":0.62,"y":-1.61},{"duration":6,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":15,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":3,"tweenEasing":0,"x":1.56,"y":-1.53},{"duration":15,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":12,"tweenEasing":0,"x":0.62,"y":-1.61},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-42.6},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-55.76},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-55.76},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":0,"rotate":21.7}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":0}]},{"name":"rightArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":3.52,"y":0.28},{"duration":3,"tweenEasing":0,"x":4.23,"y":2.19},{"duration":15,"tweenEasing":0,"x":-4.97,"y":-2.79},{"duration":3,"tweenEasing":0,"x":-5.28,"y":-3.39},{"duration":3,"tweenEasing":0,"x":-3.67,"y":-0.35},{"duration":12,"tweenEasing":0,"x":2.15,"y":1.63},{"duration":6,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":15,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":3.52,"y":0.28},{"duration":3,"tweenEasing":0,"x":4.23,"y":2.19},{"duration":15,"tweenEasing":0,"x":-4.97,"y":-2.79},{"duration":3,"tweenEasing":0,"x":-5.28,"y":-3.39},{"duration":3,"tweenEasing":0,"x":-3.67,"y":-0.35},{"duration":12,"tweenEasing":0,"x":2.15,"y":1.63},{"duration":6,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":15,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":3.52,"y":0.28},{"duration":3,"tweenEasing":0,"x":4.23,"y":2.19},{"duration":15,"tweenEasing":0,"x":-4.97,"y":-2.79},{"duration":3,"tweenEasing":0,"x":-5.28,"y":-3.39},{"duration":3,"tweenEasing":0,"x":-3.67,"y":-0.35},{"duration":12,"tweenEasing":0,"x":2.15,"y":1.63},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":0,"rotate":-6.67}],"scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":36,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":36,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":12}]}],"slot":[{"name":"effect5","displayFrame":[{"duration":18,"value":-1},{"duration":156},{"duration":0,"value":-1}],"colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect4","displayFrame":[{"duration":12,"value":-1},{"duration":159},{"duration":3,"value":-1}],"colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":9,"value":-1},{"duration":162},{"duration":3,"value":-1}],"colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":6,"value":-1},{"duration":162},{"duration":6,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"rightHand","displayFrame":[{"duration":21},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":15}],"colorFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":42,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":15}]},{"name":"rightFrontArm","displayFrame":[{"duration":21},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":15}],"colorFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":42,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":15}]},{"name":"backLight","displayFrame":[{"duration":174,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":174,"value":-1}]}]},{"duration":34,"name":"Atk1","bone":[{"name":"effect4","translateFrame":[{"duration":4,"tweenEasing":0,"x":-9.1,"y":6.7},{"duration":8,"tweenEasing":0,"x":-9.1,"y":6.7},{"duration":8,"tweenEasing":0,"x":-17.8,"y":1.8},{"duration":8,"tweenEasing":0,"x":-24,"y":0.4},{"duration":6,"x":-30.6}],"rotateFrame":[{"duration":4,"tweenEasing":0,"rotate":-105.08},{"duration":8,"tweenEasing":0,"rotate":-105.08},{"duration":8,"tweenEasing":0,"rotate":-96.73},{"duration":8,"tweenEasing":0,"rotate":-69.9},{"duration":6,"rotate":-94.04}]},{"name":"effect3","translateFrame":[{"duration":2,"tweenEasing":0,"x":-14.66,"y":10.66},{"duration":4,"tweenEasing":0,"x":-14.66,"y":10.66},{"duration":10,"tweenEasing":0,"x":-23.07,"y":6},{"duration":8,"tweenEasing":0,"x":-26.93,"y":9.46},{"duration":10,"x":-31.07,"y":7.33}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-108.91},{"duration":10,"tweenEasing":0,"rotate":-108.91},{"duration":8,"tweenEasing":0,"rotate":-127.09},{"duration":10,"rotate":-108.09}]},{"name":"effect2","translateFrame":[{"duration":2,"tweenEasing":0,"x":-4.54,"y":13.2},{"duration":6,"tweenEasing":0,"x":-4.54,"y":13.2},{"duration":10,"tweenEasing":0,"x":-13.6,"y":2.8},{"duration":4,"tweenEasing":0,"x":-23.46,"y":-4.26},{"duration":12,"x":-27.46,"y":-5.46}],"rotateFrame":[{"duration":2,"tweenEasing":0,"rotate":31.2},{"duration":6,"tweenEasing":0,"rotate":31.2},{"duration":10,"tweenEasing":0,"rotate":-0.05},{"duration":4,"tweenEasing":0,"rotate":-26.91},{"duration":12,"rotate":-24.71}]},{"name":"leftHand","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":8,"tweenEasing":0,"x":0.01,"y":0.07},{"duration":8,"tweenEasing":0,"x":0.01,"y":0.07},{"duration":8,"tweenEasing":0,"x":0.1,"y":0.49},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-12.3},{"duration":8,"tweenEasing":0,"rotate":18.53},{"duration":8,"tweenEasing":0,"rotate":-9},{"duration":8,"tweenEasing":0,"rotate":9.5},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.71,"y":0.04},{"duration":8,"tweenEasing":0,"x":0.18,"y":0.12},{"duration":8,"tweenEasing":0,"x":0.69,"y":-0.78},{"duration":8,"tweenEasing":0,"x":0.2,"y":0.24},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":13.83},{"duration":8,"tweenEasing":0,"rotate":25.06},{"duration":8,"tweenEasing":0,"rotate":17.69},{"duration":8,"tweenEasing":0,"rotate":12.39},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-2.88,"y":-0.6},{"duration":8,"tweenEasing":0,"x":8.4,"y":-0.74},{"duration":8,"tweenEasing":0,"x":8.01,"y":-0.58},{"duration":8,"tweenEasing":0,"x":1.14,"y":-0.23},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":40},{"duration":8,"tweenEasing":0,"rotate":-12.39},{"duration":8,"tweenEasing":0,"rotate":4.99},{"duration":8,"tweenEasing":0,"rotate":8.69},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-3.42,"y":-1.95},{"duration":8,"tweenEasing":0,"x":12.95,"y":0.1},{"duration":8,"tweenEasing":0,"x":12.47,"y":0.42},{"duration":8,"tweenEasing":0,"x":1.5,"y":-2.19},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":66.79},{"duration":8,"tweenEasing":0,"rotate":-95.1},{"duration":8,"tweenEasing":0,"rotate":-98.37},{"duration":8,"tweenEasing":0,"rotate":-44.89},{"duration":0}]},{"name":"head","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-4.17,"y":0.46},{"duration":8,"tweenEasing":0,"x":9.35,"y":1.83},{"duration":8,"tweenEasing":0,"x":8.79,"y":2.23},{"duration":8,"tweenEasing":0,"x":1.23,"y":0.91},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":15.73},{"duration":8,"tweenEasing":0,"rotate":2.95},{"duration":8,"tweenEasing":0,"rotate":2.83},{"duration":8,"tweenEasing":0,"rotate":0.01},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-3.63,"y":-0.73},{"duration":8,"tweenEasing":0,"x":6.29,"y":2.04},{"duration":8,"tweenEasing":0,"x":6.13,"y":2.27},{"duration":8,"tweenEasing":0,"x":0.4,"y":0.34},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-11.02},{"duration":8,"tweenEasing":0,"rotate":-27.15},{"duration":8,"tweenEasing":0,"rotate":-15.36},{"duration":8,"tweenEasing":0,"rotate":3.41},{"duration":0}]},{"name":"body","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-1.47,"y":-1.01},{"duration":8,"tweenEasing":0,"x":1.27,"y":-0.09},{"duration":8,"tweenEasing":0,"x":1.44,"y":0.23},{"duration":8,"tweenEasing":0,"y":0.4},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-11.15},{"duration":8,"tweenEasing":0,"rotate":29.43},{"duration":8,"tweenEasing":0,"rotate":30.7},{"duration":8,"tweenEasing":0,"rotate":1.09},{"duration":0}],"scaleFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":14,"tweenEasing":0,"y":-0.03},{"duration":4,"tweenEasing":0,"y":-0.03},{"duration":4,"tweenEasing":0,"y":-0.16},{"duration":2,"tweenEasing":0,"y":-0.16},{"duration":0}],"scaleFrame":[{"duration":4,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.1,"y":1.3},{"duration":4,"tweenEasing":0,"x":1.01,"y":1.1},{"duration":4,"tweenEasing":0,"x":1.01,"y":1.1},{"duration":6,"tweenEasing":0,"x":1.01,"y":0.9},{"duration":4,"tweenEasing":0,"x":1.01,"y":0.9},{"duration":4,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":2,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":8,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":2,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":8,"tweenEasing":0,"x":-0.97,"y":-0.2},{"duration":8,"tweenEasing":0,"x":-0.97,"y":-0.2},{"duration":8,"tweenEasing":0,"x":-0.54,"y":-0.17},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":8,"tweenEasing":0,"rotate":11.7},{"duration":2,"tweenEasing":0,"rotate":-34.26},{"duration":8,"tweenEasing":0,"rotate":-8.09},{"duration":8,"tweenEasing":0,"rotate":-36.51},{"duration":8,"tweenEasing":0,"rotate":-12.04},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":8,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":2,"tweenEasing":0,"x":-0.7,"y":0.18},{"duration":8,"tweenEasing":0,"x":-0.34,"y":0.12},{"duration":8,"tweenEasing":0,"x":-0.44,"y":0.07},{"duration":8,"tweenEasing":0,"x":0.31,"y":0.26},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":8,"tweenEasing":0,"rotate":21.7},{"duration":2,"tweenEasing":0,"rotate":-36.51},{"duration":8,"tweenEasing":0,"rotate":-41.51},{"duration":8,"tweenEasing":0,"rotate":-50.9},{"duration":8,"tweenEasing":0,"rotate":-42.18},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":8,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":2,"tweenEasing":0,"x":-2.96,"y":-0.32},{"duration":8,"tweenEasing":0,"x":1.4,"y":3.87},{"duration":8,"tweenEasing":0,"x":1.48,"y":4.19},{"duration":8,"tweenEasing":0,"x":-3.83,"y":-3.08},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":8,"tweenEasing":0,"rotate":-6.67},{"duration":2,"tweenEasing":0,"rotate":8.81},{"duration":8,"tweenEasing":0,"rotate":7.26},{"duration":8,"tweenEasing":0,"rotate":15.7},{"duration":8,"tweenEasing":0,"rotate":25.83},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect4","displayFrame":[{"duration":4,"value":-1},{"duration":26},{"duration":4,"value":-1}],"colorFrame":[{"duration":4,"tweenEasing":0,"value":{"aM":0}},{"duration":8,"tweenEasing":0,"value":{"aM":0}},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":2,"value":-1},{"duration":24},{"duration":8,"value":-1}],"colorFrame":[{"duration":2,"tweenEasing":0,"value":{"aM":0}},{"duration":4,"tweenEasing":0,"value":{"aM":0}},{"duration":10,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":10,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":2,"value":-1},{"duration":22},{"duration":10,"value":-1}],"colorFrame":[{"duration":2,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":10,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":12,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":34,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":34,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":34,"value":-1}]}]},{"duration":18,"name":"Atked1","bone":[{"name":"effect6","translateFrame":[{"duration":6,"tweenEasing":0,"x":-2.52,"y":1.72},{"duration":3,"tweenEasing":0,"x":-0.66,"y":-0.23},{"duration":6,"tweenEasing":0,"x":3.25,"y":-1.37},{"duration":3,"x":4.8,"y":-6.29}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"rotate":-20.99}]},{"name":"effect4","translateFrame":[{"duration":3,"tweenEasing":0,"x":-4.5,"y":3.8},{"duration":3,"tweenEasing":0,"x":-4.5,"y":3.8},{"duration":3,"tweenEasing":0,"x":-10.13,"y":-1.13},{"duration":9,"tweenEasing":0,"x":-11.84,"y":-6.3},{"duration":0,"x":-24,"y":-16.3}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-9.48},{"duration":3,"tweenEasing":0,"rotate":-9.48},{"duration":3,"tweenEasing":0,"rotate":-12.21},{"duration":9,"rotate":-14.93}]},{"name":"effect3","translateFrame":[{"duration":6,"tweenEasing":0,"x":-3.68,"y":5.44},{"duration":3,"tweenEasing":0,"x":-0.76,"y":-7.24},{"duration":6,"tweenEasing":0,"x":1.84,"y":-9.36},{"duration":3,"x":6.56,"y":-13.6}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-20.49},{"duration":6,"tweenEasing":0,"rotate":-21.44},{"duration":3,"rotate":-23.34}]},{"name":"effect2","translateFrame":[{"duration":6,"tweenEasing":0,"x":2.72,"y":0.96},{"duration":3,"tweenEasing":0,"x":-6.04,"y":-7.24},{"duration":9,"tweenEasing":0,"x":-6.73,"y":-8.87},{"duration":0,"x":-9.44,"y":-13.76}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":55.47},{"duration":9,"tweenEasing":0,"rotate":51.89},{"duration":0,"rotate":41.14}]},{"name":"leftHand","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.01,"y":-0.23},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-26.56},{"duration":9,"tweenEasing":0,"rotate":-11.41},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":6.05},{"duration":9,"tweenEasing":0,"rotate":-2.27},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-3.15,"y":2.3},{"duration":9,"tweenEasing":0,"x":-3.52,"y":1.7},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":22.93},{"duration":9,"tweenEasing":0,"rotate":-13.8},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-3.16,"y":1.05},{"duration":9,"tweenEasing":0,"x":-2.29,"y":0.44},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-15.21},{"duration":9,"tweenEasing":0,"rotate":-28.28},{"duration":0}]},{"name":"head","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-2.98,"y":2.9},{"duration":9,"tweenEasing":0,"x":-2.31,"y":0.72},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":20.08},{"duration":9,"tweenEasing":0,"rotate":-25.26},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-3.02,"y":0.27},{"duration":9,"tweenEasing":0,"x":-2.56,"y":-0.29},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-17.61},{"duration":9,"tweenEasing":0,"rotate":-22.45},{"duration":0}]},{"name":"body","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-2.1,"y":1.19},{"duration":9,"tweenEasing":0,"x":0.4,"y":0.88},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-5.23},{"duration":9,"tweenEasing":0,"rotate":-13.28},{"duration":0}],"scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-1.64,"y":0.12},{"duration":9,"tweenEasing":0,"x":0.32,"y":-0.04},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":13.63},{"duration":9,"tweenEasing":0,"rotate":6.92},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":0.22,"y":-0.36},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-6.33},{"duration":9,"tweenEasing":0,"rotate":14.55},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":6,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":-2.48,"y":2.58},{"duration":9,"tweenEasing":0,"x":-1.94,"y":0.96},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":-17.02},{"duration":9,"tweenEasing":0,"rotate":-28.28},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":66}},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":49}},{"duration":9,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":18,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":18,"value":-1}]}]},{"duration":78,"name":"Dying","bone":[{"name":"effect5","translateFrame":[{"duration":24,"tweenEasing":0,"x":7.2,"y":1.72},{"duration":18,"tweenEasing":0,"x":7.2,"y":1.72},{"duration":15,"tweenEasing":0,"x":3.2,"y":-5.14},{"duration":15,"tweenEasing":0,"x":4.23,"y":-11.54},{"duration":6,"x":0.57,"y":-16.23}],"rotateFrame":[{"duration":42,"tweenEasing":0,"rotate":30.08},{"duration":15,"tweenEasing":0,"rotate":30.08},{"duration":15,"tweenEasing":0,"rotate":46.89},{"duration":6,"rotate":26.37}]},{"name":"effect4","translateFrame":[{"duration":18,"tweenEasing":0,"x":-1.6,"y":0.8},{"duration":15,"tweenEasing":0,"x":-1.6,"y":0.8},{"duration":18,"tweenEasing":0,"x":0.12,"y":-12.12},{"duration":18,"tweenEasing":0,"x":-4.34,"y":-19.77},{"duration":9,"x":-5.8,"y":-24.16}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":20.94},{"duration":15,"tweenEasing":0,"rotate":20.94},{"duration":18,"tweenEasing":0,"rotate":-3.4},{"duration":18,"tweenEasing":0,"rotate":-10.49},{"duration":9,"rotate":-4.63}]},{"name":"effect3","translateFrame":[{"duration":27,"tweenEasing":0,"x":-3.06,"y":11.2},{"duration":12,"tweenEasing":0,"x":-3.06,"y":11.2},{"duration":18,"tweenEasing":0,"x":-1.38,"y":-2.44},{"duration":12,"tweenEasing":0,"x":4.45,"y":-9.82},{"duration":9,"x":11.24,"y":-11.69}],"rotateFrame":[{"duration":27,"tweenEasing":0,"rotate":31.61},{"duration":12,"tweenEasing":0,"rotate":31.61},{"duration":18,"tweenEasing":0,"rotate":-12.51},{"duration":12,"tweenEasing":0,"rotate":-13.38},{"duration":9,"rotate":9.35}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0,"x":2,"y":3.06},{"duration":9,"tweenEasing":0,"x":2,"y":3.06},{"duration":9,"tweenEasing":0,"x":0.54,"y":-3.87},{"duration":15,"tweenEasing":0,"x":-6.54,"y":-10.13},{"duration":24,"x":-20.27,"y":-14.8}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":29.59},{"duration":15,"tweenEasing":0,"rotate":2.18},{"duration":24,"rotate":-22.33}]},{"name":"leftHand","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":6,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":9,"tweenEasing":0,"x":0.15,"y":-0.21},{"duration":3,"tweenEasing":0,"x":0.15,"y":-0.21},{"duration":42,"x":-0.33,"y":-0.04}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":3.01},{"duration":6,"tweenEasing":0,"rotate":3.01},{"duration":9,"tweenEasing":0,"rotate":-18.54},{"duration":3,"tweenEasing":0,"rotate":-18.54},{"duration":24,"tweenEasing":0,"rotate":6.38},{"duration":6,"tweenEasing":0,"rotate":6.38},{"duration":12,"rotate":11.01}]},{"name":"leftFrontArm","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.68,"y":-0.95},{"duration":6,"tweenEasing":0,"x":0.68,"y":-0.95},{"duration":9,"tweenEasing":0,"x":0.65,"y":-1.15},{"duration":3,"tweenEasing":0,"x":0.65,"y":-1.15},{"duration":15,"tweenEasing":0,"x":0.15,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.83,"y":0.94},{"duration":6,"tweenEasing":0,"x":0.64,"y":-3.63},{"duration":12,"x":0.49,"y":-4.08}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-33.88},{"duration":3,"tweenEasing":0,"rotate":-26.38},{"duration":6,"tweenEasing":0,"rotate":-26.38},{"duration":9,"tweenEasing":0,"rotate":-47.87},{"duration":3,"tweenEasing":0,"rotate":-65.3},{"duration":15,"tweenEasing":0,"rotate":46.32},{"duration":9,"tweenEasing":0,"rotate":15},{"duration":6,"tweenEasing":0,"rotate":113.18},{"duration":12,"rotate":106.03}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":69,"x":1.05,"y":1.05}]},{"name":"leftShoulder","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":3.92,"y":0.22},{"duration":3,"tweenEasing":0,"x":3.65,"y":-0.2},{"duration":6,"tweenEasing":0,"x":3.65,"y":0.04},{"duration":9,"tweenEasing":0,"x":5.47,"y":0.93},{"duration":3,"tweenEasing":0,"x":5.34,"y":-0.94},{"duration":15,"tweenEasing":0,"x":-1,"y":-5.83},{"duration":9,"tweenEasing":0,"x":-4.61,"y":-8.44},{"duration":6,"tweenEasing":0,"x":-0.2,"y":19},{"duration":12,"tweenEasing":0,"x":-1.65,"y":17.16},{"duration":0,"x":-1.65,"y":18.77}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":13.57},{"duration":3,"tweenEasing":0,"rotate":24.2},{"duration":6,"tweenEasing":0,"rotate":16.88},{"duration":9,"tweenEasing":0,"rotate":10.9},{"duration":3,"tweenEasing":0,"rotate":16.99},{"duration":15,"tweenEasing":0,"rotate":-5.17},{"duration":9,"tweenEasing":0,"rotate":-12.82},{"duration":6,"tweenEasing":0,"rotate":-8.56},{"duration":12,"tweenEasing":0,"rotate":-2.65},{"duration":0,"rotate":-7.04}]},{"name":"leftArm","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":3.38,"y":-2.31},{"duration":3,"tweenEasing":0,"x":3.38,"y":-2.55},{"duration":6,"tweenEasing":0,"x":3.38,"y":-2.31},{"duration":9,"tweenEasing":0,"x":6.04,"y":-0.88},{"duration":3,"tweenEasing":0,"x":5.92,"y":-2.75},{"duration":15,"tweenEasing":0,"x":0.43,"y":-5.91},{"duration":9,"tweenEasing":0,"x":1.24,"y":-0.91},{"duration":6,"tweenEasing":0,"x":1.44,"y":14.13},{"duration":12,"tweenEasing":0,"x":0.64,"y":12.94},{"duration":0,"x":0.8,"y":13.73}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":0.58},{"duration":3,"tweenEasing":0,"rotate":4.94},{"duration":6,"tweenEasing":0,"rotate":4.94},{"duration":9,"tweenEasing":0,"rotate":10.19},{"duration":3,"tweenEasing":0,"rotate":25.77},{"duration":15,"tweenEasing":0,"rotate":-11.12},{"duration":9,"tweenEasing":0,"rotate":-2.99},{"duration":18,"rotate":-14.6}]},{"name":"head","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":4.09,"y":3.06},{"duration":3,"tweenEasing":0,"x":3.85,"y":2.9},{"duration":6,"tweenEasing":0,"x":3.85,"y":3.14},{"duration":9,"tweenEasing":0,"x":4.46,"y":5.23},{"duration":3,"tweenEasing":0,"x":4.79,"y":5.7},{"duration":15,"tweenEasing":0,"x":-1.35,"y":-7.2},{"duration":9,"tweenEasing":0,"x":-0.62,"y":-11.06},{"duration":6,"tweenEasing":0,"x":-1.1,"y":18.3},{"duration":12,"tweenEasing":0,"x":-2.54,"y":16.94},{"duration":0,"x":0.02,"y":21.42}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":29.23},{"duration":3,"tweenEasing":0,"rotate":8.49},{"duration":6,"tweenEasing":0,"rotate":13.15},{"duration":9,"tweenEasing":0,"rotate":15.69},{"duration":3,"tweenEasing":0,"rotate":15.69},{"duration":15,"tweenEasing":0,"rotate":-29.7},{"duration":9,"tweenEasing":0,"rotate":-25.43},{"duration":6,"tweenEasing":0,"rotate":-25.43},{"duration":12,"tweenEasing":0,"rotate":11.43},{"duration":0,"rotate":-13.96}]},{"name":"rightShoulder","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":3.03,"y":0.83},{"duration":3,"tweenEasing":0,"x":3.03,"y":0.59},{"duration":6,"tweenEasing":0,"x":3.03,"y":0.83},{"duration":9,"tweenEasing":0,"x":3.4,"y":1.55},{"duration":3,"tweenEasing":0,"x":3.26,"y":-0.84},{"duration":15,"tweenEasing":0,"x":-2.59,"y":-8.54},{"duration":9,"tweenEasing":0,"x":-0.19,"y":-6.93},{"duration":6,"tweenEasing":0,"x":-1.19,"y":16.3},{"duration":12,"tweenEasing":0,"x":-0.23,"y":16.86},{"duration":0,"x":-0.23,"y":19.27}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-2.21},{"duration":3,"tweenEasing":0,"rotate":-17.5},{"duration":6,"tweenEasing":0,"rotate":-5.8},{"duration":9,"tweenEasing":0,"rotate":7.6},{"duration":3,"tweenEasing":0,"rotate":-0.59},{"duration":15,"tweenEasing":0,"rotate":-0.22},{"duration":9,"tweenEasing":0,"rotate":-16.47},{"duration":6,"tweenEasing":0,"rotate":20.03},{"duration":12,"rotate":10.97}]},{"name":"body","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-0.09,"y":0.24},{"duration":3,"tweenEasing":0,"x":-0.17,"y":0.09},{"duration":6,"tweenEasing":0,"x":-0.17,"y":0.33},{"duration":9,"tweenEasing":0,"x":-0.09,"y":1.13},{"duration":3,"tweenEasing":0,"x":-0.22,"y":-0.74},{"duration":15,"tweenEasing":0,"x":1.18,"y":-7.26},{"duration":9,"tweenEasing":0,"x":1.65,"y":-4.2},{"duration":6,"tweenEasing":0,"x":4.98,"y":12.38},{"duration":12,"tweenEasing":0,"x":5.3,"y":9.58},{"duration":0,"x":5.46,"y":10.7}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":18.08},{"duration":6,"tweenEasing":0,"rotate":18.08},{"duration":9,"tweenEasing":0,"rotate":21.06},{"duration":3,"tweenEasing":0,"rotate":22.64},{"duration":15,"tweenEasing":0,"rotate":-10.59},{"duration":9,"tweenEasing":0,"rotate":-22.36},{"duration":6,"tweenEasing":0,"rotate":-49.93},{"duration":12,"tweenEasing":0,"rotate":-57.44},{"duration":0,"rotate":-66.41}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.96},{"duration":6,"tweenEasing":0,"x":1.01,"y":0.96},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.16},{"duration":15,"tweenEasing":0},{"duration":27,"y":0.9}]},{"name":"leg","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":-0.42},{"duration":9,"tweenEasing":0,"x":-0.42},{"duration":3,"tweenEasing":0,"x":-0.26,"y":-0.32},{"duration":15,"tweenEasing":0,"x":-0.26,"y":-1.92},{"duration":6,"tweenEasing":0,"x":-0.26,"y":-2.64},{"duration":21,"x":-0.26,"y":-1.76}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.25},{"duration":6,"tweenEasing":0,"x":0.95,"y":0.85},{"duration":9,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.25,"y":1.05},{"duration":15,"tweenEasing":0,"x":1.85,"y":1.05},{"duration":6,"tweenEasing":0,"x":2.15,"y":1.05},{"duration":21,"x":1.55,"y":1.05}]},{"name":"rightHand","translateFrame":[{"duration":9,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":9,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":6,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":27,"tweenEasing":0,"x":-1.12,"y":-0.8},{"duration":9,"tweenEasing":0,"x":-1.12,"y":-0.8},{"duration":18,"x":-0.52,"y":-0.81}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":11.7},{"duration":6,"tweenEasing":0,"rotate":23.26},{"duration":3,"tweenEasing":0,"rotate":-19.83},{"duration":6,"tweenEasing":0,"rotate":-19.83},{"duration":9,"tweenEasing":0,"rotate":23.75},{"duration":3,"tweenEasing":0,"rotate":20.82},{"duration":15,"tweenEasing":0,"rotate":-5.18},{"duration":9,"tweenEasing":0,"rotate":22.15},{"duration":6,"tweenEasing":0,"rotate":-22.3},{"duration":12,"tweenEasing":0,"rotate":-45.66},{"duration":0,"rotate":-37}]},{"name":"rightFrontArm","translateFrame":[{"duration":9,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":9,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":6,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":12,"tweenEasing":0,"x":-0.66,"y":-0.14},{"duration":15,"tweenEasing":0,"x":-0.66,"y":-0.14},{"duration":9,"tweenEasing":0,"x":-1.47,"y":-1.53},{"duration":6,"tweenEasing":0,"x":-3.21,"y":1.78},{"duration":12,"tweenEasing":0,"x":-2.78,"y":2.31},{"duration":0,"x":-3.77,"y":2.53}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":21.7},{"duration":6,"tweenEasing":0,"rotate":59.44},{"duration":3,"tweenEasing":0,"rotate":75.81},{"duration":6,"tweenEasing":0,"rotate":75.81},{"duration":9,"tweenEasing":0,"rotate":75.52},{"duration":3,"tweenEasing":0,"rotate":94.88},{"duration":15,"tweenEasing":0,"rotate":-2.28},{"duration":9,"tweenEasing":0,"rotate":12.05},{"duration":6,"tweenEasing":0,"rotate":12.5},{"duration":12,"tweenEasing":0,"rotate":17.33},{"duration":0,"rotate":11.94}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":69,"x":1.05,"y":1.05}]},{"name":"rightArm","translateFrame":[{"duration":9,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":6,"tweenEasing":0,"x":3.9,"y":0.71},{"duration":3,"tweenEasing":0,"x":3.42,"y":0.4},{"duration":6,"tweenEasing":0,"x":3.42,"y":0.64},{"duration":9,"tweenEasing":0,"x":3.25,"y":1.44},{"duration":3,"tweenEasing":0,"x":3.12,"y":-0.43},{"duration":15,"tweenEasing":0,"x":-0.94,"y":-5.88},{"duration":9,"tweenEasing":0,"x":0.06,"y":0.45},{"duration":6,"tweenEasing":0,"x":-2.26,"y":21.07},{"duration":12,"tweenEasing":0,"x":-3.06,"y":19.87},{"duration":0,"x":-2.9,"y":20.67}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":-6.67},{"duration":6,"tweenEasing":0,"rotate":2.1},{"duration":3,"tweenEasing":0,"rotate":1.1},{"duration":6,"tweenEasing":0,"rotate":1.1},{"duration":9,"tweenEasing":0,"rotate":-6.84},{"duration":3,"tweenEasing":0,"rotate":-18.94},{"duration":15,"tweenEasing":0,"rotate":15.53},{"duration":9,"tweenEasing":0,"rotate":-13.72},{"duration":18,"rotate":-52.69}]},{"name":"backLight","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":12,"tweenEasing":0,"y":-3.65},{"duration":9,"tweenEasing":0,"y":-6.4},{"duration":6,"tweenEasing":0,"y":-6.4},{"duration":27,"x":0.4,"y":-20.8}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":0.69,"y":0.5},{"duration":9,"tweenEasing":0,"x":1.56,"y":1.71},{"duration":6,"tweenEasing":0,"x":0.6,"y":2.57},{"duration":27,"x":0.11,"y":2.79}]}],"slot":[{"name":"effect5","colorFrame":[{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":27,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":24,"value":{"aM":0}}]},{"name":"leftArm","colorFrame":[{"duration":36,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12}]},{"name":"head","displayFrame":[{"duration":78,"value":1}]},{"name":"rightArm","colorFrame":[{"duration":36,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12}]},{"name":"backLight","colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":27,"value":{"aM":0}}]},{"name":"effect6","displayFrame":[{"duration":78,"value":-1}]}]},{"duration":72,"playTimes":0,"name":"Atked2","bone":[{"name":"effect4","translateFrame":[{"duration":3,"tweenEasing":0,"x":-9.24,"y":3.38},{"duration":18,"tweenEasing":0,"x":-9.24,"y":3.38},{"duration":21,"tweenEasing":0,"x":-8,"y":-5.07},{"duration":21,"tweenEasing":0,"x":-12.36,"y":-12.18},{"duration":9,"x":-12.27,"y":-18.84}],"rotateFrame":[{"duration":3,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-28.4},{"duration":21,"tweenEasing":0,"rotate":-16.18},{"duration":9,"rotate":-31.27}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0,"x":-0.94,"y":5.33},{"duration":24,"tweenEasing":0,"x":-0.94,"y":5.33},{"duration":21,"tweenEasing":0,"x":1.63,"y":-8.11},{"duration":18,"tweenEasing":0,"x":0.34,"y":-14.59},{"duration":0,"x":0.58,"y":-17.3}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-39.38},{"duration":18,"rotate":-22.72}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":2,"y":-8.5},{"duration":24,"tweenEasing":0,"x":0.5,"y":-14.6},{"duration":3,"x":-0.1,"y":-19.9}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":29.43},{"duration":24,"tweenEasing":0,"rotate":65.43},{"duration":24,"tweenEasing":0,"rotate":44.46},{"duration":3,"rotate":60}]},{"name":"leftHand","rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":15.92},{"duration":24,"tweenEasing":0,"rotate":12.42},{"duration":24,"tweenEasing":0,"rotate":-2.24},{"duration":0,"rotate":15.92}]},{"name":"leftFrontArm","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":-0.3,"y":0.2},{"duration":0}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":29.06},{"duration":24,"tweenEasing":0,"rotate":26.02},{"duration":24,"tweenEasing":0,"rotate":16.87},{"duration":0,"rotate":29.06}]},{"name":"leftShoulder","translateFrame":[{"duration":24,"tweenEasing":0,"x":2.06,"y":-0.8},{"duration":24,"tweenEasing":0,"x":2.73,"y":-0.64},{"duration":24,"tweenEasing":0,"x":3.04,"y":-0.99},{"duration":0,"x":2.06,"y":-0.8}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-12.27},{"duration":24,"tweenEasing":0,"rotate":-15.89},{"duration":24,"tweenEasing":0,"rotate":-12.23},{"duration":0,"rotate":-12.27}]},{"name":"leftArm","translateFrame":[{"duration":24,"tweenEasing":0,"x":2.4,"y":0.46},{"duration":24,"tweenEasing":0,"x":2.4,"y":0.46},{"duration":24,"tweenEasing":0,"x":2.54,"y":0.65},{"duration":0,"x":2.4,"y":0.46}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-23.09},{"duration":24,"tweenEasing":0,"rotate":-31.16},{"duration":24,"tweenEasing":0,"rotate":-21.98},{"duration":0,"rotate":-23.09}]},{"name":"head","translateFrame":[{"duration":24,"tweenEasing":0,"x":2.1,"y":2.36},{"duration":24,"tweenEasing":0,"x":3.17,"y":2.85},{"duration":24,"tweenEasing":0,"x":3.07,"y":2.85},{"duration":0,"x":2.1,"y":2.36}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":27.28},{"duration":24,"tweenEasing":0,"rotate":21.12},{"duration":24,"tweenEasing":0,"rotate":18.96},{"duration":0,"rotate":27.28}]},{"name":"rightShoulder","translateFrame":[{"duration":24,"tweenEasing":0,"x":1.72,"y":0.12},{"duration":24,"tweenEasing":0,"x":2.73,"y":0.63},{"duration":24,"tweenEasing":0,"x":2.71,"y":0.23},{"duration":0,"x":1.72,"y":0.12}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":13.3},{"duration":24,"tweenEasing":0,"rotate":9.28},{"duration":24,"tweenEasing":0,"rotate":14.42},{"duration":0,"rotate":13.3}]},{"name":"body","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":0.12,"y":0.12},{"duration":24,"tweenEasing":0,"x":0.25,"y":-0.28},{"duration":0}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":13.71},{"duration":24,"tweenEasing":0,"rotate":17.86},{"duration":24,"tweenEasing":0,"rotate":16.11},{"duration":0,"rotate":13.71}]},{"name":"leg","scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.9},{"duration":18,"tweenEasing":0,"x":1.1,"y":0.8},{"duration":6,"tweenEasing":0,"x":1.1,"y":0.8},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":72,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":11.7},{"duration":24,"tweenEasing":0,"rotate":1.26},{"duration":24,"tweenEasing":0,"rotate":-11.03},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":72,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":1.98},{"duration":24,"tweenEasing":0,"rotate":-1.3},{"duration":24,"tweenEasing":0,"rotate":-0.66},{"duration":0,"rotate":1.98}]},{"name":"rightArm","translateFrame":[{"duration":24,"tweenEasing":0,"x":3.28,"y":1.58},{"duration":24,"tweenEasing":0,"x":3.28,"y":1.58},{"duration":24,"tweenEasing":0,"x":3.54,"y":1.45},{"duration":0,"x":3.28,"y":1.58}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":29.2},{"duration":24,"tweenEasing":0,"rotate":11.66},{"duration":24,"tweenEasing":0,"rotate":23.61},{"duration":0,"rotate":29.2}]}],"slot":[{"name":"effect4","colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":72,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":72,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":72,"value":-1}]}]},{"duration":102,"playTimes":0,"name":"Idle2","bone":[{"name":"effect6","translateFrame":[{"duration":39,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":3.2,"y":-5.6},{"duration":24,"tweenEasing":0,"x":3.2,"y":-11.9},{"duration":0,"x":7,"y":-15.1}],"rotateFrame":[{"duration":39,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-27.23},{"duration":24,"tweenEasing":0,"rotate":-17.6},{"duration":0,"rotate":-35.03}]},{"name":"effect5","translateFrame":[{"duration":27,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-5.2,"y":-9.12},{"duration":21,"tweenEasing":0,"x":-5.04,"y":-16.4},{"duration":12,"x":-6.4,"y":-19.84}],"rotateFrame":[{"duration":27,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":22.39},{"duration":21,"tweenEasing":0,"rotate":39.5},{"duration":12,"rotate":22.14}]},{"name":"effect4","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":4.4,"y":-6.1},{"duration":24,"tweenEasing":0,"x":5.5,"y":-13.8},{"duration":24,"x":6.1,"y":-19.3}],"rotateFrame":[{"duration":33,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-24.94},{"duration":24,"rotate":-14.84}]},{"name":"effect3","translateFrame":[{"duration":36,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":2.4,"y":-5.6},{"duration":18,"tweenEasing":0,"x":3.8,"y":-11.1},{"duration":9,"x":4.3,"y":-15.2}],"rotateFrame":[{"duration":36,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-17.53},{"duration":18,"tweenEasing":0,"rotate":-36.39},{"duration":9,"rotate":-23.84}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":-2.27,"y":-6.67},{"duration":18,"tweenEasing":0,"x":-1.74,"y":-10.54},{"duration":33,"x":-3.06,"y":-17.46}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":20.36},{"duration":18,"tweenEasing":0,"rotate":68.81},{"duration":33,"rotate":27.88}]},{"name":"leftHand","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":18,"tweenEasing":0,"rotate":-14.11},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":18,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":6.55},{"duration":9,"tweenEasing":0,"rotate":-2.77},{"duration":9,"tweenEasing":0,"rotate":-0.86},{"duration":9,"tweenEasing":0,"rotate":-2.77},{"duration":9,"tweenEasing":0,"rotate":-6.22},{"duration":9,"tweenEasing":0,"rotate":3.34},{"duration":9,"tweenEasing":0,"rotate":-6.22},{"duration":18,"tweenEasing":0,"rotate":-2.77},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":21,"tweenEasing":0,"x":-1.2,"y":0.14},{"duration":9,"tweenEasing":0,"x":-0.15,"y":-0.46},{"duration":9,"tweenEasing":0,"x":-0.1,"y":-0.64},{"duration":9,"tweenEasing":0,"x":0.01,"y":-1.1},{"duration":9,"tweenEasing":0,"x":-0.1,"y":-0.64},{"duration":9,"tweenEasing":0,"x":0.01,"y":-1.1},{"duration":9,"tweenEasing":0,"x":-0.1,"y":-0.64},{"duration":9,"tweenEasing":0,"x":0.01,"y":-1.1},{"duration":18,"tweenEasing":0,"x":-0.1,"y":-0.71},{"duration":0,"x":-1.2,"y":0.14}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":31.61},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":37.04},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":35.61},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":18,"tweenEasing":0,"rotate":31.61},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-1.2,"y":0.14},{"duration":9,"tweenEasing":0,"x":-0.42,"y":-1.18},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-2.19},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-1.81},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-2.19},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-1.81},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-2.19},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-1.81},{"duration":18,"tweenEasing":0,"x":-0.27,"y":-2.27},{"duration":0,"x":-1.2,"y":0.14}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":30.08},{"duration":9,"tweenEasing":0,"rotate":22.76},{"duration":9,"tweenEasing":0,"rotate":19.34},{"duration":9,"tweenEasing":0,"rotate":25.64},{"duration":9,"tweenEasing":0,"rotate":20.36},{"duration":9,"tweenEasing":0,"rotate":26.38},{"duration":9,"tweenEasing":0,"rotate":18.94},{"duration":18,"tweenEasing":0,"rotate":22.76},{"duration":0}]},{"name":"head","translateFrame":[{"duration":21,"tweenEasing":0,"x":-1.06,"y":0.14},{"duration":9,"tweenEasing":0,"x":-0.14,"y":0.3},{"duration":9,"tweenEasing":0,"x":0.28,"y":-0.74},{"duration":9,"tweenEasing":0,"x":0.34,"y":-0.17},{"duration":9,"tweenEasing":0,"x":0.28,"y":-0.74},{"duration":9,"tweenEasing":0,"x":0.34,"y":0.07},{"duration":9,"tweenEasing":0,"x":0.28,"y":-1.06},{"duration":9,"tweenEasing":0,"x":0.34,"y":0.3},{"duration":18,"tweenEasing":0,"x":0.28,"y":-1.06},{"duration":0,"x":-1.06,"y":0.14}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-4.1},{"duration":9,"tweenEasing":0,"rotate":0.06},{"duration":54,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"rotate":-4.1}]},{"name":"rightShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.51,"y":-0.36},{"duration":9,"tweenEasing":0,"x":0.86,"y":-1.3},{"duration":9,"tweenEasing":0,"x":0.67,"y":-1},{"duration":9,"tweenEasing":0,"x":0.86,"y":-1.3},{"duration":9,"tweenEasing":0,"x":0.67,"y":-1},{"duration":9,"tweenEasing":0,"x":0.86,"y":-1.39},{"duration":9,"tweenEasing":0,"x":0.67,"y":-1},{"duration":18,"tweenEasing":0,"x":0.86,"y":-1.86},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-38.24},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-39.74},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-45.24},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":18,"tweenEasing":0,"rotate":-38.24},{"duration":0}]},{"name":"body","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":-0.16,"y":0.16},{"duration":9,"tweenEasing":0,"y":-0.49},{"duration":9,"tweenEasing":0,"y":-0.48},{"duration":9,"tweenEasing":0,"y":-0.73},{"duration":9,"tweenEasing":0,"y":-0.56},{"duration":9,"tweenEasing":0,"y":-0.97},{"duration":9,"tweenEasing":0,"y":-0.48},{"duration":18,"tweenEasing":0,"y":-1.05},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.48},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":0.41},{"duration":0,"rotate":-6.48}],"scaleFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":18,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.06},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.06},{"duration":30}],"scaleFrame":[{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.04,"y":1.1},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.04,"y":1.1},{"duration":30}]},{"name":"rightHand","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":18,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":11.7},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":18,"tweenEasing":0,"rotate":10.34},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":9,"tweenEasing":0,"x":-0.17,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":9,"tweenEasing":0,"x":-0.17,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":9,"tweenEasing":0,"x":-0.17,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":18,"tweenEasing":0,"x":-0.2,"y":0.01},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":21.7},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":9,"tweenEasing":0,"rotate":48.89},{"duration":9,"tweenEasing":0,"rotate":45.22},{"duration":9,"tweenEasing":0,"rotate":48.89},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":9,"tweenEasing":0,"rotate":46.54},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":18,"tweenEasing":0,"rotate":48.89},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":9,"tweenEasing":0,"x":0.76,"y":0.39},{"duration":9,"tweenEasing":0,"x":1.13,"y":-0.75},{"duration":9,"tweenEasing":0,"x":0.92,"y":-0.26},{"duration":9,"tweenEasing":0,"x":1.13,"y":-0.75},{"duration":9,"tweenEasing":0,"x":0.92,"y":-0.26},{"duration":9,"tweenEasing":0,"x":1.13,"y":-0.75},{"duration":9,"tweenEasing":0,"x":0.92,"y":-0.49},{"duration":18,"tweenEasing":0,"x":1.13,"y":-1.07},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.67},{"duration":9,"tweenEasing":0,"rotate":-30.66},{"duration":9,"tweenEasing":0,"rotate":-31.48},{"duration":9,"tweenEasing":0,"rotate":-27.88},{"duration":9,"tweenEasing":0,"rotate":-34.28},{"duration":9,"tweenEasing":0,"rotate":-25.77},{"duration":9,"tweenEasing":0,"rotate":-35.22},{"duration":9,"tweenEasing":0,"rotate":-23.55},{"duration":18,"tweenEasing":0,"rotate":-31.48},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":39,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect5","colorFrame":[{"duration":27,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":12,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":36,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":33,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":102,"value":-1}]}]},{"duration":66,"playTimes":0,"name":"Idle1","bone":[{"name":"effect6","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":3.46,"y":-6.84},{"duration":0,"x":5.42,"y":-9.87}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"rotate":-10.38}]},{"name":"effect5","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":-4,"y":-3.31},{"duration":15,"tweenEasing":0,"x":-5.03,"y":-8.91},{"duration":9,"x":-5.37,"y":-12.35}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":27.97},{"duration":15,"tweenEasing":0,"rotate":-3.77},{"duration":9,"rotate":-10.94}]},{"name":"effect4","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":3.88,"y":-6.4},{"duration":21,"tweenEasing":0,"x":6.75,"y":-10.97},{"duration":9,"x":6.51,"y":-13.37}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":19.87},{"duration":21,"tweenEasing":0,"rotate":-1.94},{"duration":9,"rotate":-29.35}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":3.4,"y":-7.87},{"duration":18,"tweenEasing":0,"x":3.13,"y":-14.13},{"duration":0,"x":3.67,"y":-17.86}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-25.82},{"duration":18,"tweenEasing":0,"rotate":-13.32},{"duration":0,"rotate":-23.08}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":-2.32,"y":-5.92},{"duration":21,"tweenEasing":0,"x":-5.84,"y":-9.44},{"duration":6,"x":-7.52,"y":-12}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":35.13},{"duration":21,"tweenEasing":0,"rotate":-4.98},{"duration":6,"rotate":29.58}]},{"name":"leftHand","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.29,"y":0.43},{"duration":24,"tweenEasing":0,"x":0.29,"y":0.43},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-4.45},{"duration":24,"tweenEasing":0,"rotate":-6.58},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.03,"y":0.23},{"duration":24}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-3.35},{"duration":24,"tweenEasing":0,"rotate":7.11},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-0.08,"y":-0.56},{"duration":24,"tweenEasing":0,"x":-0.08,"y":-0.56},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":13.8},{"duration":24,"tweenEasing":0,"rotate":4.52},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.1,"y":-0.99},{"duration":24,"tweenEasing":0,"x":0.18,"y":-0.92},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":16.02},{"duration":24,"tweenEasing":0,"rotate":12.08},{"duration":0}]},{"name":"head","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-0.16,"y":-0.69},{"duration":24,"tweenEasing":0,"y":-0.45},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.32,"y":-1.9},{"duration":24,"tweenEasing":0,"x":0.32,"y":-0.78},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-10.95},{"duration":24,"tweenEasing":0,"rotate":-8.38},{"duration":0}]},{"name":"body","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"y":-0.72},{"duration":24,"tweenEasing":0,"x":0.08,"y":-0.32},{"duration":0}],"scaleFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":24,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":66,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":11.7},{"duration":21,"tweenEasing":0,"rotate":16.12},{"duration":24,"tweenEasing":0,"rotate":15.51},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":21,"tweenEasing":0,"x":-0.09,"y":0.52},{"duration":24,"tweenEasing":0,"x":-0.07,"y":0.13},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":21.7},{"duration":21,"tweenEasing":0,"rotate":45.3},{"duration":24,"tweenEasing":0,"rotate":32.17},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":21,"tweenEasing":0,"x":0.74,"y":0.46},{"duration":24,"tweenEasing":0,"x":1.06,"y":0.7},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.67},{"duration":21,"tweenEasing":0,"rotate":-26.33},{"duration":24,"tweenEasing":0,"rotate":-19.75},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect5","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":66,"value":-1}]}]}],"defaultActions":[{"gotoAndPlay":"Idle1"}]}]} \ No newline at end of file +{"frameRate":60,"name":"SoldierFireGhost","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":60,"name":"SoldierFireGhost","aabb":{"x":-17.1,"y":-45.87,"width":38.84,"height":47.16},"bone":[{"name":"root"},{"inheritScale":false,"length":6.5,"name":"leftShoulder","parent":"root","transform":{"x":-5.60925,"y":-28.39315,"skX":156.8918,"skY":156.8918}},{"inheritScale":false,"name":"backLight","parent":"root","transform":{"x":0.1,"y":-23.0462,"scX":3,"scY":3}},{"inheritScale":false,"length":8.5,"name":"rightArm","parent":"root","transform":{"x":6.7954,"y":-26.8018,"skX":46.9769,"skY":46.9769}},{"inheritScale":false,"name":"effect4","parent":"root","transform":{"x":6.32,"y":-21.38935,"skX":-9.349,"skY":-9.349}},{"inheritScale":false,"name":"effect7","parent":"root"},{"inheritScale":false,"name":"effect3","parent":"root","transform":{"x":5.75,"y":-27.36735}},{"inheritScale":false,"length":8.5,"name":"leg","parent":"root","transform":{"x":-0.45525,"y":-1.41005,"skX":-85.7242,"skY":-85.7242}},{"inheritScale":false,"length":11,"name":"body","parent":"root","transform":{"x":1.00195,"y":-12.3951,"skX":-82.2714,"skY":-82.2714}},{"inheritScale":false,"length":6,"name":"rightShoulder","parent":"root","transform":{"x":9.1041,"y":-26.3402,"skX":22.0857,"skY":22.0857}},{"inheritScale":false,"length":5.5,"name":"head","parent":"root","transform":{"x":4.103,"y":-31.2905,"skX":-83.4757,"skY":-83.4757}},{"inheritScale":false,"length":5,"name":"leftArm","parent":"root","transform":{"x":-6.5059,"y":-26.80925,"skX":122.5397,"skY":122.5397}},{"inheritScale":false,"name":"effect2","parent":"root","transform":{"x":-5.0143,"y":-28.2204,"skX":-79.3059,"skY":-79.3059}},{"inheritScale":false,"name":"effect5","parent":"root","transform":{"x":-15.0286,"y":-16.5986,"skX":-72.4737,"skY":-72.4737}},{"inheritScale":false,"name":"effect6","parent":"root","transform":{"x":13.28445,"y":-15.03735}},{"inheritScale":false,"name":"rightFrontArm","parent":"rightArm","transform":{"x":8.82335,"y":0.6604,"skX":10.7237,"skY":10.7237}},{"inheritScale":false,"name":"leftFrontArm","parent":"leftArm","transform":{"x":7.37235,"y":1.7869,"skX":-39.1583,"skY":-39.1583}},{"inheritScale":false,"name":"rightHand","parent":"rightFrontArm","transform":{"x":5.3646,"y":-2.8911,"skX":21.9835,"skY":21.9835}},{"inheritScale":false,"name":"leftHand","parent":"leftFrontArm","transform":{"x":7.3904,"y":1.4291,"skX":-25.7356,"skY":-25.7356}}],"slot":[{"name":"backLight","parent":"backLight"},{"name":"rightArm","parent":"rightArm"},{"name":"leg","parent":"leg"},{"name":"body","parent":"body"},{"name":"rightShoulder","parent":"rightShoulder"},{"name":"rightFrontArm","parent":"rightFrontArm"},{"name":"rightHand","parent":"rightHand"},{"name":"leftArm","parent":"leftArm"},{"name":"leftShoulder","parent":"leftShoulder"},{"name":"leftFrontArm","parent":"leftFrontArm"},{"name":"head","parent":"head"},{"name":"leftHand","parent":"leftHand"},{"name":"effect2","parent":"effect2"},{"name":"effect3","parent":"effect3"},{"name":"effect4","parent":"effect4"},{"name":"effect5","parent":"effect5"},{"name":"effect6","parent":"effect6"},{"displayIndex":-1,"name":"effect7","parent":"effect7"}],"skin":[{"slot":[{"name":"leftHand","display":[{"name":"yinmo07","transform":{"x":2.04,"y":-0.17,"skX":-66.8,"skY":-66.8},"path":"leftHand"}]},{"name":"rightShoulder","display":[{"name":"yinmo04","transform":{"x":1.71,"y":-0.41,"skX":-28.61,"skY":-28.61},"path":"rightShoulder"}]},{"name":"effect3","display":[{"name":"huomiao01"}]},{"name":"rightHand","display":[{"name":"yinmo10","transform":{"x":2.69,"y":-0.12,"skX":-63.84,"skY":-63.84},"path":"rightHand"}]},{"name":"effect5","display":[{"name":"huomiao01"}]},{"name":"leftShoulder","display":[{"name":"yinmo03","transform":{"x":2.4,"y":-0.06,"skX":-154.62,"skY":-154.62},"path":"leftShoulder"}]},{"name":"backLight","display":[{"name":"biu"}]},{"name":"rightArm","display":[{"name":"yinmo08","transform":{"x":4.54,"y":-0.2,"skX":-54.4,"skY":-54.4},"path":"rightArm"}]},{"name":"head","display":[{"name":"yinmo01","transform":{"x":6.5,"y":-1.04,"skX":82.3,"skY":82.3,"scX":1.5,"scY":1.5},"path":"head"},{"name":"head2","transform":{"x":6.64,"y":-1.22,"skX":83.48,"skY":83.48}}]},{"name":"body","display":[{"name":"yinmo02","transform":{"x":6.41,"y":-1.19,"skX":82.27,"skY":82.27},"path":"body"}]},{"name":"effect2","display":[{"name":"huomiao01"}]},{"name":"rightFrontArm","display":[{"name":"yinmo09","transform":{"x":1.87,"y":-0.59,"skX":-60.14,"skY":-60.14},"path":"rightFrontArm"}]},{"name":"effect4","display":[{"name":"huomiao01"}]},{"name":"leftArm","display":[{"name":"yinmo05","transform":{"x":3.46,"y":0.04,"skX":-112.43,"skY":-112.43},"path":"leftArm"}]},{"name":"effect6","display":[{"name":"huomiao01"}]},{"name":"leftFrontArm","display":[{"name":"yinmo06","transform":{"x":3.15,"y":0.49,"skX":-76.83,"skY":-76.83},"path":"leftFrontArm"}]},{"name":"leg","display":[{"name":"yinmoqe00","transform":{"x":5.32,"y":-0.07,"skX":85.72,"skY":85.72}}]}]}],"animation":[{"duration":60,"playTimes":0,"name":"Walking","bone":[{"name":"effect5","translateFrame":[{"duration":12,"tweenEasing":0,"x":22.08,"y":7.04},{"duration":12,"tweenEasing":0,"x":22.08,"y":7.04},{"duration":15,"tweenEasing":0,"x":15.52,"y":7.68},{"duration":15,"tweenEasing":0,"x":11.04,"y":-0.32},{"duration":6,"x":-5.12,"y":-11.68}],"rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":21,"rotate":7.3}]},{"name":"effect4","translateFrame":[{"duration":6,"tweenEasing":0,"x":3.68,"y":-1.24},{"duration":9,"tweenEasing":0,"x":3.68,"y":-1.24},{"duration":15,"tweenEasing":0,"x":-1,"y":-7.88},{"duration":12,"tweenEasing":0,"x":-7.24,"y":-10.24},{"duration":12,"tweenEasing":0,"x":-7.32,"y":-18.4},{"duration":6,"x":-20.28,"y":-26.52}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-49.96},{"duration":15,"tweenEasing":0,"rotate":-49.96},{"duration":12,"tweenEasing":0,"rotate":-84.92},{"duration":12,"tweenEasing":0,"rotate":-11.77},{"duration":6,"rotate":-28.57}]},{"name":"effect3","translateFrame":[{"duration":6,"tweenEasing":0,"x":-7.4,"y":12.8},{"duration":12,"tweenEasing":0,"x":-7.4,"y":12.8},{"duration":18,"tweenEasing":0,"x":-14.6,"y":8.8},{"duration":12,"tweenEasing":0,"x":-19,"y":4.6},{"duration":9,"tweenEasing":0,"x":-28.2,"y":2.2},{"duration":3,"x":-34.4,"y":2}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-59.23},{"duration":12,"tweenEasing":0,"rotate":-36.85},{"duration":9,"tweenEasing":0,"rotate":-66.48},{"duration":3,"rotate":-111.5}]},{"name":"effect2","translateFrame":[{"duration":3,"tweenEasing":0,"x":5.28,"y":5.6},{"duration":12,"tweenEasing":0,"x":5.28,"y":5.6},{"duration":15,"tweenEasing":0,"x":-0.8,"y":0.8},{"duration":18,"tweenEasing":0,"x":-9.92,"y":1.6},{"duration":9,"tweenEasing":0,"x":-14.88,"y":-3.36},{"duration":3,"x":-19.84,"y":-12}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-61.22},{"duration":9,"tweenEasing":0,"rotate":0.48},{"duration":3,"rotate":27.59}]},{"name":"leftHand","rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":11.3},{"duration":15,"tweenEasing":0,"rotate":15.68},{"duration":15,"tweenEasing":0,"rotate":-5.06},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":0.07,"y":0.59},{"duration":15,"tweenEasing":0,"x":0.23,"y":-0.53},{"duration":15,"tweenEasing":0,"x":-0.17,"y":-1.03},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-4.65},{"duration":15,"tweenEasing":0,"rotate":12.03},{"duration":15,"tweenEasing":0,"rotate":23.96},{"duration":15,"tweenEasing":0,"rotate":16.54},{"duration":0,"rotate":-4.65}]},{"name":"leftShoulder","translateFrame":[{"duration":15,"tweenEasing":0,"x":2.88},{"duration":15,"tweenEasing":0,"x":2.57,"y":0.97},{"duration":15,"tweenEasing":0,"x":4.14,"y":-0.08},{"duration":15,"tweenEasing":0,"x":3.68,"y":1.09},{"duration":0,"x":2.88}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":20.1},{"duration":15,"tweenEasing":0,"rotate":-5.43},{"duration":15,"tweenEasing":0,"rotate":10.13},{"duration":15,"tweenEasing":0,"rotate":-2.7},{"duration":0,"rotate":20.1}]},{"name":"leftArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":1.92,"y":-0.48},{"duration":15,"tweenEasing":0,"x":3.59,"y":0.72},{"duration":15,"tweenEasing":0,"x":6.63,"y":1.54},{"duration":15,"tweenEasing":0,"x":5.95,"y":1.94},{"duration":0,"x":1.92,"y":-0.48}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":26.91},{"duration":15,"tweenEasing":0,"rotate":-35.34},{"duration":15,"tweenEasing":0,"rotate":-70.51},{"duration":15,"tweenEasing":0,"rotate":-30.69},{"duration":0,"rotate":26.91}]},{"name":"head","translateFrame":[{"duration":15,"tweenEasing":0,"x":2.72,"y":0.64},{"duration":15,"tweenEasing":0,"x":2.48,"y":2.44},{"duration":15,"tweenEasing":0,"x":3.65,"y":0.32},{"duration":15,"tweenEasing":0,"x":3.79,"y":2.71},{"duration":0,"x":2.72,"y":0.64}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":0.59},{"duration":15,"tweenEasing":0,"rotate":0.59},{"duration":15,"tweenEasing":0,"rotate":-0.72},{"duration":15,"tweenEasing":0,"rotate":-0.72},{"duration":0,"rotate":0.59}]},{"name":"rightShoulder","translateFrame":[{"duration":15,"tweenEasing":0,"x":1.71,"y":0.58},{"duration":15,"tweenEasing":0,"x":0.85,"y":1.34},{"duration":15,"tweenEasing":0,"x":1.95,"y":0.09},{"duration":15,"tweenEasing":0,"x":2.81,"y":1.94},{"duration":0,"x":1.71,"y":0.58}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":10.12},{"duration":15,"tweenEasing":0,"rotate":-14.23},{"duration":15,"tweenEasing":0,"rotate":5.57},{"duration":15,"tweenEasing":0,"rotate":-13.84},{"duration":0,"rotate":10.12}]},{"name":"body","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"y":1.36},{"duration":15,"tweenEasing":0,"x":0.48,"y":-0.09},{"duration":15,"tweenEasing":0,"x":0.71,"y":1.67},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.24},{"duration":15,"tweenEasing":0,"rotate":13},{"duration":15,"tweenEasing":0,"rotate":16.36},{"duration":15,"tweenEasing":0,"rotate":14.15},{"duration":0,"rotate":11.24}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-0.48},{"duration":6,"tweenEasing":0,"x":-0.4},{"duration":6,"tweenEasing":0,"x":-0.48},{"duration":6,"tweenEasing":0,"x":-0.48},{"duration":12,"tweenEasing":0,"x":0.32},{"duration":6,"tweenEasing":0,"x":0.32},{"duration":6,"tweenEasing":0,"x":-0.16},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":1.02},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-0.52},{"duration":6}],"scaleFrame":[{"duration":6,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":6,"tweenEasing":0,"y":1.1},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":12,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":12,"y":0.9}]},{"name":"rightHand","translateFrame":[{"duration":60,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-8},{"duration":15,"tweenEasing":0,"rotate":-1.89},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":0.14},{"duration":0,"rotate":-8}]},{"name":"rightFrontArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.1,"y":-0.85},{"duration":15,"tweenEasing":0,"x":0.41,"y":-1.03},{"duration":15,"tweenEasing":0,"x":0.06,"y":-0.05},{"duration":3,"tweenEasing":0,"x":0.06,"y":-0.05},{"duration":6,"tweenEasing":0,"x":-0.04,"y":-1.27},{"duration":6,"tweenEasing":0,"y":-1.32},{"duration":0,"x":-0.1,"y":-0.85}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-43.73},{"duration":15,"tweenEasing":0,"rotate":-66.02},{"duration":15,"tweenEasing":0,"rotate":-6.47},{"duration":3,"tweenEasing":0,"rotate":-62.6},{"duration":6,"tweenEasing":0,"rotate":-58.82},{"duration":6,"tweenEasing":0,"rotate":-51.28},{"duration":0,"rotate":-43.73}]},{"name":"rightArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":2.16,"y":2.04},{"duration":15,"tweenEasing":0,"x":2.48,"y":1.17},{"duration":15,"tweenEasing":0,"x":-4.18,"y":-2.13},{"duration":15,"tweenEasing":0,"x":2.1,"y":1.69},{"duration":0,"x":2.16,"y":2.04}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.28},{"duration":15,"tweenEasing":0,"rotate":63.1},{"duration":15,"tweenEasing":0,"rotate":74.64},{"duration":15,"tweenEasing":0,"rotate":55.11},{"duration":0,"rotate":11.28}]}],"slot":[{"name":"effect5","displayFrame":[{"duration":12,"value":-1},{"duration":45},{"duration":3,"value":-1}],"colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect4","displayFrame":[{"duration":6,"value":-1},{"duration":51},{"duration":3,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":27,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":6,"value":-1},{"duration":54},{"duration":0,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":60},{"duration":0,"value":-1}],"colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":33,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":60,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":60,"value":-1}]}]},{"duration":174,"name":"Atk2","bone":[{"name":"effect5","translateFrame":[{"duration":18,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":13.3,"y":-18.8},{"duration":12,"tweenEasing":0,"x":14.8,"y":-23.5},{"duration":24,"tweenEasing":0,"x":11.2,"y":-31.6},{"duration":12,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":13.3,"y":-18.8},{"duration":12,"tweenEasing":0,"x":14.8,"y":-23.5},{"duration":24,"tweenEasing":0,"x":11.2,"y":-31.6},{"duration":12,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":13.3,"y":-18.8},{"duration":9,"tweenEasing":0,"x":14.8,"y":-23.5},{"duration":3,"x":11.2,"y":-31.6}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":12,"tweenEasing":0,"rotate":11.57},{"duration":24,"tweenEasing":0,"rotate":61.88},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":12,"tweenEasing":0,"rotate":11.57},{"duration":24,"tweenEasing":0,"rotate":61.88},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":9,"tweenEasing":0,"rotate":11.57},{"duration":3,"rotate":61.88}]},{"name":"effect4","translateFrame":[{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":15,"tweenEasing":0,"x":4.34,"y":-5.6},{"duration":12,"tweenEasing":0,"x":-1.95,"y":-16.23},{"duration":21,"tweenEasing":0,"x":2.52,"y":-23.89},{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":15,"tweenEasing":0,"x":4.34,"y":-5.6},{"duration":12,"tweenEasing":0,"x":-1.95,"y":-16.23},{"duration":21,"tweenEasing":0,"x":2.52,"y":-23.89},{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":12,"tweenEasing":0,"x":4.34,"y":-5.6},{"duration":12,"tweenEasing":0,"x":-1.95,"y":-16.23},{"duration":6,"x":2.52,"y":-23.89}],"rotateFrame":[{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":15,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":21,"tweenEasing":0,"rotate":-53.65},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":15,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":21,"tweenEasing":0,"rotate":-53.65},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":12,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":6,"rotate":-53.65}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0,"y":7.54},{"duration":15,"tweenEasing":0,"y":7.54},{"duration":15,"tweenEasing":0,"x":-6.29,"y":-9.26},{"duration":12,"tweenEasing":0,"x":-12.12,"y":-17.95},{"duration":18,"tweenEasing":0,"x":-18.97,"y":-21.37},{"duration":15,"tweenEasing":0,"y":7.54},{"duration":15,"tweenEasing":0,"x":-6.29,"y":-9.26},{"duration":12,"tweenEasing":0,"x":-12.12,"y":-17.95},{"duration":18,"tweenEasing":0,"x":-18.97,"y":-21.37},{"duration":15,"tweenEasing":0,"y":7.54},{"duration":12,"tweenEasing":0,"x":-6.29,"y":-9.26},{"duration":12,"tweenEasing":0,"x":-12.12,"y":-17.95},{"duration":6,"x":-18.97,"y":-21.37}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-42.15},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":18,"tweenEasing":0,"rotate":-111.08},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":18,"tweenEasing":0,"rotate":-111.08},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":6,"rotate":-111.08}]},{"name":"effect2","translateFrame":[{"duration":6,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":9,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":15,"tweenEasing":0,"x":-1.6,"y":-0.23},{"duration":15,"tweenEasing":0,"x":-14.29,"y":-4.12},{"duration":15,"tweenEasing":0,"x":-13.71,"y":-10.29},{"duration":15,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":15,"tweenEasing":0,"x":-1.6,"y":-0.23},{"duration":15,"tweenEasing":0,"x":-14.29,"y":-4.12},{"duration":15,"tweenEasing":0,"x":-13.71,"y":-10.29},{"duration":15,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":15,"tweenEasing":0,"x":-1.6,"y":-0.23},{"duration":15,"tweenEasing":0,"x":-14.29,"y":-4.12},{"duration":9,"x":-13.71,"y":-10.29}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":15,"tweenEasing":0,"rotate":57.19},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":15,"tweenEasing":0,"rotate":57.19},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":9,"rotate":57.19}]},{"name":"leftHand","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":3,"tweenEasing":0,"x":0.35,"y":0.04},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.1},{"duration":12,"tweenEasing":0,"x":0.06,"y":0.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":3,"tweenEasing":0,"x":0.35,"y":0.04},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.1},{"duration":12,"tweenEasing":0,"x":0.06,"y":0.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":3,"tweenEasing":0,"x":0.35,"y":0.04},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.1},{"duration":12,"tweenEasing":0,"x":0.06,"y":0.29},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.6},{"duration":3,"tweenEasing":0,"x":0.14,"y":0.17},{"duration":15,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.33,"y":-1.5},{"duration":12,"tweenEasing":0,"x":0.24,"y":-0.45},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.6},{"duration":3,"tweenEasing":0,"x":0.14,"y":0.17},{"duration":15,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.33,"y":-1.5},{"duration":12,"tweenEasing":0,"x":0.24,"y":-0.45},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.6},{"duration":3,"tweenEasing":0,"x":0.14,"y":0.17},{"duration":15,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.33,"y":-1.5},{"duration":12,"tweenEasing":0,"x":0.24,"y":-0.45},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":0}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.16,"y":2.63},{"duration":3,"tweenEasing":0,"x":8,"y":1.03},{"duration":15,"tweenEasing":0,"x":-7.12,"y":1.65},{"duration":3,"tweenEasing":0,"x":-10.38,"y":-0.4},{"duration":3,"tweenEasing":0,"x":-3.7,"y":-0.01},{"duration":12,"tweenEasing":0,"x":4.67,"y":1.6},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.16,"y":2.63},{"duration":3,"tweenEasing":0,"x":8,"y":1.03},{"duration":15,"tweenEasing":0,"x":-7.12,"y":1.65},{"duration":3,"tweenEasing":0,"x":-10.38,"y":-0.4},{"duration":3,"tweenEasing":0,"x":-3.7,"y":-0.01},{"duration":12,"tweenEasing":0,"x":4.67,"y":1.6},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.16,"y":2.63},{"duration":3,"tweenEasing":0,"x":8,"y":1.03},{"duration":15,"tweenEasing":0,"x":-7.12,"y":1.65},{"duration":3,"tweenEasing":0,"x":-10.38,"y":-0.4},{"duration":3,"tweenEasing":0,"x":-3.7,"y":-0.01},{"duration":12,"tweenEasing":0,"x":4.67,"y":1.6},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":4.25,"y":-0.63},{"duration":3,"tweenEasing":0,"x":7.94,"y":0.21},{"duration":15,"tweenEasing":0,"x":-0.18,"y":0.53},{"duration":3,"tweenEasing":0,"x":-2.9,"y":-0.6},{"duration":3,"tweenEasing":0,"x":1.72,"y":1.3},{"duration":12,"tweenEasing":0,"x":4.92,"y":0.26},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":4.25,"y":-0.63},{"duration":3,"tweenEasing":0,"x":7.94,"y":0.21},{"duration":15,"tweenEasing":0,"x":-0.18,"y":0.53},{"duration":3,"tweenEasing":0,"x":-2.9,"y":-0.6},{"duration":3,"tweenEasing":0,"x":1.72,"y":1.3},{"duration":12,"tweenEasing":0,"x":4.92,"y":0.26},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":4.25,"y":-0.63},{"duration":3,"tweenEasing":0,"x":7.94,"y":0.21},{"duration":15,"tweenEasing":0,"x":-0.18,"y":0.53},{"duration":3,"tweenEasing":0,"x":-2.9,"y":-0.6},{"duration":3,"tweenEasing":0,"x":1.72,"y":1.3},{"duration":12,"tweenEasing":0,"x":4.92,"y":0.26},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":0}],"scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":15}]},{"name":"head","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.58,"y":5.97},{"duration":3,"tweenEasing":0,"x":8.94,"y":8.11},{"duration":15,"tweenEasing":0,"x":-8.84,"y":0.61},{"duration":3,"tweenEasing":0,"x":-9.28,"y":-1},{"duration":3,"tweenEasing":0,"x":-4.25,"y":-0.36},{"duration":12,"tweenEasing":0,"x":4.59,"y":3.9},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.58,"y":5.97},{"duration":3,"tweenEasing":0,"x":8.94,"y":8.11},{"duration":15,"tweenEasing":0,"x":-8.84,"y":0.61},{"duration":3,"tweenEasing":0,"x":-9.28,"y":-1},{"duration":3,"tweenEasing":0,"x":-4.25,"y":-0.36},{"duration":12,"tweenEasing":0,"x":4.59,"y":3.9},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.58,"y":5.97},{"duration":3,"tweenEasing":0,"x":8.94,"y":8.11},{"duration":15,"tweenEasing":0,"x":-8.84,"y":0.61},{"duration":3,"tweenEasing":0,"x":-9.28,"y":-1},{"duration":3,"tweenEasing":0,"x":-4.25,"y":-0.36},{"duration":12,"tweenEasing":0,"x":4.59,"y":3.9},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":3.56,"y":2.23},{"duration":3,"tweenEasing":0,"x":5.16,"y":3.53},{"duration":15,"tweenEasing":0,"x":-11.15,"y":-1.1},{"duration":3,"tweenEasing":0,"x":-10.46,"y":-2.84},{"duration":3,"tweenEasing":0,"x":-4.45,"y":-0.43},{"duration":12,"tweenEasing":0,"x":3.48,"y":2.71},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":3.56,"y":2.23},{"duration":3,"tweenEasing":0,"x":5.16,"y":3.53},{"duration":15,"tweenEasing":0,"x":-11.15,"y":-1.1},{"duration":3,"tweenEasing":0,"x":-10.46,"y":-2.84},{"duration":3,"tweenEasing":0,"x":-4.45,"y":-0.43},{"duration":12,"tweenEasing":0,"x":3.48,"y":2.71},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":3.56,"y":2.23},{"duration":3,"tweenEasing":0,"x":5.16,"y":3.53},{"duration":15,"tweenEasing":0,"x":-11.15,"y":-1.1},{"duration":3,"tweenEasing":0,"x":-10.46,"y":-2.84},{"duration":3,"tweenEasing":0,"x":-4.45,"y":-0.43},{"duration":12,"tweenEasing":0,"x":3.48,"y":2.71},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":0}]},{"name":"body","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.45,"y":1.64},{"duration":3,"tweenEasing":0,"x":0.03,"y":1.08},{"duration":9,"tweenEasing":0,"x":-1.44,"y":-0.71},{"duration":6,"tweenEasing":0,"x":-1.68,"y":-0.49},{"duration":3,"tweenEasing":0,"x":-1.84,"y":-0.35},{"duration":3,"tweenEasing":0,"x":-0.61,"y":-0.37},{"duration":12,"tweenEasing":0,"x":0.05,"y":1.11},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.45,"y":1.64},{"duration":3,"tweenEasing":0,"x":0.03,"y":1.08},{"duration":9,"tweenEasing":0,"x":-1.44,"y":-0.71},{"duration":6,"tweenEasing":0,"x":-1.68,"y":-0.49},{"duration":3,"tweenEasing":0,"x":-1.84,"y":-0.35},{"duration":3,"tweenEasing":0,"x":-0.61,"y":-0.37},{"duration":12,"tweenEasing":0,"x":0.05,"y":1.11},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.45,"y":1.64},{"duration":3,"tweenEasing":0,"x":0.03,"y":1.08},{"duration":9,"tweenEasing":0,"x":-1.44,"y":-0.71},{"duration":6,"tweenEasing":0,"x":-1.68,"y":-0.49},{"duration":3,"tweenEasing":0,"x":-1.84,"y":-0.35},{"duration":3,"tweenEasing":0,"x":-0.61,"y":-0.37},{"duration":12,"tweenEasing":0,"x":0.05,"y":1.11},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":0}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.24},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.32},{"duration":3,"tweenEasing":0,"y":-0.32},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.24},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.32},{"duration":3,"tweenEasing":0,"y":-0.32},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.24},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.32},{"duration":3,"tweenEasing":0,"y":-0.32},{"duration":15}],"scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":15}]},{"name":"rightHand","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":3,"tweenEasing":0,"x":-1.3,"y":-0.62},{"duration":18,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":12,"tweenEasing":0,"x":-1.21,"y":-0.17},{"duration":6,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":15,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":3,"tweenEasing":0,"x":-1.3,"y":-0.62},{"duration":18,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":12,"tweenEasing":0,"x":-1.21,"y":-0.17},{"duration":6,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":15,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":3,"tweenEasing":0,"x":-1.3,"y":-0.62},{"duration":18,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":12,"tweenEasing":0,"x":-1.21,"y":-0.17},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-30.35},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":3,"tweenEasing":0,"x":1.56,"y":-1.53},{"duration":15,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":12,"tweenEasing":0,"x":0.62,"y":-1.61},{"duration":6,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":15,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":3,"tweenEasing":0,"x":1.56,"y":-1.53},{"duration":15,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":12,"tweenEasing":0,"x":0.62,"y":-1.61},{"duration":6,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":15,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":3,"tweenEasing":0,"x":1.56,"y":-1.53},{"duration":15,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":12,"tweenEasing":0,"x":0.62,"y":-1.61},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-42.6},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-55.76},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-55.76},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":0,"rotate":21.7}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":0}]},{"name":"rightArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":3.52,"y":0.28},{"duration":3,"tweenEasing":0,"x":4.23,"y":2.19},{"duration":15,"tweenEasing":0,"x":-4.97,"y":-2.79},{"duration":3,"tweenEasing":0,"x":-5.28,"y":-3.39},{"duration":3,"tweenEasing":0,"x":-3.67,"y":-0.35},{"duration":12,"tweenEasing":0,"x":2.15,"y":1.63},{"duration":6,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":15,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":3.52,"y":0.28},{"duration":3,"tweenEasing":0,"x":4.23,"y":2.19},{"duration":15,"tweenEasing":0,"x":-4.97,"y":-2.79},{"duration":3,"tweenEasing":0,"x":-5.28,"y":-3.39},{"duration":3,"tweenEasing":0,"x":-3.67,"y":-0.35},{"duration":12,"tweenEasing":0,"x":2.15,"y":1.63},{"duration":6,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":15,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":3.52,"y":0.28},{"duration":3,"tweenEasing":0,"x":4.23,"y":2.19},{"duration":15,"tweenEasing":0,"x":-4.97,"y":-2.79},{"duration":3,"tweenEasing":0,"x":-5.28,"y":-3.39},{"duration":3,"tweenEasing":0,"x":-3.67,"y":-0.35},{"duration":12,"tweenEasing":0,"x":2.15,"y":1.63},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":0,"rotate":-6.67}],"scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":36,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":36,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":12}]}],"slot":[{"name":"effect5","displayFrame":[{"duration":18,"value":-1},{"duration":156},{"duration":0,"value":-1}],"colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect4","displayFrame":[{"duration":12,"value":-1},{"duration":159},{"duration":3,"value":-1}],"colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":9,"value":-1},{"duration":162},{"duration":3,"value":-1}],"colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":6,"value":-1},{"duration":162},{"duration":6,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"rightHand","displayFrame":[{"duration":21},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":15}],"colorFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":42,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":15}]},{"name":"rightFrontArm","displayFrame":[{"duration":21},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":15}],"colorFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":42,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":15}]},{"name":"backLight","displayFrame":[{"duration":174,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":174,"value":-1}]}]},{"duration":34,"name":"Atk1","bone":[{"name":"effect4","translateFrame":[{"duration":4,"tweenEasing":0,"x":-9.1,"y":6.7},{"duration":8,"tweenEasing":0,"x":-9.1,"y":6.7},{"duration":8,"tweenEasing":0,"x":-17.8,"y":1.8},{"duration":8,"tweenEasing":0,"x":-24,"y":0.4},{"duration":6,"x":-30.6}],"rotateFrame":[{"duration":4,"tweenEasing":0,"rotate":-105.08},{"duration":8,"tweenEasing":0,"rotate":-105.08},{"duration":8,"tweenEasing":0,"rotate":-96.73},{"duration":8,"tweenEasing":0,"rotate":-69.9},{"duration":6,"rotate":-94.04}]},{"name":"effect3","translateFrame":[{"duration":2,"tweenEasing":0,"x":-14.66,"y":10.66},{"duration":4,"tweenEasing":0,"x":-14.66,"y":10.66},{"duration":10,"tweenEasing":0,"x":-23.07,"y":6},{"duration":8,"tweenEasing":0,"x":-26.93,"y":9.46},{"duration":10,"x":-31.07,"y":7.33}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-108.91},{"duration":10,"tweenEasing":0,"rotate":-108.91},{"duration":8,"tweenEasing":0,"rotate":-127.09},{"duration":10,"rotate":-108.09}]},{"name":"effect2","translateFrame":[{"duration":2,"tweenEasing":0,"x":-4.54,"y":13.2},{"duration":6,"tweenEasing":0,"x":-4.54,"y":13.2},{"duration":10,"tweenEasing":0,"x":-13.6,"y":2.8},{"duration":4,"tweenEasing":0,"x":-23.46,"y":-4.26},{"duration":12,"x":-27.46,"y":-5.46}],"rotateFrame":[{"duration":2,"tweenEasing":0,"rotate":31.2},{"duration":6,"tweenEasing":0,"rotate":31.2},{"duration":10,"tweenEasing":0,"rotate":-0.05},{"duration":4,"tweenEasing":0,"rotate":-26.91},{"duration":12,"rotate":-24.71}]},{"name":"leftHand","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":8,"tweenEasing":0,"x":0.01,"y":0.07},{"duration":8,"tweenEasing":0,"x":0.01,"y":0.07},{"duration":8,"tweenEasing":0,"x":0.1,"y":0.49},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-12.3},{"duration":8,"tweenEasing":0,"rotate":18.53},{"duration":8,"tweenEasing":0,"rotate":-9},{"duration":8,"tweenEasing":0,"rotate":9.5},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.71,"y":0.04},{"duration":8,"tweenEasing":0,"x":0.18,"y":0.12},{"duration":8,"tweenEasing":0,"x":0.69,"y":-0.78},{"duration":8,"tweenEasing":0,"x":0.2,"y":0.24},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":13.83},{"duration":8,"tweenEasing":0,"rotate":25.06},{"duration":8,"tweenEasing":0,"rotate":17.69},{"duration":8,"tweenEasing":0,"rotate":12.39},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-2.88,"y":-0.6},{"duration":8,"tweenEasing":0,"x":8.4,"y":-0.74},{"duration":8,"tweenEasing":0,"x":8.01,"y":-0.58},{"duration":8,"tweenEasing":0,"x":1.14,"y":-0.23},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":40},{"duration":8,"tweenEasing":0,"rotate":-12.39},{"duration":8,"tweenEasing":0,"rotate":4.99},{"duration":8,"tweenEasing":0,"rotate":8.69},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-3.42,"y":-1.95},{"duration":8,"tweenEasing":0,"x":12.95,"y":0.1},{"duration":8,"tweenEasing":0,"x":12.47,"y":0.42},{"duration":8,"tweenEasing":0,"x":1.5,"y":-2.19},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":66.79},{"duration":8,"tweenEasing":0,"rotate":-95.1},{"duration":8,"tweenEasing":0,"rotate":-98.37},{"duration":8,"tweenEasing":0,"rotate":-44.89},{"duration":0}]},{"name":"head","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-4.17,"y":0.46},{"duration":8,"tweenEasing":0,"x":9.35,"y":1.83},{"duration":8,"tweenEasing":0,"x":8.79,"y":2.23},{"duration":8,"tweenEasing":0,"x":1.23,"y":0.91},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":15.73},{"duration":8,"tweenEasing":0,"rotate":2.95},{"duration":8,"tweenEasing":0,"rotate":2.83},{"duration":8,"tweenEasing":0,"rotate":0.01},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-3.63,"y":-0.73},{"duration":8,"tweenEasing":0,"x":6.29,"y":2.04},{"duration":8,"tweenEasing":0,"x":6.13,"y":2.27},{"duration":8,"tweenEasing":0,"x":0.4,"y":0.34},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-11.02},{"duration":8,"tweenEasing":0,"rotate":-27.15},{"duration":8,"tweenEasing":0,"rotate":-15.36},{"duration":8,"tweenEasing":0,"rotate":3.41},{"duration":0}]},{"name":"body","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-1.47,"y":-1.01},{"duration":8,"tweenEasing":0,"x":1.27,"y":-0.09},{"duration":8,"tweenEasing":0,"x":1.44,"y":0.23},{"duration":8,"tweenEasing":0,"y":0.4},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-11.15},{"duration":8,"tweenEasing":0,"rotate":29.43},{"duration":8,"tweenEasing":0,"rotate":30.7},{"duration":8,"tweenEasing":0,"rotate":1.09},{"duration":0}],"scaleFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":14,"tweenEasing":0,"y":-0.03},{"duration":4,"tweenEasing":0,"y":-0.03},{"duration":4,"tweenEasing":0,"y":-0.16},{"duration":2,"tweenEasing":0,"y":-0.16},{"duration":0}],"scaleFrame":[{"duration":4,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.1,"y":1.3},{"duration":4,"tweenEasing":0,"x":1.01,"y":1.1},{"duration":4,"tweenEasing":0,"x":1.01,"y":1.1},{"duration":6,"tweenEasing":0,"x":1.01,"y":0.9},{"duration":4,"tweenEasing":0,"x":1.01,"y":0.9},{"duration":4,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":2,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":8,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":2,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":8,"tweenEasing":0,"x":-0.97,"y":-0.2},{"duration":8,"tweenEasing":0,"x":-0.97,"y":-0.2},{"duration":8,"tweenEasing":0,"x":-0.54,"y":-0.17},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":8,"tweenEasing":0,"rotate":11.7},{"duration":2,"tweenEasing":0,"rotate":-34.26},{"duration":8,"tweenEasing":0,"rotate":-8.09},{"duration":8,"tweenEasing":0,"rotate":-36.51},{"duration":8,"tweenEasing":0,"rotate":-12.04},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":8,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":2,"tweenEasing":0,"x":-0.7,"y":0.18},{"duration":8,"tweenEasing":0,"x":-0.34,"y":0.12},{"duration":8,"tweenEasing":0,"x":-0.44,"y":0.07},{"duration":8,"tweenEasing":0,"x":0.31,"y":0.26},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":8,"tweenEasing":0,"rotate":21.7},{"duration":2,"tweenEasing":0,"rotate":-36.51},{"duration":8,"tweenEasing":0,"rotate":-41.51},{"duration":8,"tweenEasing":0,"rotate":-50.9},{"duration":8,"tweenEasing":0,"rotate":-42.18},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":8,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":2,"tweenEasing":0,"x":-2.96,"y":-0.32},{"duration":8,"tweenEasing":0,"x":1.4,"y":3.87},{"duration":8,"tweenEasing":0,"x":1.48,"y":4.19},{"duration":8,"tweenEasing":0,"x":-3.83,"y":-3.08},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":8,"tweenEasing":0,"rotate":-6.67},{"duration":2,"tweenEasing":0,"rotate":8.81},{"duration":8,"tweenEasing":0,"rotate":7.26},{"duration":8,"tweenEasing":0,"rotate":15.7},{"duration":8,"tweenEasing":0,"rotate":25.83},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect4","displayFrame":[{"duration":4,"value":-1},{"duration":26},{"duration":4,"value":-1}],"colorFrame":[{"duration":4,"tweenEasing":0,"value":{"aM":0}},{"duration":8,"tweenEasing":0,"value":{"aM":0}},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":2,"value":-1},{"duration":24},{"duration":8,"value":-1}],"colorFrame":[{"duration":2,"tweenEasing":0,"value":{"aM":0}},{"duration":4,"tweenEasing":0,"value":{"aM":0}},{"duration":10,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":10,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":2,"value":-1},{"duration":22},{"duration":10,"value":-1}],"colorFrame":[{"duration":2,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":10,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":12,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":34,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":34,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":34,"value":-1}]}]},{"duration":18,"name":"Atked1","bone":[{"name":"effect6","translateFrame":[{"duration":6,"tweenEasing":0,"x":-2.52,"y":1.72},{"duration":3,"tweenEasing":0,"x":-0.66,"y":-0.23},{"duration":6,"tweenEasing":0,"x":3.25,"y":-1.37},{"duration":3,"x":4.8,"y":-6.29}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"rotate":-20.99}]},{"name":"effect4","translateFrame":[{"duration":3,"tweenEasing":0,"x":-4.5,"y":3.8},{"duration":3,"tweenEasing":0,"x":-4.5,"y":3.8},{"duration":3,"tweenEasing":0,"x":-10.13,"y":-1.13},{"duration":9,"tweenEasing":0,"x":-11.84,"y":-6.3},{"duration":0,"x":-24,"y":-16.3}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-9.48},{"duration":3,"tweenEasing":0,"rotate":-9.48},{"duration":3,"tweenEasing":0,"rotate":-12.21},{"duration":9,"rotate":-14.93}]},{"name":"effect3","translateFrame":[{"duration":6,"tweenEasing":0,"x":-3.68,"y":5.44},{"duration":3,"tweenEasing":0,"x":-0.76,"y":-7.24},{"duration":6,"tweenEasing":0,"x":1.84,"y":-9.36},{"duration":3,"x":6.56,"y":-13.6}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-20.49},{"duration":6,"tweenEasing":0,"rotate":-21.44},{"duration":3,"rotate":-23.34}]},{"name":"effect2","translateFrame":[{"duration":6,"tweenEasing":0,"x":2.72,"y":0.96},{"duration":3,"tweenEasing":0,"x":-6.04,"y":-7.24},{"duration":9,"tweenEasing":0,"x":-6.73,"y":-8.87},{"duration":0,"x":-9.44,"y":-13.76}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":55.47},{"duration":9,"tweenEasing":0,"rotate":51.89},{"duration":0,"rotate":41.14}]},{"name":"leftHand","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.01,"y":-0.23},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-26.56},{"duration":9,"tweenEasing":0,"rotate":-11.41},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":6.05},{"duration":9,"tweenEasing":0,"rotate":-2.27},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-3.15,"y":2.3},{"duration":9,"tweenEasing":0,"x":-3.52,"y":1.7},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":22.93},{"duration":9,"tweenEasing":0,"rotate":-13.8},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-3.16,"y":1.05},{"duration":9,"tweenEasing":0,"x":-2.29,"y":0.44},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-15.21},{"duration":9,"tweenEasing":0,"rotate":-28.28},{"duration":0}]},{"name":"head","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-2.98,"y":2.9},{"duration":9,"tweenEasing":0,"x":-2.31,"y":0.72},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":20.08},{"duration":9,"tweenEasing":0,"rotate":-25.26},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-3.02,"y":0.27},{"duration":9,"tweenEasing":0,"x":-2.56,"y":-0.29},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-17.61},{"duration":9,"tweenEasing":0,"rotate":-22.45},{"duration":0}]},{"name":"body","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-2.1,"y":1.19},{"duration":9,"tweenEasing":0,"x":0.4,"y":0.88},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-5.23},{"duration":9,"tweenEasing":0,"rotate":-13.28},{"duration":0}],"scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-1.64,"y":0.12},{"duration":9,"tweenEasing":0,"x":0.32,"y":-0.04},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":13.63},{"duration":9,"tweenEasing":0,"rotate":6.92},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":0.22,"y":-0.36},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-6.33},{"duration":9,"tweenEasing":0,"rotate":14.55},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":6,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":-2.48,"y":2.58},{"duration":9,"tweenEasing":0,"x":-1.94,"y":0.96},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":-17.02},{"duration":9,"tweenEasing":0,"rotate":-28.28},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":66}},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":49}},{"duration":9,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":18,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":18,"value":-1}]}]},{"duration":78,"name":"Dying","bone":[{"name":"effect5","translateFrame":[{"duration":24,"tweenEasing":0,"x":7.2,"y":1.72},{"duration":18,"tweenEasing":0,"x":7.2,"y":1.72},{"duration":15,"tweenEasing":0,"x":3.2,"y":-5.14},{"duration":15,"tweenEasing":0,"x":4.23,"y":-11.54},{"duration":6,"x":0.57,"y":-16.23}],"rotateFrame":[{"duration":42,"tweenEasing":0,"rotate":30.08},{"duration":15,"tweenEasing":0,"rotate":30.08},{"duration":15,"tweenEasing":0,"rotate":46.89},{"duration":6,"rotate":26.37}]},{"name":"effect4","translateFrame":[{"duration":18,"tweenEasing":0,"x":-1.6,"y":0.8},{"duration":15,"tweenEasing":0,"x":-1.6,"y":0.8},{"duration":18,"tweenEasing":0,"x":0.12,"y":-12.12},{"duration":18,"tweenEasing":0,"x":-4.34,"y":-19.77},{"duration":9,"x":-5.8,"y":-24.16}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":20.94},{"duration":15,"tweenEasing":0,"rotate":20.94},{"duration":18,"tweenEasing":0,"rotate":-3.4},{"duration":18,"tweenEasing":0,"rotate":-10.49},{"duration":9,"rotate":-4.63}]},{"name":"effect3","translateFrame":[{"duration":27,"tweenEasing":0,"x":-3.06,"y":11.2},{"duration":12,"tweenEasing":0,"x":-3.06,"y":11.2},{"duration":18,"tweenEasing":0,"x":-1.38,"y":-2.44},{"duration":12,"tweenEasing":0,"x":4.45,"y":-9.82},{"duration":9,"x":11.24,"y":-11.69}],"rotateFrame":[{"duration":27,"tweenEasing":0,"rotate":31.61},{"duration":12,"tweenEasing":0,"rotate":31.61},{"duration":18,"tweenEasing":0,"rotate":-12.51},{"duration":12,"tweenEasing":0,"rotate":-13.38},{"duration":9,"rotate":9.35}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0,"x":2,"y":3.06},{"duration":9,"tweenEasing":0,"x":2,"y":3.06},{"duration":9,"tweenEasing":0,"x":0.54,"y":-3.87},{"duration":15,"tweenEasing":0,"x":-6.54,"y":-10.13},{"duration":24,"x":-20.27,"y":-14.8}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":29.59},{"duration":15,"tweenEasing":0,"rotate":2.18},{"duration":24,"rotate":-22.33}]},{"name":"leftHand","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":6,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":9,"tweenEasing":0,"x":0.15,"y":-0.21},{"duration":3,"tweenEasing":0,"x":0.15,"y":-0.21},{"duration":42,"x":-0.33,"y":-0.04}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":3.01},{"duration":6,"tweenEasing":0,"rotate":3.01},{"duration":9,"tweenEasing":0,"rotate":-18.54},{"duration":3,"tweenEasing":0,"rotate":-18.54},{"duration":24,"tweenEasing":0,"rotate":6.38},{"duration":6,"tweenEasing":0,"rotate":6.38},{"duration":12,"rotate":11.01}]},{"name":"leftFrontArm","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.68,"y":-0.95},{"duration":6,"tweenEasing":0,"x":0.68,"y":-0.95},{"duration":9,"tweenEasing":0,"x":0.65,"y":-1.15},{"duration":3,"tweenEasing":0,"x":0.65,"y":-1.15},{"duration":15,"tweenEasing":0,"x":0.15,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.83,"y":0.94},{"duration":6,"tweenEasing":0,"x":0.64,"y":-3.63},{"duration":12,"x":0.49,"y":-4.08}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-33.88},{"duration":3,"tweenEasing":0,"rotate":-26.38},{"duration":6,"tweenEasing":0,"rotate":-26.38},{"duration":9,"tweenEasing":0,"rotate":-47.87},{"duration":3,"tweenEasing":0,"rotate":-65.3},{"duration":15,"tweenEasing":0,"rotate":46.32},{"duration":9,"tweenEasing":0,"rotate":15},{"duration":6,"tweenEasing":0,"rotate":113.18},{"duration":12,"rotate":106.03}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":69,"x":1.05,"y":1.05}]},{"name":"leftShoulder","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":3.92,"y":0.22},{"duration":3,"tweenEasing":0,"x":3.65,"y":-0.2},{"duration":6,"tweenEasing":0,"x":3.65,"y":0.04},{"duration":9,"tweenEasing":0,"x":5.47,"y":0.93},{"duration":3,"tweenEasing":0,"x":5.34,"y":-0.94},{"duration":15,"tweenEasing":0,"x":-1,"y":-5.83},{"duration":9,"tweenEasing":0,"x":-4.61,"y":-8.44},{"duration":6,"tweenEasing":0,"x":-0.2,"y":19},{"duration":12,"tweenEasing":0,"x":-1.65,"y":17.16},{"duration":0,"x":-1.65,"y":18.77}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":13.57},{"duration":3,"tweenEasing":0,"rotate":24.2},{"duration":6,"tweenEasing":0,"rotate":16.88},{"duration":9,"tweenEasing":0,"rotate":10.9},{"duration":3,"tweenEasing":0,"rotate":16.99},{"duration":15,"tweenEasing":0,"rotate":-5.17},{"duration":9,"tweenEasing":0,"rotate":-12.82},{"duration":6,"tweenEasing":0,"rotate":-8.56},{"duration":12,"tweenEasing":0,"rotate":-2.65},{"duration":0,"rotate":-7.04}]},{"name":"leftArm","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":3.38,"y":-2.31},{"duration":3,"tweenEasing":0,"x":3.38,"y":-2.55},{"duration":6,"tweenEasing":0,"x":3.38,"y":-2.31},{"duration":9,"tweenEasing":0,"x":6.04,"y":-0.88},{"duration":3,"tweenEasing":0,"x":5.92,"y":-2.75},{"duration":15,"tweenEasing":0,"x":0.43,"y":-5.91},{"duration":9,"tweenEasing":0,"x":1.24,"y":-0.91},{"duration":6,"tweenEasing":0,"x":1.44,"y":14.13},{"duration":12,"tweenEasing":0,"x":0.64,"y":12.94},{"duration":0,"x":0.8,"y":13.73}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":0.58},{"duration":3,"tweenEasing":0,"rotate":4.94},{"duration":6,"tweenEasing":0,"rotate":4.94},{"duration":9,"tweenEasing":0,"rotate":10.19},{"duration":3,"tweenEasing":0,"rotate":25.77},{"duration":15,"tweenEasing":0,"rotate":-11.12},{"duration":9,"tweenEasing":0,"rotate":-2.99},{"duration":18,"rotate":-14.6}]},{"name":"head","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":4.09,"y":3.06},{"duration":3,"tweenEasing":0,"x":3.85,"y":2.9},{"duration":6,"tweenEasing":0,"x":3.85,"y":3.14},{"duration":9,"tweenEasing":0,"x":4.46,"y":5.23},{"duration":3,"tweenEasing":0,"x":4.79,"y":5.7},{"duration":15,"tweenEasing":0,"x":-1.35,"y":-7.2},{"duration":9,"tweenEasing":0,"x":-0.62,"y":-11.06},{"duration":6,"tweenEasing":0,"x":-1.1,"y":18.3},{"duration":12,"tweenEasing":0,"x":-2.54,"y":16.94},{"duration":0,"x":0.02,"y":21.42}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":29.23},{"duration":3,"tweenEasing":0,"rotate":8.49},{"duration":6,"tweenEasing":0,"rotate":13.15},{"duration":9,"tweenEasing":0,"rotate":15.69},{"duration":3,"tweenEasing":0,"rotate":15.69},{"duration":15,"tweenEasing":0,"rotate":-29.7},{"duration":9,"tweenEasing":0,"rotate":-25.43},{"duration":6,"tweenEasing":0,"rotate":-25.43},{"duration":12,"tweenEasing":0,"rotate":11.43},{"duration":0,"rotate":-13.96}]},{"name":"rightShoulder","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":3.03,"y":0.83},{"duration":3,"tweenEasing":0,"x":3.03,"y":0.59},{"duration":6,"tweenEasing":0,"x":3.03,"y":0.83},{"duration":9,"tweenEasing":0,"x":3.4,"y":1.55},{"duration":3,"tweenEasing":0,"x":3.26,"y":-0.84},{"duration":15,"tweenEasing":0,"x":-2.59,"y":-8.54},{"duration":9,"tweenEasing":0,"x":-0.19,"y":-6.93},{"duration":6,"tweenEasing":0,"x":-1.19,"y":16.3},{"duration":12,"tweenEasing":0,"x":-0.23,"y":16.86},{"duration":0,"x":-0.23,"y":19.27}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-2.21},{"duration":3,"tweenEasing":0,"rotate":-17.5},{"duration":6,"tweenEasing":0,"rotate":-5.8},{"duration":9,"tweenEasing":0,"rotate":7.6},{"duration":3,"tweenEasing":0,"rotate":-0.59},{"duration":15,"tweenEasing":0,"rotate":-0.22},{"duration":9,"tweenEasing":0,"rotate":-16.47},{"duration":6,"tweenEasing":0,"rotate":20.03},{"duration":12,"rotate":10.97}]},{"name":"body","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-0.09,"y":0.24},{"duration":3,"tweenEasing":0,"x":-0.17,"y":0.09},{"duration":6,"tweenEasing":0,"x":-0.17,"y":0.33},{"duration":9,"tweenEasing":0,"x":-0.09,"y":1.13},{"duration":3,"tweenEasing":0,"x":-0.22,"y":-0.74},{"duration":15,"tweenEasing":0,"x":1.18,"y":-7.26},{"duration":9,"tweenEasing":0,"x":1.65,"y":-4.2},{"duration":6,"tweenEasing":0,"x":4.98,"y":12.38},{"duration":12,"tweenEasing":0,"x":5.3,"y":9.58},{"duration":0,"x":5.46,"y":10.7}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":18.08},{"duration":6,"tweenEasing":0,"rotate":18.08},{"duration":9,"tweenEasing":0,"rotate":21.06},{"duration":3,"tweenEasing":0,"rotate":22.64},{"duration":15,"tweenEasing":0,"rotate":-10.59},{"duration":9,"tweenEasing":0,"rotate":-22.36},{"duration":6,"tweenEasing":0,"rotate":-49.93},{"duration":12,"tweenEasing":0,"rotate":-57.44},{"duration":0,"rotate":-66.41}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.96},{"duration":6,"tweenEasing":0,"x":1.01,"y":0.96},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.16},{"duration":15,"tweenEasing":0},{"duration":27,"y":0.9}]},{"name":"leg","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":-0.42},{"duration":9,"tweenEasing":0,"x":-0.42},{"duration":3,"tweenEasing":0,"x":-0.26,"y":-0.32},{"duration":15,"tweenEasing":0,"x":-0.26,"y":-1.92},{"duration":6,"tweenEasing":0,"x":-0.26,"y":-2.64},{"duration":21,"x":-0.26,"y":-1.76}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.25},{"duration":6,"tweenEasing":0,"x":0.95,"y":0.85},{"duration":9,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.25,"y":1.05},{"duration":15,"tweenEasing":0,"x":1.85,"y":1.05},{"duration":6,"tweenEasing":0,"x":2.15,"y":1.05},{"duration":21,"x":1.55,"y":1.05}]},{"name":"rightHand","translateFrame":[{"duration":9,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":9,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":6,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":27,"tweenEasing":0,"x":-1.12,"y":-0.8},{"duration":9,"tweenEasing":0,"x":-1.12,"y":-0.8},{"duration":18,"x":-0.52,"y":-0.81}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":11.7},{"duration":6,"tweenEasing":0,"rotate":23.26},{"duration":3,"tweenEasing":0,"rotate":-19.83},{"duration":6,"tweenEasing":0,"rotate":-19.83},{"duration":9,"tweenEasing":0,"rotate":23.75},{"duration":3,"tweenEasing":0,"rotate":20.82},{"duration":15,"tweenEasing":0,"rotate":-5.18},{"duration":9,"tweenEasing":0,"rotate":22.15},{"duration":6,"tweenEasing":0,"rotate":-22.3},{"duration":12,"tweenEasing":0,"rotate":-45.66},{"duration":0,"rotate":-37}]},{"name":"rightFrontArm","translateFrame":[{"duration":9,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":9,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":6,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":12,"tweenEasing":0,"x":-0.66,"y":-0.14},{"duration":15,"tweenEasing":0,"x":-0.66,"y":-0.14},{"duration":9,"tweenEasing":0,"x":-1.47,"y":-1.53},{"duration":6,"tweenEasing":0,"x":-3.21,"y":1.78},{"duration":12,"tweenEasing":0,"x":-2.78,"y":2.31},{"duration":0,"x":-3.77,"y":2.53}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":21.7},{"duration":6,"tweenEasing":0,"rotate":59.44},{"duration":3,"tweenEasing":0,"rotate":75.81},{"duration":6,"tweenEasing":0,"rotate":75.81},{"duration":9,"tweenEasing":0,"rotate":75.52},{"duration":3,"tweenEasing":0,"rotate":94.88},{"duration":15,"tweenEasing":0,"rotate":-2.28},{"duration":9,"tweenEasing":0,"rotate":12.05},{"duration":6,"tweenEasing":0,"rotate":12.5},{"duration":12,"tweenEasing":0,"rotate":17.33},{"duration":0,"rotate":11.94}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":69,"x":1.05,"y":1.05}]},{"name":"rightArm","translateFrame":[{"duration":9,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":6,"tweenEasing":0,"x":3.9,"y":0.71},{"duration":3,"tweenEasing":0,"x":3.42,"y":0.4},{"duration":6,"tweenEasing":0,"x":3.42,"y":0.64},{"duration":9,"tweenEasing":0,"x":3.25,"y":1.44},{"duration":3,"tweenEasing":0,"x":3.12,"y":-0.43},{"duration":15,"tweenEasing":0,"x":-0.94,"y":-5.88},{"duration":9,"tweenEasing":0,"x":0.06,"y":0.45},{"duration":6,"tweenEasing":0,"x":-2.26,"y":21.07},{"duration":12,"tweenEasing":0,"x":-3.06,"y":19.87},{"duration":0,"x":-2.9,"y":20.67}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":-6.67},{"duration":6,"tweenEasing":0,"rotate":2.1},{"duration":3,"tweenEasing":0,"rotate":1.1},{"duration":6,"tweenEasing":0,"rotate":1.1},{"duration":9,"tweenEasing":0,"rotate":-6.84},{"duration":3,"tweenEasing":0,"rotate":-18.94},{"duration":15,"tweenEasing":0,"rotate":15.53},{"duration":9,"tweenEasing":0,"rotate":-13.72},{"duration":18,"rotate":-52.69}]},{"name":"backLight","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":12,"tweenEasing":0,"y":-3.65},{"duration":9,"tweenEasing":0,"y":-6.4},{"duration":6,"tweenEasing":0,"y":-6.4},{"duration":27,"x":0.4,"y":-20.8}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":0.69,"y":0.5},{"duration":9,"tweenEasing":0,"x":1.56,"y":1.71},{"duration":6,"tweenEasing":0,"x":0.6,"y":2.57},{"duration":27,"x":0.11,"y":2.79}]}],"slot":[{"name":"effect5","colorFrame":[{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":27,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":24,"value":{"aM":0}}]},{"name":"leftArm","colorFrame":[{"duration":36,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12}]},{"name":"head","displayFrame":[{"duration":78,"value":1}]},{"name":"rightArm","colorFrame":[{"duration":36,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12}]},{"name":"backLight","colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":27,"value":{"aM":0}}]},{"name":"effect6","displayFrame":[{"duration":78,"value":-1}]}]},{"duration":72,"playTimes":0,"name":"Atked2","bone":[{"name":"effect4","translateFrame":[{"duration":3,"tweenEasing":0,"x":-9.24,"y":3.38},{"duration":18,"tweenEasing":0,"x":-9.24,"y":3.38},{"duration":21,"tweenEasing":0,"x":-8,"y":-5.07},{"duration":21,"tweenEasing":0,"x":-12.36,"y":-12.18},{"duration":9,"x":-12.27,"y":-18.84}],"rotateFrame":[{"duration":3,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-28.4},{"duration":21,"tweenEasing":0,"rotate":-16.18},{"duration":9,"rotate":-31.27}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0,"x":-0.94,"y":5.33},{"duration":24,"tweenEasing":0,"x":-0.94,"y":5.33},{"duration":21,"tweenEasing":0,"x":1.63,"y":-8.11},{"duration":18,"tweenEasing":0,"x":0.34,"y":-14.59},{"duration":0,"x":0.58,"y":-17.3}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-39.38},{"duration":18,"rotate":-22.72}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":2,"y":-8.5},{"duration":24,"tweenEasing":0,"x":0.5,"y":-14.6},{"duration":3,"x":-0.1,"y":-19.9}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":29.43},{"duration":24,"tweenEasing":0,"rotate":65.43},{"duration":24,"tweenEasing":0,"rotate":44.46},{"duration":3,"rotate":60}]},{"name":"leftHand","rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":15.92},{"duration":24,"tweenEasing":0,"rotate":12.42},{"duration":24,"tweenEasing":0,"rotate":-2.24},{"duration":0,"rotate":15.92}]},{"name":"leftFrontArm","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":-0.3,"y":0.2},{"duration":0}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":29.06},{"duration":24,"tweenEasing":0,"rotate":26.02},{"duration":24,"tweenEasing":0,"rotate":16.87},{"duration":0,"rotate":29.06}]},{"name":"leftShoulder","translateFrame":[{"duration":24,"tweenEasing":0,"x":2.06,"y":-0.8},{"duration":24,"tweenEasing":0,"x":2.73,"y":-0.64},{"duration":24,"tweenEasing":0,"x":3.04,"y":-0.99},{"duration":0,"x":2.06,"y":-0.8}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-12.27},{"duration":24,"tweenEasing":0,"rotate":-15.89},{"duration":24,"tweenEasing":0,"rotate":-12.23},{"duration":0,"rotate":-12.27}]},{"name":"leftArm","translateFrame":[{"duration":24,"tweenEasing":0,"x":2.4,"y":0.46},{"duration":24,"tweenEasing":0,"x":2.4,"y":0.46},{"duration":24,"tweenEasing":0,"x":2.54,"y":0.65},{"duration":0,"x":2.4,"y":0.46}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-23.09},{"duration":24,"tweenEasing":0,"rotate":-31.16},{"duration":24,"tweenEasing":0,"rotate":-21.98},{"duration":0,"rotate":-23.09}]},{"name":"head","translateFrame":[{"duration":24,"tweenEasing":0,"x":2.1,"y":2.36},{"duration":24,"tweenEasing":0,"x":3.17,"y":2.85},{"duration":24,"tweenEasing":0,"x":3.07,"y":2.85},{"duration":0,"x":2.1,"y":2.36}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":27.28},{"duration":24,"tweenEasing":0,"rotate":21.12},{"duration":24,"tweenEasing":0,"rotate":18.96},{"duration":0,"rotate":27.28}]},{"name":"rightShoulder","translateFrame":[{"duration":24,"tweenEasing":0,"x":1.72,"y":0.12},{"duration":24,"tweenEasing":0,"x":2.73,"y":0.63},{"duration":24,"tweenEasing":0,"x":2.71,"y":0.23},{"duration":0,"x":1.72,"y":0.12}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":13.3},{"duration":24,"tweenEasing":0,"rotate":9.28},{"duration":24,"tweenEasing":0,"rotate":14.42},{"duration":0,"rotate":13.3}]},{"name":"body","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":0.12,"y":0.12},{"duration":24,"tweenEasing":0,"x":0.25,"y":-0.28},{"duration":0}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":13.71},{"duration":24,"tweenEasing":0,"rotate":17.86},{"duration":24,"tweenEasing":0,"rotate":16.11},{"duration":0,"rotate":13.71}]},{"name":"leg","scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.9},{"duration":18,"tweenEasing":0,"x":1.1,"y":0.8},{"duration":6,"tweenEasing":0,"x":1.1,"y":0.8},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":72,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":11.7},{"duration":24,"tweenEasing":0,"rotate":1.26},{"duration":24,"tweenEasing":0,"rotate":-11.03},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":72,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":1.98},{"duration":24,"tweenEasing":0,"rotate":-1.3},{"duration":24,"tweenEasing":0,"rotate":-0.66},{"duration":0,"rotate":1.98}]},{"name":"rightArm","translateFrame":[{"duration":24,"tweenEasing":0,"x":3.28,"y":1.58},{"duration":24,"tweenEasing":0,"x":3.28,"y":1.58},{"duration":24,"tweenEasing":0,"x":3.54,"y":1.45},{"duration":0,"x":3.28,"y":1.58}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":29.2},{"duration":24,"tweenEasing":0,"rotate":11.66},{"duration":24,"tweenEasing":0,"rotate":23.61},{"duration":0,"rotate":29.2}]}],"slot":[{"name":"effect4","colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":72,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":72,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":72,"value":-1}]}]},{"duration":102,"playTimes":0,"name":"Idle2","bone":[{"name":"effect6","translateFrame":[{"duration":39,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":3.2,"y":-5.6},{"duration":24,"tweenEasing":0,"x":3.2,"y":-11.9},{"duration":0,"x":7,"y":-15.1}],"rotateFrame":[{"duration":39,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-27.23},{"duration":24,"tweenEasing":0,"rotate":-17.6},{"duration":0,"rotate":-35.03}]},{"name":"effect5","translateFrame":[{"duration":27,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-5.2,"y":-9.12},{"duration":21,"tweenEasing":0,"x":-5.04,"y":-16.4},{"duration":12,"x":-6.4,"y":-19.84}],"rotateFrame":[{"duration":27,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":22.39},{"duration":21,"tweenEasing":0,"rotate":39.5},{"duration":12,"rotate":22.14}]},{"name":"effect4","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":4.4,"y":-6.1},{"duration":24,"tweenEasing":0,"x":5.5,"y":-13.8},{"duration":24,"x":6.1,"y":-19.3}],"rotateFrame":[{"duration":33,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-24.94},{"duration":24,"rotate":-14.84}]},{"name":"effect3","translateFrame":[{"duration":36,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":2.4,"y":-5.6},{"duration":18,"tweenEasing":0,"x":3.8,"y":-11.1},{"duration":9,"x":4.3,"y":-15.2}],"rotateFrame":[{"duration":36,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-17.53},{"duration":18,"tweenEasing":0,"rotate":-36.39},{"duration":9,"rotate":-23.84}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":-2.27,"y":-6.67},{"duration":18,"tweenEasing":0,"x":-1.74,"y":-10.54},{"duration":33,"x":-3.06,"y":-17.46}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":20.36},{"duration":18,"tweenEasing":0,"rotate":68.81},{"duration":33,"rotate":27.88}]},{"name":"leftHand","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":18,"tweenEasing":0,"rotate":-14.11},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":18,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":6.55},{"duration":9,"tweenEasing":0,"rotate":-2.77},{"duration":9,"tweenEasing":0,"rotate":-0.86},{"duration":9,"tweenEasing":0,"rotate":-2.77},{"duration":9,"tweenEasing":0,"rotate":-6.22},{"duration":9,"tweenEasing":0,"rotate":3.34},{"duration":9,"tweenEasing":0,"rotate":-6.22},{"duration":18,"tweenEasing":0,"rotate":-2.77},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":21,"tweenEasing":0,"x":-1.2,"y":0.14},{"duration":9,"tweenEasing":0,"x":-0.15,"y":-0.46},{"duration":9,"tweenEasing":0,"x":-0.1,"y":-0.64},{"duration":9,"tweenEasing":0,"x":0.01,"y":-1.1},{"duration":9,"tweenEasing":0,"x":-0.1,"y":-0.64},{"duration":9,"tweenEasing":0,"x":0.01,"y":-1.1},{"duration":9,"tweenEasing":0,"x":-0.1,"y":-0.64},{"duration":9,"tweenEasing":0,"x":0.01,"y":-1.1},{"duration":18,"tweenEasing":0,"x":-0.1,"y":-0.71},{"duration":0,"x":-1.2,"y":0.14}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":31.61},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":37.04},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":35.61},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":18,"tweenEasing":0,"rotate":31.61},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-1.2,"y":0.14},{"duration":9,"tweenEasing":0,"x":-0.42,"y":-1.18},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-2.19},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-1.81},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-2.19},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-1.81},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-2.19},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-1.81},{"duration":18,"tweenEasing":0,"x":-0.27,"y":-2.27},{"duration":0,"x":-1.2,"y":0.14}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":30.08},{"duration":9,"tweenEasing":0,"rotate":22.76},{"duration":9,"tweenEasing":0,"rotate":19.34},{"duration":9,"tweenEasing":0,"rotate":25.64},{"duration":9,"tweenEasing":0,"rotate":20.36},{"duration":9,"tweenEasing":0,"rotate":26.38},{"duration":9,"tweenEasing":0,"rotate":18.94},{"duration":18,"tweenEasing":0,"rotate":22.76},{"duration":0}]},{"name":"head","translateFrame":[{"duration":21,"tweenEasing":0,"x":-1.06,"y":0.14},{"duration":9,"tweenEasing":0,"x":-0.14,"y":0.3},{"duration":9,"tweenEasing":0,"x":0.28,"y":-0.74},{"duration":9,"tweenEasing":0,"x":0.34,"y":-0.17},{"duration":9,"tweenEasing":0,"x":0.28,"y":-0.74},{"duration":9,"tweenEasing":0,"x":0.34,"y":0.07},{"duration":9,"tweenEasing":0,"x":0.28,"y":-1.06},{"duration":9,"tweenEasing":0,"x":0.34,"y":0.3},{"duration":18,"tweenEasing":0,"x":0.28,"y":-1.06},{"duration":0,"x":-1.06,"y":0.14}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-4.1},{"duration":9,"tweenEasing":0,"rotate":0.06},{"duration":54,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"rotate":-4.1}]},{"name":"rightShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.51,"y":-0.36},{"duration":9,"tweenEasing":0,"x":0.86,"y":-1.3},{"duration":9,"tweenEasing":0,"x":0.67,"y":-1},{"duration":9,"tweenEasing":0,"x":0.86,"y":-1.3},{"duration":9,"tweenEasing":0,"x":0.67,"y":-1},{"duration":9,"tweenEasing":0,"x":0.86,"y":-1.39},{"duration":9,"tweenEasing":0,"x":0.67,"y":-1},{"duration":18,"tweenEasing":0,"x":0.86,"y":-1.86},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-38.24},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-39.74},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-45.24},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":18,"tweenEasing":0,"rotate":-38.24},{"duration":0}]},{"name":"body","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":-0.16,"y":0.16},{"duration":9,"tweenEasing":0,"y":-0.49},{"duration":9,"tweenEasing":0,"y":-0.48},{"duration":9,"tweenEasing":0,"y":-0.73},{"duration":9,"tweenEasing":0,"y":-0.56},{"duration":9,"tweenEasing":0,"y":-0.97},{"duration":9,"tweenEasing":0,"y":-0.48},{"duration":18,"tweenEasing":0,"y":-1.05},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.48},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":0.41},{"duration":0,"rotate":-6.48}],"scaleFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":18,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.06},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.06},{"duration":30}],"scaleFrame":[{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.04,"y":1.1},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.04,"y":1.1},{"duration":30}]},{"name":"rightHand","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":18,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":11.7},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":18,"tweenEasing":0,"rotate":10.34},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":9,"tweenEasing":0,"x":-0.17,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":9,"tweenEasing":0,"x":-0.17,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":9,"tweenEasing":0,"x":-0.17,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":18,"tweenEasing":0,"x":-0.2,"y":0.01},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":21.7},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":9,"tweenEasing":0,"rotate":48.89},{"duration":9,"tweenEasing":0,"rotate":45.22},{"duration":9,"tweenEasing":0,"rotate":48.89},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":9,"tweenEasing":0,"rotate":46.54},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":18,"tweenEasing":0,"rotate":48.89},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":9,"tweenEasing":0,"x":0.76,"y":0.39},{"duration":9,"tweenEasing":0,"x":1.13,"y":-0.75},{"duration":9,"tweenEasing":0,"x":0.92,"y":-0.26},{"duration":9,"tweenEasing":0,"x":1.13,"y":-0.75},{"duration":9,"tweenEasing":0,"x":0.92,"y":-0.26},{"duration":9,"tweenEasing":0,"x":1.13,"y":-0.75},{"duration":9,"tweenEasing":0,"x":0.92,"y":-0.49},{"duration":18,"tweenEasing":0,"x":1.13,"y":-1.07},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.67},{"duration":9,"tweenEasing":0,"rotate":-30.66},{"duration":9,"tweenEasing":0,"rotate":-31.48},{"duration":9,"tweenEasing":0,"rotate":-27.88},{"duration":9,"tweenEasing":0,"rotate":-34.28},{"duration":9,"tweenEasing":0,"rotate":-25.77},{"duration":9,"tweenEasing":0,"rotate":-35.22},{"duration":9,"tweenEasing":0,"rotate":-23.55},{"duration":18,"tweenEasing":0,"rotate":-31.48},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":39,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect5","colorFrame":[{"duration":27,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":12,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":36,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":33,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":102,"value":-1}]}]},{"duration":66,"playTimes":0,"name":"Idle1","bone":[{"name":"effect6","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":3.46,"y":-6.84},{"duration":0,"x":5.42,"y":-9.87}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"rotate":-10.38}]},{"name":"effect5","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":-4,"y":-3.31},{"duration":15,"tweenEasing":0,"x":-5.03,"y":-8.91},{"duration":9,"x":-5.37,"y":-12.35}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":27.97},{"duration":15,"tweenEasing":0,"rotate":-3.77},{"duration":9,"rotate":-10.94}]},{"name":"effect4","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":3.88,"y":-6.4},{"duration":21,"tweenEasing":0,"x":6.75,"y":-10.97},{"duration":9,"x":6.51,"y":-13.37}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":19.87},{"duration":21,"tweenEasing":0,"rotate":-1.94},{"duration":9,"rotate":-29.35}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":3.4,"y":-7.87},{"duration":18,"tweenEasing":0,"x":3.13,"y":-14.13},{"duration":0,"x":3.67,"y":-17.86}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-25.82},{"duration":18,"tweenEasing":0,"rotate":-13.32},{"duration":0,"rotate":-23.08}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":-2.32,"y":-5.92},{"duration":21,"tweenEasing":0,"x":-5.84,"y":-9.44},{"duration":6,"x":-7.52,"y":-12}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":35.13},{"duration":21,"tweenEasing":0,"rotate":-4.98},{"duration":6,"rotate":29.58}]},{"name":"leftHand","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.29,"y":0.43},{"duration":24,"tweenEasing":0,"x":0.29,"y":0.43},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-4.45},{"duration":24,"tweenEasing":0,"rotate":-6.58},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.03,"y":0.23},{"duration":24}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-3.35},{"duration":24,"tweenEasing":0,"rotate":7.11},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-0.08,"y":-0.56},{"duration":24,"tweenEasing":0,"x":-0.08,"y":-0.56},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":13.8},{"duration":24,"tweenEasing":0,"rotate":4.52},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.1,"y":-0.99},{"duration":24,"tweenEasing":0,"x":0.18,"y":-0.92},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":16.02},{"duration":24,"tweenEasing":0,"rotate":12.08},{"duration":0}]},{"name":"head","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-0.16,"y":-0.69},{"duration":24,"tweenEasing":0,"y":-0.45},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.32,"y":-1.9},{"duration":24,"tweenEasing":0,"x":0.32,"y":-0.78},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-10.95},{"duration":24,"tweenEasing":0,"rotate":-8.38},{"duration":0}]},{"name":"body","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"y":-0.72},{"duration":24,"tweenEasing":0,"x":0.08,"y":-0.32},{"duration":0}],"scaleFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":24,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":66,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":11.7},{"duration":21,"tweenEasing":0,"rotate":16.12},{"duration":24,"tweenEasing":0,"rotate":15.51},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":21,"tweenEasing":0,"x":-0.09,"y":0.52},{"duration":24,"tweenEasing":0,"x":-0.07,"y":0.13},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":21.7},{"duration":21,"tweenEasing":0,"rotate":45.3},{"duration":24,"tweenEasing":0,"rotate":32.17},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":21,"tweenEasing":0,"x":0.74,"y":0.46},{"duration":24,"tweenEasing":0,"x":1.06,"y":0.7},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.67},{"duration":21,"tweenEasing":0,"rotate":-26.33},{"duration":24,"tweenEasing":0,"rotate":-19.75},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect5","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":66,"value":-1}]}]},{"duration":30,"name":"InAirIdle1","bone":[{"name":"effect5","translateFrame":[{"duration":30,"x":13.3,"y":-18.8}],"rotateFrame":[{"duration":30,"rotate":56.49}]},{"name":"effect4","translateFrame":[{"duration":30,"x":4.34,"y":-5.6}],"rotateFrame":[{"duration":30,"rotate":-56.61}]},{"name":"effect3","translateFrame":[{"duration":30,"x":-6.29,"y":-9.26}],"rotateFrame":[{"duration":30,"rotate":-42.15}]},{"name":"effect2","translateFrame":[{"duration":30,"x":-14.29,"y":-4.12}],"rotateFrame":[{"duration":30,"rotate":26.09}]},{"name":"leftHand","rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":15,"tweenEasing":0,"rotate":9.3},{"duration":0,"rotate":8.11}]},{"name":"leftFrontArm","translateFrame":[{"duration":30,"x":0.75,"y":-1.99}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":15,"tweenEasing":0,"rotate":-10.43},{"duration":0,"rotate":17.13}]},{"name":"leftShoulder","translateFrame":[{"duration":15,"tweenEasing":0,"x":-7.12,"y":1.65},{"duration":15,"tweenEasing":0,"x":-10.38,"y":-0.4},{"duration":0,"x":-7.12,"y":1.65}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":15,"tweenEasing":0,"rotate":-44.38},{"duration":0,"rotate":-26.65}]},{"name":"leftArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.18,"y":0.53},{"duration":15,"tweenEasing":0,"x":-2.9,"y":-0.6},{"duration":0,"x":-0.18,"y":0.53}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":15,"tweenEasing":0,"rotate":177.69},{"duration":0,"rotate":-161.51}],"scaleFrame":[{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":15,"tweenEasing":0,"x":1.1},{"duration":0,"x":1.1,"y":1.1}]},{"name":"head","translateFrame":[{"duration":15,"tweenEasing":0,"x":-8.84,"y":0.61},{"duration":15,"tweenEasing":0,"x":-9.28,"y":-1},{"duration":0,"x":-8.84,"y":0.61}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":15,"tweenEasing":0,"rotate":-28.02},{"duration":0,"rotate":-41.98}]},{"name":"rightShoulder","translateFrame":[{"duration":15,"tweenEasing":0,"x":-11.15,"y":-1.1},{"duration":15,"tweenEasing":0,"x":-10.46,"y":-2.84},{"duration":0,"x":-11.15,"y":-1.1}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":15,"tweenEasing":0,"rotate":-39.69},{"duration":0,"rotate":-45.17}]},{"name":"body","translateFrame":[{"duration":15,"tweenEasing":0,"x":-1.44,"y":-0.71},{"duration":15,"tweenEasing":0,"x":-1.84,"y":-0.35},{"duration":0,"x":-1.44,"y":-0.71}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-28.34},{"duration":15,"tweenEasing":0,"rotate":-23.86},{"duration":0,"rotate":-28.34}]},{"name":"rightHand","translateFrame":[{"duration":30,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":15,"tweenEasing":0,"rotate":-30.35},{"duration":0,"rotate":-40.03}]},{"name":"rightFrontArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":15,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":0,"x":-0.55,"y":0.89}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":15,"tweenEasing":0,"rotate":-42.6},{"duration":0,"rotate":-60.6}]},{"name":"rightArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-4.97,"y":-2.79},{"duration":15,"tweenEasing":0,"x":-5.28,"y":-3.39},{"duration":0,"x":-4.97,"y":-2.79}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":15,"tweenEasing":0,"rotate":-119.79},{"duration":0,"rotate":-61.71}],"scaleFrame":[{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":15,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":0,"x":1.1,"y":-1.1}]},{"name":"backLight","scaleFrame":[{"duration":30,"x":0,"y":0}]}],"slot":[{"name":"rightHand","displayFrame":[{"duration":30,"value":-1}],"colorFrame":[{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"rightFrontArm","displayFrame":[{"duration":30,"value":-1}],"colorFrame":[{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]}]}],"defaultActions":[{"gotoAndPlay":"Idle1"}]}]} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json.meta b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json.meta index 5975a8a..2e96697 100644 --- a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json.meta +++ b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json.meta @@ -1,6 +1,6 @@ { "ver": "1.0.0", "uuid": "36230012-8df3-4e85-afad-76ec47d0e4d7", - "dragonBonesJson": "{\"frameRate\":60,\"name\":\"SoldierFireGhost\",\"version\":\"5.5\",\"compatibleVersion\":\"5.5\",\"armature\":[{\"type\":\"Armature\",\"frameRate\":60,\"name\":\"SoldierFireGhost\",\"aabb\":{\"x\":-17.1,\"y\":-45.87,\"width\":38.84,\"height\":47.16},\"bone\":[{\"name\":\"root\"},{\"inheritScale\":false,\"length\":6.5,\"name\":\"leftShoulder\",\"parent\":\"root\",\"transform\":{\"x\":-5.60925,\"y\":-28.39315,\"skX\":156.8918,\"skY\":156.8918}},{\"inheritScale\":false,\"name\":\"backLight\",\"parent\":\"root\",\"transform\":{\"x\":0.1,\"y\":-23.0462,\"scX\":3,\"scY\":3}},{\"inheritScale\":false,\"length\":8.5,\"name\":\"rightArm\",\"parent\":\"root\",\"transform\":{\"x\":6.7954,\"y\":-26.8018,\"skX\":46.9769,\"skY\":46.9769}},{\"inheritScale\":false,\"name\":\"effect4\",\"parent\":\"root\",\"transform\":{\"x\":6.32,\"y\":-21.38935,\"skX\":-9.349,\"skY\":-9.349}},{\"inheritScale\":false,\"name\":\"effect7\",\"parent\":\"root\"},{\"inheritScale\":false,\"name\":\"effect3\",\"parent\":\"root\",\"transform\":{\"x\":5.75,\"y\":-27.36735}},{\"inheritScale\":false,\"length\":8.5,\"name\":\"leg\",\"parent\":\"root\",\"transform\":{\"x\":-0.45525,\"y\":-1.41005,\"skX\":-85.7242,\"skY\":-85.7242}},{\"inheritScale\":false,\"length\":11,\"name\":\"body\",\"parent\":\"root\",\"transform\":{\"x\":1.00195,\"y\":-12.3951,\"skX\":-82.2714,\"skY\":-82.2714}},{\"inheritScale\":false,\"length\":6,\"name\":\"rightShoulder\",\"parent\":\"root\",\"transform\":{\"x\":9.1041,\"y\":-26.3402,\"skX\":22.0857,\"skY\":22.0857}},{\"inheritScale\":false,\"length\":5.5,\"name\":\"head\",\"parent\":\"root\",\"transform\":{\"x\":4.103,\"y\":-31.2905,\"skX\":-83.4757,\"skY\":-83.4757}},{\"inheritScale\":false,\"length\":5,\"name\":\"leftArm\",\"parent\":\"root\",\"transform\":{\"x\":-6.5059,\"y\":-26.80925,\"skX\":122.5397,\"skY\":122.5397}},{\"inheritScale\":false,\"name\":\"effect2\",\"parent\":\"root\",\"transform\":{\"x\":-5.0143,\"y\":-28.2204,\"skX\":-79.3059,\"skY\":-79.3059}},{\"inheritScale\":false,\"name\":\"effect5\",\"parent\":\"root\",\"transform\":{\"x\":-15.0286,\"y\":-16.5986,\"skX\":-72.4737,\"skY\":-72.4737}},{\"inheritScale\":false,\"name\":\"effect6\",\"parent\":\"root\",\"transform\":{\"x\":13.28445,\"y\":-15.03735}},{\"inheritScale\":false,\"name\":\"rightFrontArm\",\"parent\":\"rightArm\",\"transform\":{\"x\":8.82335,\"y\":0.6604,\"skX\":10.7237,\"skY\":10.7237}},{\"inheritScale\":false,\"name\":\"leftFrontArm\",\"parent\":\"leftArm\",\"transform\":{\"x\":7.37235,\"y\":1.7869,\"skX\":-39.1583,\"skY\":-39.1583}},{\"inheritScale\":false,\"name\":\"rightHand\",\"parent\":\"rightFrontArm\",\"transform\":{\"x\":5.3646,\"y\":-2.8911,\"skX\":21.9835,\"skY\":21.9835}},{\"inheritScale\":false,\"name\":\"leftHand\",\"parent\":\"leftFrontArm\",\"transform\":{\"x\":7.3904,\"y\":1.4291,\"skX\":-25.7356,\"skY\":-25.7356}}],\"slot\":[{\"name\":\"backLight\",\"parent\":\"backLight\"},{\"name\":\"rightArm\",\"parent\":\"rightArm\"},{\"name\":\"leg\",\"parent\":\"leg\"},{\"name\":\"body\",\"parent\":\"body\"},{\"name\":\"rightShoulder\",\"parent\":\"rightShoulder\"},{\"name\":\"rightFrontArm\",\"parent\":\"rightFrontArm\"},{\"name\":\"rightHand\",\"parent\":\"rightHand\"},{\"name\":\"leftArm\",\"parent\":\"leftArm\"},{\"name\":\"leftShoulder\",\"parent\":\"leftShoulder\"},{\"name\":\"leftFrontArm\",\"parent\":\"leftFrontArm\"},{\"name\":\"head\",\"parent\":\"head\"},{\"name\":\"leftHand\",\"parent\":\"leftHand\"},{\"name\":\"effect2\",\"parent\":\"effect2\"},{\"name\":\"effect3\",\"parent\":\"effect3\"},{\"name\":\"effect4\",\"parent\":\"effect4\"},{\"name\":\"effect5\",\"parent\":\"effect5\"},{\"name\":\"effect6\",\"parent\":\"effect6\"},{\"displayIndex\":-1,\"name\":\"effect7\",\"parent\":\"effect7\"}],\"skin\":[{\"slot\":[{\"name\":\"effect5\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"leftShoulder\",\"display\":[{\"name\":\"yinmo03\",\"transform\":{\"x\":2.4,\"y\":-0.06,\"skX\":-154.62,\"skY\":-154.62},\"path\":\"leftShoulder\"}]},{\"name\":\"leg\",\"display\":[{\"name\":\"yinmoqe00\",\"transform\":{\"x\":5.32,\"y\":-0.07,\"skX\":85.72,\"skY\":85.72}}]},{\"name\":\"head\",\"display\":[{\"name\":\"yinmo01\",\"transform\":{\"x\":6.5,\"y\":-1.04,\"skX\":82.3,\"skY\":82.3,\"scX\":1.5,\"scY\":1.5},\"path\":\"head\"},{\"name\":\"head2\",\"transform\":{\"x\":6.64,\"y\":-1.22,\"skX\":83.48,\"skY\":83.48}}]},{\"name\":\"body\",\"display\":[{\"name\":\"yinmo02\",\"transform\":{\"x\":6.41,\"y\":-1.19,\"skX\":82.27,\"skY\":82.27},\"path\":\"body\"}]},{\"name\":\"backLight\",\"display\":[{\"name\":\"biu\"}]},{\"name\":\"effect2\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"rightFrontArm\",\"display\":[{\"name\":\"yinmo09\",\"transform\":{\"x\":1.87,\"y\":-0.59,\"skX\":-60.14,\"skY\":-60.14},\"path\":\"rightFrontArm\"}]},{\"name\":\"rightArm\",\"display\":[{\"name\":\"yinmo08\",\"transform\":{\"x\":4.54,\"y\":-0.2,\"skX\":-54.4,\"skY\":-54.4},\"path\":\"rightArm\"}]},{\"name\":\"leftArm\",\"display\":[{\"name\":\"yinmo05\",\"transform\":{\"x\":3.46,\"y\":0.04,\"skX\":-112.43,\"skY\":-112.43},\"path\":\"leftArm\"}]},{\"name\":\"effect6\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"leftFrontArm\",\"display\":[{\"name\":\"yinmo06\",\"transform\":{\"x\":3.15,\"y\":0.49,\"skX\":-76.83,\"skY\":-76.83},\"path\":\"leftFrontArm\"}]},{\"name\":\"effect4\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"leftHand\",\"display\":[{\"name\":\"yinmo07\",\"transform\":{\"x\":2.04,\"y\":-0.17,\"skX\":-66.8,\"skY\":-66.8},\"path\":\"leftHand\"}]},{\"name\":\"rightShoulder\",\"display\":[{\"name\":\"yinmo04\",\"transform\":{\"x\":1.71,\"y\":-0.41,\"skX\":-28.61,\"skY\":-28.61},\"path\":\"rightShoulder\"}]},{\"name\":\"effect3\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"rightHand\",\"display\":[{\"name\":\"yinmo10\",\"transform\":{\"x\":2.69,\"y\":-0.12,\"skX\":-63.84,\"skY\":-63.84},\"path\":\"rightHand\"}]}]}],\"animation\":[{\"duration\":60,\"playTimes\":0,\"name\":\"Walking\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"x\":22.08,\"y\":7.04},{\"duration\":12,\"tweenEasing\":0,\"x\":22.08,\"y\":7.04},{\"duration\":15,\"tweenEasing\":0,\"x\":15.52,\"y\":7.68},{\"duration\":15,\"tweenEasing\":0,\"x\":11.04,\"y\":-0.32},{\"duration\":6,\"x\":-5.12,\"y\":-11.68}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":21,\"rotate\":7.3}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":3.68,\"y\":-1.24},{\"duration\":9,\"tweenEasing\":0,\"x\":3.68,\"y\":-1.24},{\"duration\":15,\"tweenEasing\":0,\"x\":-1,\"y\":-7.88},{\"duration\":12,\"tweenEasing\":0,\"x\":-7.24,\"y\":-10.24},{\"duration\":12,\"tweenEasing\":0,\"x\":-7.32,\"y\":-18.4},{\"duration\":6,\"x\":-20.28,\"y\":-26.52}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-49.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-49.96},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-84.92},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-11.77},{\"duration\":6,\"rotate\":-28.57}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-7.4,\"y\":12.8},{\"duration\":12,\"tweenEasing\":0,\"x\":-7.4,\"y\":12.8},{\"duration\":18,\"tweenEasing\":0,\"x\":-14.6,\"y\":8.8},{\"duration\":12,\"tweenEasing\":0,\"x\":-19,\"y\":4.6},{\"duration\":9,\"tweenEasing\":0,\"x\":-28.2,\"y\":2.2},{\"duration\":3,\"x\":-34.4,\"y\":2}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-59.23},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-36.85},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-66.48},{\"duration\":3,\"rotate\":-111.5}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":5.28,\"y\":5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":5.28,\"y\":5.6},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.8,\"y\":0.8},{\"duration\":18,\"tweenEasing\":0,\"x\":-9.92,\"y\":1.6},{\"duration\":9,\"tweenEasing\":0,\"x\":-14.88,\"y\":-3.36},{\"duration\":3,\"x\":-19.84,\"y\":-12}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-61.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.48},{\"duration\":3,\"rotate\":27.59}]},{\"name\":\"leftHand\",\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.3},{\"duration\":15,\"tweenEasing\":0,\"rotate\":15.68},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.06},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":0.07,\"y\":0.59},{\"duration\":15,\"tweenEasing\":0,\"x\":0.23,\"y\":-0.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.17,\"y\":-1.03},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-4.65},{\"duration\":15,\"tweenEasing\":0,\"rotate\":12.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":23.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":16.54},{\"duration\":0,\"rotate\":-4.65}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":2.88},{\"duration\":15,\"tweenEasing\":0,\"x\":2.57,\"y\":0.97},{\"duration\":15,\"tweenEasing\":0,\"x\":4.14,\"y\":-0.08},{\"duration\":15,\"tweenEasing\":0,\"x\":3.68,\"y\":1.09},{\"duration\":0,\"x\":2.88}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.1},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.43},{\"duration\":15,\"tweenEasing\":0,\"rotate\":10.13},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-2.7},{\"duration\":0,\"rotate\":20.1}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":1.92,\"y\":-0.48},{\"duration\":15,\"tweenEasing\":0,\"x\":3.59,\"y\":0.72},{\"duration\":15,\"tweenEasing\":0,\"x\":6.63,\"y\":1.54},{\"duration\":15,\"tweenEasing\":0,\"x\":5.95,\"y\":1.94},{\"duration\":0,\"x\":1.92,\"y\":-0.48}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-35.34},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-70.51},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-30.69},{\"duration\":0,\"rotate\":26.91}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":2.72,\"y\":0.64},{\"duration\":15,\"tweenEasing\":0,\"x\":2.48,\"y\":2.44},{\"duration\":15,\"tweenEasing\":0,\"x\":3.65,\"y\":0.32},{\"duration\":15,\"tweenEasing\":0,\"x\":3.79,\"y\":2.71},{\"duration\":0,\"x\":2.72,\"y\":0.64}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.72},{\"duration\":0,\"rotate\":0.59}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":1.71,\"y\":0.58},{\"duration\":15,\"tweenEasing\":0,\"x\":0.85,\"y\":1.34},{\"duration\":15,\"tweenEasing\":0,\"x\":1.95,\"y\":0.09},{\"duration\":15,\"tweenEasing\":0,\"x\":2.81,\"y\":1.94},{\"duration\":0,\"x\":1.71,\"y\":0.58}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":10.12},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-14.23},{\"duration\":15,\"tweenEasing\":0,\"rotate\":5.57},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-13.84},{\"duration\":0,\"rotate\":10.12}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"y\":1.36},{\"duration\":15,\"tweenEasing\":0,\"x\":0.48,\"y\":-0.09},{\"duration\":15,\"tweenEasing\":0,\"x\":0.71,\"y\":1.67},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.24},{\"duration\":15,\"tweenEasing\":0,\"rotate\":13},{\"duration\":15,\"tweenEasing\":0,\"rotate\":16.36},{\"duration\":15,\"tweenEasing\":0,\"rotate\":14.15},{\"duration\":0,\"rotate\":11.24}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.48},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.4},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.48},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.48},{\"duration\":12,\"tweenEasing\":0,\"x\":0.32},{\"duration\":6,\"tweenEasing\":0,\"x\":0.32},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.16},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":1.02},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-0.52},{\"duration\":6}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":6,\"tweenEasing\":0,\"y\":1.1},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":12,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":12,\"y\":0.9}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":60,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-8},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-1.89},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.14},{\"duration\":0,\"rotate\":-8}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.85},{\"duration\":15,\"tweenEasing\":0,\"x\":0.41,\"y\":-1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.05},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.04,\"y\":-1.27},{\"duration\":6,\"tweenEasing\":0,\"y\":-1.32},{\"duration\":0,\"x\":-0.1,\"y\":-0.85}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-43.73},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-66.02},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.47},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-62.6},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-58.82},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-51.28},{\"duration\":0,\"rotate\":-43.73}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":2.16,\"y\":2.04},{\"duration\":15,\"tweenEasing\":0,\"x\":2.48,\"y\":1.17},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.18,\"y\":-2.13},{\"duration\":15,\"tweenEasing\":0,\"x\":2.1,\"y\":1.69},{\"duration\":0,\"x\":2.16,\"y\":2.04}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.28},{\"duration\":15,\"tweenEasing\":0,\"rotate\":63.1},{\"duration\":15,\"tweenEasing\":0,\"rotate\":74.64},{\"duration\":15,\"tweenEasing\":0,\"rotate\":55.11},{\"duration\":0,\"rotate\":11.28}]}],\"slot\":[{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":12,\"value\":-1},{\"duration\":45},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":51},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":27,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":54},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":30,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":60},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":33,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]}]},{\"duration\":174,\"name\":\"Atk2\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":13.3,\"y\":-18.8},{\"duration\":12,\"tweenEasing\":0,\"x\":14.8,\"y\":-23.5},{\"duration\":24,\"tweenEasing\":0,\"x\":11.2,\"y\":-31.6},{\"duration\":12,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":13.3,\"y\":-18.8},{\"duration\":12,\"tweenEasing\":0,\"x\":14.8,\"y\":-23.5},{\"duration\":24,\"tweenEasing\":0,\"x\":11.2,\"y\":-31.6},{\"duration\":12,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":13.3,\"y\":-18.8},{\"duration\":9,\"tweenEasing\":0,\"x\":14.8,\"y\":-23.5},{\"duration\":3,\"x\":11.2,\"y\":-31.6}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":24,\"tweenEasing\":0,\"rotate\":61.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":24,\"tweenEasing\":0,\"rotate\":61.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":3,\"rotate\":61.88}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":15,\"tweenEasing\":0,\"x\":4.34,\"y\":-5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.95,\"y\":-16.23},{\"duration\":21,\"tweenEasing\":0,\"x\":2.52,\"y\":-23.89},{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":15,\"tweenEasing\":0,\"x\":4.34,\"y\":-5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.95,\"y\":-16.23},{\"duration\":21,\"tweenEasing\":0,\"x\":2.52,\"y\":-23.89},{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":12,\"tweenEasing\":0,\"x\":4.34,\"y\":-5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.95,\"y\":-16.23},{\"duration\":6,\"x\":2.52,\"y\":-23.89}],\"rotateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-53.65},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-53.65},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":6,\"rotate\":-53.65}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"y\":7.54},{\"duration\":15,\"tweenEasing\":0,\"y\":7.54},{\"duration\":15,\"tweenEasing\":0,\"x\":-6.29,\"y\":-9.26},{\"duration\":12,\"tweenEasing\":0,\"x\":-12.12,\"y\":-17.95},{\"duration\":18,\"tweenEasing\":0,\"x\":-18.97,\"y\":-21.37},{\"duration\":15,\"tweenEasing\":0,\"y\":7.54},{\"duration\":15,\"tweenEasing\":0,\"x\":-6.29,\"y\":-9.26},{\"duration\":12,\"tweenEasing\":0,\"x\":-12.12,\"y\":-17.95},{\"duration\":18,\"tweenEasing\":0,\"x\":-18.97,\"y\":-21.37},{\"duration\":15,\"tweenEasing\":0,\"y\":7.54},{\"duration\":12,\"tweenEasing\":0,\"x\":-6.29,\"y\":-9.26},{\"duration\":12,\"tweenEasing\":0,\"x\":-12.12,\"y\":-17.95},{\"duration\":6,\"x\":-18.97,\"y\":-21.37}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-111.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-111.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":6,\"rotate\":-111.08}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":9,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":-0.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.29,\"y\":-4.12},{\"duration\":15,\"tweenEasing\":0,\"x\":-13.71,\"y\":-10.29},{\"duration\":15,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":-0.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.29,\"y\":-4.12},{\"duration\":15,\"tweenEasing\":0,\"x\":-13.71,\"y\":-10.29},{\"duration\":15,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":-0.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.29,\"y\":-4.12},{\"duration\":9,\"x\":-13.71,\"y\":-10.29}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":57.19},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":57.19},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":9,\"rotate\":57.19}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":3,\"tweenEasing\":0,\"x\":0.35,\"y\":0.04},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.1},{\"duration\":12,\"tweenEasing\":0,\"x\":0.06,\"y\":0.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":3,\"tweenEasing\":0,\"x\":0.35,\"y\":0.04},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.1},{\"duration\":12,\"tweenEasing\":0,\"x\":0.06,\"y\":0.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":3,\"tweenEasing\":0,\"x\":0.35,\"y\":0.04},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.1},{\"duration\":12,\"tweenEasing\":0,\"x\":0.06,\"y\":0.29},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":0.14,\"y\":0.17},{\"duration\":15,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.33,\"y\":-1.5},{\"duration\":12,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.45},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":0.14,\"y\":0.17},{\"duration\":15,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.33,\"y\":-1.5},{\"duration\":12,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.45},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":0.14,\"y\":0.17},{\"duration\":15,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.33,\"y\":-1.5},{\"duration\":12,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.45},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":0}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":2.63},{\"duration\":3,\"tweenEasing\":0,\"x\":8,\"y\":1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":-7.12,\"y\":1.65},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.38,\"y\":-0.4},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.7,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":4.67,\"y\":1.6},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":2.63},{\"duration\":3,\"tweenEasing\":0,\"x\":8,\"y\":1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":-7.12,\"y\":1.65},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.38,\"y\":-0.4},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.7,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":4.67,\"y\":1.6},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":2.63},{\"duration\":3,\"tweenEasing\":0,\"x\":8,\"y\":1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":-7.12,\"y\":1.65},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.38,\"y\":-0.4},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.7,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":4.67,\"y\":1.6},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":4.25,\"y\":-0.63},{\"duration\":3,\"tweenEasing\":0,\"x\":7.94,\"y\":0.21},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.53},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.9,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":1.72,\"y\":1.3},{\"duration\":12,\"tweenEasing\":0,\"x\":4.92,\"y\":0.26},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":4.25,\"y\":-0.63},{\"duration\":3,\"tweenEasing\":0,\"x\":7.94,\"y\":0.21},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.53},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.9,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":1.72,\"y\":1.3},{\"duration\":12,\"tweenEasing\":0,\"x\":4.92,\"y\":0.26},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":4.25,\"y\":-0.63},{\"duration\":3,\"tweenEasing\":0,\"x\":7.94,\"y\":0.21},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.53},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.9,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":1.72,\"y\":1.3},{\"duration\":12,\"tweenEasing\":0,\"x\":4.92,\"y\":0.26},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":0}],\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":15}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.58,\"y\":5.97},{\"duration\":3,\"tweenEasing\":0,\"x\":8.94,\"y\":8.11},{\"duration\":15,\"tweenEasing\":0,\"x\":-8.84,\"y\":0.61},{\"duration\":3,\"tweenEasing\":0,\"x\":-9.28,\"y\":-1},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.25,\"y\":-0.36},{\"duration\":12,\"tweenEasing\":0,\"x\":4.59,\"y\":3.9},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.58,\"y\":5.97},{\"duration\":3,\"tweenEasing\":0,\"x\":8.94,\"y\":8.11},{\"duration\":15,\"tweenEasing\":0,\"x\":-8.84,\"y\":0.61},{\"duration\":3,\"tweenEasing\":0,\"x\":-9.28,\"y\":-1},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.25,\"y\":-0.36},{\"duration\":12,\"tweenEasing\":0,\"x\":4.59,\"y\":3.9},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.58,\"y\":5.97},{\"duration\":3,\"tweenEasing\":0,\"x\":8.94,\"y\":8.11},{\"duration\":15,\"tweenEasing\":0,\"x\":-8.84,\"y\":0.61},{\"duration\":3,\"tweenEasing\":0,\"x\":-9.28,\"y\":-1},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.25,\"y\":-0.36},{\"duration\":12,\"tweenEasing\":0,\"x\":4.59,\"y\":3.9},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":3.56,\"y\":2.23},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":3.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-11.15,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.46,\"y\":-2.84},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.45,\"y\":-0.43},{\"duration\":12,\"tweenEasing\":0,\"x\":3.48,\"y\":2.71},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":3.56,\"y\":2.23},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":3.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-11.15,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.46,\"y\":-2.84},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.45,\"y\":-0.43},{\"duration\":12,\"tweenEasing\":0,\"x\":3.48,\"y\":2.71},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":3.56,\"y\":2.23},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":3.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-11.15,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.46,\"y\":-2.84},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.45,\"y\":-0.43},{\"duration\":12,\"tweenEasing\":0,\"x\":3.48,\"y\":2.71},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.45,\"y\":1.64},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":1.08},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.44,\"y\":-0.71},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.68,\"y\":-0.49},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.84,\"y\":-0.35},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.61,\"y\":-0.37},{\"duration\":12,\"tweenEasing\":0,\"x\":0.05,\"y\":1.11},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.45,\"y\":1.64},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":1.08},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.44,\"y\":-0.71},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.68,\"y\":-0.49},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.84,\"y\":-0.35},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.61,\"y\":-0.37},{\"duration\":12,\"tweenEasing\":0,\"x\":0.05,\"y\":1.11},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.45,\"y\":1.64},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":1.08},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.44,\"y\":-0.71},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.68,\"y\":-0.49},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.84,\"y\":-0.35},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.61,\"y\":-0.37},{\"duration\":12,\"tweenEasing\":0,\"x\":0.05,\"y\":1.11},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":0}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":15}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":15}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.3,\"y\":-0.62},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.21,\"y\":-0.17},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.3,\"y\":-0.62},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.21,\"y\":-0.17},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.3,\"y\":-0.62},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.21,\"y\":-0.17},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-30.35},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"x\":1.56,\"y\":-1.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":12,\"tweenEasing\":0,\"x\":0.62,\"y\":-1.61},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"x\":1.56,\"y\":-1.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":12,\"tweenEasing\":0,\"x\":0.62,\"y\":-1.61},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"x\":1.56,\"y\":-1.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":12,\"tweenEasing\":0,\"x\":0.62,\"y\":-1.61},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-42.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-55.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-55.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":0,\"rotate\":21.7}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":0}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":3.52,\"y\":0.28},{\"duration\":3,\"tweenEasing\":0,\"x\":4.23,\"y\":2.19},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.97,\"y\":-2.79},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.28,\"y\":-3.39},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.67,\"y\":-0.35},{\"duration\":12,\"tweenEasing\":0,\"x\":2.15,\"y\":1.63},{\"duration\":6,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":15,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":3.52,\"y\":0.28},{\"duration\":3,\"tweenEasing\":0,\"x\":4.23,\"y\":2.19},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.97,\"y\":-2.79},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.28,\"y\":-3.39},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.67,\"y\":-0.35},{\"duration\":12,\"tweenEasing\":0,\"x\":2.15,\"y\":1.63},{\"duration\":6,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":15,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":3.52,\"y\":0.28},{\"duration\":3,\"tweenEasing\":0,\"x\":4.23,\"y\":2.19},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.97,\"y\":-2.79},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.28,\"y\":-3.39},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.67,\"y\":-0.35},{\"duration\":12,\"tweenEasing\":0,\"x\":2.15,\"y\":1.63},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":0,\"rotate\":-6.67}],\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":36,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":36,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":12}]}],\"slot\":[{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":18,\"value\":-1},{\"duration\":156},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":12,\"value\":-1},{\"duration\":159},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":9,\"value\":-1},{\"duration\":162},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":162},{\"duration\":6,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"rightHand\",\"displayFrame\":[{\"duration\":21},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":15}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":42,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15}]},{\"name\":\"rightFrontArm\",\"displayFrame\":[{\"duration\":21},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":15}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":42,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":174,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":174,\"value\":-1}]}]},{\"duration\":34,\"name\":\"Atk1\",\"bone\":[{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":-9.1,\"y\":6.7},{\"duration\":8,\"tweenEasing\":0,\"x\":-9.1,\"y\":6.7},{\"duration\":8,\"tweenEasing\":0,\"x\":-17.8,\"y\":1.8},{\"duration\":8,\"tweenEasing\":0,\"x\":-24,\"y\":0.4},{\"duration\":6,\"x\":-30.6}],\"rotateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"rotate\":-105.08},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-105.08},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-96.73},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-69.9},{\"duration\":6,\"rotate\":-94.04}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":-14.66,\"y\":10.66},{\"duration\":4,\"tweenEasing\":0,\"x\":-14.66,\"y\":10.66},{\"duration\":10,\"tweenEasing\":0,\"x\":-23.07,\"y\":6},{\"duration\":8,\"tweenEasing\":0,\"x\":-26.93,\"y\":9.46},{\"duration\":10,\"x\":-31.07,\"y\":7.33}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-108.91},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-108.91},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-127.09},{\"duration\":10,\"rotate\":-108.09}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":-4.54,\"y\":13.2},{\"duration\":6,\"tweenEasing\":0,\"x\":-4.54,\"y\":13.2},{\"duration\":10,\"tweenEasing\":0,\"x\":-13.6,\"y\":2.8},{\"duration\":4,\"tweenEasing\":0,\"x\":-23.46,\"y\":-4.26},{\"duration\":12,\"x\":-27.46,\"y\":-5.46}],\"rotateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"rotate\":31.2},{\"duration\":6,\"tweenEasing\":0,\"rotate\":31.2},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-0.05},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-26.91},{\"duration\":12,\"rotate\":-24.71}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0,\"x\":0.01,\"y\":0.07},{\"duration\":8,\"tweenEasing\":0,\"x\":0.01,\"y\":0.07},{\"duration\":8,\"tweenEasing\":0,\"x\":0.1,\"y\":0.49},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":8,\"tweenEasing\":0,\"rotate\":18.53},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-9},{\"duration\":8,\"tweenEasing\":0,\"rotate\":9.5},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.71,\"y\":0.04},{\"duration\":8,\"tweenEasing\":0,\"x\":0.18,\"y\":0.12},{\"duration\":8,\"tweenEasing\":0,\"x\":0.69,\"y\":-0.78},{\"duration\":8,\"tweenEasing\":0,\"x\":0.2,\"y\":0.24},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":13.83},{\"duration\":8,\"tweenEasing\":0,\"rotate\":25.06},{\"duration\":8,\"tweenEasing\":0,\"rotate\":17.69},{\"duration\":8,\"tweenEasing\":0,\"rotate\":12.39},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.88,\"y\":-0.6},{\"duration\":8,\"tweenEasing\":0,\"x\":8.4,\"y\":-0.74},{\"duration\":8,\"tweenEasing\":0,\"x\":8.01,\"y\":-0.58},{\"duration\":8,\"tweenEasing\":0,\"x\":1.14,\"y\":-0.23},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":40},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-12.39},{\"duration\":8,\"tweenEasing\":0,\"rotate\":4.99},{\"duration\":8,\"tweenEasing\":0,\"rotate\":8.69},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-3.42,\"y\":-1.95},{\"duration\":8,\"tweenEasing\":0,\"x\":12.95,\"y\":0.1},{\"duration\":8,\"tweenEasing\":0,\"x\":12.47,\"y\":0.42},{\"duration\":8,\"tweenEasing\":0,\"x\":1.5,\"y\":-2.19},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":66.79},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-95.1},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-98.37},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-44.89},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-4.17,\"y\":0.46},{\"duration\":8,\"tweenEasing\":0,\"x\":9.35,\"y\":1.83},{\"duration\":8,\"tweenEasing\":0,\"x\":8.79,\"y\":2.23},{\"duration\":8,\"tweenEasing\":0,\"x\":1.23,\"y\":0.91},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":15.73},{\"duration\":8,\"tweenEasing\":0,\"rotate\":2.95},{\"duration\":8,\"tweenEasing\":0,\"rotate\":2.83},{\"duration\":8,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-3.63,\"y\":-0.73},{\"duration\":8,\"tweenEasing\":0,\"x\":6.29,\"y\":2.04},{\"duration\":8,\"tweenEasing\":0,\"x\":6.13,\"y\":2.27},{\"duration\":8,\"tweenEasing\":0,\"x\":0.4,\"y\":0.34},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.02},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-27.15},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-15.36},{\"duration\":8,\"tweenEasing\":0,\"rotate\":3.41},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.47,\"y\":-1.01},{\"duration\":8,\"tweenEasing\":0,\"x\":1.27,\"y\":-0.09},{\"duration\":8,\"tweenEasing\":0,\"x\":1.44,\"y\":0.23},{\"duration\":8,\"tweenEasing\":0,\"y\":0.4},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.15},{\"duration\":8,\"tweenEasing\":0,\"rotate\":29.43},{\"duration\":8,\"tweenEasing\":0,\"rotate\":30.7},{\"duration\":8,\"tweenEasing\":0,\"rotate\":1.09},{\"duration\":0}],\"scaleFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":8,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":14,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.16},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.16},{\"duration\":0}],\"scaleFrame\":[{\"duration\":4,\"tweenEasing\":0},{\"duration\":4,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.1,\"y\":1.3},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":1.1},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":1.1},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.9},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":0.9},{\"duration\":4,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":2,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.2},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.2},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.54,\"y\":-0.17},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-34.26},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-8.09},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-36.51},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-12.04},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.7,\"y\":0.18},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.34,\"y\":0.12},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.44,\"y\":0.07},{\"duration\":8,\"tweenEasing\":0,\"x\":0.31,\"y\":0.26},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-36.51},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-41.51},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-50.9},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-42.18},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.96,\"y\":-0.32},{\"duration\":8,\"tweenEasing\":0,\"x\":1.4,\"y\":3.87},{\"duration\":8,\"tweenEasing\":0,\"x\":1.48,\"y\":4.19},{\"duration\":8,\"tweenEasing\":0,\"x\":-3.83,\"y\":-3.08},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":2,\"tweenEasing\":0,\"rotate\":8.81},{\"duration\":8,\"tweenEasing\":0,\"rotate\":7.26},{\"duration\":8,\"tweenEasing\":0,\"rotate\":15.7},{\"duration\":8,\"tweenEasing\":0,\"rotate\":25.83},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":4,\"value\":-1},{\"duration\":26},{\"duration\":4,\"value\":-1}],\"colorFrame\":[{\"duration\":4,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":8,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":8,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":2,\"value\":-1},{\"duration\":24},{\"duration\":8,\"value\":-1}],\"colorFrame\":[{\"duration\":2,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":4,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":10,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0},{\"duration\":10,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":2,\"value\":-1},{\"duration\":22},{\"duration\":10,\"value\":-1}],\"colorFrame\":[{\"duration\":2,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":10,\"tweenEasing\":0},{\"duration\":4,\"tweenEasing\":0},{\"duration\":12,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":34,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":34,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":34,\"value\":-1}]}]},{\"duration\":18,\"name\":\"Atked1\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-2.52,\"y\":1.72},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.66,\"y\":-0.23},{\"duration\":6,\"tweenEasing\":0,\"x\":3.25,\"y\":-1.37},{\"duration\":3,\"x\":4.8,\"y\":-6.29}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"rotate\":-20.99}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-4.5,\"y\":3.8},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.5,\"y\":3.8},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.13,\"y\":-1.13},{\"duration\":9,\"tweenEasing\":0,\"x\":-11.84,\"y\":-6.3},{\"duration\":0,\"x\":-24,\"y\":-16.3}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-9.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-9.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-12.21},{\"duration\":9,\"rotate\":-14.93}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-3.68,\"y\":5.44},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.76,\"y\":-7.24},{\"duration\":6,\"tweenEasing\":0,\"x\":1.84,\"y\":-9.36},{\"duration\":3,\"x\":6.56,\"y\":-13.6}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-20.49},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-21.44},{\"duration\":3,\"rotate\":-23.34}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":2.72,\"y\":0.96},{\"duration\":3,\"tweenEasing\":0,\"x\":-6.04,\"y\":-7.24},{\"duration\":9,\"tweenEasing\":0,\"x\":-6.73,\"y\":-8.87},{\"duration\":0,\"x\":-9.44,\"y\":-13.76}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":55.47},{\"duration\":9,\"tweenEasing\":0,\"rotate\":51.89},{\"duration\":0,\"rotate\":41.14}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.23},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-26.56},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-11.41},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.05},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.27},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.15,\"y\":2.3},{\"duration\":9,\"tweenEasing\":0,\"x\":-3.52,\"y\":1.7},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.93},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.8},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.16,\"y\":1.05},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.29,\"y\":0.44},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-15.21},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.28},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.98,\"y\":2.9},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.31,\"y\":0.72},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.26},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.02,\"y\":0.27},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.56,\"y\":-0.29},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-22.45},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.1,\"y\":1.19},{\"duration\":9,\"tweenEasing\":0,\"x\":0.4,\"y\":0.88},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.23},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.28},{\"duration\":0}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.64,\"y\":0.12},{\"duration\":9,\"tweenEasing\":0,\"x\":0.32,\"y\":-0.04},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.63},{\"duration\":9,\"tweenEasing\":0,\"rotate\":6.92},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.22,\"y\":-0.36},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.33},{\"duration\":9,\"tweenEasing\":0,\"rotate\":14.55},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.48,\"y\":2.58},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.94,\"y\":0.96},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.02},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.28},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":66}},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":49}},{\"duration\":9,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":18,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":18,\"value\":-1}]}]},{\"duration\":78,\"name\":\"Dying\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":7.2,\"y\":1.72},{\"duration\":18,\"tweenEasing\":0,\"x\":7.2,\"y\":1.72},{\"duration\":15,\"tweenEasing\":0,\"x\":3.2,\"y\":-5.14},{\"duration\":15,\"tweenEasing\":0,\"x\":4.23,\"y\":-11.54},{\"duration\":6,\"x\":0.57,\"y\":-16.23}],\"rotateFrame\":[{\"duration\":42,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":46.89},{\"duration\":6,\"rotate\":26.37}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":-1.6,\"y\":0.8},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":0.8},{\"duration\":18,\"tweenEasing\":0,\"x\":0.12,\"y\":-12.12},{\"duration\":18,\"tweenEasing\":0,\"x\":-4.34,\"y\":-19.77},{\"duration\":9,\"x\":-5.8,\"y\":-24.16}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":20.94},{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-3.4},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-10.49},{\"duration\":9,\"rotate\":-4.63}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":27,\"tweenEasing\":0,\"x\":-3.06,\"y\":11.2},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.06,\"y\":11.2},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.38,\"y\":-2.44},{\"duration\":12,\"tweenEasing\":0,\"x\":4.45,\"y\":-9.82},{\"duration\":9,\"x\":11.24,\"y\":-11.69}],\"rotateFrame\":[{\"duration\":27,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-12.51},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-13.38},{\"duration\":9,\"rotate\":9.35}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":2,\"y\":3.06},{\"duration\":9,\"tweenEasing\":0,\"x\":2,\"y\":3.06},{\"duration\":9,\"tweenEasing\":0,\"x\":0.54,\"y\":-3.87},{\"duration\":15,\"tweenEasing\":0,\"x\":-6.54,\"y\":-10.13},{\"duration\":24,\"x\":-20.27,\"y\":-14.8}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":29.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":2.18},{\"duration\":24,\"rotate\":-22.33}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":6,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":9,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.21},{\"duration\":3,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.21},{\"duration\":42,\"x\":-0.33,\"y\":-0.04}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":6,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-18.54},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-18.54},{\"duration\":24,\"tweenEasing\":0,\"rotate\":6.38},{\"duration\":6,\"tweenEasing\":0,\"rotate\":6.38},{\"duration\":12,\"rotate\":11.01}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.68,\"y\":-0.95},{\"duration\":6,\"tweenEasing\":0,\"x\":0.68,\"y\":-0.95},{\"duration\":9,\"tweenEasing\":0,\"x\":0.65,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":0.65,\"y\":-1.15},{\"duration\":15,\"tweenEasing\":0,\"x\":0.15,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.83,\"y\":0.94},{\"duration\":6,\"tweenEasing\":0,\"x\":0.64,\"y\":-3.63},{\"duration\":12,\"x\":0.49,\"y\":-4.08}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-33.88},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-26.38},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-26.38},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-47.87},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-65.3},{\"duration\":15,\"tweenEasing\":0,\"rotate\":46.32},{\"duration\":9,\"tweenEasing\":0,\"rotate\":15},{\"duration\":6,\"tweenEasing\":0,\"rotate\":113.18},{\"duration\":12,\"rotate\":106.03}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":69,\"x\":1.05,\"y\":1.05}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":3.92,\"y\":0.22},{\"duration\":3,\"tweenEasing\":0,\"x\":3.65,\"y\":-0.2},{\"duration\":6,\"tweenEasing\":0,\"x\":3.65,\"y\":0.04},{\"duration\":9,\"tweenEasing\":0,\"x\":5.47,\"y\":0.93},{\"duration\":3,\"tweenEasing\":0,\"x\":5.34,\"y\":-0.94},{\"duration\":15,\"tweenEasing\":0,\"x\":-1,\"y\":-5.83},{\"duration\":9,\"tweenEasing\":0,\"x\":-4.61,\"y\":-8.44},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.2,\"y\":19},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.65,\"y\":17.16},{\"duration\":0,\"x\":-1.65,\"y\":18.77}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.57},{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.2},{\"duration\":6,\"tweenEasing\":0,\"rotate\":16.88},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.9},{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.99},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.17},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.82},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-8.56},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-2.65},{\"duration\":0,\"rotate\":-7.04}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":3.38,\"y\":-2.31},{\"duration\":3,\"tweenEasing\":0,\"x\":3.38,\"y\":-2.55},{\"duration\":6,\"tweenEasing\":0,\"x\":3.38,\"y\":-2.31},{\"duration\":9,\"tweenEasing\":0,\"x\":6.04,\"y\":-0.88},{\"duration\":3,\"tweenEasing\":0,\"x\":5.92,\"y\":-2.75},{\"duration\":15,\"tweenEasing\":0,\"x\":0.43,\"y\":-5.91},{\"duration\":9,\"tweenEasing\":0,\"x\":1.24,\"y\":-0.91},{\"duration\":6,\"tweenEasing\":0,\"x\":1.44,\"y\":14.13},{\"duration\":12,\"tweenEasing\":0,\"x\":0.64,\"y\":12.94},{\"duration\":0,\"x\":0.8,\"y\":13.73}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":0.58},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.94},{\"duration\":6,\"tweenEasing\":0,\"rotate\":4.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.19},{\"duration\":3,\"tweenEasing\":0,\"rotate\":25.77},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-11.12},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.99},{\"duration\":18,\"rotate\":-14.6}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":4.09,\"y\":3.06},{\"duration\":3,\"tweenEasing\":0,\"x\":3.85,\"y\":2.9},{\"duration\":6,\"tweenEasing\":0,\"x\":3.85,\"y\":3.14},{\"duration\":9,\"tweenEasing\":0,\"x\":4.46,\"y\":5.23},{\"duration\":3,\"tweenEasing\":0,\"x\":4.79,\"y\":5.7},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.35,\"y\":-7.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.62,\"y\":-11.06},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.1,\"y\":18.3},{\"duration\":12,\"tweenEasing\":0,\"x\":-2.54,\"y\":16.94},{\"duration\":0,\"x\":0.02,\"y\":21.42}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":29.23},{\"duration\":3,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.15},{\"duration\":9,\"tweenEasing\":0,\"rotate\":15.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.69},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-29.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.43},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.43},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.43},{\"duration\":0,\"rotate\":-13.96}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":3.03,\"y\":0.83},{\"duration\":3,\"tweenEasing\":0,\"x\":3.03,\"y\":0.59},{\"duration\":6,\"tweenEasing\":0,\"x\":3.03,\"y\":0.83},{\"duration\":9,\"tweenEasing\":0,\"x\":3.4,\"y\":1.55},{\"duration\":3,\"tweenEasing\":0,\"x\":3.26,\"y\":-0.84},{\"duration\":15,\"tweenEasing\":0,\"x\":-2.59,\"y\":-8.54},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.19,\"y\":-6.93},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.19,\"y\":16.3},{\"duration\":12,\"tweenEasing\":0,\"x\":-0.23,\"y\":16.86},{\"duration\":0,\"x\":-0.23,\"y\":19.27}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-2.21},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.5},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-5.8},{\"duration\":9,\"tweenEasing\":0,\"rotate\":7.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-16.47},{\"duration\":6,\"tweenEasing\":0,\"rotate\":20.03},{\"duration\":12,\"rotate\":10.97}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.09,\"y\":0.24},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.09},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.33},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.09,\"y\":1.13},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.22,\"y\":-0.74},{\"duration\":15,\"tweenEasing\":0,\"x\":1.18,\"y\":-7.26},{\"duration\":9,\"tweenEasing\":0,\"x\":1.65,\"y\":-4.2},{\"duration\":6,\"tweenEasing\":0,\"x\":4.98,\"y\":12.38},{\"duration\":12,\"tweenEasing\":0,\"x\":5.3,\"y\":9.58},{\"duration\":0,\"x\":5.46,\"y\":10.7}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":6,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":21.06},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.64},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-10.59},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-22.36},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-49.93},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-57.44},{\"duration\":0,\"rotate\":-66.41}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.96},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.96},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.16},{\"duration\":15,\"tweenEasing\":0},{\"duration\":27,\"y\":0.9}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.42},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.42},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.26,\"y\":-0.32},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.26,\"y\":-1.92},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.26,\"y\":-2.64},{\"duration\":21,\"x\":-0.26,\"y\":-1.76}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.25},{\"duration\":6,\"tweenEasing\":0,\"x\":0.95,\"y\":0.85},{\"duration\":9,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.25,\"y\":1.05},{\"duration\":15,\"tweenEasing\":0,\"x\":1.85,\"y\":1.05},{\"duration\":6,\"tweenEasing\":0,\"x\":2.15,\"y\":1.05},{\"duration\":21,\"x\":1.55,\"y\":1.05}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":27,\"tweenEasing\":0,\"x\":-1.12,\"y\":-0.8},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.12,\"y\":-0.8},{\"duration\":18,\"x\":-0.52,\"y\":-0.81}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":6,\"tweenEasing\":0,\"rotate\":23.26},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.83},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-19.83},{\"duration\":9,\"tweenEasing\":0,\"rotate\":23.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.82},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.18},{\"duration\":9,\"tweenEasing\":0,\"rotate\":22.15},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-22.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-45.66},{\"duration\":0,\"rotate\":-37}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":12,\"tweenEasing\":0,\"x\":-0.66,\"y\":-0.14},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.66,\"y\":-0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.47,\"y\":-1.53},{\"duration\":6,\"tweenEasing\":0,\"x\":-3.21,\"y\":1.78},{\"duration\":12,\"tweenEasing\":0,\"x\":-2.78,\"y\":2.31},{\"duration\":0,\"x\":-3.77,\"y\":2.53}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":6,\"tweenEasing\":0,\"rotate\":59.44},{\"duration\":3,\"tweenEasing\":0,\"rotate\":75.81},{\"duration\":6,\"tweenEasing\":0,\"rotate\":75.81},{\"duration\":9,\"tweenEasing\":0,\"rotate\":75.52},{\"duration\":3,\"tweenEasing\":0,\"rotate\":94.88},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-2.28},{\"duration\":9,\"tweenEasing\":0,\"rotate\":12.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":12.5},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.33},{\"duration\":0,\"rotate\":11.94}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":69,\"x\":1.05,\"y\":1.05}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":6,\"tweenEasing\":0,\"x\":3.9,\"y\":0.71},{\"duration\":3,\"tweenEasing\":0,\"x\":3.42,\"y\":0.4},{\"duration\":6,\"tweenEasing\":0,\"x\":3.42,\"y\":0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":3.25,\"y\":1.44},{\"duration\":3,\"tweenEasing\":0,\"x\":3.12,\"y\":-0.43},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.94,\"y\":-5.88},{\"duration\":9,\"tweenEasing\":0,\"x\":0.06,\"y\":0.45},{\"duration\":6,\"tweenEasing\":0,\"x\":-2.26,\"y\":21.07},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.06,\"y\":19.87},{\"duration\":0,\"x\":-2.9,\"y\":20.67}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":6,\"tweenEasing\":0,\"rotate\":2.1},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.1},{\"duration\":6,\"tweenEasing\":0,\"rotate\":1.1},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.84},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-18.94},{\"duration\":15,\"tweenEasing\":0,\"rotate\":15.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.72},{\"duration\":18,\"rotate\":-52.69}]},{\"name\":\"backLight\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"y\":-3.65},{\"duration\":9,\"tweenEasing\":0,\"y\":-6.4},{\"duration\":6,\"tweenEasing\":0,\"y\":-6.4},{\"duration\":27,\"x\":0.4,\"y\":-20.8}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":0.69,\"y\":0.5},{\"duration\":9,\"tweenEasing\":0,\"x\":1.56,\"y\":1.71},{\"duration\":6,\"tweenEasing\":0,\"x\":0.6,\"y\":2.57},{\"duration\":27,\"x\":0.11,\"y\":2.79}]}],\"slot\":[{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":27,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":24,\"value\":{\"aM\":0}}]},{\"name\":\"leftArm\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12}]},{\"name\":\"head\",\"displayFrame\":[{\"duration\":78,\"value\":1}]},{\"name\":\"rightArm\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12}]},{\"name\":\"backLight\",\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":30,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":27,\"value\":{\"aM\":0}}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":78,\"value\":-1}]}]},{\"duration\":72,\"playTimes\":0,\"name\":\"Atked2\",\"bone\":[{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-9.24,\"y\":3.38},{\"duration\":18,\"tweenEasing\":0,\"x\":-9.24,\"y\":3.38},{\"duration\":21,\"tweenEasing\":0,\"x\":-8,\"y\":-5.07},{\"duration\":21,\"tweenEasing\":0,\"x\":-12.36,\"y\":-12.18},{\"duration\":9,\"x\":-12.27,\"y\":-18.84}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-28.4},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-16.18},{\"duration\":9,\"rotate\":-31.27}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-0.94,\"y\":5.33},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.94,\"y\":5.33},{\"duration\":21,\"tweenEasing\":0,\"x\":1.63,\"y\":-8.11},{\"duration\":18,\"tweenEasing\":0,\"x\":0.34,\"y\":-14.59},{\"duration\":0,\"x\":0.58,\"y\":-17.3}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-39.38},{\"duration\":18,\"rotate\":-22.72}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":2,\"y\":-8.5},{\"duration\":24,\"tweenEasing\":0,\"x\":0.5,\"y\":-14.6},{\"duration\":3,\"x\":-0.1,\"y\":-19.9}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":29.43},{\"duration\":24,\"tweenEasing\":0,\"rotate\":65.43},{\"duration\":24,\"tweenEasing\":0,\"rotate\":44.46},{\"duration\":3,\"rotate\":60}]},{\"name\":\"leftHand\",\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":15.92},{\"duration\":24,\"tweenEasing\":0,\"rotate\":12.42},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-2.24},{\"duration\":0,\"rotate\":15.92}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.3,\"y\":0.2},{\"duration\":0}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":29.06},{\"duration\":24,\"tweenEasing\":0,\"rotate\":26.02},{\"duration\":24,\"tweenEasing\":0,\"rotate\":16.87},{\"duration\":0,\"rotate\":29.06}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":2.06,\"y\":-0.8},{\"duration\":24,\"tweenEasing\":0,\"x\":2.73,\"y\":-0.64},{\"duration\":24,\"tweenEasing\":0,\"x\":3.04,\"y\":-0.99},{\"duration\":0,\"x\":2.06,\"y\":-0.8}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-12.27},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-15.89},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-12.23},{\"duration\":0,\"rotate\":-12.27}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":2.4,\"y\":0.46},{\"duration\":24,\"tweenEasing\":0,\"x\":2.4,\"y\":0.46},{\"duration\":24,\"tweenEasing\":0,\"x\":2.54,\"y\":0.65},{\"duration\":0,\"x\":2.4,\"y\":0.46}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-23.09},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-31.16},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-21.98},{\"duration\":0,\"rotate\":-23.09}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":2.1,\"y\":2.36},{\"duration\":24,\"tweenEasing\":0,\"x\":3.17,\"y\":2.85},{\"duration\":24,\"tweenEasing\":0,\"x\":3.07,\"y\":2.85},{\"duration\":0,\"x\":2.1,\"y\":2.36}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":27.28},{\"duration\":24,\"tweenEasing\":0,\"rotate\":21.12},{\"duration\":24,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":0,\"rotate\":27.28}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":1.72,\"y\":0.12},{\"duration\":24,\"tweenEasing\":0,\"x\":2.73,\"y\":0.63},{\"duration\":24,\"tweenEasing\":0,\"x\":2.71,\"y\":0.23},{\"duration\":0,\"x\":1.72,\"y\":0.12}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":13.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":9.28},{\"duration\":24,\"tweenEasing\":0,\"rotate\":14.42},{\"duration\":0,\"rotate\":13.3}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":0.12,\"y\":0.12},{\"duration\":24,\"tweenEasing\":0,\"x\":0.25,\"y\":-0.28},{\"duration\":0}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":13.71},{\"duration\":24,\"tweenEasing\":0,\"rotate\":17.86},{\"duration\":24,\"tweenEasing\":0,\"rotate\":16.11},{\"duration\":0,\"rotate\":13.71}]},{\"name\":\"leg\",\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":18,\"tweenEasing\":0,\"x\":1.1,\"y\":0.8},{\"duration\":6,\"tweenEasing\":0,\"x\":1.1,\"y\":0.8},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":72,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":24,\"tweenEasing\":0,\"rotate\":1.26},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-11.03},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":72,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":1.98},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-1.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":0,\"rotate\":1.98}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":3.28,\"y\":1.58},{\"duration\":24,\"tweenEasing\":0,\"x\":3.28,\"y\":1.58},{\"duration\":24,\"tweenEasing\":0,\"x\":3.54,\"y\":1.45},{\"duration\":0,\"x\":3.28,\"y\":1.58}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":29.2},{\"duration\":24,\"tweenEasing\":0,\"rotate\":11.66},{\"duration\":24,\"tweenEasing\":0,\"rotate\":23.61},{\"duration\":0,\"rotate\":29.2}]}],\"slot\":[{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]}]},{\"duration\":102,\"playTimes\":0,\"name\":\"Idle2\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":39,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":3.2,\"y\":-5.6},{\"duration\":24,\"tweenEasing\":0,\"x\":3.2,\"y\":-11.9},{\"duration\":0,\"x\":7,\"y\":-15.1}],\"rotateFrame\":[{\"duration\":39,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-27.23},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-17.6},{\"duration\":0,\"rotate\":-35.03}]},{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":27,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-5.2,\"y\":-9.12},{\"duration\":21,\"tweenEasing\":0,\"x\":-5.04,\"y\":-16.4},{\"duration\":12,\"x\":-6.4,\"y\":-19.84}],\"rotateFrame\":[{\"duration\":27,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":22.39},{\"duration\":21,\"tweenEasing\":0,\"rotate\":39.5},{\"duration\":12,\"rotate\":22.14}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":4.4,\"y\":-6.1},{\"duration\":24,\"tweenEasing\":0,\"x\":5.5,\"y\":-13.8},{\"duration\":24,\"x\":6.1,\"y\":-19.3}],\"rotateFrame\":[{\"duration\":33,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-24.94},{\"duration\":24,\"rotate\":-14.84}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":2.4,\"y\":-5.6},{\"duration\":18,\"tweenEasing\":0,\"x\":3.8,\"y\":-11.1},{\"duration\":9,\"x\":4.3,\"y\":-15.2}],\"rotateFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-17.53},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-36.39},{\"duration\":9,\"rotate\":-23.84}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":-2.27,\"y\":-6.67},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.74,\"y\":-10.54},{\"duration\":33,\"x\":-3.06,\"y\":-17.46}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.36},{\"duration\":18,\"tweenEasing\":0,\"rotate\":68.81},{\"duration\":33,\"rotate\":27.88}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":18,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":6.55},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-0.86},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":3.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.22},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-1.2,\"y\":0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.46},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-1.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-1.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-1.1},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.71},{\"duration\":0,\"x\":-1.2,\"y\":0.14}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":37.04},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":35.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":18,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-1.2,\"y\":0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.42,\"y\":-1.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.19},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-1.81},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.19},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-1.81},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.19},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-1.81},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.27},{\"duration\":0,\"x\":-1.2,\"y\":0.14}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":22.76},{\"duration\":9,\"tweenEasing\":0,\"rotate\":19.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":25.64},{\"duration\":9,\"tweenEasing\":0,\"rotate\":20.36},{\"duration\":9,\"tweenEasing\":0,\"rotate\":26.38},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":22.76},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-1.06,\"y\":0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.14,\"y\":0.3},{\"duration\":9,\"tweenEasing\":0,\"x\":0.28,\"y\":-0.74},{\"duration\":9,\"tweenEasing\":0,\"x\":0.34,\"y\":-0.17},{\"duration\":9,\"tweenEasing\":0,\"x\":0.28,\"y\":-0.74},{\"duration\":9,\"tweenEasing\":0,\"x\":0.34,\"y\":0.07},{\"duration\":9,\"tweenEasing\":0,\"x\":0.28,\"y\":-1.06},{\"duration\":9,\"tweenEasing\":0,\"x\":0.34,\"y\":0.3},{\"duration\":18,\"tweenEasing\":0,\"x\":0.28,\"y\":-1.06},{\"duration\":0,\"x\":-1.06,\"y\":0.14}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.1},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.06},{\"duration\":54,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"rotate\":-4.1}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.51,\"y\":-0.36},{\"duration\":9,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.3},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":-1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.3},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":-1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.39},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":-1},{\"duration\":18,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.86},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-38.24},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-39.74},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-45.24},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-38.24},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.16,\"y\":0.16},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.49},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.48},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.73},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.56},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.97},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.48},{\"duration\":18,\"tweenEasing\":0,\"y\":-1.05},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.48},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":0,\"rotate\":-6.48}],\"scaleFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":18,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.06},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.06},{\"duration\":30}],\"scaleFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.04,\"y\":1.1},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.04,\"y\":1.1},{\"duration\":30}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":18,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.2,\"y\":0.01},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":9,\"tweenEasing\":0,\"rotate\":45.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":46.54},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":18,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":9,\"tweenEasing\":0,\"x\":0.76,\"y\":0.39},{\"duration\":9,\"tweenEasing\":0,\"x\":1.13,\"y\":-0.75},{\"duration\":9,\"tweenEasing\":0,\"x\":0.92,\"y\":-0.26},{\"duration\":9,\"tweenEasing\":0,\"x\":1.13,\"y\":-0.75},{\"duration\":9,\"tweenEasing\":0,\"x\":0.92,\"y\":-0.26},{\"duration\":9,\"tweenEasing\":0,\"x\":1.13,\"y\":-0.75},{\"duration\":9,\"tweenEasing\":0,\"x\":0.92,\"y\":-0.49},{\"duration\":18,\"tweenEasing\":0,\"x\":1.13,\"y\":-1.07},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.66},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-31.48},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-27.88},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-34.28},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-35.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-23.55},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-31.48},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":39,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":27,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":12,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":33,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":102,\"value\":-1}]}]},{\"duration\":66,\"playTimes\":0,\"name\":\"Idle1\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":3.46,\"y\":-6.84},{\"duration\":0,\"x\":5.42,\"y\":-9.87}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"rotate\":-10.38}]},{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":-4,\"y\":-3.31},{\"duration\":15,\"tweenEasing\":0,\"x\":-5.03,\"y\":-8.91},{\"duration\":9,\"x\":-5.37,\"y\":-12.35}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":27.97},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-3.77},{\"duration\":9,\"rotate\":-10.94}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":3.88,\"y\":-6.4},{\"duration\":21,\"tweenEasing\":0,\"x\":6.75,\"y\":-10.97},{\"duration\":9,\"x\":6.51,\"y\":-13.37}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":19.87},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-1.94},{\"duration\":9,\"rotate\":-29.35}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":3.4,\"y\":-7.87},{\"duration\":18,\"tweenEasing\":0,\"x\":3.13,\"y\":-14.13},{\"duration\":0,\"x\":3.67,\"y\":-17.86}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-25.82},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-13.32},{\"duration\":0,\"rotate\":-23.08}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":-2.32,\"y\":-5.92},{\"duration\":21,\"tweenEasing\":0,\"x\":-5.84,\"y\":-9.44},{\"duration\":6,\"x\":-7.52,\"y\":-12}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":35.13},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.98},{\"duration\":6,\"rotate\":29.58}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.29,\"y\":0.43},{\"duration\":24,\"tweenEasing\":0,\"x\":0.29,\"y\":0.43},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.45},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-6.58},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.03,\"y\":0.23},{\"duration\":24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-3.35},{\"duration\":24,\"tweenEasing\":0,\"rotate\":7.11},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.08,\"y\":-0.56},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.08,\"y\":-0.56},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":13.8},{\"duration\":24,\"tweenEasing\":0,\"rotate\":4.52},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.1,\"y\":-0.99},{\"duration\":24,\"tweenEasing\":0,\"x\":0.18,\"y\":-0.92},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":16.02},{\"duration\":24,\"tweenEasing\":0,\"rotate\":12.08},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.16,\"y\":-0.69},{\"duration\":24,\"tweenEasing\":0,\"y\":-0.45},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.32,\"y\":-1.9},{\"duration\":24,\"tweenEasing\":0,\"x\":0.32,\"y\":-0.78},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-10.95},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-8.38},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"y\":-0.72},{\"duration\":24,\"tweenEasing\":0,\"x\":0.08,\"y\":-0.32},{\"duration\":0}],\"scaleFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":24,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":66,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":21,\"tweenEasing\":0,\"rotate\":16.12},{\"duration\":24,\"tweenEasing\":0,\"rotate\":15.51},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.09,\"y\":0.52},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.07,\"y\":0.13},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":21,\"tweenEasing\":0,\"rotate\":45.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":32.17},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":21,\"tweenEasing\":0,\"x\":0.74,\"y\":0.46},{\"duration\":24,\"tweenEasing\":0,\"x\":1.06,\"y\":0.7},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-26.33},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-19.75},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":66,\"value\":-1}]}]}],\"defaultActions\":[{\"gotoAndPlay\":\"Idle1\"}]}]}", + "dragonBonesJson": "{\"frameRate\":60,\"name\":\"SoldierFireGhost\",\"version\":\"5.5\",\"compatibleVersion\":\"5.5\",\"armature\":[{\"type\":\"Armature\",\"frameRate\":60,\"name\":\"SoldierFireGhost\",\"aabb\":{\"x\":-17.1,\"y\":-45.87,\"width\":38.84,\"height\":47.16},\"bone\":[{\"name\":\"root\"},{\"inheritScale\":false,\"length\":6.5,\"name\":\"leftShoulder\",\"parent\":\"root\",\"transform\":{\"x\":-5.60925,\"y\":-28.39315,\"skX\":156.8918,\"skY\":156.8918}},{\"inheritScale\":false,\"name\":\"backLight\",\"parent\":\"root\",\"transform\":{\"x\":0.1,\"y\":-23.0462,\"scX\":3,\"scY\":3}},{\"inheritScale\":false,\"length\":8.5,\"name\":\"rightArm\",\"parent\":\"root\",\"transform\":{\"x\":6.7954,\"y\":-26.8018,\"skX\":46.9769,\"skY\":46.9769}},{\"inheritScale\":false,\"name\":\"effect4\",\"parent\":\"root\",\"transform\":{\"x\":6.32,\"y\":-21.38935,\"skX\":-9.349,\"skY\":-9.349}},{\"inheritScale\":false,\"name\":\"effect7\",\"parent\":\"root\"},{\"inheritScale\":false,\"name\":\"effect3\",\"parent\":\"root\",\"transform\":{\"x\":5.75,\"y\":-27.36735}},{\"inheritScale\":false,\"length\":8.5,\"name\":\"leg\",\"parent\":\"root\",\"transform\":{\"x\":-0.45525,\"y\":-1.41005,\"skX\":-85.7242,\"skY\":-85.7242}},{\"inheritScale\":false,\"length\":11,\"name\":\"body\",\"parent\":\"root\",\"transform\":{\"x\":1.00195,\"y\":-12.3951,\"skX\":-82.2714,\"skY\":-82.2714}},{\"inheritScale\":false,\"length\":6,\"name\":\"rightShoulder\",\"parent\":\"root\",\"transform\":{\"x\":9.1041,\"y\":-26.3402,\"skX\":22.0857,\"skY\":22.0857}},{\"inheritScale\":false,\"length\":5.5,\"name\":\"head\",\"parent\":\"root\",\"transform\":{\"x\":4.103,\"y\":-31.2905,\"skX\":-83.4757,\"skY\":-83.4757}},{\"inheritScale\":false,\"length\":5,\"name\":\"leftArm\",\"parent\":\"root\",\"transform\":{\"x\":-6.5059,\"y\":-26.80925,\"skX\":122.5397,\"skY\":122.5397}},{\"inheritScale\":false,\"name\":\"effect2\",\"parent\":\"root\",\"transform\":{\"x\":-5.0143,\"y\":-28.2204,\"skX\":-79.3059,\"skY\":-79.3059}},{\"inheritScale\":false,\"name\":\"effect5\",\"parent\":\"root\",\"transform\":{\"x\":-15.0286,\"y\":-16.5986,\"skX\":-72.4737,\"skY\":-72.4737}},{\"inheritScale\":false,\"name\":\"effect6\",\"parent\":\"root\",\"transform\":{\"x\":13.28445,\"y\":-15.03735}},{\"inheritScale\":false,\"name\":\"rightFrontArm\",\"parent\":\"rightArm\",\"transform\":{\"x\":8.82335,\"y\":0.6604,\"skX\":10.7237,\"skY\":10.7237}},{\"inheritScale\":false,\"name\":\"leftFrontArm\",\"parent\":\"leftArm\",\"transform\":{\"x\":7.37235,\"y\":1.7869,\"skX\":-39.1583,\"skY\":-39.1583}},{\"inheritScale\":false,\"name\":\"rightHand\",\"parent\":\"rightFrontArm\",\"transform\":{\"x\":5.3646,\"y\":-2.8911,\"skX\":21.9835,\"skY\":21.9835}},{\"inheritScale\":false,\"name\":\"leftHand\",\"parent\":\"leftFrontArm\",\"transform\":{\"x\":7.3904,\"y\":1.4291,\"skX\":-25.7356,\"skY\":-25.7356}}],\"slot\":[{\"name\":\"backLight\",\"parent\":\"backLight\"},{\"name\":\"rightArm\",\"parent\":\"rightArm\"},{\"name\":\"leg\",\"parent\":\"leg\"},{\"name\":\"body\",\"parent\":\"body\"},{\"name\":\"rightShoulder\",\"parent\":\"rightShoulder\"},{\"name\":\"rightFrontArm\",\"parent\":\"rightFrontArm\"},{\"name\":\"rightHand\",\"parent\":\"rightHand\"},{\"name\":\"leftArm\",\"parent\":\"leftArm\"},{\"name\":\"leftShoulder\",\"parent\":\"leftShoulder\"},{\"name\":\"leftFrontArm\",\"parent\":\"leftFrontArm\"},{\"name\":\"head\",\"parent\":\"head\"},{\"name\":\"leftHand\",\"parent\":\"leftHand\"},{\"name\":\"effect2\",\"parent\":\"effect2\"},{\"name\":\"effect3\",\"parent\":\"effect3\"},{\"name\":\"effect4\",\"parent\":\"effect4\"},{\"name\":\"effect5\",\"parent\":\"effect5\"},{\"name\":\"effect6\",\"parent\":\"effect6\"},{\"displayIndex\":-1,\"name\":\"effect7\",\"parent\":\"effect7\"}],\"skin\":[{\"slot\":[{\"name\":\"leftHand\",\"display\":[{\"name\":\"yinmo07\",\"transform\":{\"x\":2.04,\"y\":-0.17,\"skX\":-66.8,\"skY\":-66.8},\"path\":\"leftHand\"}]},{\"name\":\"rightShoulder\",\"display\":[{\"name\":\"yinmo04\",\"transform\":{\"x\":1.71,\"y\":-0.41,\"skX\":-28.61,\"skY\":-28.61},\"path\":\"rightShoulder\"}]},{\"name\":\"effect3\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"rightHand\",\"display\":[{\"name\":\"yinmo10\",\"transform\":{\"x\":2.69,\"y\":-0.12,\"skX\":-63.84,\"skY\":-63.84},\"path\":\"rightHand\"}]},{\"name\":\"effect5\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"leftShoulder\",\"display\":[{\"name\":\"yinmo03\",\"transform\":{\"x\":2.4,\"y\":-0.06,\"skX\":-154.62,\"skY\":-154.62},\"path\":\"leftShoulder\"}]},{\"name\":\"backLight\",\"display\":[{\"name\":\"biu\"}]},{\"name\":\"rightArm\",\"display\":[{\"name\":\"yinmo08\",\"transform\":{\"x\":4.54,\"y\":-0.2,\"skX\":-54.4,\"skY\":-54.4},\"path\":\"rightArm\"}]},{\"name\":\"head\",\"display\":[{\"name\":\"yinmo01\",\"transform\":{\"x\":6.5,\"y\":-1.04,\"skX\":82.3,\"skY\":82.3,\"scX\":1.5,\"scY\":1.5},\"path\":\"head\"},{\"name\":\"head2\",\"transform\":{\"x\":6.64,\"y\":-1.22,\"skX\":83.48,\"skY\":83.48}}]},{\"name\":\"body\",\"display\":[{\"name\":\"yinmo02\",\"transform\":{\"x\":6.41,\"y\":-1.19,\"skX\":82.27,\"skY\":82.27},\"path\":\"body\"}]},{\"name\":\"effect2\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"rightFrontArm\",\"display\":[{\"name\":\"yinmo09\",\"transform\":{\"x\":1.87,\"y\":-0.59,\"skX\":-60.14,\"skY\":-60.14},\"path\":\"rightFrontArm\"}]},{\"name\":\"effect4\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"leftArm\",\"display\":[{\"name\":\"yinmo05\",\"transform\":{\"x\":3.46,\"y\":0.04,\"skX\":-112.43,\"skY\":-112.43},\"path\":\"leftArm\"}]},{\"name\":\"effect6\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"leftFrontArm\",\"display\":[{\"name\":\"yinmo06\",\"transform\":{\"x\":3.15,\"y\":0.49,\"skX\":-76.83,\"skY\":-76.83},\"path\":\"leftFrontArm\"}]},{\"name\":\"leg\",\"display\":[{\"name\":\"yinmoqe00\",\"transform\":{\"x\":5.32,\"y\":-0.07,\"skX\":85.72,\"skY\":85.72}}]}]}],\"animation\":[{\"duration\":60,\"playTimes\":0,\"name\":\"Walking\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"x\":22.08,\"y\":7.04},{\"duration\":12,\"tweenEasing\":0,\"x\":22.08,\"y\":7.04},{\"duration\":15,\"tweenEasing\":0,\"x\":15.52,\"y\":7.68},{\"duration\":15,\"tweenEasing\":0,\"x\":11.04,\"y\":-0.32},{\"duration\":6,\"x\":-5.12,\"y\":-11.68}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":21,\"rotate\":7.3}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":3.68,\"y\":-1.24},{\"duration\":9,\"tweenEasing\":0,\"x\":3.68,\"y\":-1.24},{\"duration\":15,\"tweenEasing\":0,\"x\":-1,\"y\":-7.88},{\"duration\":12,\"tweenEasing\":0,\"x\":-7.24,\"y\":-10.24},{\"duration\":12,\"tweenEasing\":0,\"x\":-7.32,\"y\":-18.4},{\"duration\":6,\"x\":-20.28,\"y\":-26.52}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-49.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-49.96},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-84.92},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-11.77},{\"duration\":6,\"rotate\":-28.57}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-7.4,\"y\":12.8},{\"duration\":12,\"tweenEasing\":0,\"x\":-7.4,\"y\":12.8},{\"duration\":18,\"tweenEasing\":0,\"x\":-14.6,\"y\":8.8},{\"duration\":12,\"tweenEasing\":0,\"x\":-19,\"y\":4.6},{\"duration\":9,\"tweenEasing\":0,\"x\":-28.2,\"y\":2.2},{\"duration\":3,\"x\":-34.4,\"y\":2}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-59.23},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-36.85},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-66.48},{\"duration\":3,\"rotate\":-111.5}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":5.28,\"y\":5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":5.28,\"y\":5.6},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.8,\"y\":0.8},{\"duration\":18,\"tweenEasing\":0,\"x\":-9.92,\"y\":1.6},{\"duration\":9,\"tweenEasing\":0,\"x\":-14.88,\"y\":-3.36},{\"duration\":3,\"x\":-19.84,\"y\":-12}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-61.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.48},{\"duration\":3,\"rotate\":27.59}]},{\"name\":\"leftHand\",\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.3},{\"duration\":15,\"tweenEasing\":0,\"rotate\":15.68},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.06},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":0.07,\"y\":0.59},{\"duration\":15,\"tweenEasing\":0,\"x\":0.23,\"y\":-0.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.17,\"y\":-1.03},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-4.65},{\"duration\":15,\"tweenEasing\":0,\"rotate\":12.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":23.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":16.54},{\"duration\":0,\"rotate\":-4.65}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":2.88},{\"duration\":15,\"tweenEasing\":0,\"x\":2.57,\"y\":0.97},{\"duration\":15,\"tweenEasing\":0,\"x\":4.14,\"y\":-0.08},{\"duration\":15,\"tweenEasing\":0,\"x\":3.68,\"y\":1.09},{\"duration\":0,\"x\":2.88}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.1},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.43},{\"duration\":15,\"tweenEasing\":0,\"rotate\":10.13},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-2.7},{\"duration\":0,\"rotate\":20.1}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":1.92,\"y\":-0.48},{\"duration\":15,\"tweenEasing\":0,\"x\":3.59,\"y\":0.72},{\"duration\":15,\"tweenEasing\":0,\"x\":6.63,\"y\":1.54},{\"duration\":15,\"tweenEasing\":0,\"x\":5.95,\"y\":1.94},{\"duration\":0,\"x\":1.92,\"y\":-0.48}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-35.34},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-70.51},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-30.69},{\"duration\":0,\"rotate\":26.91}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":2.72,\"y\":0.64},{\"duration\":15,\"tweenEasing\":0,\"x\":2.48,\"y\":2.44},{\"duration\":15,\"tweenEasing\":0,\"x\":3.65,\"y\":0.32},{\"duration\":15,\"tweenEasing\":0,\"x\":3.79,\"y\":2.71},{\"duration\":0,\"x\":2.72,\"y\":0.64}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.72},{\"duration\":0,\"rotate\":0.59}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":1.71,\"y\":0.58},{\"duration\":15,\"tweenEasing\":0,\"x\":0.85,\"y\":1.34},{\"duration\":15,\"tweenEasing\":0,\"x\":1.95,\"y\":0.09},{\"duration\":15,\"tweenEasing\":0,\"x\":2.81,\"y\":1.94},{\"duration\":0,\"x\":1.71,\"y\":0.58}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":10.12},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-14.23},{\"duration\":15,\"tweenEasing\":0,\"rotate\":5.57},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-13.84},{\"duration\":0,\"rotate\":10.12}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"y\":1.36},{\"duration\":15,\"tweenEasing\":0,\"x\":0.48,\"y\":-0.09},{\"duration\":15,\"tweenEasing\":0,\"x\":0.71,\"y\":1.67},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.24},{\"duration\":15,\"tweenEasing\":0,\"rotate\":13},{\"duration\":15,\"tweenEasing\":0,\"rotate\":16.36},{\"duration\":15,\"tweenEasing\":0,\"rotate\":14.15},{\"duration\":0,\"rotate\":11.24}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.48},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.4},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.48},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.48},{\"duration\":12,\"tweenEasing\":0,\"x\":0.32},{\"duration\":6,\"tweenEasing\":0,\"x\":0.32},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.16},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":1.02},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-0.52},{\"duration\":6}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":6,\"tweenEasing\":0,\"y\":1.1},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":12,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":12,\"y\":0.9}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":60,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-8},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-1.89},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.14},{\"duration\":0,\"rotate\":-8}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.85},{\"duration\":15,\"tweenEasing\":0,\"x\":0.41,\"y\":-1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.05},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.04,\"y\":-1.27},{\"duration\":6,\"tweenEasing\":0,\"y\":-1.32},{\"duration\":0,\"x\":-0.1,\"y\":-0.85}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-43.73},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-66.02},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.47},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-62.6},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-58.82},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-51.28},{\"duration\":0,\"rotate\":-43.73}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":2.16,\"y\":2.04},{\"duration\":15,\"tweenEasing\":0,\"x\":2.48,\"y\":1.17},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.18,\"y\":-2.13},{\"duration\":15,\"tweenEasing\":0,\"x\":2.1,\"y\":1.69},{\"duration\":0,\"x\":2.16,\"y\":2.04}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.28},{\"duration\":15,\"tweenEasing\":0,\"rotate\":63.1},{\"duration\":15,\"tweenEasing\":0,\"rotate\":74.64},{\"duration\":15,\"tweenEasing\":0,\"rotate\":55.11},{\"duration\":0,\"rotate\":11.28}]}],\"slot\":[{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":12,\"value\":-1},{\"duration\":45},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":51},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":27,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":54},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":30,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":60},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":33,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]}]},{\"duration\":174,\"name\":\"Atk2\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":13.3,\"y\":-18.8},{\"duration\":12,\"tweenEasing\":0,\"x\":14.8,\"y\":-23.5},{\"duration\":24,\"tweenEasing\":0,\"x\":11.2,\"y\":-31.6},{\"duration\":12,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":13.3,\"y\":-18.8},{\"duration\":12,\"tweenEasing\":0,\"x\":14.8,\"y\":-23.5},{\"duration\":24,\"tweenEasing\":0,\"x\":11.2,\"y\":-31.6},{\"duration\":12,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":13.3,\"y\":-18.8},{\"duration\":9,\"tweenEasing\":0,\"x\":14.8,\"y\":-23.5},{\"duration\":3,\"x\":11.2,\"y\":-31.6}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":24,\"tweenEasing\":0,\"rotate\":61.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":24,\"tweenEasing\":0,\"rotate\":61.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":3,\"rotate\":61.88}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":15,\"tweenEasing\":0,\"x\":4.34,\"y\":-5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.95,\"y\":-16.23},{\"duration\":21,\"tweenEasing\":0,\"x\":2.52,\"y\":-23.89},{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":15,\"tweenEasing\":0,\"x\":4.34,\"y\":-5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.95,\"y\":-16.23},{\"duration\":21,\"tweenEasing\":0,\"x\":2.52,\"y\":-23.89},{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":12,\"tweenEasing\":0,\"x\":4.34,\"y\":-5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.95,\"y\":-16.23},{\"duration\":6,\"x\":2.52,\"y\":-23.89}],\"rotateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-53.65},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-53.65},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":6,\"rotate\":-53.65}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"y\":7.54},{\"duration\":15,\"tweenEasing\":0,\"y\":7.54},{\"duration\":15,\"tweenEasing\":0,\"x\":-6.29,\"y\":-9.26},{\"duration\":12,\"tweenEasing\":0,\"x\":-12.12,\"y\":-17.95},{\"duration\":18,\"tweenEasing\":0,\"x\":-18.97,\"y\":-21.37},{\"duration\":15,\"tweenEasing\":0,\"y\":7.54},{\"duration\":15,\"tweenEasing\":0,\"x\":-6.29,\"y\":-9.26},{\"duration\":12,\"tweenEasing\":0,\"x\":-12.12,\"y\":-17.95},{\"duration\":18,\"tweenEasing\":0,\"x\":-18.97,\"y\":-21.37},{\"duration\":15,\"tweenEasing\":0,\"y\":7.54},{\"duration\":12,\"tweenEasing\":0,\"x\":-6.29,\"y\":-9.26},{\"duration\":12,\"tweenEasing\":0,\"x\":-12.12,\"y\":-17.95},{\"duration\":6,\"x\":-18.97,\"y\":-21.37}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-111.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-111.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":6,\"rotate\":-111.08}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":9,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":-0.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.29,\"y\":-4.12},{\"duration\":15,\"tweenEasing\":0,\"x\":-13.71,\"y\":-10.29},{\"duration\":15,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":-0.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.29,\"y\":-4.12},{\"duration\":15,\"tweenEasing\":0,\"x\":-13.71,\"y\":-10.29},{\"duration\":15,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":-0.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.29,\"y\":-4.12},{\"duration\":9,\"x\":-13.71,\"y\":-10.29}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":57.19},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":57.19},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":9,\"rotate\":57.19}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":3,\"tweenEasing\":0,\"x\":0.35,\"y\":0.04},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.1},{\"duration\":12,\"tweenEasing\":0,\"x\":0.06,\"y\":0.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":3,\"tweenEasing\":0,\"x\":0.35,\"y\":0.04},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.1},{\"duration\":12,\"tweenEasing\":0,\"x\":0.06,\"y\":0.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":3,\"tweenEasing\":0,\"x\":0.35,\"y\":0.04},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.1},{\"duration\":12,\"tweenEasing\":0,\"x\":0.06,\"y\":0.29},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":0.14,\"y\":0.17},{\"duration\":15,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.33,\"y\":-1.5},{\"duration\":12,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.45},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":0.14,\"y\":0.17},{\"duration\":15,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.33,\"y\":-1.5},{\"duration\":12,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.45},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":0.14,\"y\":0.17},{\"duration\":15,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.33,\"y\":-1.5},{\"duration\":12,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.45},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":0}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":2.63},{\"duration\":3,\"tweenEasing\":0,\"x\":8,\"y\":1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":-7.12,\"y\":1.65},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.38,\"y\":-0.4},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.7,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":4.67,\"y\":1.6},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":2.63},{\"duration\":3,\"tweenEasing\":0,\"x\":8,\"y\":1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":-7.12,\"y\":1.65},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.38,\"y\":-0.4},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.7,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":4.67,\"y\":1.6},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":2.63},{\"duration\":3,\"tweenEasing\":0,\"x\":8,\"y\":1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":-7.12,\"y\":1.65},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.38,\"y\":-0.4},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.7,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":4.67,\"y\":1.6},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":4.25,\"y\":-0.63},{\"duration\":3,\"tweenEasing\":0,\"x\":7.94,\"y\":0.21},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.53},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.9,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":1.72,\"y\":1.3},{\"duration\":12,\"tweenEasing\":0,\"x\":4.92,\"y\":0.26},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":4.25,\"y\":-0.63},{\"duration\":3,\"tweenEasing\":0,\"x\":7.94,\"y\":0.21},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.53},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.9,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":1.72,\"y\":1.3},{\"duration\":12,\"tweenEasing\":0,\"x\":4.92,\"y\":0.26},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":4.25,\"y\":-0.63},{\"duration\":3,\"tweenEasing\":0,\"x\":7.94,\"y\":0.21},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.53},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.9,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":1.72,\"y\":1.3},{\"duration\":12,\"tweenEasing\":0,\"x\":4.92,\"y\":0.26},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":0}],\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":15}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.58,\"y\":5.97},{\"duration\":3,\"tweenEasing\":0,\"x\":8.94,\"y\":8.11},{\"duration\":15,\"tweenEasing\":0,\"x\":-8.84,\"y\":0.61},{\"duration\":3,\"tweenEasing\":0,\"x\":-9.28,\"y\":-1},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.25,\"y\":-0.36},{\"duration\":12,\"tweenEasing\":0,\"x\":4.59,\"y\":3.9},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.58,\"y\":5.97},{\"duration\":3,\"tweenEasing\":0,\"x\":8.94,\"y\":8.11},{\"duration\":15,\"tweenEasing\":0,\"x\":-8.84,\"y\":0.61},{\"duration\":3,\"tweenEasing\":0,\"x\":-9.28,\"y\":-1},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.25,\"y\":-0.36},{\"duration\":12,\"tweenEasing\":0,\"x\":4.59,\"y\":3.9},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.58,\"y\":5.97},{\"duration\":3,\"tweenEasing\":0,\"x\":8.94,\"y\":8.11},{\"duration\":15,\"tweenEasing\":0,\"x\":-8.84,\"y\":0.61},{\"duration\":3,\"tweenEasing\":0,\"x\":-9.28,\"y\":-1},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.25,\"y\":-0.36},{\"duration\":12,\"tweenEasing\":0,\"x\":4.59,\"y\":3.9},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":3.56,\"y\":2.23},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":3.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-11.15,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.46,\"y\":-2.84},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.45,\"y\":-0.43},{\"duration\":12,\"tweenEasing\":0,\"x\":3.48,\"y\":2.71},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":3.56,\"y\":2.23},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":3.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-11.15,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.46,\"y\":-2.84},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.45,\"y\":-0.43},{\"duration\":12,\"tweenEasing\":0,\"x\":3.48,\"y\":2.71},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":3.56,\"y\":2.23},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":3.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-11.15,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.46,\"y\":-2.84},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.45,\"y\":-0.43},{\"duration\":12,\"tweenEasing\":0,\"x\":3.48,\"y\":2.71},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.45,\"y\":1.64},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":1.08},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.44,\"y\":-0.71},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.68,\"y\":-0.49},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.84,\"y\":-0.35},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.61,\"y\":-0.37},{\"duration\":12,\"tweenEasing\":0,\"x\":0.05,\"y\":1.11},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.45,\"y\":1.64},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":1.08},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.44,\"y\":-0.71},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.68,\"y\":-0.49},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.84,\"y\":-0.35},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.61,\"y\":-0.37},{\"duration\":12,\"tweenEasing\":0,\"x\":0.05,\"y\":1.11},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.45,\"y\":1.64},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":1.08},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.44,\"y\":-0.71},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.68,\"y\":-0.49},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.84,\"y\":-0.35},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.61,\"y\":-0.37},{\"duration\":12,\"tweenEasing\":0,\"x\":0.05,\"y\":1.11},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":0}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":15}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":15}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.3,\"y\":-0.62},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.21,\"y\":-0.17},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.3,\"y\":-0.62},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.21,\"y\":-0.17},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.3,\"y\":-0.62},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.21,\"y\":-0.17},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-30.35},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"x\":1.56,\"y\":-1.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":12,\"tweenEasing\":0,\"x\":0.62,\"y\":-1.61},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"x\":1.56,\"y\":-1.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":12,\"tweenEasing\":0,\"x\":0.62,\"y\":-1.61},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"x\":1.56,\"y\":-1.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":12,\"tweenEasing\":0,\"x\":0.62,\"y\":-1.61},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-42.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-55.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-55.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":0,\"rotate\":21.7}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":0}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":3.52,\"y\":0.28},{\"duration\":3,\"tweenEasing\":0,\"x\":4.23,\"y\":2.19},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.97,\"y\":-2.79},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.28,\"y\":-3.39},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.67,\"y\":-0.35},{\"duration\":12,\"tweenEasing\":0,\"x\":2.15,\"y\":1.63},{\"duration\":6,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":15,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":3.52,\"y\":0.28},{\"duration\":3,\"tweenEasing\":0,\"x\":4.23,\"y\":2.19},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.97,\"y\":-2.79},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.28,\"y\":-3.39},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.67,\"y\":-0.35},{\"duration\":12,\"tweenEasing\":0,\"x\":2.15,\"y\":1.63},{\"duration\":6,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":15,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":3.52,\"y\":0.28},{\"duration\":3,\"tweenEasing\":0,\"x\":4.23,\"y\":2.19},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.97,\"y\":-2.79},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.28,\"y\":-3.39},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.67,\"y\":-0.35},{\"duration\":12,\"tweenEasing\":0,\"x\":2.15,\"y\":1.63},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":0,\"rotate\":-6.67}],\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":36,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":36,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":12}]}],\"slot\":[{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":18,\"value\":-1},{\"duration\":156},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":12,\"value\":-1},{\"duration\":159},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":9,\"value\":-1},{\"duration\":162},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":162},{\"duration\":6,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"rightHand\",\"displayFrame\":[{\"duration\":21},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":15}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":42,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15}]},{\"name\":\"rightFrontArm\",\"displayFrame\":[{\"duration\":21},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":15}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":42,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":174,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":174,\"value\":-1}]}]},{\"duration\":34,\"name\":\"Atk1\",\"bone\":[{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":-9.1,\"y\":6.7},{\"duration\":8,\"tweenEasing\":0,\"x\":-9.1,\"y\":6.7},{\"duration\":8,\"tweenEasing\":0,\"x\":-17.8,\"y\":1.8},{\"duration\":8,\"tweenEasing\":0,\"x\":-24,\"y\":0.4},{\"duration\":6,\"x\":-30.6}],\"rotateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"rotate\":-105.08},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-105.08},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-96.73},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-69.9},{\"duration\":6,\"rotate\":-94.04}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":-14.66,\"y\":10.66},{\"duration\":4,\"tweenEasing\":0,\"x\":-14.66,\"y\":10.66},{\"duration\":10,\"tweenEasing\":0,\"x\":-23.07,\"y\":6},{\"duration\":8,\"tweenEasing\":0,\"x\":-26.93,\"y\":9.46},{\"duration\":10,\"x\":-31.07,\"y\":7.33}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-108.91},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-108.91},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-127.09},{\"duration\":10,\"rotate\":-108.09}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":-4.54,\"y\":13.2},{\"duration\":6,\"tweenEasing\":0,\"x\":-4.54,\"y\":13.2},{\"duration\":10,\"tweenEasing\":0,\"x\":-13.6,\"y\":2.8},{\"duration\":4,\"tweenEasing\":0,\"x\":-23.46,\"y\":-4.26},{\"duration\":12,\"x\":-27.46,\"y\":-5.46}],\"rotateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"rotate\":31.2},{\"duration\":6,\"tweenEasing\":0,\"rotate\":31.2},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-0.05},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-26.91},{\"duration\":12,\"rotate\":-24.71}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0,\"x\":0.01,\"y\":0.07},{\"duration\":8,\"tweenEasing\":0,\"x\":0.01,\"y\":0.07},{\"duration\":8,\"tweenEasing\":0,\"x\":0.1,\"y\":0.49},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":8,\"tweenEasing\":0,\"rotate\":18.53},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-9},{\"duration\":8,\"tweenEasing\":0,\"rotate\":9.5},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.71,\"y\":0.04},{\"duration\":8,\"tweenEasing\":0,\"x\":0.18,\"y\":0.12},{\"duration\":8,\"tweenEasing\":0,\"x\":0.69,\"y\":-0.78},{\"duration\":8,\"tweenEasing\":0,\"x\":0.2,\"y\":0.24},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":13.83},{\"duration\":8,\"tweenEasing\":0,\"rotate\":25.06},{\"duration\":8,\"tweenEasing\":0,\"rotate\":17.69},{\"duration\":8,\"tweenEasing\":0,\"rotate\":12.39},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.88,\"y\":-0.6},{\"duration\":8,\"tweenEasing\":0,\"x\":8.4,\"y\":-0.74},{\"duration\":8,\"tweenEasing\":0,\"x\":8.01,\"y\":-0.58},{\"duration\":8,\"tweenEasing\":0,\"x\":1.14,\"y\":-0.23},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":40},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-12.39},{\"duration\":8,\"tweenEasing\":0,\"rotate\":4.99},{\"duration\":8,\"tweenEasing\":0,\"rotate\":8.69},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-3.42,\"y\":-1.95},{\"duration\":8,\"tweenEasing\":0,\"x\":12.95,\"y\":0.1},{\"duration\":8,\"tweenEasing\":0,\"x\":12.47,\"y\":0.42},{\"duration\":8,\"tweenEasing\":0,\"x\":1.5,\"y\":-2.19},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":66.79},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-95.1},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-98.37},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-44.89},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-4.17,\"y\":0.46},{\"duration\":8,\"tweenEasing\":0,\"x\":9.35,\"y\":1.83},{\"duration\":8,\"tweenEasing\":0,\"x\":8.79,\"y\":2.23},{\"duration\":8,\"tweenEasing\":0,\"x\":1.23,\"y\":0.91},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":15.73},{\"duration\":8,\"tweenEasing\":0,\"rotate\":2.95},{\"duration\":8,\"tweenEasing\":0,\"rotate\":2.83},{\"duration\":8,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-3.63,\"y\":-0.73},{\"duration\":8,\"tweenEasing\":0,\"x\":6.29,\"y\":2.04},{\"duration\":8,\"tweenEasing\":0,\"x\":6.13,\"y\":2.27},{\"duration\":8,\"tweenEasing\":0,\"x\":0.4,\"y\":0.34},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.02},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-27.15},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-15.36},{\"duration\":8,\"tweenEasing\":0,\"rotate\":3.41},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.47,\"y\":-1.01},{\"duration\":8,\"tweenEasing\":0,\"x\":1.27,\"y\":-0.09},{\"duration\":8,\"tweenEasing\":0,\"x\":1.44,\"y\":0.23},{\"duration\":8,\"tweenEasing\":0,\"y\":0.4},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.15},{\"duration\":8,\"tweenEasing\":0,\"rotate\":29.43},{\"duration\":8,\"tweenEasing\":0,\"rotate\":30.7},{\"duration\":8,\"tweenEasing\":0,\"rotate\":1.09},{\"duration\":0}],\"scaleFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":8,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":14,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.16},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.16},{\"duration\":0}],\"scaleFrame\":[{\"duration\":4,\"tweenEasing\":0},{\"duration\":4,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.1,\"y\":1.3},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":1.1},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":1.1},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.9},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":0.9},{\"duration\":4,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":2,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.2},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.2},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.54,\"y\":-0.17},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-34.26},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-8.09},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-36.51},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-12.04},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.7,\"y\":0.18},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.34,\"y\":0.12},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.44,\"y\":0.07},{\"duration\":8,\"tweenEasing\":0,\"x\":0.31,\"y\":0.26},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-36.51},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-41.51},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-50.9},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-42.18},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.96,\"y\":-0.32},{\"duration\":8,\"tweenEasing\":0,\"x\":1.4,\"y\":3.87},{\"duration\":8,\"tweenEasing\":0,\"x\":1.48,\"y\":4.19},{\"duration\":8,\"tweenEasing\":0,\"x\":-3.83,\"y\":-3.08},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":2,\"tweenEasing\":0,\"rotate\":8.81},{\"duration\":8,\"tweenEasing\":0,\"rotate\":7.26},{\"duration\":8,\"tweenEasing\":0,\"rotate\":15.7},{\"duration\":8,\"tweenEasing\":0,\"rotate\":25.83},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":4,\"value\":-1},{\"duration\":26},{\"duration\":4,\"value\":-1}],\"colorFrame\":[{\"duration\":4,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":8,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":8,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":2,\"value\":-1},{\"duration\":24},{\"duration\":8,\"value\":-1}],\"colorFrame\":[{\"duration\":2,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":4,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":10,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0},{\"duration\":10,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":2,\"value\":-1},{\"duration\":22},{\"duration\":10,\"value\":-1}],\"colorFrame\":[{\"duration\":2,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":10,\"tweenEasing\":0},{\"duration\":4,\"tweenEasing\":0},{\"duration\":12,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":34,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":34,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":34,\"value\":-1}]}]},{\"duration\":18,\"name\":\"Atked1\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-2.52,\"y\":1.72},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.66,\"y\":-0.23},{\"duration\":6,\"tweenEasing\":0,\"x\":3.25,\"y\":-1.37},{\"duration\":3,\"x\":4.8,\"y\":-6.29}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"rotate\":-20.99}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-4.5,\"y\":3.8},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.5,\"y\":3.8},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.13,\"y\":-1.13},{\"duration\":9,\"tweenEasing\":0,\"x\":-11.84,\"y\":-6.3},{\"duration\":0,\"x\":-24,\"y\":-16.3}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-9.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-9.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-12.21},{\"duration\":9,\"rotate\":-14.93}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-3.68,\"y\":5.44},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.76,\"y\":-7.24},{\"duration\":6,\"tweenEasing\":0,\"x\":1.84,\"y\":-9.36},{\"duration\":3,\"x\":6.56,\"y\":-13.6}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-20.49},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-21.44},{\"duration\":3,\"rotate\":-23.34}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":2.72,\"y\":0.96},{\"duration\":3,\"tweenEasing\":0,\"x\":-6.04,\"y\":-7.24},{\"duration\":9,\"tweenEasing\":0,\"x\":-6.73,\"y\":-8.87},{\"duration\":0,\"x\":-9.44,\"y\":-13.76}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":55.47},{\"duration\":9,\"tweenEasing\":0,\"rotate\":51.89},{\"duration\":0,\"rotate\":41.14}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.23},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-26.56},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-11.41},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.05},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.27},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.15,\"y\":2.3},{\"duration\":9,\"tweenEasing\":0,\"x\":-3.52,\"y\":1.7},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.93},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.8},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.16,\"y\":1.05},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.29,\"y\":0.44},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-15.21},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.28},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.98,\"y\":2.9},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.31,\"y\":0.72},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.26},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.02,\"y\":0.27},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.56,\"y\":-0.29},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-22.45},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.1,\"y\":1.19},{\"duration\":9,\"tweenEasing\":0,\"x\":0.4,\"y\":0.88},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.23},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.28},{\"duration\":0}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.64,\"y\":0.12},{\"duration\":9,\"tweenEasing\":0,\"x\":0.32,\"y\":-0.04},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.63},{\"duration\":9,\"tweenEasing\":0,\"rotate\":6.92},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.22,\"y\":-0.36},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.33},{\"duration\":9,\"tweenEasing\":0,\"rotate\":14.55},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.48,\"y\":2.58},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.94,\"y\":0.96},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.02},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.28},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":66}},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":49}},{\"duration\":9,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":18,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":18,\"value\":-1}]}]},{\"duration\":78,\"name\":\"Dying\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":7.2,\"y\":1.72},{\"duration\":18,\"tweenEasing\":0,\"x\":7.2,\"y\":1.72},{\"duration\":15,\"tweenEasing\":0,\"x\":3.2,\"y\":-5.14},{\"duration\":15,\"tweenEasing\":0,\"x\":4.23,\"y\":-11.54},{\"duration\":6,\"x\":0.57,\"y\":-16.23}],\"rotateFrame\":[{\"duration\":42,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":46.89},{\"duration\":6,\"rotate\":26.37}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":-1.6,\"y\":0.8},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":0.8},{\"duration\":18,\"tweenEasing\":0,\"x\":0.12,\"y\":-12.12},{\"duration\":18,\"tweenEasing\":0,\"x\":-4.34,\"y\":-19.77},{\"duration\":9,\"x\":-5.8,\"y\":-24.16}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":20.94},{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-3.4},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-10.49},{\"duration\":9,\"rotate\":-4.63}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":27,\"tweenEasing\":0,\"x\":-3.06,\"y\":11.2},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.06,\"y\":11.2},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.38,\"y\":-2.44},{\"duration\":12,\"tweenEasing\":0,\"x\":4.45,\"y\":-9.82},{\"duration\":9,\"x\":11.24,\"y\":-11.69}],\"rotateFrame\":[{\"duration\":27,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-12.51},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-13.38},{\"duration\":9,\"rotate\":9.35}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":2,\"y\":3.06},{\"duration\":9,\"tweenEasing\":0,\"x\":2,\"y\":3.06},{\"duration\":9,\"tweenEasing\":0,\"x\":0.54,\"y\":-3.87},{\"duration\":15,\"tweenEasing\":0,\"x\":-6.54,\"y\":-10.13},{\"duration\":24,\"x\":-20.27,\"y\":-14.8}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":29.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":2.18},{\"duration\":24,\"rotate\":-22.33}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":6,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":9,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.21},{\"duration\":3,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.21},{\"duration\":42,\"x\":-0.33,\"y\":-0.04}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":6,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-18.54},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-18.54},{\"duration\":24,\"tweenEasing\":0,\"rotate\":6.38},{\"duration\":6,\"tweenEasing\":0,\"rotate\":6.38},{\"duration\":12,\"rotate\":11.01}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.68,\"y\":-0.95},{\"duration\":6,\"tweenEasing\":0,\"x\":0.68,\"y\":-0.95},{\"duration\":9,\"tweenEasing\":0,\"x\":0.65,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":0.65,\"y\":-1.15},{\"duration\":15,\"tweenEasing\":0,\"x\":0.15,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.83,\"y\":0.94},{\"duration\":6,\"tweenEasing\":0,\"x\":0.64,\"y\":-3.63},{\"duration\":12,\"x\":0.49,\"y\":-4.08}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-33.88},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-26.38},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-26.38},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-47.87},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-65.3},{\"duration\":15,\"tweenEasing\":0,\"rotate\":46.32},{\"duration\":9,\"tweenEasing\":0,\"rotate\":15},{\"duration\":6,\"tweenEasing\":0,\"rotate\":113.18},{\"duration\":12,\"rotate\":106.03}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":69,\"x\":1.05,\"y\":1.05}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":3.92,\"y\":0.22},{\"duration\":3,\"tweenEasing\":0,\"x\":3.65,\"y\":-0.2},{\"duration\":6,\"tweenEasing\":0,\"x\":3.65,\"y\":0.04},{\"duration\":9,\"tweenEasing\":0,\"x\":5.47,\"y\":0.93},{\"duration\":3,\"tweenEasing\":0,\"x\":5.34,\"y\":-0.94},{\"duration\":15,\"tweenEasing\":0,\"x\":-1,\"y\":-5.83},{\"duration\":9,\"tweenEasing\":0,\"x\":-4.61,\"y\":-8.44},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.2,\"y\":19},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.65,\"y\":17.16},{\"duration\":0,\"x\":-1.65,\"y\":18.77}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.57},{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.2},{\"duration\":6,\"tweenEasing\":0,\"rotate\":16.88},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.9},{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.99},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.17},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.82},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-8.56},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-2.65},{\"duration\":0,\"rotate\":-7.04}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":3.38,\"y\":-2.31},{\"duration\":3,\"tweenEasing\":0,\"x\":3.38,\"y\":-2.55},{\"duration\":6,\"tweenEasing\":0,\"x\":3.38,\"y\":-2.31},{\"duration\":9,\"tweenEasing\":0,\"x\":6.04,\"y\":-0.88},{\"duration\":3,\"tweenEasing\":0,\"x\":5.92,\"y\":-2.75},{\"duration\":15,\"tweenEasing\":0,\"x\":0.43,\"y\":-5.91},{\"duration\":9,\"tweenEasing\":0,\"x\":1.24,\"y\":-0.91},{\"duration\":6,\"tweenEasing\":0,\"x\":1.44,\"y\":14.13},{\"duration\":12,\"tweenEasing\":0,\"x\":0.64,\"y\":12.94},{\"duration\":0,\"x\":0.8,\"y\":13.73}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":0.58},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.94},{\"duration\":6,\"tweenEasing\":0,\"rotate\":4.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.19},{\"duration\":3,\"tweenEasing\":0,\"rotate\":25.77},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-11.12},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.99},{\"duration\":18,\"rotate\":-14.6}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":4.09,\"y\":3.06},{\"duration\":3,\"tweenEasing\":0,\"x\":3.85,\"y\":2.9},{\"duration\":6,\"tweenEasing\":0,\"x\":3.85,\"y\":3.14},{\"duration\":9,\"tweenEasing\":0,\"x\":4.46,\"y\":5.23},{\"duration\":3,\"tweenEasing\":0,\"x\":4.79,\"y\":5.7},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.35,\"y\":-7.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.62,\"y\":-11.06},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.1,\"y\":18.3},{\"duration\":12,\"tweenEasing\":0,\"x\":-2.54,\"y\":16.94},{\"duration\":0,\"x\":0.02,\"y\":21.42}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":29.23},{\"duration\":3,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.15},{\"duration\":9,\"tweenEasing\":0,\"rotate\":15.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.69},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-29.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.43},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.43},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.43},{\"duration\":0,\"rotate\":-13.96}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":3.03,\"y\":0.83},{\"duration\":3,\"tweenEasing\":0,\"x\":3.03,\"y\":0.59},{\"duration\":6,\"tweenEasing\":0,\"x\":3.03,\"y\":0.83},{\"duration\":9,\"tweenEasing\":0,\"x\":3.4,\"y\":1.55},{\"duration\":3,\"tweenEasing\":0,\"x\":3.26,\"y\":-0.84},{\"duration\":15,\"tweenEasing\":0,\"x\":-2.59,\"y\":-8.54},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.19,\"y\":-6.93},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.19,\"y\":16.3},{\"duration\":12,\"tweenEasing\":0,\"x\":-0.23,\"y\":16.86},{\"duration\":0,\"x\":-0.23,\"y\":19.27}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-2.21},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.5},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-5.8},{\"duration\":9,\"tweenEasing\":0,\"rotate\":7.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-16.47},{\"duration\":6,\"tweenEasing\":0,\"rotate\":20.03},{\"duration\":12,\"rotate\":10.97}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.09,\"y\":0.24},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.09},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.33},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.09,\"y\":1.13},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.22,\"y\":-0.74},{\"duration\":15,\"tweenEasing\":0,\"x\":1.18,\"y\":-7.26},{\"duration\":9,\"tweenEasing\":0,\"x\":1.65,\"y\":-4.2},{\"duration\":6,\"tweenEasing\":0,\"x\":4.98,\"y\":12.38},{\"duration\":12,\"tweenEasing\":0,\"x\":5.3,\"y\":9.58},{\"duration\":0,\"x\":5.46,\"y\":10.7}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":6,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":21.06},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.64},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-10.59},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-22.36},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-49.93},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-57.44},{\"duration\":0,\"rotate\":-66.41}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.96},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.96},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.16},{\"duration\":15,\"tweenEasing\":0},{\"duration\":27,\"y\":0.9}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.42},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.42},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.26,\"y\":-0.32},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.26,\"y\":-1.92},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.26,\"y\":-2.64},{\"duration\":21,\"x\":-0.26,\"y\":-1.76}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.25},{\"duration\":6,\"tweenEasing\":0,\"x\":0.95,\"y\":0.85},{\"duration\":9,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.25,\"y\":1.05},{\"duration\":15,\"tweenEasing\":0,\"x\":1.85,\"y\":1.05},{\"duration\":6,\"tweenEasing\":0,\"x\":2.15,\"y\":1.05},{\"duration\":21,\"x\":1.55,\"y\":1.05}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":27,\"tweenEasing\":0,\"x\":-1.12,\"y\":-0.8},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.12,\"y\":-0.8},{\"duration\":18,\"x\":-0.52,\"y\":-0.81}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":6,\"tweenEasing\":0,\"rotate\":23.26},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.83},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-19.83},{\"duration\":9,\"tweenEasing\":0,\"rotate\":23.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.82},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.18},{\"duration\":9,\"tweenEasing\":0,\"rotate\":22.15},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-22.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-45.66},{\"duration\":0,\"rotate\":-37}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":12,\"tweenEasing\":0,\"x\":-0.66,\"y\":-0.14},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.66,\"y\":-0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.47,\"y\":-1.53},{\"duration\":6,\"tweenEasing\":0,\"x\":-3.21,\"y\":1.78},{\"duration\":12,\"tweenEasing\":0,\"x\":-2.78,\"y\":2.31},{\"duration\":0,\"x\":-3.77,\"y\":2.53}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":6,\"tweenEasing\":0,\"rotate\":59.44},{\"duration\":3,\"tweenEasing\":0,\"rotate\":75.81},{\"duration\":6,\"tweenEasing\":0,\"rotate\":75.81},{\"duration\":9,\"tweenEasing\":0,\"rotate\":75.52},{\"duration\":3,\"tweenEasing\":0,\"rotate\":94.88},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-2.28},{\"duration\":9,\"tweenEasing\":0,\"rotate\":12.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":12.5},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.33},{\"duration\":0,\"rotate\":11.94}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":69,\"x\":1.05,\"y\":1.05}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":6,\"tweenEasing\":0,\"x\":3.9,\"y\":0.71},{\"duration\":3,\"tweenEasing\":0,\"x\":3.42,\"y\":0.4},{\"duration\":6,\"tweenEasing\":0,\"x\":3.42,\"y\":0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":3.25,\"y\":1.44},{\"duration\":3,\"tweenEasing\":0,\"x\":3.12,\"y\":-0.43},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.94,\"y\":-5.88},{\"duration\":9,\"tweenEasing\":0,\"x\":0.06,\"y\":0.45},{\"duration\":6,\"tweenEasing\":0,\"x\":-2.26,\"y\":21.07},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.06,\"y\":19.87},{\"duration\":0,\"x\":-2.9,\"y\":20.67}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":6,\"tweenEasing\":0,\"rotate\":2.1},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.1},{\"duration\":6,\"tweenEasing\":0,\"rotate\":1.1},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.84},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-18.94},{\"duration\":15,\"tweenEasing\":0,\"rotate\":15.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.72},{\"duration\":18,\"rotate\":-52.69}]},{\"name\":\"backLight\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"y\":-3.65},{\"duration\":9,\"tweenEasing\":0,\"y\":-6.4},{\"duration\":6,\"tweenEasing\":0,\"y\":-6.4},{\"duration\":27,\"x\":0.4,\"y\":-20.8}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":0.69,\"y\":0.5},{\"duration\":9,\"tweenEasing\":0,\"x\":1.56,\"y\":1.71},{\"duration\":6,\"tweenEasing\":0,\"x\":0.6,\"y\":2.57},{\"duration\":27,\"x\":0.11,\"y\":2.79}]}],\"slot\":[{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":27,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":24,\"value\":{\"aM\":0}}]},{\"name\":\"leftArm\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12}]},{\"name\":\"head\",\"displayFrame\":[{\"duration\":78,\"value\":1}]},{\"name\":\"rightArm\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12}]},{\"name\":\"backLight\",\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":30,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":27,\"value\":{\"aM\":0}}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":78,\"value\":-1}]}]},{\"duration\":72,\"playTimes\":0,\"name\":\"Atked2\",\"bone\":[{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-9.24,\"y\":3.38},{\"duration\":18,\"tweenEasing\":0,\"x\":-9.24,\"y\":3.38},{\"duration\":21,\"tweenEasing\":0,\"x\":-8,\"y\":-5.07},{\"duration\":21,\"tweenEasing\":0,\"x\":-12.36,\"y\":-12.18},{\"duration\":9,\"x\":-12.27,\"y\":-18.84}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-28.4},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-16.18},{\"duration\":9,\"rotate\":-31.27}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-0.94,\"y\":5.33},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.94,\"y\":5.33},{\"duration\":21,\"tweenEasing\":0,\"x\":1.63,\"y\":-8.11},{\"duration\":18,\"tweenEasing\":0,\"x\":0.34,\"y\":-14.59},{\"duration\":0,\"x\":0.58,\"y\":-17.3}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-39.38},{\"duration\":18,\"rotate\":-22.72}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":2,\"y\":-8.5},{\"duration\":24,\"tweenEasing\":0,\"x\":0.5,\"y\":-14.6},{\"duration\":3,\"x\":-0.1,\"y\":-19.9}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":29.43},{\"duration\":24,\"tweenEasing\":0,\"rotate\":65.43},{\"duration\":24,\"tweenEasing\":0,\"rotate\":44.46},{\"duration\":3,\"rotate\":60}]},{\"name\":\"leftHand\",\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":15.92},{\"duration\":24,\"tweenEasing\":0,\"rotate\":12.42},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-2.24},{\"duration\":0,\"rotate\":15.92}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.3,\"y\":0.2},{\"duration\":0}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":29.06},{\"duration\":24,\"tweenEasing\":0,\"rotate\":26.02},{\"duration\":24,\"tweenEasing\":0,\"rotate\":16.87},{\"duration\":0,\"rotate\":29.06}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":2.06,\"y\":-0.8},{\"duration\":24,\"tweenEasing\":0,\"x\":2.73,\"y\":-0.64},{\"duration\":24,\"tweenEasing\":0,\"x\":3.04,\"y\":-0.99},{\"duration\":0,\"x\":2.06,\"y\":-0.8}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-12.27},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-15.89},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-12.23},{\"duration\":0,\"rotate\":-12.27}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":2.4,\"y\":0.46},{\"duration\":24,\"tweenEasing\":0,\"x\":2.4,\"y\":0.46},{\"duration\":24,\"tweenEasing\":0,\"x\":2.54,\"y\":0.65},{\"duration\":0,\"x\":2.4,\"y\":0.46}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-23.09},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-31.16},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-21.98},{\"duration\":0,\"rotate\":-23.09}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":2.1,\"y\":2.36},{\"duration\":24,\"tweenEasing\":0,\"x\":3.17,\"y\":2.85},{\"duration\":24,\"tweenEasing\":0,\"x\":3.07,\"y\":2.85},{\"duration\":0,\"x\":2.1,\"y\":2.36}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":27.28},{\"duration\":24,\"tweenEasing\":0,\"rotate\":21.12},{\"duration\":24,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":0,\"rotate\":27.28}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":1.72,\"y\":0.12},{\"duration\":24,\"tweenEasing\":0,\"x\":2.73,\"y\":0.63},{\"duration\":24,\"tweenEasing\":0,\"x\":2.71,\"y\":0.23},{\"duration\":0,\"x\":1.72,\"y\":0.12}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":13.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":9.28},{\"duration\":24,\"tweenEasing\":0,\"rotate\":14.42},{\"duration\":0,\"rotate\":13.3}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":0.12,\"y\":0.12},{\"duration\":24,\"tweenEasing\":0,\"x\":0.25,\"y\":-0.28},{\"duration\":0}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":13.71},{\"duration\":24,\"tweenEasing\":0,\"rotate\":17.86},{\"duration\":24,\"tweenEasing\":0,\"rotate\":16.11},{\"duration\":0,\"rotate\":13.71}]},{\"name\":\"leg\",\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":18,\"tweenEasing\":0,\"x\":1.1,\"y\":0.8},{\"duration\":6,\"tweenEasing\":0,\"x\":1.1,\"y\":0.8},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":72,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":24,\"tweenEasing\":0,\"rotate\":1.26},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-11.03},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":72,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":1.98},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-1.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":0,\"rotate\":1.98}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":3.28,\"y\":1.58},{\"duration\":24,\"tweenEasing\":0,\"x\":3.28,\"y\":1.58},{\"duration\":24,\"tweenEasing\":0,\"x\":3.54,\"y\":1.45},{\"duration\":0,\"x\":3.28,\"y\":1.58}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":29.2},{\"duration\":24,\"tweenEasing\":0,\"rotate\":11.66},{\"duration\":24,\"tweenEasing\":0,\"rotate\":23.61},{\"duration\":0,\"rotate\":29.2}]}],\"slot\":[{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]}]},{\"duration\":102,\"playTimes\":0,\"name\":\"Idle2\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":39,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":3.2,\"y\":-5.6},{\"duration\":24,\"tweenEasing\":0,\"x\":3.2,\"y\":-11.9},{\"duration\":0,\"x\":7,\"y\":-15.1}],\"rotateFrame\":[{\"duration\":39,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-27.23},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-17.6},{\"duration\":0,\"rotate\":-35.03}]},{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":27,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-5.2,\"y\":-9.12},{\"duration\":21,\"tweenEasing\":0,\"x\":-5.04,\"y\":-16.4},{\"duration\":12,\"x\":-6.4,\"y\":-19.84}],\"rotateFrame\":[{\"duration\":27,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":22.39},{\"duration\":21,\"tweenEasing\":0,\"rotate\":39.5},{\"duration\":12,\"rotate\":22.14}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":4.4,\"y\":-6.1},{\"duration\":24,\"tweenEasing\":0,\"x\":5.5,\"y\":-13.8},{\"duration\":24,\"x\":6.1,\"y\":-19.3}],\"rotateFrame\":[{\"duration\":33,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-24.94},{\"duration\":24,\"rotate\":-14.84}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":2.4,\"y\":-5.6},{\"duration\":18,\"tweenEasing\":0,\"x\":3.8,\"y\":-11.1},{\"duration\":9,\"x\":4.3,\"y\":-15.2}],\"rotateFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-17.53},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-36.39},{\"duration\":9,\"rotate\":-23.84}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":-2.27,\"y\":-6.67},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.74,\"y\":-10.54},{\"duration\":33,\"x\":-3.06,\"y\":-17.46}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.36},{\"duration\":18,\"tweenEasing\":0,\"rotate\":68.81},{\"duration\":33,\"rotate\":27.88}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":18,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":6.55},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-0.86},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":3.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.22},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-1.2,\"y\":0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.46},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-1.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-1.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-1.1},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.71},{\"duration\":0,\"x\":-1.2,\"y\":0.14}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":37.04},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":35.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":18,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-1.2,\"y\":0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.42,\"y\":-1.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.19},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-1.81},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.19},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-1.81},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.19},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-1.81},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.27},{\"duration\":0,\"x\":-1.2,\"y\":0.14}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":22.76},{\"duration\":9,\"tweenEasing\":0,\"rotate\":19.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":25.64},{\"duration\":9,\"tweenEasing\":0,\"rotate\":20.36},{\"duration\":9,\"tweenEasing\":0,\"rotate\":26.38},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":22.76},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-1.06,\"y\":0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.14,\"y\":0.3},{\"duration\":9,\"tweenEasing\":0,\"x\":0.28,\"y\":-0.74},{\"duration\":9,\"tweenEasing\":0,\"x\":0.34,\"y\":-0.17},{\"duration\":9,\"tweenEasing\":0,\"x\":0.28,\"y\":-0.74},{\"duration\":9,\"tweenEasing\":0,\"x\":0.34,\"y\":0.07},{\"duration\":9,\"tweenEasing\":0,\"x\":0.28,\"y\":-1.06},{\"duration\":9,\"tweenEasing\":0,\"x\":0.34,\"y\":0.3},{\"duration\":18,\"tweenEasing\":0,\"x\":0.28,\"y\":-1.06},{\"duration\":0,\"x\":-1.06,\"y\":0.14}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.1},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.06},{\"duration\":54,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"rotate\":-4.1}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.51,\"y\":-0.36},{\"duration\":9,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.3},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":-1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.3},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":-1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.39},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":-1},{\"duration\":18,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.86},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-38.24},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-39.74},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-45.24},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-38.24},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.16,\"y\":0.16},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.49},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.48},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.73},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.56},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.97},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.48},{\"duration\":18,\"tweenEasing\":0,\"y\":-1.05},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.48},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":0,\"rotate\":-6.48}],\"scaleFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":18,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.06},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.06},{\"duration\":30}],\"scaleFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.04,\"y\":1.1},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.04,\"y\":1.1},{\"duration\":30}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":18,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.2,\"y\":0.01},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":9,\"tweenEasing\":0,\"rotate\":45.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":46.54},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":18,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":9,\"tweenEasing\":0,\"x\":0.76,\"y\":0.39},{\"duration\":9,\"tweenEasing\":0,\"x\":1.13,\"y\":-0.75},{\"duration\":9,\"tweenEasing\":0,\"x\":0.92,\"y\":-0.26},{\"duration\":9,\"tweenEasing\":0,\"x\":1.13,\"y\":-0.75},{\"duration\":9,\"tweenEasing\":0,\"x\":0.92,\"y\":-0.26},{\"duration\":9,\"tweenEasing\":0,\"x\":1.13,\"y\":-0.75},{\"duration\":9,\"tweenEasing\":0,\"x\":0.92,\"y\":-0.49},{\"duration\":18,\"tweenEasing\":0,\"x\":1.13,\"y\":-1.07},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.66},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-31.48},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-27.88},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-34.28},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-35.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-23.55},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-31.48},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":39,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":27,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":12,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":33,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":102,\"value\":-1}]}]},{\"duration\":66,\"playTimes\":0,\"name\":\"Idle1\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":3.46,\"y\":-6.84},{\"duration\":0,\"x\":5.42,\"y\":-9.87}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"rotate\":-10.38}]},{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":-4,\"y\":-3.31},{\"duration\":15,\"tweenEasing\":0,\"x\":-5.03,\"y\":-8.91},{\"duration\":9,\"x\":-5.37,\"y\":-12.35}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":27.97},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-3.77},{\"duration\":9,\"rotate\":-10.94}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":3.88,\"y\":-6.4},{\"duration\":21,\"tweenEasing\":0,\"x\":6.75,\"y\":-10.97},{\"duration\":9,\"x\":6.51,\"y\":-13.37}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":19.87},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-1.94},{\"duration\":9,\"rotate\":-29.35}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":3.4,\"y\":-7.87},{\"duration\":18,\"tweenEasing\":0,\"x\":3.13,\"y\":-14.13},{\"duration\":0,\"x\":3.67,\"y\":-17.86}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-25.82},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-13.32},{\"duration\":0,\"rotate\":-23.08}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":-2.32,\"y\":-5.92},{\"duration\":21,\"tweenEasing\":0,\"x\":-5.84,\"y\":-9.44},{\"duration\":6,\"x\":-7.52,\"y\":-12}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":35.13},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.98},{\"duration\":6,\"rotate\":29.58}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.29,\"y\":0.43},{\"duration\":24,\"tweenEasing\":0,\"x\":0.29,\"y\":0.43},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.45},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-6.58},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.03,\"y\":0.23},{\"duration\":24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-3.35},{\"duration\":24,\"tweenEasing\":0,\"rotate\":7.11},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.08,\"y\":-0.56},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.08,\"y\":-0.56},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":13.8},{\"duration\":24,\"tweenEasing\":0,\"rotate\":4.52},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.1,\"y\":-0.99},{\"duration\":24,\"tweenEasing\":0,\"x\":0.18,\"y\":-0.92},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":16.02},{\"duration\":24,\"tweenEasing\":0,\"rotate\":12.08},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.16,\"y\":-0.69},{\"duration\":24,\"tweenEasing\":0,\"y\":-0.45},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.32,\"y\":-1.9},{\"duration\":24,\"tweenEasing\":0,\"x\":0.32,\"y\":-0.78},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-10.95},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-8.38},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"y\":-0.72},{\"duration\":24,\"tweenEasing\":0,\"x\":0.08,\"y\":-0.32},{\"duration\":0}],\"scaleFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":24,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":66,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":21,\"tweenEasing\":0,\"rotate\":16.12},{\"duration\":24,\"tweenEasing\":0,\"rotate\":15.51},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.09,\"y\":0.52},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.07,\"y\":0.13},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":21,\"tweenEasing\":0,\"rotate\":45.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":32.17},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":21,\"tweenEasing\":0,\"x\":0.74,\"y\":0.46},{\"duration\":24,\"tweenEasing\":0,\"x\":1.06,\"y\":0.7},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-26.33},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-19.75},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":66,\"value\":-1}]}]},{\"duration\":30,\"name\":\"InAirIdle1\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":30,\"x\":13.3,\"y\":-18.8}],\"rotateFrame\":[{\"duration\":30,\"rotate\":56.49}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":30,\"x\":4.34,\"y\":-5.6}],\"rotateFrame\":[{\"duration\":30,\"rotate\":-56.61}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":30,\"x\":-6.29,\"y\":-9.26}],\"rotateFrame\":[{\"duration\":30,\"rotate\":-42.15}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":30,\"x\":-14.29,\"y\":-4.12}],\"rotateFrame\":[{\"duration\":30,\"rotate\":26.09}]},{\"name\":\"leftHand\",\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":15,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":0,\"rotate\":8.11}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":30,\"x\":0.75,\"y\":-1.99}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":0,\"rotate\":17.13}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-7.12,\"y\":1.65},{\"duration\":15,\"tweenEasing\":0,\"x\":-10.38,\"y\":-0.4},{\"duration\":0,\"x\":-7.12,\"y\":1.65}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":0,\"rotate\":-26.65}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-2.9,\"y\":-0.6},{\"duration\":0,\"x\":-0.18,\"y\":0.53}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":15,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":0,\"rotate\":-161.51}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1},{\"duration\":0,\"x\":1.1,\"y\":1.1}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-8.84,\"y\":0.61},{\"duration\":15,\"tweenEasing\":0,\"x\":-9.28,\"y\":-1},{\"duration\":0,\"x\":-8.84,\"y\":0.61}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":0,\"rotate\":-41.98}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-11.15,\"y\":-1.1},{\"duration\":15,\"tweenEasing\":0,\"x\":-10.46,\"y\":-2.84},{\"duration\":0,\"x\":-11.15,\"y\":-1.1}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":0,\"rotate\":-45.17}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-1.44,\"y\":-0.71},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.84,\"y\":-0.35},{\"duration\":0,\"x\":-1.44,\"y\":-0.71}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":0,\"rotate\":-28.34}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":30,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-30.35},{\"duration\":0,\"rotate\":-40.03}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":15,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":0,\"x\":-0.55,\"y\":0.89}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.6},{\"duration\":0,\"rotate\":-60.6}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-4.97,\"y\":-2.79},{\"duration\":15,\"tweenEasing\":0,\"x\":-5.28,\"y\":-3.39},{\"duration\":0,\"x\":-4.97,\"y\":-2.79}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":0,\"rotate\":-61.71}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":15,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":0,\"x\":1.1,\"y\":-1.1}]},{\"name\":\"backLight\",\"scaleFrame\":[{\"duration\":30,\"x\":0,\"y\":0}]}],\"slot\":[{\"name\":\"rightHand\",\"displayFrame\":[{\"duration\":30,\"value\":-1}],\"colorFrame\":[{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"rightFrontArm\",\"displayFrame\":[{\"duration\":30,\"value\":-1}],\"colorFrame\":[{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]}]}],\"defaultActions\":[{\"gotoAndPlay\":\"Idle1\"}]}]}", "subMetas": {} } \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json index 8a83dda..395e18c 100644 --- a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json +++ b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json @@ -1 +1 @@ -{"width":64,"imagePath":"SoldierFireGhost_tex.png","SubTexture":[{"frameWidth":12,"y":42,"frameHeight":11,"width":11,"frameX":-1,"height":11,"name":"biu","frameY":0,"x":16},{"width":5,"y":42,"height":7,"name":"rightArm","x":29},{"frameWidth":15,"y":27,"frameHeight":16,"width":13,"frameX":-1,"height":16,"name":"yinmoqe00","frameY":0,"x":1},{"width":17,"y":1,"height":21,"name":"body","x":28},{"width":5,"y":42,"height":7,"name":"rightShoulder","x":36},{"width":10,"y":45,"height":9,"name":"rightFrontArm","x":1},{"width":7,"y":56,"height":7,"name":"rightHand","x":1},{"width":6,"y":55,"height":6,"name":"leftArm","x":32},{"width":7,"y":55,"height":6,"name":"leftShoulder","x":23},{"width":10,"y":27,"height":11,"name":"leftFrontArm","x":16},{"width":17,"y":24,"height":16,"name":"head","x":28},{"width":25,"y":1,"height":24,"name":"head2","x":1},{"width":8,"y":55,"height":7,"name":"leftHand","x":13},{"frameWidth":4,"y":51,"frameHeight":4,"width":2,"frameX":-1,"height":2,"name":"huomiao01","frameY":-1,"x":29}],"height":64,"name":"SoldierFireGhost"} \ No newline at end of file +{"imagePath":"SoldierFireGhost_tex.png","width":64,"height":64,"name":"SoldierFireGhost","SubTexture":[{"frameY":0,"y":42,"frameWidth":12,"frameHeight":11,"width":11,"height":11,"name":"biu","frameX":-1,"x":16},{"width":5,"y":42,"height":7,"name":"rightArm","x":29},{"frameY":0,"y":27,"frameWidth":15,"frameHeight":16,"width":13,"height":16,"name":"yinmoqe00","frameX":-1,"x":1},{"width":17,"y":1,"height":21,"name":"body","x":28},{"width":5,"y":42,"height":7,"name":"rightShoulder","x":36},{"width":10,"y":45,"height":9,"name":"rightFrontArm","x":1},{"width":7,"y":56,"height":7,"name":"rightHand","x":1},{"width":6,"y":55,"height":6,"name":"leftArm","x":32},{"width":7,"y":55,"height":6,"name":"leftShoulder","x":23},{"width":10,"y":27,"height":11,"name":"leftFrontArm","x":16},{"width":25,"y":1,"height":24,"name":"head2","x":1},{"width":17,"y":24,"height":16,"name":"head","x":28},{"width":8,"y":55,"height":7,"name":"leftHand","x":13},{"frameY":-1,"y":51,"frameWidth":4,"frameHeight":4,"width":2,"height":2,"name":"huomiao01","frameX":-1,"x":29}]} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json.meta b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json.meta index 71874e6..9cf9e82 100644 --- a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json.meta +++ b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json.meta @@ -1,7 +1,7 @@ { "ver": "1.0.0", "uuid": "4a9187d5-a9ad-4464-a03c-d2f3cc277051", - "atlasJson": "{\"width\":64,\"imagePath\":\"SoldierFireGhost_tex.png\",\"SubTexture\":[{\"frameWidth\":12,\"y\":42,\"frameHeight\":11,\"width\":11,\"frameX\":-1,\"height\":11,\"name\":\"biu\",\"frameY\":0,\"x\":16},{\"width\":5,\"y\":42,\"height\":7,\"name\":\"rightArm\",\"x\":29},{\"frameWidth\":15,\"y\":27,\"frameHeight\":16,\"width\":13,\"frameX\":-1,\"height\":16,\"name\":\"yinmoqe00\",\"frameY\":0,\"x\":1},{\"width\":17,\"y\":1,\"height\":21,\"name\":\"body\",\"x\":28},{\"width\":5,\"y\":42,\"height\":7,\"name\":\"rightShoulder\",\"x\":36},{\"width\":10,\"y\":45,\"height\":9,\"name\":\"rightFrontArm\",\"x\":1},{\"width\":7,\"y\":56,\"height\":7,\"name\":\"rightHand\",\"x\":1},{\"width\":6,\"y\":55,\"height\":6,\"name\":\"leftArm\",\"x\":32},{\"width\":7,\"y\":55,\"height\":6,\"name\":\"leftShoulder\",\"x\":23},{\"width\":10,\"y\":27,\"height\":11,\"name\":\"leftFrontArm\",\"x\":16},{\"width\":17,\"y\":24,\"height\":16,\"name\":\"head\",\"x\":28},{\"width\":25,\"y\":1,\"height\":24,\"name\":\"head2\",\"x\":1},{\"width\":8,\"y\":55,\"height\":7,\"name\":\"leftHand\",\"x\":13},{\"frameWidth\":4,\"y\":51,\"frameHeight\":4,\"width\":2,\"frameX\":-1,\"height\":2,\"name\":\"huomiao01\",\"frameY\":-1,\"x\":29}],\"height\":64,\"name\":\"SoldierFireGhost\"}", + "atlasJson": "{\"imagePath\":\"SoldierFireGhost_tex.png\",\"width\":64,\"height\":64,\"name\":\"SoldierFireGhost\",\"SubTexture\":[{\"frameY\":0,\"y\":42,\"frameWidth\":12,\"frameHeight\":11,\"width\":11,\"height\":11,\"name\":\"biu\",\"frameX\":-1,\"x\":16},{\"width\":5,\"y\":42,\"height\":7,\"name\":\"rightArm\",\"x\":29},{\"frameY\":0,\"y\":27,\"frameWidth\":15,\"frameHeight\":16,\"width\":13,\"height\":16,\"name\":\"yinmoqe00\",\"frameX\":-1,\"x\":1},{\"width\":17,\"y\":1,\"height\":21,\"name\":\"body\",\"x\":28},{\"width\":5,\"y\":42,\"height\":7,\"name\":\"rightShoulder\",\"x\":36},{\"width\":10,\"y\":45,\"height\":9,\"name\":\"rightFrontArm\",\"x\":1},{\"width\":7,\"y\":56,\"height\":7,\"name\":\"rightHand\",\"x\":1},{\"width\":6,\"y\":55,\"height\":6,\"name\":\"leftArm\",\"x\":32},{\"width\":7,\"y\":55,\"height\":6,\"name\":\"leftShoulder\",\"x\":23},{\"width\":10,\"y\":27,\"height\":11,\"name\":\"leftFrontArm\",\"x\":16},{\"width\":25,\"y\":1,\"height\":24,\"name\":\"head2\",\"x\":1},{\"width\":17,\"y\":24,\"height\":16,\"name\":\"head\",\"x\":28},{\"width\":8,\"y\":55,\"height\":7,\"name\":\"leftHand\",\"x\":13},{\"frameY\":-1,\"y\":51,\"frameWidth\":4,\"frameHeight\":4,\"width\":2,\"height\":2,\"name\":\"huomiao01\",\"frameX\":-1,\"x\":29}]}", "texture": "700d963b-2192-4219-a066-8be5b3db7453", "subMetas": {} } \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/InAirIdle1.anim b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/InAirIdle1.anim new file mode 100644 index 0000000..c61643e --- /dev/null +++ b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/InAirIdle1.anim @@ -0,0 +1,205 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "InAirIdle1", + "_objFlags": 0, + "_native": "", + "_duration": 0.5166666666666667, + "sample": 60, + "speed": 1, + "wrapMode": 2, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "dd02916e-9ac8-4fe7-a944-d6082eb9007a" + } + }, + { + "frame": 0.016666666666666666, + "value": { + "__uuid__": "1906b14b-f3a2-4dc9-9e0d-99e3b334e67b" + } + }, + { + "frame": 0.03333333333333333, + "value": { + "__uuid__": "1b4f284c-be67-403b-9f5d-59aa641d3c92" + } + }, + { + "frame": 0.05, + "value": { + "__uuid__": "6feb197e-2013-48fd-bbbb-3d2809cb1d63" + } + }, + { + "frame": 0.06666666666666667, + "value": { + "__uuid__": "2db4e807-a5d2-4c09-b033-a0ae97e5d0bf" + } + }, + { + "frame": 0.08333333333333333, + "value": { + "__uuid__": "73958a6b-31a7-4bb8-babd-1aefba55a793" + } + }, + { + "frame": 0.1, + "value": { + "__uuid__": "9545ca77-8002-4ad1-a91e-1e343cdf0e0b" + } + }, + { + "frame": 0.11666666666666667, + "value": { + "__uuid__": "581e4c15-9de3-4b72-a91a-2e82ac6b092c" + } + }, + { + "frame": 0.13333333333333333, + "value": { + "__uuid__": "4af94082-f36b-4b9e-9077-bd458fd0b188" + } + }, + { + "frame": 0.15, + "value": { + "__uuid__": "5463290d-7b25-4625-8be5-1a16dbe3bd83" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "e507775a-1009-47a8-b1a8-8ade0104e4c2" + } + }, + { + "frame": 0.18333333333333332, + "value": { + "__uuid__": "6583a9e1-92fb-4db2-9437-9d2b26bc5920" + } + }, + { + "frame": 0.2, + "value": { + "__uuid__": "b07e2da2-d1f2-4ec8-acdf-92706d0be9e0" + } + }, + { + "frame": 0.21666666666666667, + "value": { + "__uuid__": "dd60bf4f-6b5f-4385-9e46-1e49e6a7cfbe" + } + }, + { + "frame": 0.23333333333333334, + "value": { + "__uuid__": "46811e43-c874-41d5-8799-6fafc904cd5a" + } + }, + { + "frame": 0.25, + "value": { + "__uuid__": "0a370e7e-e25f-4faf-9a76-73b246338a4d" + } + }, + { + "frame": 0.26666666666666666, + "value": { + "__uuid__": "1f003135-e929-4a05-9029-76e7cb8c76ef" + } + }, + { + "frame": 0.2833333333333333, + "value": { + "__uuid__": "b78015ba-98e4-4ccd-9852-a7ec053a0ba4" + } + }, + { + "frame": 0.3, + "value": { + "__uuid__": "0589abef-dc0d-4d33-a084-25b273ca1368" + } + }, + { + "frame": 0.31666666666666665, + "value": { + "__uuid__": "20542755-bbfa-43cd-b593-e73d121b5ed6" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "5d5ac5af-3da7-4b22-9183-5885736e2ca7" + } + }, + { + "frame": 0.35, + "value": { + "__uuid__": "47bbe2a2-a983-4aca-8a3e-6cd6df5eee03" + } + }, + { + "frame": 0.36666666666666664, + "value": { + "__uuid__": "6d3fb572-d6af-4b7e-9350-9ff482569127" + } + }, + { + "frame": 0.38333333333333336, + "value": { + "__uuid__": "573cfba0-4534-4886-849a-61f4f2cbd349" + } + }, + { + "frame": 0.4, + "value": { + "__uuid__": "0b4ebd8a-6316-4802-aa24-49ab08e6a75b" + } + }, + { + "frame": 0.4166666666666667, + "value": { + "__uuid__": "5b7fff7b-5818-4be8-b65d-c212d15e6e71" + } + }, + { + "frame": 0.43333333333333335, + "value": { + "__uuid__": "f964ec77-c016-44fa-8f55-3e59ae30283d" + } + }, + { + "frame": 0.45, + "value": { + "__uuid__": "679a79eb-85c6-4445-8517-36465c57c6da" + } + }, + { + "frame": 0.4666666666666667, + "value": { + "__uuid__": "8764bb9b-4b08-4bc5-b9e5-93af39321c70" + } + }, + { + "frame": 0.48333333333333334, + "value": { + "__uuid__": "f291785e-2685-4ba0-b38b-9607972ce6f0" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "a4e84eb9-b866-4cdc-8925-a5d29c65aea5" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/InAirIdle1.anim.meta b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/InAirIdle1.anim.meta new file mode 100644 index 0000000..cf8f03b --- /dev/null +++ b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/InAirIdle1.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "2.1.0", + "uuid": "43dbf141-be76-48c3-bdef-29233ccbe30d", + "subMetas": {} +} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.plist b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.plist index 0e6fcb3..22c7354 100644 --- a/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.plist +++ b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.plist @@ -15,7 +15,7 @@ spriteSourceSize {61,54} textureRect - {{206,927},{61,54}} + {{0,0},{61,54}} textureRotated @@ -30,9 +30,9 @@ spriteSourceSize {61,54} textureRect - {{495,309},{61,54}} + {{0,54},{61,54}} textureRotated - + SoldierFireGhost_Atk1_02.png @@ -45,9 +45,9 @@ spriteSourceSize {61,54} textureRect - {{550,206},{61,54}} + {{61,0},{61,54}} textureRotated - + SoldierFireGhost_Atk1_03.png @@ -60,9 +60,9 @@ spriteSourceSize {61,54} textureRect - {{605,103},{61,54}} + {{0,108},{61,54}} textureRotated - + SoldierFireGhost_Atk1_04.png @@ -75,7 +75,7 @@ spriteSourceSize {61,54} textureRect - {{660,0},{61,54}} + {{61,54},{61,54}} textureRotated @@ -90,9 +90,9 @@ spriteSourceSize {61,54} textureRect - {{275,824},{61,54}} + {{122,0},{61,54}} textureRotated - + SoldierFireGhost_Atk1_06.png @@ -105,9 +105,9 @@ spriteSourceSize {61,54} textureRect - {{330,721},{61,54}} + {{0,162},{61,54}} textureRotated - + SoldierFireGhost_Atk1_07.png @@ -120,9 +120,9 @@ spriteSourceSize {61,54} textureRect - {{385,618},{61,54}} + {{61,108},{61,54}} textureRotated - + SoldierFireGhost_Atk1_08.png @@ -135,9 +135,9 @@ spriteSourceSize {61,54} textureRect - {{440,515},{61,54}} + {{122,54},{61,54}} textureRotated - + SoldierFireGhost_Atk1_09.png @@ -150,9 +150,9 @@ spriteSourceSize {61,54} textureRect - {{495,370},{61,54}} + {{183,0},{61,54}} textureRotated - + SoldierFireGhost_Atk1_10.png @@ -165,7 +165,7 @@ spriteSourceSize {61,54} textureRect - {{721,0},{61,54}} + {{0,216},{61,54}} textureRotated @@ -180,9 +180,9 @@ spriteSourceSize {61,54} textureRect - {{495,431},{61,54}} + {{61,162},{61,54}} textureRotated - + SoldierFireGhost_Atk1_12.png @@ -195,7 +195,7 @@ spriteSourceSize {61,54} textureRect - {{782,0},{61,54}} + {{122,108},{61,54}} textureRotated @@ -210,7 +210,7 @@ spriteSourceSize {61,54} textureRect - {{843,0},{61,54}} + {{183,54},{61,54}} textureRotated @@ -225,7 +225,7 @@ spriteSourceSize {61,54} textureRect - {{904,0},{61,54}} + {{244,0},{61,54}} textureRotated @@ -240,7 +240,7 @@ spriteSourceSize {61,54} textureRect - {{965,0},{61,54}} + {{0,270},{61,54}} textureRotated @@ -255,7 +255,7 @@ spriteSourceSize {61,54} textureRect - {{1026,0},{61,54}} + {{61,216},{61,54}} textureRotated @@ -270,7 +270,7 @@ spriteSourceSize {61,54} textureRect - {{1087,0},{61,54}} + {{122,162},{61,54}} textureRotated @@ -285,7 +285,7 @@ spriteSourceSize {61,54} textureRect - {{1148,0},{61,54}} + {{183,108},{61,54}} textureRotated @@ -300,7 +300,7 @@ spriteSourceSize {61,54} textureRect - {{1209,0},{61,54}} + {{244,54},{61,54}} textureRotated @@ -315,7 +315,7 @@ spriteSourceSize {61,54} textureRect - {{1270,0},{61,54}} + {{305,0},{61,54}} textureRotated @@ -330,7 +330,7 @@ spriteSourceSize {61,54} textureRect - {{1331,0},{61,54}} + {{0,324},{61,54}} textureRotated @@ -345,7 +345,7 @@ spriteSourceSize {61,54} textureRect - {{1392,0},{61,54}} + {{61,270},{61,54}} textureRotated @@ -360,7 +360,7 @@ spriteSourceSize {61,54} textureRect - {{1453,0},{61,54}} + {{122,216},{61,54}} textureRotated @@ -375,7 +375,7 @@ spriteSourceSize {61,54} textureRect - {{1514,0},{61,54}} + {{183,162},{61,54}} textureRotated @@ -390,7 +390,7 @@ spriteSourceSize {61,54} textureRect - {{1575,0},{61,54}} + {{244,108},{61,54}} textureRotated @@ -405,7 +405,7 @@ spriteSourceSize {61,54} textureRect - {{1636,0},{61,54}} + {{305,54},{61,54}} textureRotated @@ -420,7 +420,7 @@ spriteSourceSize {61,54} textureRect - {{660,54},{61,54}} + {{366,0},{61,54}} textureRotated @@ -435,7 +435,7 @@ spriteSourceSize {61,54} textureRect - {{721,54},{61,54}} + {{0,378},{61,54}} textureRotated @@ -450,7 +450,7 @@ spriteSourceSize {61,54} textureRect - {{782,54},{61,54}} + {{61,324},{61,54}} textureRotated @@ -465,7 +465,7 @@ spriteSourceSize {61,54} textureRect - {{843,54},{61,54}} + {{122,270},{61,54}} textureRotated @@ -480,7 +480,7 @@ spriteSourceSize {61,54} textureRect - {{904,54},{61,54}} + {{183,216},{61,54}} textureRotated @@ -495,7 +495,7 @@ spriteSourceSize {61,54} textureRect - {{965,54},{61,54}} + {{244,162},{61,54}} textureRotated @@ -510,7 +510,7 @@ spriteSourceSize {61,54} textureRect - {{1026,54},{61,54}} + {{305,108},{61,54}} textureRotated @@ -525,2635 +525,10 @@ spriteSourceSize {61,54} textureRect - {{206,927},{61,54}} + {{0,0},{61,54}} textureRotated - SoldierFireGhost_Atk2_000.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{550,267},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_001.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{549,436},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_002.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{275,885},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_003.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{385,679},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_004.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{331,884},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_005.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{605,164},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_006.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1009,160},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_007.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{606,267},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_008.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{440,576},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_009.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{441,679},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_010.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{442,790},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_011.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{383,941},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_012.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{553,492},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_013.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1065,166},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_014.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{496,602},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_015.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{601,601},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_016.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{497,658},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_017.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{550,658},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_018.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{603,657},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_019.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1640,157},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_020.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{497,714},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_021.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{553,714},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_022.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{606,713},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_023.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{495,767},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_024.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{548,770},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_025.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{495,823},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_026.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{551,823},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_027.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1118,210},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_028.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1174,210},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_029.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1230,210},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_030.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1286,210},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_031.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1342,210},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_032.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1398,210},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_033.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1454,210},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_034.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1510,210},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_035.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1566,210},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_036.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1622,213},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_037.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{436,846},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_038.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{436,902},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_039.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{489,876},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_040.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{542,879},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_041.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{490,932},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_042.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{543,932},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_043.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{654,601},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_044.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{656,657},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_045.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{659,713},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_046.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{654,427},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_047.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{658,483},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_048.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{658,539},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_049.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{661,212},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_050.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{717,212},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_051.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{773,212},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_052.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{829,212},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_053.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{885,212},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_054.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{941,212},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_055.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{550,267},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_056.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{550,267},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_057.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{550,267},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_058.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{550,267},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_059.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{550,267},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_060.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{550,267},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_061.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{659,265},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_062.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{712,265},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_063.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{659,321},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_064.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{712,321},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_065.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{765,265},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_066.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{765,321},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_067.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{818,265},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_068.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{818,321},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_069.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{871,265},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_070.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{871,321},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_071.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{924,265},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_072.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{924,321},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_073.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{712,377},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_074.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{768,377},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_075.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{601,601},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_076.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{497,658},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_077.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{550,658},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_078.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{603,657},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_079.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1640,157},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_080.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{497,714},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_081.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{553,714},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_082.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{606,713},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_083.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{495,767},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_084.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{548,770},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_085.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{495,823},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_086.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{551,823},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_087.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1118,210},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_088.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1174,210},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_089.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1230,210},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_090.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1286,210},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_091.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1342,210},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_092.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1398,210},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_093.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1454,210},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_094.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1510,210},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_095.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1566,210},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_096.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1622,213},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_097.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{436,846},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_098.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{436,902},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_099.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{489,876},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_100.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{542,879},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_101.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{490,932},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_102.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{543,932},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_103.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{654,601},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_104.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{656,657},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_105.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{659,713},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_106.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{654,427},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_107.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{658,483},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_108.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{658,539},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_109.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{661,212},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_110.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{717,212},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_111.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{773,212},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_112.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{829,212},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_113.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{885,212},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_114.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{941,212},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_115.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{550,267},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_116.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{550,267},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_117.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{550,267},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_118.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{550,267},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_119.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{550,267},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_120.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{550,267},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_121.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{659,265},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_122.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{712,265},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_123.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{659,321},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_124.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{712,321},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_125.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{765,265},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_126.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{765,321},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_127.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{818,265},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_128.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{818,321},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_129.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{871,265},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_130.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{871,321},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_131.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{924,265},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_132.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{924,321},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_133.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{712,377},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_134.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{768,377},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_135.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{601,601},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_136.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{497,658},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_137.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{550,658},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_138.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{603,657},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_139.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{1640,157},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_140.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{497,714},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_141.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{553,714},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_142.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{606,713},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_143.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{495,767},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_144.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{548,770},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_145.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{824,377},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_146.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{880,377},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_147.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{707,430},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_148.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{763,430},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_149.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{711,483},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_150.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{819,430},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_151.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{711,539},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_152.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{764,483},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_153.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{875,430},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_154.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{764,539},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_155.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{817,483},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_156.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{817,539},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_157.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{870,483},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_158.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{870,539},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_159.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{707,595},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_160.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{760,595},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_161.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{813,595},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_162.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{866,595},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_163.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{709,651},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_164.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{762,651},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_165.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{815,651},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_166.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{868,651},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_167.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{712,707},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_168.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{765,707},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_169.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{818,707},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_170.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{871,707},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_171.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{997,213},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_172.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{936,377},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_173.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{931,433},{53,56}} - textureRotated - - - SoldierFireGhost_Atk2_174.png - - aliases - - spriteOffset - {0,0} - spriteSize - {53,56} - spriteSourceSize - {53,56} - textureRect - {{550,267},{53,56}} - textureRotated - - SoldierFireGhost_Atked1_00.png aliases @@ -3165,7 +540,7 @@ spriteSourceSize {44,54} textureRect - {{330,782},{44,54}} + {{424,170},{44,54}} textureRotated @@ -3180,9 +555,9 @@ spriteSourceSize {44,54} textureRect - {{436,958},{44,54}} + {{105,654},{44,54}} textureRotated - + SoldierFireGhost_Atked1_02.png @@ -3195,9 +570,9 @@ spriteSourceSize {44,54} textureRect - {{1053,222},{44,54}} + {{122,376},{44,54}} textureRotated - + SoldierFireGhost_Atked1_03.png @@ -3210,7 +585,7 @@ spriteSourceSize {44,54} textureRect - {{1039,372},{44,54}} + {{149,654},{44,54}} textureRotated @@ -3225,7 +600,7 @@ spriteSourceSize {44,54} textureRect - {{1077,266},{44,54}} + {{166,376},{44,54}} textureRotated @@ -3240,7 +615,7 @@ spriteSourceSize {44,54} textureRect - {{1630,316},{44,54}} + {{193,654},{44,54}} textureRotated @@ -3255,7 +630,7 @@ spriteSourceSize {44,54} textureRect - {{1630,370},{44,54}} + {{183,322},{44,54}} textureRotated @@ -3270,7 +645,7 @@ spriteSourceSize {44,54} textureRect - {{973,486},{44,54}} + {{210,376},{44,54}} textureRotated @@ -3285,7 +660,7 @@ spriteSourceSize {44,54} textureRect - {{973,540},{44,54}} + {{227,322},{44,54}} textureRotated @@ -3300,7 +675,7 @@ spriteSourceSize {44,54} textureRect - {{1017,486},{44,54}} + {{226,430},{44,54}} textureRotated @@ -3315,7 +690,7 @@ spriteSourceSize {44,54} textureRect - {{1017,540},{44,54}} + {{226,484},{44,54}} textureRotated @@ -3330,7 +705,7 @@ spriteSourceSize {44,54} textureRect - {{1061,479},{44,54}} + {{226,538},{44,54}} textureRotated @@ -3345,7 +720,7 @@ spriteSourceSize {44,54} textureRect - {{1061,533},{44,54}} + {{226,592},{44,54}} textureRotated @@ -3360,7 +735,7 @@ spriteSourceSize {44,54} textureRect - {{1115,423},{44,54}} + {{254,376},{44,54}} textureRotated @@ -3375,7 +750,7 @@ spriteSourceSize {44,54} textureRect - {{1662,424},{44,54}} + {{270,430},{44,54}} textureRotated @@ -3390,7 +765,7 @@ spriteSourceSize {44,54} textureRect - {{1105,479},{44,54}} + {{270,484},{44,54}} textureRotated @@ -3405,7 +780,7 @@ spriteSourceSize {44,54} textureRect - {{1105,533},{44,54}} + {{270,538},{44,54}} textureRotated @@ -3420,7 +795,7 @@ spriteSourceSize {44,54} textureRect - {{1149,477},{44,54}} + {{270,592},{44,54}} textureRotated @@ -3435,7 +810,7 @@ spriteSourceSize {44,54} textureRect - {{1149,531},{44,54}} + {{284,646},{44,54}} textureRotated @@ -3450,9 +825,9 @@ spriteSourceSize {39,53} textureRect - {{1667,54},{39,53}} + {{942,255},{39,53}} textureRotated - + SoldierFireGhost_Atked2_01.png @@ -3465,7 +840,7 @@ spriteSourceSize {39,53} textureRect - {{987,433},{39,53}} + {{302,216},{39,53}} textureRotated @@ -3480,7 +855,7 @@ spriteSourceSize {39,53} textureRect - {{1076,426},{39,53}} + {{341,214},{39,53}} textureRotated @@ -3495,7 +870,7 @@ spriteSourceSize {39,53} textureRect - {{1593,475},{39,53}} + {{380,210},{39,53}} textureRotated @@ -3510,9 +885,9 @@ spriteSourceSize {39,53} textureRect - {{1593,528},{39,53}} + {{244,268},{39,53}} textureRotated - + SoldierFireGhost_Atked2_05.png @@ -3525,7 +900,7 @@ spriteSourceSize {39,53} textureRect - {{1061,587},{39,53}} + {{297,269},{39,53}} textureRotated @@ -3540,7 +915,7 @@ spriteSourceSize {39,53} textureRect - {{1114,587},{39,53}} + {{350,267},{39,53}} textureRotated @@ -3555,7 +930,7 @@ spriteSourceSize {39,53} textureRect - {{598,879},{39,53}} + {{389,263},{39,53}} textureRotated @@ -3570,9 +945,9 @@ spriteSourceSize {39,53} textureRect - {{712,763},{39,53}} + {{898,260},{39,53}} textureRotated - + SoldierFireGhost_Atked2_09.png @@ -3585,7 +960,7 @@ spriteSourceSize {39,53} textureRect - {{765,763},{39,53}} + {{937,294},{39,53}} textureRotated @@ -3600,9 +975,9 @@ spriteSourceSize {39,53} textureRect - {{818,763},{39,53}} + {{345,367},{39,53}} textureRotated - + SoldierFireGhost_Atked2_11.png @@ -3615,9 +990,9 @@ spriteSourceSize {39,53} textureRect - {{871,763},{39,53}} + {{375,632},{39,53}} textureRotated - + SoldierFireGhost_Atked2_12.png @@ -3630,7 +1005,7 @@ spriteSourceSize {39,53} textureRect - {{919,595},{39,53}} + {{408,420},{39,53}} textureRotated @@ -3645,7 +1020,7 @@ spriteSourceSize {39,53} textureRect - {{921,648},{39,53}} + {{408,473},{39,53}} textureRotated @@ -3660,9 +1035,9 @@ spriteSourceSize {39,53} textureRect - {{1061,626},{39,53}} + {{408,526},{39,53}} textureRotated - + SoldierFireGhost_Atked2_15.png @@ -3675,9 +1050,9 @@ spriteSourceSize {39,53} textureRect - {{1060,665},{39,53}} + {{408,579},{39,53}} textureRotated - + SoldierFireGhost_Atked2_16.png @@ -3690,7 +1065,7 @@ spriteSourceSize {39,53} textureRect - {{924,701},{39,53}} + {{414,632},{39,53}} textureRotated @@ -3705,9 +1080,9 @@ spriteSourceSize {39,53} textureRect - {{924,754},{39,53}} + {{475,313},{39,53}} textureRotated - + SoldierFireGhost_Atked2_18.png @@ -3720,9 +1095,9 @@ spriteSourceSize {39,53} textureRect - {{1114,640},{39,53}} + {{528,313},{39,53}} textureRotated - + SoldierFireGhost_Atked2_19.png @@ -3735,7 +1110,7 @@ spriteSourceSize {39,53} textureRect - {{1207,793},{39,53}} + {{581,313},{39,53}} textureRotated @@ -3750,7 +1125,7 @@ spriteSourceSize {39,53} textureRect - {{1260,793},{39,53}} + {{634,313},{39,53}} textureRotated @@ -3765,7 +1140,7 @@ spriteSourceSize {39,53} textureRect - {{1313,793},{39,53}} + {{687,313},{39,53}} textureRotated @@ -3780,7 +1155,7 @@ spriteSourceSize {39,53} textureRect - {{1366,793},{39,53}} + {{740,313},{39,53}} textureRotated @@ -3795,7 +1170,7 @@ spriteSourceSize {39,53} textureRect - {{1419,793},{39,53}} + {{793,313},{39,53}} textureRotated @@ -3810,7 +1185,7 @@ spriteSourceSize {39,53} textureRect - {{1472,793},{39,53}} + {{846,313},{39,53}} textureRotated @@ -3825,9 +1200,9 @@ spriteSourceSize {39,53} textureRect - {{1525,793},{39,53}} + {{447,420},{39,53}} textureRotated - + SoldierFireGhost_Atked2_26.png @@ -3840,9 +1215,9 @@ spriteSourceSize {39,53} textureRect - {{1578,793},{39,53}} + {{447,473},{39,53}} textureRotated - + SoldierFireGhost_Atked2_27.png @@ -3855,9 +1230,9 @@ spriteSourceSize {39,53} textureRect - {{1631,793},{39,53}} + {{447,526},{39,53}} textureRotated - + SoldierFireGhost_Atked2_28.png @@ -3870,9 +1245,9 @@ spriteSourceSize {39,53} textureRect - {{1207,832},{39,53}} + {{447,579},{39,53}} textureRotated - + SoldierFireGhost_Atked2_29.png @@ -3885,9 +1260,9 @@ spriteSourceSize {39,53} textureRect - {{1260,832},{39,53}} + {{453,632},{39,53}} textureRotated - + SoldierFireGhost_Atked2_30.png @@ -3900,9 +1275,9 @@ spriteSourceSize {39,53} textureRect - {{1313,832},{39,53}} + {{815,458},{39,53}} textureRotated - + SoldierFireGhost_Atked2_31.png @@ -3915,9 +1290,9 @@ spriteSourceSize {39,53} textureRect - {{1366,832},{39,53}} + {{862,405},{39,53}} textureRotated - + SoldierFireGhost_Atked2_32.png @@ -3930,9 +1305,9 @@ spriteSourceSize {39,53} textureRect - {{1419,832},{39,53}} + {{768,564},{39,53}} textureRotated - + SoldierFireGhost_Atked2_33.png @@ -3945,9 +1320,9 @@ spriteSourceSize {39,53} textureRect - {{1472,832},{39,53}} + {{815,511},{39,53}} textureRotated - + SoldierFireGhost_Atked2_34.png @@ -3960,9 +1335,9 @@ spriteSourceSize {39,53} textureRect - {{1525,832},{39,53}} + {{854,458},{39,53}} textureRotated - + SoldierFireGhost_Atked2_35.png @@ -3975,9 +1350,9 @@ spriteSourceSize {39,53} textureRect - {{1578,832},{39,53}} + {{807,564},{39,53}} textureRotated - + SoldierFireGhost_Atked2_36.png @@ -3990,9 +1365,9 @@ spriteSourceSize {39,53} textureRect - {{1631,832},{39,53}} + {{854,511},{39,53}} textureRotated - + SoldierFireGhost_Atked2_37.png @@ -4005,9 +1380,9 @@ spriteSourceSize {39,53} textureRect - {{1207,871},{39,53}} + {{846,564},{39,53}} textureRotated - + SoldierFireGhost_Atked2_38.png @@ -4020,9 +1395,9 @@ spriteSourceSize {39,53} textureRect - {{1260,871},{39,53}} + {{492,617},{39,53}} textureRotated - + SoldierFireGhost_Atked2_39.png @@ -4035,7 +1410,7 @@ spriteSourceSize {39,53} textureRect - {{1313,871},{39,53}} + {{492,670},{39,53}} textureRotated @@ -4050,9 +1425,9 @@ spriteSourceSize {39,53} textureRect - {{1366,871},{39,53}} + {{531,617},{39,53}} textureRotated - + SoldierFireGhost_Atked2_41.png @@ -4065,7 +1440,7 @@ spriteSourceSize {39,53} textureRect - {{1419,871},{39,53}} + {{545,670},{39,53}} textureRotated @@ -4080,9 +1455,9 @@ spriteSourceSize {39,53} textureRect - {{1472,871},{39,53}} + {{570,617},{39,53}} textureRotated - + SoldierFireGhost_Atked2_43.png @@ -4095,7 +1470,7 @@ spriteSourceSize {39,53} textureRect - {{1525,871},{39,53}} + {{598,670},{39,53}} textureRotated @@ -4110,9 +1485,9 @@ spriteSourceSize {39,53} textureRect - {{1578,871},{39,53}} + {{609,617},{39,53}} textureRotated - + SoldierFireGhost_Atked2_45.png @@ -4125,9 +1500,9 @@ spriteSourceSize {39,53} textureRect - {{1631,871},{39,53}} + {{648,617},{39,53}} textureRotated - + SoldierFireGhost_Atked2_46.png @@ -4140,9 +1515,9 @@ spriteSourceSize {39,53} textureRect - {{604,770},{39,53}} + {{651,670},{39,53}} textureRotated - + SoldierFireGhost_Atked2_47.png @@ -4155,7 +1530,7 @@ spriteSourceSize {39,53} textureRect - {{604,823},{39,53}} + {{687,617},{39,53}} textureRotated @@ -4170,9 +1545,9 @@ spriteSourceSize {39,53} textureRect - {{878,802},{39,53}} + {{704,670},{39,53}} textureRotated - + SoldierFireGhost_Atked2_49.png @@ -4185,9 +1560,9 @@ spriteSourceSize {39,53} textureRect - {{690,855},{39,53}} + {{726,617},{39,53}} textureRotated - + SoldierFireGhost_Atked2_50.png @@ -4200,7 +1575,7 @@ spriteSourceSize {39,53} textureRect - {{743,855},{39,53}} + {{757,670},{39,53}} textureRotated @@ -4215,9 +1590,9 @@ spriteSourceSize {39,53} textureRect - {{796,855},{39,53}} + {{765,617},{39,53}} textureRotated - + SoldierFireGhost_Atked2_52.png @@ -4230,9 +1605,9 @@ spriteSourceSize {39,53} textureRect - {{849,855},{39,53}} + {{804,617},{39,53}} textureRotated - + SoldierFireGhost_Atked2_53.png @@ -4245,7 +1620,7 @@ spriteSourceSize {39,53} textureRect - {{902,860},{39,53}} + {{810,670},{39,53}} textureRotated @@ -4260,9 +1635,9 @@ spriteSourceSize {39,53} textureRect - {{690,947},{39,53}} + {{843,617},{39,53}} textureRotated - + SoldierFireGhost_Atked2_55.png @@ -4275,7 +1650,7 @@ spriteSourceSize {39,53} textureRect - {{743,947},{39,53}} + {{863,670},{39,53}} textureRotated @@ -4290,9 +1665,9 @@ spriteSourceSize {39,53} textureRect - {{796,947},{39,53}} + {{882,617},{39,53}} textureRotated - + SoldierFireGhost_Atked2_57.png @@ -4305,9 +1680,9 @@ spriteSourceSize {39,53} textureRect - {{931,899},{39,53}} + {{916,670},{39,53}} textureRotated - + SoldierFireGhost_Atked2_58.png @@ -4320,7 +1695,7 @@ spriteSourceSize {39,53} textureRect - {{849,947},{39,53}} + {{885,564},{39,53}} textureRotated @@ -4335,7 +1710,7 @@ spriteSourceSize {39,53} textureRect - {{888,946},{39,53}} + {{921,617},{39,53}} textureRotated @@ -4350,9 +1725,9 @@ spriteSourceSize {39,53} textureRect - {{955,860},{39,53}} + {{969,333},{39,53}} textureRotated - + SoldierFireGhost_Atked2_61.png @@ -4365,7 +1740,7 @@ spriteSourceSize {39,53} textureRect - {{970,899},{39,53}} + {{969,386},{39,53}} textureRotated @@ -4380,9 +1755,9 @@ spriteSourceSize {39,53} textureRect - {{1058,848},{39,53}} + {{969,439},{39,53}} textureRotated - + SoldierFireGhost_Atked2_63.png @@ -4395,9 +1770,9 @@ spriteSourceSize {39,53} textureRect - {{1009,909},{39,53}} + {{969,492},{39,53}} textureRotated - + SoldierFireGhost_Atked2_64.png @@ -4410,9 +1785,9 @@ spriteSourceSize {39,53} textureRect - {{1109,905},{39,53}} + {{969,545},{39,53}} textureRotated - + SoldierFireGhost_Atked2_65.png @@ -4425,7 +1800,7 @@ spriteSourceSize {39,53} textureRect - {{1162,903},{39,53}} + {{969,598},{39,53}} textureRotated @@ -4440,9 +1815,9 @@ spriteSourceSize {39,53} textureRect - {{1298,957},{39,53}} + {{969,651},{39,53}} textureRotated - + SoldierFireGhost_Atked2_67.png @@ -4455,9 +1830,9 @@ spriteSourceSize {39,53} textureRect - {{1351,957},{39,53}} + {{893,458},{39,53}} textureRotated - + SoldierFireGhost_Atked2_68.png @@ -4470,9 +1845,9 @@ spriteSourceSize {39,53} textureRect - {{1404,957},{39,53}} + {{893,511},{39,53}} textureRotated - + SoldierFireGhost_Atked2_69.png @@ -4485,9 +1860,9 @@ spriteSourceSize {39,53} textureRect - {{1457,957},{39,53}} + {{924,564},{39,53}} textureRotated - + SoldierFireGhost_Atked2_70.png @@ -4500,9 +1875,9 @@ spriteSourceSize {39,53} textureRect - {{1510,957},{39,53}} + {{901,333},{39,53}} textureRotated - + SoldierFireGhost_Atked2_71.png @@ -4515,9 +1890,9 @@ spriteSourceSize {39,53} textureRect - {{1563,957},{39,53}} + {{901,386},{39,53}} textureRotated - + SoldierFireGhost_Atked2_72.png @@ -4530,1195 +1905,10 @@ spriteSourceSize {39,53} textureRect - {{1667,54},{39,53}} - textureRotated - - - SoldierFireGhost_Dying_00.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{0,0},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_01.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{0,103},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_02.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{55,0},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_03.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{0,206},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_04.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{55,103},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_05.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{110,0},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_06.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{0,309},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_07.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{55,206},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_08.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{110,103},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_09.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{165,0},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_10.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{0,412},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_11.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{55,309},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_12.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{110,206},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_13.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{165,103},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_14.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{220,0},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_15.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{0,515},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_16.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{55,412},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_17.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{110,309},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_18.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{165,206},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_19.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{220,103},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_20.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{275,0},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_21.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{0,618},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_22.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{55,515},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_23.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{110,412},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_24.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{165,309},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_25.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{220,206},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_26.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{275,103},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_27.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{330,0},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_28.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{0,721},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_29.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{55,618},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_30.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{110,515},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_31.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{165,412},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_32.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{220,309},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_33.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{275,206},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_34.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{330,103},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_35.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{385,0},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_36.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{0,824},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_37.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{55,721},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_38.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{110,618},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_39.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{165,515},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_40.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{220,412},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_41.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{275,309},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_42.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{330,206},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_43.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{385,103},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_44.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{440,0},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_45.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{55,824},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_46.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{0,927},{55,103}} + {{942,255},{39,53}} textureRotated - SoldierFireGhost_Dying_47.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{110,721},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_48.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{165,618},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_49.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{220,515},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_50.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{275,412},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_51.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{330,309},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_52.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{385,206},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_53.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{440,103},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_54.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{495,0},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_55.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{110,824},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_56.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{165,721},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_57.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{220,618},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_58.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{275,515},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_59.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{330,412},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_60.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{385,309},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_61.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{440,206},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_62.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{495,103},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_63.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{550,0},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_64.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{165,824},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_65.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{103,927},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_66.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{220,721},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_67.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{275,618},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_68.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{330,515},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_69.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{385,412},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_70.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{440,309},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_71.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{495,206},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_72.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{550,103},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_73.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{605,0},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_74.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{220,824},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_75.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{275,721},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_76.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{330,618},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_77.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{385,515},{55,103}} - textureRotated - - - SoldierFireGhost_Dying_78.png - - aliases - - spriteOffset - {0,0} - spriteSize - {55,103} - spriteSourceSize - {55,103} - textureRect - {{440,412},{55,103}} - textureRotated - - SoldierFireGhost_Idle1_00.png aliases @@ -5730,7 +1920,7 @@ spriteSourceSize {47,53} textureRect - {{381,836},{47,53}} + {{942,208},{47,53}} textureRotated @@ -5745,7 +1935,7 @@ spriteSourceSize {47,53} textureRect - {{1083,370},{47,53}} + {{58,656},{47,53}} textureRotated @@ -5760,7 +1950,7 @@ spriteSourceSize {47,53} textureRect - {{1153,585},{47,53}} + {{237,646},{47,53}} textureRotated @@ -5775,9 +1965,9 @@ spriteSourceSize {47,53} textureRect - {{596,932},{47,53}} + {{419,214},{47,53}} textureRotated - + SoldierFireGhost_Idle1_04.png @@ -5790,7 +1980,7 @@ spriteSourceSize {47,53} textureRect - {{963,700},{47,53}} + {{428,261},{47,53}} textureRotated @@ -5805,9 +1995,9 @@ spriteSourceSize {47,53} textureRect - {{1060,704},{47,53}} + {{475,260},{47,53}} textureRotated - + SoldierFireGhost_Idle1_06.png @@ -5820,7 +2010,7 @@ spriteSourceSize {47,53} textureRect - {{963,753},{47,53}} + {{522,260},{47,53}} textureRotated @@ -5835,7 +2025,7 @@ spriteSourceSize {47,53} textureRect - {{1153,638},{47,53}} + {{569,260},{47,53}} textureRotated @@ -5850,7 +2040,7 @@ spriteSourceSize {47,53} textureRect - {{1113,693},{47,53}} + {{616,260},{47,53}} textureRotated @@ -5865,7 +2055,7 @@ spriteSourceSize {47,53} textureRect - {{1113,746},{47,53}} + {{663,260},{47,53}} textureRotated @@ -5880,7 +2070,7 @@ spriteSourceSize {47,53} textureRect - {{1160,691},{47,53}} + {{710,260},{47,53}} textureRotated @@ -5895,7 +2085,7 @@ spriteSourceSize {47,53} textureRect - {{1160,744},{47,53}} + {{757,260},{47,53}} textureRotated @@ -5910,7 +2100,7 @@ spriteSourceSize {47,53} textureRect - {{1307,687},{47,53}} + {{804,260},{47,53}} textureRotated @@ -5925,7 +2115,7 @@ spriteSourceSize {47,53} textureRect - {{1307,740},{47,53}} + {{851,260},{47,53}} textureRotated @@ -5940,7 +2130,7 @@ spriteSourceSize {47,53} textureRect - {{1354,687},{47,53}} + {{271,308},{47,53}} textureRotated @@ -5955,9 +2145,9 @@ spriteSourceSize {47,53} textureRect - {{1354,740},{47,53}} + {{318,320},{47,53}} textureRotated - + SoldierFireGhost_Idle1_16.png @@ -5970,7 +2160,7 @@ spriteSourceSize {47,53} textureRect - {{1401,687},{47,53}} + {{298,367},{47,53}} textureRotated @@ -5985,7 +2175,7 @@ spriteSourceSize {47,53} textureRect - {{1401,740},{47,53}} + {{314,420},{47,53}} textureRotated @@ -6000,7 +2190,7 @@ spriteSourceSize {47,53} textureRect - {{1448,687},{47,53}} + {{314,473},{47,53}} textureRotated @@ -6015,7 +2205,7 @@ spriteSourceSize {47,53} textureRect - {{1448,740},{47,53}} + {{314,526},{47,53}} textureRotated @@ -6030,7 +2220,7 @@ spriteSourceSize {47,53} textureRect - {{1495,687},{47,53}} + {{314,579},{47,53}} textureRotated @@ -6045,9 +2235,9 @@ spriteSourceSize {47,53} textureRect - {{1495,740},{47,53}} + {{371,320},{47,53}} textureRotated - + SoldierFireGhost_Idle1_22.png @@ -6060,7 +2250,7 @@ spriteSourceSize {47,53} textureRect - {{1542,687},{47,53}} + {{384,367},{47,53}} textureRotated @@ -6075,7 +2265,7 @@ spriteSourceSize {47,53} textureRect - {{1542,740},{47,53}} + {{361,420},{47,53}} textureRotated @@ -6090,7 +2280,7 @@ spriteSourceSize {47,53} textureRect - {{1589,687},{47,53}} + {{361,473},{47,53}} textureRotated @@ -6105,7 +2295,7 @@ spriteSourceSize {47,53} textureRect - {{1589,740},{47,53}} + {{361,526},{47,53}} textureRotated @@ -6120,7 +2310,7 @@ spriteSourceSize {47,53} textureRect - {{1636,687},{47,53}} + {{361,579},{47,53}} textureRotated @@ -6135,7 +2325,7 @@ spriteSourceSize {47,53} textureRect - {{1636,740},{47,53}} + {{328,632},{47,53}} textureRotated @@ -6150,7 +2340,7 @@ spriteSourceSize {47,53} textureRect - {{1160,797},{47,53}} + {{428,314},{47,53}} textureRotated @@ -6165,7 +2355,7 @@ spriteSourceSize {47,53} textureRect - {{1113,799},{47,53}} + {{431,367},{47,53}} textureRotated @@ -6180,9 +2370,9 @@ spriteSourceSize {47,53} textureRect - {{1060,801},{47,53}} + {{478,352},{47,53}} textureRotated - + SoldierFireGhost_Idle1_31.png @@ -6195,7 +2385,7 @@ spriteSourceSize {47,53} textureRect - {{1160,850},{47,53}} + {{525,352},{47,53}} textureRotated @@ -6210,7 +2400,7 @@ spriteSourceSize {47,53} textureRect - {{643,769},{47,53}} + {{572,352},{47,53}} textureRotated @@ -6225,7 +2415,7 @@ spriteSourceSize {47,53} textureRect - {{643,822},{47,53}} + {{619,352},{47,53}} textureRotated @@ -6240,7 +2430,7 @@ spriteSourceSize {47,53} textureRect - {{690,802},{47,53}} + {{666,352},{47,53}} textureRotated @@ -6255,7 +2445,7 @@ spriteSourceSize {47,53} textureRect - {{737,802},{47,53}} + {{713,352},{47,53}} textureRotated @@ -6270,7 +2460,7 @@ spriteSourceSize {47,53} textureRect - {{784,802},{47,53}} + {{760,352},{47,53}} textureRotated @@ -6285,7 +2475,7 @@ spriteSourceSize {47,53} textureRect - {{831,802},{47,53}} + {{807,352},{47,53}} textureRotated @@ -6300,7 +2490,7 @@ spriteSourceSize {47,53} textureRect - {{917,807},{47,53}} + {{854,352},{47,53}} textureRotated @@ -6315,7 +2505,7 @@ spriteSourceSize {47,53} textureRect - {{964,806},{47,53}} + {{486,405},{47,53}} textureRotated @@ -6330,7 +2520,7 @@ spriteSourceSize {47,53} textureRect - {{1011,803},{47,53}} + {{486,458},{47,53}} textureRotated @@ -6345,9 +2535,9 @@ spriteSourceSize {47,53} textureRect - {{637,876},{47,53}} + {{533,405},{47,53}} textureRotated - + SoldierFireGhost_Idle1_42.png @@ -6360,7 +2550,7 @@ spriteSourceSize {47,53} textureRect - {{643,923},{47,53}} + {{486,511},{47,53}} textureRotated @@ -6375,7 +2565,7 @@ spriteSourceSize {47,53} textureRect - {{690,894},{47,53}} + {{533,458},{47,53}} textureRotated @@ -6390,7 +2580,7 @@ spriteSourceSize {47,53} textureRect - {{737,894},{47,53}} + {{580,405},{47,53}} textureRotated @@ -6405,7 +2595,7 @@ spriteSourceSize {47,53} textureRect - {{784,894},{47,53}} + {{486,564},{47,53}} textureRotated @@ -6420,7 +2610,7 @@ spriteSourceSize {47,53} textureRect - {{831,894},{47,53}} + {{533,511},{47,53}} textureRotated @@ -6435,9 +2625,9 @@ spriteSourceSize {47,53} textureRect - {{878,899},{47,53}} + {{580,458},{47,53}} textureRotated - + SoldierFireGhost_Idle1_48.png @@ -6450,9 +2640,9 @@ spriteSourceSize {47,53} textureRect - {{927,952},{47,53}} + {{627,405},{47,53}} textureRotated - + SoldierFireGhost_Idle1_49.png @@ -6465,9 +2655,9 @@ spriteSourceSize {47,53} textureRect - {{980,952},{47,53}} + {{533,564},{47,53}} textureRotated - + SoldierFireGhost_Idle1_50.png @@ -6480,7 +2670,7 @@ spriteSourceSize {47,53} textureRect - {{1011,856},{47,53}} + {{580,511},{47,53}} textureRotated @@ -6495,7 +2685,7 @@ spriteSourceSize {47,53} textureRect - {{1111,852},{47,53}} + {{627,458},{47,53}} textureRotated @@ -6510,7 +2700,7 @@ spriteSourceSize {47,53} textureRect - {{1062,887},{47,53}} + {{674,405},{47,53}} textureRotated @@ -6525,9 +2715,9 @@ spriteSourceSize {47,53} textureRect - {{1201,910},{47,53}} + {{580,564},{47,53}} textureRotated - + SoldierFireGhost_Idle1_54.png @@ -6540,9 +2730,9 @@ spriteSourceSize {47,53} textureRect - {{1254,910},{47,53}} + {{627,511},{47,53}} textureRotated - + SoldierFireGhost_Idle1_55.png @@ -6555,9 +2745,9 @@ spriteSourceSize {47,53} textureRect - {{1307,910},{47,53}} + {{674,458},{47,53}} textureRotated - + SoldierFireGhost_Idle1_56.png @@ -6570,9 +2760,9 @@ spriteSourceSize {47,53} textureRect - {{1360,910},{47,53}} + {{721,405},{47,53}} textureRotated - + SoldierFireGhost_Idle1_57.png @@ -6585,9 +2775,9 @@ spriteSourceSize {47,53} textureRect - {{1413,910},{47,53}} + {{627,564},{47,53}} textureRotated - + SoldierFireGhost_Idle1_58.png @@ -6600,9 +2790,9 @@ spriteSourceSize {47,53} textureRect - {{1466,910},{47,53}} + {{674,511},{47,53}} textureRotated - + SoldierFireGhost_Idle1_59.png @@ -6615,9 +2805,9 @@ spriteSourceSize {47,53} textureRect - {{1519,910},{47,53}} + {{721,458},{47,53}} textureRotated - + SoldierFireGhost_Idle1_60.png @@ -6630,9 +2820,9 @@ spriteSourceSize {47,53} textureRect - {{1572,910},{47,53}} + {{768,405},{47,53}} textureRotated - + SoldierFireGhost_Idle1_61.png @@ -6645,9 +2835,9 @@ spriteSourceSize {47,53} textureRect - {{1625,910},{47,53}} + {{674,564},{47,53}} textureRotated - + SoldierFireGhost_Idle1_62.png @@ -6660,9 +2850,9 @@ spriteSourceSize {47,53} textureRect - {{1033,957},{47,53}} + {{721,511},{47,53}} textureRotated - + SoldierFireGhost_Idle1_63.png @@ -6675,9 +2865,9 @@ spriteSourceSize {47,53} textureRect - {{1086,957},{47,53}} + {{768,458},{47,53}} textureRotated - + SoldierFireGhost_Idle1_64.png @@ -6690,9 +2880,9 @@ spriteSourceSize {47,53} textureRect - {{1139,957},{47,53}} + {{815,405},{47,53}} textureRotated - + SoldierFireGhost_Idle1_65.png @@ -6705,9 +2895,9 @@ spriteSourceSize {47,53} textureRect - {{1192,957},{47,53}} + {{721,564},{47,53}} textureRotated - + SoldierFireGhost_Idle1_66.png @@ -6720,1552 +2910,472 @@ spriteSourceSize {47,53} textureRect - {{1245,957},{47,53}} - textureRotated - - - SoldierFireGhost_Idle2_000.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{604,217},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_001.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{439,629},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_002.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1639,107},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_003.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{659,377},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_004.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{923,486},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_005.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{923,539},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_006.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{977,266},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_007.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{977,319},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_008.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1027,266},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_009.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1027,319},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_010.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{989,372},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_011.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1121,263},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_012.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1171,263},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_013.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1221,263},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_014.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1271,263},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_015.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1321,263},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_016.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1371,263},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_017.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1421,263},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_018.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1471,263},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_019.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1521,263},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_020.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1571,263},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_021.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1621,266},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_022.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1077,320},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_023.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1130,316},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_024.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1180,316},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_025.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1230,316},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_026.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1280,316},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_027.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1330,316},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_028.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1380,316},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_029.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1430,316},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_030.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1480,316},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_031.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1530,316},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_032.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1580,316},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_033.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1130,369},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_034.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1180,369},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_035.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1230,369},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_036.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1280,369},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_037.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1330,369},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_038.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1380,369},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_039.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1430,369},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_040.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1480,369},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_041.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1530,369},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_042.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1580,369},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_043.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1026,426},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_044.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1159,422},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_045.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1209,422},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_046.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1259,422},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_047.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1309,422},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_048.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1359,422},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_049.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1409,422},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_050.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1459,422},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_051.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1509,422},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_052.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1559,422},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_053.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1609,424},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_054.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1193,475},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_055.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1243,475},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_056.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1293,475},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_057.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1343,475},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_058.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1393,475},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_059.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1443,475},{50,53}} + {{768,511},{47,53}} textureRotated - SoldierFireGhost_Idle2_060.png + SoldierFireGhost_InAirIdle1_00.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1493,475},{50,53}} + {{58,432},{42,56}} textureRotated - SoldierFireGhost_Idle2_061.png + SoldierFireGhost_InAirIdle1_01.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1543,475},{50,53}} + {{58,488},{42,56}} textureRotated - SoldierFireGhost_Idle2_062.png + SoldierFireGhost_InAirIdle1_02.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1193,528},{50,53}} + {{58,544},{42,56}} textureRotated - SoldierFireGhost_Idle2_063.png + SoldierFireGhost_InAirIdle1_03.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1243,528},{50,53}} + {{58,600},{42,56}} textureRotated - SoldierFireGhost_Idle2_064.png + SoldierFireGhost_InAirIdle1_04.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1293,528},{50,53}} + {{100,430},{42,56}} textureRotated - SoldierFireGhost_Idle2_065.png + SoldierFireGhost_InAirIdle1_05.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1343,528},{50,53}} + {{100,486},{42,56}} textureRotated - SoldierFireGhost_Idle2_066.png + SoldierFireGhost_InAirIdle1_06.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1393,528},{50,53}} + {{100,542},{42,56}} textureRotated - SoldierFireGhost_Idle2_067.png + SoldierFireGhost_InAirIdle1_07.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1443,528},{50,53}} + {{100,598},{42,56}} textureRotated - SoldierFireGhost_Idle2_068.png + SoldierFireGhost_InAirIdle1_08.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1493,528},{50,53}} + {{142,430},{42,56}} textureRotated - SoldierFireGhost_Idle2_069.png + SoldierFireGhost_InAirIdle1_09.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1543,528},{50,53}} + {{142,486},{42,56}} textureRotated - SoldierFireGhost_Idle2_070.png + SoldierFireGhost_InAirIdle1_10.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1632,478},{50,53}} + {{142,542},{42,56}} textureRotated - SoldierFireGhost_Idle2_071.png + SoldierFireGhost_InAirIdle1_11.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1632,531},{50,53}} + {{142,598},{42,56}} textureRotated - SoldierFireGhost_Idle2_072.png + SoldierFireGhost_InAirIdle1_12.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1200,581},{50,53}} + {{184,430},{42,56}} textureRotated - SoldierFireGhost_Idle2_073.png + SoldierFireGhost_InAirIdle1_13.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1250,581},{50,53}} + {{184,486},{42,56}} textureRotated - SoldierFireGhost_Idle2_074.png + SoldierFireGhost_InAirIdle1_14.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1300,581},{50,53}} + {{184,542},{42,56}} textureRotated - SoldierFireGhost_Idle2_075.png + SoldierFireGhost_InAirIdle1_15.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1350,581},{50,53}} + {{184,598},{42,56}} textureRotated - SoldierFireGhost_Idle2_076.png + SoldierFireGhost_InAirIdle1_16.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1400,581},{50,53}} + {{184,542},{42,56}} textureRotated - SoldierFireGhost_Idle2_077.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1450,581},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_078.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1500,581},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_079.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1550,581},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_080.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1600,584},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_081.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1653,584},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_082.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{958,594},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_083.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1008,594},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_084.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{960,647},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_085.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1010,644},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_086.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1010,697},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_087.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1010,750},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_088.png - - aliases - - spriteOffset - {0,0} - spriteSize - {50,53} - spriteSourceSize - {50,53} - textureRect - {{1060,751},{50,53}} - textureRotated - - - SoldierFireGhost_Idle2_089.png + SoldierFireGhost_InAirIdle1_17.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1200,634},{50,53}} + {{184,486},{42,56}} textureRotated - SoldierFireGhost_Idle2_090.png + SoldierFireGhost_InAirIdle1_18.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1250,634},{50,53}} + {{184,430},{42,56}} textureRotated - SoldierFireGhost_Idle2_091.png + SoldierFireGhost_InAirIdle1_19.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1300,634},{50,53}} + {{142,598},{42,56}} textureRotated - SoldierFireGhost_Idle2_092.png + SoldierFireGhost_InAirIdle1_20.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1350,634},{50,53}} + {{142,542},{42,56}} textureRotated - SoldierFireGhost_Idle2_093.png + SoldierFireGhost_InAirIdle1_21.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1400,634},{50,53}} + {{142,486},{42,56}} textureRotated - SoldierFireGhost_Idle2_094.png + SoldierFireGhost_InAirIdle1_22.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1450,634},{50,53}} + {{142,430},{42,56}} textureRotated - SoldierFireGhost_Idle2_095.png + SoldierFireGhost_InAirIdle1_23.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1500,634},{50,53}} + {{100,598},{42,56}} textureRotated - SoldierFireGhost_Idle2_096.png + SoldierFireGhost_InAirIdle1_24.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1550,634},{50,53}} + {{100,542},{42,56}} textureRotated - SoldierFireGhost_Idle2_097.png + SoldierFireGhost_InAirIdle1_25.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1600,634},{50,53}} + {{100,486},{42,56}} textureRotated - SoldierFireGhost_Idle2_098.png + SoldierFireGhost_InAirIdle1_26.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1650,634},{50,53}} + {{100,430},{42,56}} textureRotated - SoldierFireGhost_Idle2_099.png + SoldierFireGhost_InAirIdle1_27.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1207,687},{50,53}} + {{58,600},{42,56}} textureRotated - SoldierFireGhost_Idle2_100.png + SoldierFireGhost_InAirIdle1_28.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1207,740},{50,53}} + {{58,544},{42,56}} textureRotated - SoldierFireGhost_Idle2_101.png + SoldierFireGhost_InAirIdle1_29.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1257,687},{50,53}} + {{58,488},{42,56}} textureRotated - SoldierFireGhost_Idle2_102.png + SoldierFireGhost_InAirIdle1_30.png aliases spriteOffset {0,0} spriteSize - {50,53} + {42,56} spriteSourceSize - {50,53} + {42,56} textureRect - {{1257,740},{50,53}} + {{58,432},{42,56}} textureRotated @@ -8280,7 +3390,7 @@ spriteSourceSize {58,52} textureRect - {{1087,54},{58,52}} + {{366,54},{58,52}} textureRotated @@ -8295,7 +3405,7 @@ spriteSourceSize {58,52} textureRect - {{1145,54},{58,52}} + {{427,0},{58,52}} textureRotated @@ -8310,7 +3420,7 @@ spriteSourceSize {58,52} textureRect - {{1203,54},{58,52}} + {{0,432},{58,52}} textureRotated @@ -8325,7 +3435,7 @@ spriteSourceSize {58,52} textureRect - {{1261,54},{58,52}} + {{61,378},{58,52}} textureRotated @@ -8340,7 +3450,7 @@ spriteSourceSize {58,52} textureRect - {{1319,54},{58,52}} + {{122,324},{58,52}} textureRotated @@ -8355,7 +3465,7 @@ spriteSourceSize {58,52} textureRect - {{1377,54},{58,52}} + {{183,270},{58,52}} textureRotated @@ -8370,7 +3480,7 @@ spriteSourceSize {58,52} textureRect - {{1435,54},{58,52}} + {{244,216},{58,52}} textureRotated @@ -8385,7 +3495,7 @@ spriteSourceSize {58,52} textureRect - {{1493,54},{58,52}} + {{305,162},{58,52}} textureRotated @@ -8400,7 +3510,7 @@ spriteSourceSize {58,52} textureRect - {{1551,54},{58,52}} + {{366,106},{58,52}} textureRotated @@ -8415,7 +3525,7 @@ spriteSourceSize {58,52} textureRect - {{1609,54},{58,52}} + {{485,0},{58,52}} textureRotated @@ -8430,7 +3540,7 @@ spriteSourceSize {58,52} textureRect - {{659,108},{58,52}} + {{0,484},{58,52}} textureRotated @@ -8445,7 +3555,7 @@ spriteSourceSize {58,52} textureRect - {{717,108},{58,52}} + {{543,0},{58,52}} textureRotated @@ -8460,7 +3570,7 @@ spriteSourceSize {58,52} textureRect - {{775,108},{58,52}} + {{0,536},{58,52}} textureRotated @@ -8475,7 +3585,7 @@ spriteSourceSize {58,52} textureRect - {{833,108},{58,52}} + {{601,0},{58,52}} textureRotated @@ -8490,7 +3600,7 @@ spriteSourceSize {58,52} textureRect - {{891,108},{58,52}} + {{0,588},{58,52}} textureRotated @@ -8505,7 +3615,7 @@ spriteSourceSize {58,52} textureRect - {{949,108},{58,52}} + {{659,0},{58,52}} textureRotated @@ -8520,7 +3630,7 @@ spriteSourceSize {58,52} textureRect - {{1007,108},{58,52}} + {{0,640},{58,52}} textureRotated @@ -8535,9 +3645,9 @@ spriteSourceSize {58,52} textureRect - {{549,320},{58,52}} + {{717,0},{58,52}} textureRotated - + SoldierFireGhost_Walking_18.png @@ -8550,9 +3660,9 @@ spriteSourceSize {58,52} textureRect - {{549,378},{58,52}} + {{775,0},{58,52}} textureRotated - + SoldierFireGhost_Walking_19.png @@ -8565,7 +3675,7 @@ spriteSourceSize {58,52} textureRect - {{384,732},{58,52}} + {{833,0},{58,52}} textureRotated @@ -8580,9 +3690,9 @@ spriteSourceSize {58,52} textureRect - {{329,826},{58,52}} + {{891,0},{58,52}} textureRotated - + SoldierFireGhost_Walking_21.png @@ -8595,7 +3705,7 @@ spriteSourceSize {58,52} textureRect - {{384,784},{58,52}} + {{949,0},{58,52}} textureRotated @@ -8610,9 +3720,9 @@ spriteSourceSize {58,52} textureRect - {{384,883},{58,52}} + {{366,158},{58,52}} textureRotated - + SoldierFireGhost_Walking_23.png @@ -8625,9 +3735,9 @@ spriteSourceSize {58,52} textureRect - {{661,160},{58,52}} + {{424,54},{58,52}} textureRotated - + SoldierFireGhost_Walking_24.png @@ -8640,9 +3750,9 @@ spriteSourceSize {58,52} textureRect - {{719,160},{58,52}} + {{424,112},{58,52}} textureRotated - + SoldierFireGhost_Walking_25.png @@ -8655,7 +3765,7 @@ spriteSourceSize {58,52} textureRect - {{777,160},{58,52}} + {{476,52},{58,52}} textureRotated @@ -8670,7 +3780,7 @@ spriteSourceSize {58,52} textureRect - {{835,160},{58,52}} + {{476,104},{58,52}} textureRotated @@ -8685,7 +3795,7 @@ spriteSourceSize {58,52} textureRect - {{893,160},{58,52}} + {{534,52},{58,52}} textureRotated @@ -8700,7 +3810,7 @@ spriteSourceSize {58,52} textureRect - {{951,160},{58,52}} + {{534,104},{58,52}} textureRotated @@ -8715,7 +3825,7 @@ spriteSourceSize {58,52} textureRect - {{601,323},{58,52}} + {{592,52},{58,52}} textureRotated @@ -8730,7 +3840,7 @@ spriteSourceSize {58,52} textureRect - {{601,375},{58,52}} + {{592,104},{58,52}} textureRotated @@ -8745,9 +3855,9 @@ spriteSourceSize {58,52} textureRect - {{602,427},{58,52}} + {{650,52},{58,52}} textureRotated - + SoldierFireGhost_Walking_32.png @@ -8760,9 +3870,9 @@ spriteSourceSize {58,52} textureRect - {{442,732},{58,52}} + {{650,104},{58,52}} textureRotated - + SoldierFireGhost_Walking_33.png @@ -8775,7 +3885,7 @@ spriteSourceSize {58,52} textureRect - {{267,938},{58,52}} + {{708,52},{58,52}} textureRotated @@ -8790,7 +3900,7 @@ spriteSourceSize {58,52} textureRect - {{325,940},{58,52}} + {{708,104},{58,52}} textureRotated @@ -8805,7 +3915,7 @@ spriteSourceSize {58,52} textureRect - {{495,492},{58,52}} + {{766,52},{58,52}} textureRotated @@ -8820,9 +3930,9 @@ spriteSourceSize {58,52} textureRect - {{606,485},{58,52}} + {{766,104},{58,52}} textureRotated - + SoldierFireGhost_Walking_37.png @@ -8835,9 +3945,9 @@ spriteSourceSize {58,52} textureRect - {{1065,108},{58,52}} + {{824,52},{58,52}} textureRotated - + SoldierFireGhost_Walking_38.png @@ -8850,7 +3960,7 @@ spriteSourceSize {58,52} textureRect - {{1117,106},{58,52}} + {{824,104},{58,52}} textureRotated @@ -8865,7 +3975,7 @@ spriteSourceSize {58,52} textureRect - {{1175,106},{58,52}} + {{882,52},{58,52}} textureRotated @@ -8880,7 +3990,7 @@ spriteSourceSize {58,52} textureRect - {{1233,106},{58,52}} + {{882,104},{58,52}} textureRotated @@ -8895,7 +4005,7 @@ spriteSourceSize {58,52} textureRect - {{1291,106},{58,52}} + {{940,52},{58,52}} textureRotated @@ -8910,7 +4020,7 @@ spriteSourceSize {58,52} textureRect - {{1349,106},{58,52}} + {{940,104},{58,52}} textureRotated @@ -8925,7 +4035,7 @@ spriteSourceSize {58,52} textureRect - {{1407,106},{58,52}} + {{478,156},{58,52}} textureRotated @@ -8940,7 +4050,7 @@ spriteSourceSize {58,52} textureRect - {{1465,106},{58,52}} + {{536,156},{58,52}} textureRotated @@ -8955,7 +4065,7 @@ spriteSourceSize {58,52} textureRect - {{1523,106},{58,52}} + {{594,156},{58,52}} textureRotated @@ -8970,7 +4080,7 @@ spriteSourceSize {58,52} textureRect - {{1581,106},{58,52}} + {{652,156},{58,52}} textureRotated @@ -8985,7 +4095,7 @@ spriteSourceSize {58,52} textureRect - {{1118,158},{58,52}} + {{710,156},{58,52}} textureRotated @@ -9000,7 +4110,7 @@ spriteSourceSize {58,52} textureRect - {{1176,158},{58,52}} + {{768,156},{58,52}} textureRotated @@ -9015,7 +4125,7 @@ spriteSourceSize {58,52} textureRect - {{1234,158},{58,52}} + {{826,156},{58,52}} textureRotated @@ -9030,7 +4140,7 @@ spriteSourceSize {58,52} textureRect - {{1292,158},{58,52}} + {{884,156},{58,52}} textureRotated @@ -9045,7 +4155,7 @@ spriteSourceSize {58,52} textureRect - {{1350,158},{58,52}} + {{942,156},{58,52}} textureRotated @@ -9060,7 +4170,7 @@ spriteSourceSize {58,52} textureRect - {{1408,158},{58,52}} + {{478,208},{58,52}} textureRotated @@ -9075,7 +4185,7 @@ spriteSourceSize {58,52} textureRect - {{1466,158},{58,52}} + {{536,208},{58,52}} textureRotated @@ -9090,7 +4200,7 @@ spriteSourceSize {58,52} textureRect - {{1524,158},{58,52}} + {{594,208},{58,52}} textureRotated @@ -9105,7 +4215,7 @@ spriteSourceSize {58,52} textureRect - {{1582,158},{58,52}} + {{652,208},{58,52}} textureRotated @@ -9120,9 +4230,9 @@ spriteSourceSize {58,52} textureRect - {{496,544},{58,52}} + {{710,208},{58,52}} textureRotated - + SoldierFireGhost_Walking_57.png @@ -9135,7 +4245,7 @@ spriteSourceSize {58,52} textureRect - {{548,548},{58,52}} + {{768,208},{58,52}} textureRotated @@ -9150,9 +4260,9 @@ spriteSourceSize {58,52} textureRect - {{606,543},{58,52}} + {{826,208},{58,52}} textureRotated - + SoldierFireGhost_Walking_59.png @@ -9165,9 +4275,9 @@ spriteSourceSize {58,52} textureRect - {{549,600},{58,52}} + {{884,208},{58,52}} textureRotated - + SoldierFireGhost_Walking_60.png @@ -9180,7 +4290,7 @@ spriteSourceSize {58,52} textureRect - {{1087,54},{58,52}} + {{366,54},{58,52}} textureRotated @@ -9196,9 +4306,9 @@ realTextureFileName SoldierFireGhost.png size - {1706,1004} + {1008,709} smartupdate - $TexturePacker:SmartUpdate:e2b0bfa13d2aef8a80a5dbb186f24a49:c220bf728aa9d1cb54a9b31976f89896:043399c0f812c3a0a08a896b55a4dd30$ + $TexturePacker:SmartUpdate:999c3c613f4b66961effba54167eb6b3:52715fb8a5375b96a2417eff26e92ee3:043399c0f812c3a0a08a896b55a4dd30$ textureFileName SoldierFireGhost.png diff --git a/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.plist.meta b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.plist.meta index a140599..530285f 100644 --- a/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.plist.meta +++ b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.plist.meta @@ -3,8 +3,8 @@ "uuid": "145769c8-a259-42bc-8cce-6e035f493c70", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "size": { - "width": 1706, - "height": 1004 + "width": 1008, + "height": 709 }, "type": "Texture Packer", "subMetas": { @@ -17,8 +17,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 206, - "trimY": 927, + "trimX": 0, + "trimY": 0, "width": 61, "height": 54, "rawWidth": 61, @@ -36,11 +36,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 495, - "trimY": 309, + "trimX": 0, + "trimY": 54, "width": 61, "height": 54, "rawWidth": 61, @@ -58,11 +58,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 550, - "trimY": 206, + "trimX": 61, + "trimY": 0, "width": 61, "height": 54, "rawWidth": 61, @@ -80,11 +80,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 605, - "trimY": 103, + "trimX": 0, + "trimY": 108, "width": 61, "height": 54, "rawWidth": 61, @@ -105,8 +105,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 660, - "trimY": 0, + "trimX": 61, + "trimY": 54, "width": 61, "height": 54, "rawWidth": 61, @@ -124,11 +124,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 275, - "trimY": 824, + "trimX": 122, + "trimY": 0, "width": 61, "height": 54, "rawWidth": 61, @@ -146,11 +146,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 330, - "trimY": 721, + "trimX": 0, + "trimY": 162, "width": 61, "height": 54, "rawWidth": 61, @@ -168,11 +168,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 385, - "trimY": 618, + "trimX": 61, + "trimY": 108, "width": 61, "height": 54, "rawWidth": 61, @@ -190,11 +190,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 440, - "trimY": 515, + "trimX": 122, + "trimY": 54, "width": 61, "height": 54, "rawWidth": 61, @@ -212,11 +212,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 495, - "trimY": 370, + "trimX": 183, + "trimY": 0, "width": 61, "height": 54, "rawWidth": 61, @@ -237,8 +237,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 721, - "trimY": 0, + "trimX": 0, + "trimY": 216, "width": 61, "height": 54, "rawWidth": 61, @@ -256,11 +256,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 495, - "trimY": 431, + "trimX": 61, + "trimY": 162, "width": 61, "height": 54, "rawWidth": 61, @@ -281,8 +281,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 782, - "trimY": 0, + "trimX": 122, + "trimY": 108, "width": 61, "height": 54, "rawWidth": 61, @@ -303,8 +303,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 843, - "trimY": 0, + "trimX": 183, + "trimY": 54, "width": 61, "height": 54, "rawWidth": 61, @@ -325,7 +325,7 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 904, + "trimX": 244, "trimY": 0, "width": 61, "height": 54, @@ -347,8 +347,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 965, - "trimY": 0, + "trimX": 0, + "trimY": 270, "width": 61, "height": 54, "rawWidth": 61, @@ -369,8 +369,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1026, - "trimY": 0, + "trimX": 61, + "trimY": 216, "width": 61, "height": 54, "rawWidth": 61, @@ -391,8 +391,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1087, - "trimY": 0, + "trimX": 122, + "trimY": 162, "width": 61, "height": 54, "rawWidth": 61, @@ -413,8 +413,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1148, - "trimY": 0, + "trimX": 183, + "trimY": 108, "width": 61, "height": 54, "rawWidth": 61, @@ -435,8 +435,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1209, - "trimY": 0, + "trimX": 244, + "trimY": 54, "width": 61, "height": 54, "rawWidth": 61, @@ -457,7 +457,7 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1270, + "trimX": 305, "trimY": 0, "width": 61, "height": 54, @@ -479,8 +479,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1331, - "trimY": 0, + "trimX": 0, + "trimY": 324, "width": 61, "height": 54, "rawWidth": 61, @@ -501,8 +501,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1392, - "trimY": 0, + "trimX": 61, + "trimY": 270, "width": 61, "height": 54, "rawWidth": 61, @@ -523,8 +523,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1453, - "trimY": 0, + "trimX": 122, + "trimY": 216, "width": 61, "height": 54, "rawWidth": 61, @@ -545,8 +545,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1514, - "trimY": 0, + "trimX": 183, + "trimY": 162, "width": 61, "height": 54, "rawWidth": 61, @@ -567,8 +567,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1575, - "trimY": 0, + "trimX": 244, + "trimY": 108, "width": 61, "height": 54, "rawWidth": 61, @@ -589,8 +589,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1636, - "trimY": 0, + "trimX": 305, + "trimY": 54, "width": 61, "height": 54, "rawWidth": 61, @@ -611,8 +611,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 660, - "trimY": 54, + "trimX": 366, + "trimY": 0, "width": 61, "height": 54, "rawWidth": 61, @@ -633,8 +633,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 721, - "trimY": 54, + "trimX": 0, + "trimY": 378, "width": 61, "height": 54, "rawWidth": 61, @@ -655,8 +655,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 782, - "trimY": 54, + "trimX": 61, + "trimY": 324, "width": 61, "height": 54, "rawWidth": 61, @@ -677,8 +677,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 843, - "trimY": 54, + "trimX": 122, + "trimY": 270, "width": 61, "height": 54, "rawWidth": 61, @@ -699,8 +699,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 904, - "trimY": 54, + "trimX": 183, + "trimY": 216, "width": 61, "height": 54, "rawWidth": 61, @@ -721,8 +721,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 965, - "trimY": 54, + "trimX": 244, + "trimY": 162, "width": 61, "height": 54, "rawWidth": 61, @@ -743,8 +743,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1026, - "trimY": 54, + "trimX": 305, + "trimY": 108, "width": 61, "height": 54, "rawWidth": 61, @@ -765,8 +765,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 206, - "trimY": 927, + "trimX": 0, + "trimY": 0, "width": 61, "height": 54, "rawWidth": 61, @@ -778,3856 +778,6 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Atk2_000.png": { - "ver": "1.0.4", - "uuid": "17faa8a9-a6ba-4dd6-8cbe-ff8dbf78bb90", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 550, - "trimY": 267, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_001.png": { - "ver": "1.0.4", - "uuid": "d39f51ca-dbde-4fb4-8e23-5540e6d4fd4f", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 549, - "trimY": 436, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_002.png": { - "ver": "1.0.4", - "uuid": "f527484c-b3ff-430a-a920-fa1bdeb05f9a", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 275, - "trimY": 885, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_003.png": { - "ver": "1.0.4", - "uuid": "c39d49ea-bace-4f2e-a915-e63c7d4d2545", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 385, - "trimY": 679, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_004.png": { - "ver": "1.0.4", - "uuid": "33297de5-a8e3-4d9f-b155-483be0f5232d", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 331, - "trimY": 884, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_005.png": { - "ver": "1.0.4", - "uuid": "980e5165-ac04-4470-80f2-f7282bf02b41", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 605, - "trimY": 164, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_006.png": { - "ver": "1.0.4", - "uuid": "77399a2f-2035-4679-bd69-0b90e572f6ac", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1009, - "trimY": 160, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_007.png": { - "ver": "1.0.4", - "uuid": "e08e8956-aca7-4756-ab6b-0a03c4fa46c7", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 606, - "trimY": 267, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_008.png": { - "ver": "1.0.4", - "uuid": "4525c2db-7bd7-4bbb-a0e3-de444cd17f86", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 440, - "trimY": 576, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_009.png": { - "ver": "1.0.4", - "uuid": "d759c6fe-bca9-4e42-ad27-18e625df7c85", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 441, - "trimY": 679, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_010.png": { - "ver": "1.0.4", - "uuid": "2d4a1adc-5715-472f-818e-5a22ccc454d1", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 442, - "trimY": 790, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_011.png": { - "ver": "1.0.4", - "uuid": "b9c963e5-5ecb-4632-b77a-dc2d85ff610b", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 383, - "trimY": 941, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_012.png": { - "ver": "1.0.4", - "uuid": "891e1b7d-e2e3-419c-8528-f9df6644abe5", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 553, - "trimY": 492, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_013.png": { - "ver": "1.0.4", - "uuid": "f913cf30-bb89-4c6c-818d-ddabe3f703db", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1065, - "trimY": 166, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_014.png": { - "ver": "1.0.4", - "uuid": "4037acd9-52aa-498a-9216-65b46d967653", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 496, - "trimY": 602, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_015.png": { - "ver": "1.0.4", - "uuid": "cf2aeb3f-f83b-47c2-ada8-368fc739c12e", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 601, - "trimY": 601, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_016.png": { - "ver": "1.0.4", - "uuid": "b1396b65-5d17-48e8-9a6f-8f0c5254ea3f", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 497, - "trimY": 658, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_017.png": { - "ver": "1.0.4", - "uuid": "6879828e-a695-4ba5-bd9a-5db039f664b9", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 550, - "trimY": 658, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_018.png": { - "ver": "1.0.4", - "uuid": "11930a28-f22d-4e8a-b924-a36ce216beda", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 603, - "trimY": 657, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_019.png": { - "ver": "1.0.4", - "uuid": "f59bf930-34a7-4d28-932a-c3842e6b3e46", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1640, - "trimY": 157, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_020.png": { - "ver": "1.0.4", - "uuid": "e3d7f9f6-7f38-4b5d-8929-a38ab9b0a4ae", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 497, - "trimY": 714, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_021.png": { - "ver": "1.0.4", - "uuid": "adf48877-749c-4265-bfe5-37836ab23acc", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 553, - "trimY": 714, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_022.png": { - "ver": "1.0.4", - "uuid": "8031f6c5-9f61-4e8c-9c82-cc07e98c5cc6", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 606, - "trimY": 713, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_023.png": { - "ver": "1.0.4", - "uuid": "2d359ba6-428a-4972-ac97-57682eb97862", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 495, - "trimY": 767, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_024.png": { - "ver": "1.0.4", - "uuid": "c3af0dd2-0902-431f-8dcf-09814b4fedf4", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 548, - "trimY": 770, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_025.png": { - "ver": "1.0.4", - "uuid": "44d77658-4e19-4771-a746-83d120ab4050", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 495, - "trimY": 823, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_026.png": { - "ver": "1.0.4", - "uuid": "a44015a1-c6b1-48de-b284-4a62cc1d6e00", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 551, - "trimY": 823, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_027.png": { - "ver": "1.0.4", - "uuid": "d18aee8b-65e5-4c92-b929-d9d226d17d20", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1118, - "trimY": 210, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_028.png": { - "ver": "1.0.4", - "uuid": "75840798-5105-484e-b115-00be04c6f5fb", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1174, - "trimY": 210, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_029.png": { - "ver": "1.0.4", - "uuid": "43b1b61f-bfb8-448f-8f09-40b3d1c4412c", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1230, - "trimY": 210, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_030.png": { - "ver": "1.0.4", - "uuid": "3a6f5b6a-5802-4967-b889-c8f165b3a0c3", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1286, - "trimY": 210, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_031.png": { - "ver": "1.0.4", - "uuid": "e10aa072-c4a7-4f66-84f6-fdcbd919b5b5", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1342, - "trimY": 210, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_032.png": { - "ver": "1.0.4", - "uuid": "c7190256-0acc-486b-b8a1-4e024ab733f9", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1398, - "trimY": 210, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_033.png": { - "ver": "1.0.4", - "uuid": "f60e9603-b738-4869-b8cb-0c864cfaa0e0", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1454, - "trimY": 210, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_034.png": { - "ver": "1.0.4", - "uuid": "69aa605f-9ed3-474f-964e-326060e1e86e", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1510, - "trimY": 210, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_035.png": { - "ver": "1.0.4", - "uuid": "949a983c-89ea-43d3-a254-ec12c4de9ab5", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1566, - "trimY": 210, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_036.png": { - "ver": "1.0.4", - "uuid": "24a000c4-0960-4460-92db-9ce96f0d9cb6", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1622, - "trimY": 213, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_037.png": { - "ver": "1.0.4", - "uuid": "6804f91c-830f-4864-b9f6-cab43259b12a", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 436, - "trimY": 846, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_038.png": { - "ver": "1.0.4", - "uuid": "93f77c8b-ca68-450e-9398-6a9b5092d0a6", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 436, - "trimY": 902, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_039.png": { - "ver": "1.0.4", - "uuid": "a1984cf8-b1b5-436e-9357-6c4c95948e47", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 489, - "trimY": 876, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_040.png": { - "ver": "1.0.4", - "uuid": "29d037ab-6257-4afb-bfa0-8a2e23bce0f7", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 542, - "trimY": 879, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_041.png": { - "ver": "1.0.4", - "uuid": "c34ed877-15c5-4046-a309-51e3f5598062", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 490, - "trimY": 932, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_042.png": { - "ver": "1.0.4", - "uuid": "c07bbc1f-ec5e-4f4d-9afc-dccfc0865206", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 543, - "trimY": 932, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_043.png": { - "ver": "1.0.4", - "uuid": "8437da3f-1258-4952-9eef-dbb8d395a113", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 654, - "trimY": 601, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_044.png": { - "ver": "1.0.4", - "uuid": "ac9c8bcf-0838-440a-a80d-42c3c3b0a409", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 656, - "trimY": 657, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_045.png": { - "ver": "1.0.4", - "uuid": "8779a91a-0be2-414d-8c0c-bf85e8339e70", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 659, - "trimY": 713, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_046.png": { - "ver": "1.0.4", - "uuid": "40bca14b-5f90-409c-9110-a0744bfafa08", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 654, - "trimY": 427, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_047.png": { - "ver": "1.0.4", - "uuid": "238c96c8-9a7d-4426-89b3-ce5c5a78bb11", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 658, - "trimY": 483, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_048.png": { - "ver": "1.0.4", - "uuid": "728320da-7410-4e00-a3bd-7583c62ddbef", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 658, - "trimY": 539, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_049.png": { - "ver": "1.0.4", - "uuid": "0dddf18b-7622-4f92-9920-c6839378bdfc", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 661, - "trimY": 212, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_050.png": { - "ver": "1.0.4", - "uuid": "959a2c07-c66b-47eb-a1d1-5a3cbdee09d7", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 717, - "trimY": 212, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_051.png": { - "ver": "1.0.4", - "uuid": "bf3b7152-b379-4509-8c60-382fad189a8f", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 773, - "trimY": 212, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_052.png": { - "ver": "1.0.4", - "uuid": "8109909a-b35d-486d-8bad-87b606881fd1", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 829, - "trimY": 212, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_053.png": { - "ver": "1.0.4", - "uuid": "2dd72ef5-a1f4-4247-8f99-2d57fa40ea87", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 885, - "trimY": 212, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_054.png": { - "ver": "1.0.4", - "uuid": "b531adf8-1d99-47d1-a83b-85e90102852e", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 941, - "trimY": 212, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_055.png": { - "ver": "1.0.4", - "uuid": "2956791b-539f-4555-9d3c-811311e7616a", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 550, - "trimY": 267, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_056.png": { - "ver": "1.0.4", - "uuid": "cb943256-ad03-474a-b18f-f0f8bdae51ae", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 550, - "trimY": 267, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_057.png": { - "ver": "1.0.4", - "uuid": "2f18b6a9-c997-425f-8a00-74c8eeea7bb9", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 550, - "trimY": 267, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_058.png": { - "ver": "1.0.4", - "uuid": "363a0c85-c674-4cd4-a873-4fde54142d0c", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 550, - "trimY": 267, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_059.png": { - "ver": "1.0.4", - "uuid": "65e92d47-d8f6-40db-bdd0-eb07aedca2ee", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 550, - "trimY": 267, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_060.png": { - "ver": "1.0.4", - "uuid": "cc9533c1-a022-43b1-b4bf-efb2d8ead0a2", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 550, - "trimY": 267, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_061.png": { - "ver": "1.0.4", - "uuid": "56565465-18ce-47e7-a00d-7394dd4bf99d", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 659, - "trimY": 265, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_062.png": { - "ver": "1.0.4", - "uuid": "e2d94ae4-b7fe-42cb-90fb-f92f076c89c2", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 712, - "trimY": 265, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_063.png": { - "ver": "1.0.4", - "uuid": "1201a299-1e81-4d69-a55a-a2b903fe1ff2", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 659, - "trimY": 321, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_064.png": { - "ver": "1.0.4", - "uuid": "2e341745-6e14-4b89-a489-90d21d481cd1", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 712, - "trimY": 321, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_065.png": { - "ver": "1.0.4", - "uuid": "09180da7-5836-4da2-b5d3-fedde2fc9afd", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 765, - "trimY": 265, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_066.png": { - "ver": "1.0.4", - "uuid": "e593d41c-4fa1-4a46-97af-5a23a97130ae", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 765, - "trimY": 321, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_067.png": { - "ver": "1.0.4", - "uuid": "98a43419-6d5b-4741-8f0c-1317aadf86eb", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 818, - "trimY": 265, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_068.png": { - "ver": "1.0.4", - "uuid": "662ac237-cd1d-4b2b-a174-d32925e7228a", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 818, - "trimY": 321, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_069.png": { - "ver": "1.0.4", - "uuid": "020d6c7f-0279-41a8-8d5e-013340caaaaa", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 871, - "trimY": 265, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_070.png": { - "ver": "1.0.4", - "uuid": "962f69d1-d113-4a01-b152-0c16d66dfd96", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 871, - "trimY": 321, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_071.png": { - "ver": "1.0.4", - "uuid": "7026b3fa-29c6-4f3d-918a-1adf7abbb991", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 924, - "trimY": 265, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_072.png": { - "ver": "1.0.4", - "uuid": "6804f888-3c17-4ded-8316-6503d3e91d1a", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 924, - "trimY": 321, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_073.png": { - "ver": "1.0.4", - "uuid": "16304ac5-0d7e-448b-a164-4a697aabbe36", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 712, - "trimY": 377, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_074.png": { - "ver": "1.0.4", - "uuid": "c4d8a5ea-6469-4420-bf60-9b5b9fff016c", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 768, - "trimY": 377, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_075.png": { - "ver": "1.0.4", - "uuid": "c38e47cb-a905-42d9-8e81-c29b622c8972", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 601, - "trimY": 601, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_076.png": { - "ver": "1.0.4", - "uuid": "653decb4-3ac7-4289-9d34-730f7b2d9c44", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 497, - "trimY": 658, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_077.png": { - "ver": "1.0.4", - "uuid": "a74bc59f-a5b3-4627-af85-912d974a21a1", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 550, - "trimY": 658, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_078.png": { - "ver": "1.0.4", - "uuid": "81103ea3-b28f-4e71-95c8-972eca51b35c", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 603, - "trimY": 657, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_079.png": { - "ver": "1.0.4", - "uuid": "b81eef2a-2739-48a3-8695-4f4025a1f438", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1640, - "trimY": 157, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_080.png": { - "ver": "1.0.4", - "uuid": "c0c879ac-ecb2-4b91-959f-5f09fd629207", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 497, - "trimY": 714, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_081.png": { - "ver": "1.0.4", - "uuid": "6e82fd6d-6f95-4e52-9012-c08f7f82e269", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 553, - "trimY": 714, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_082.png": { - "ver": "1.0.4", - "uuid": "d8675712-6be4-43d0-8e23-a8aedcb3a49b", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 606, - "trimY": 713, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_083.png": { - "ver": "1.0.4", - "uuid": "fe79323f-da84-425a-8d5f-bf7465f1e4a2", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 495, - "trimY": 767, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_084.png": { - "ver": "1.0.4", - "uuid": "b2eafd63-e140-4422-be0c-e9fc3c4f9370", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 548, - "trimY": 770, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_085.png": { - "ver": "1.0.4", - "uuid": "b898f4a1-3e6f-4f6b-9478-0c7ecc4391a1", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 495, - "trimY": 823, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_086.png": { - "ver": "1.0.4", - "uuid": "6baf8118-f974-4698-976f-b69bc681b9aa", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 551, - "trimY": 823, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_087.png": { - "ver": "1.0.4", - "uuid": "c4fa0e5f-84a4-4047-9a7a-1a98b9f42764", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1118, - "trimY": 210, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_088.png": { - "ver": "1.0.4", - "uuid": "69b2fdf1-ca4a-4373-ae48-2bc0d8147c31", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1174, - "trimY": 210, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_089.png": { - "ver": "1.0.4", - "uuid": "eb3d3358-a4b0-49a2-90f8-6e91c47e95f6", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1230, - "trimY": 210, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_090.png": { - "ver": "1.0.4", - "uuid": "3d06fadb-637f-45a7-88e6-890eb9986dca", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1286, - "trimY": 210, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_091.png": { - "ver": "1.0.4", - "uuid": "03d2596d-bc20-44b1-b080-c580b556f71b", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1342, - "trimY": 210, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_092.png": { - "ver": "1.0.4", - "uuid": "f129dc46-386c-4a12-abd7-da817b326d78", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1398, - "trimY": 210, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_093.png": { - "ver": "1.0.4", - "uuid": "63047c54-0de0-4ae3-944e-24b2920f0e67", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1454, - "trimY": 210, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_094.png": { - "ver": "1.0.4", - "uuid": "354e2a19-e7be-4b87-a083-5adac5d36807", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1510, - "trimY": 210, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_095.png": { - "ver": "1.0.4", - "uuid": "ff2699d9-0100-41ac-9f0b-722ab290c4df", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1566, - "trimY": 210, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_096.png": { - "ver": "1.0.4", - "uuid": "67ec0adf-2a83-4520-9f80-4a0a01cb8ab4", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1622, - "trimY": 213, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_097.png": { - "ver": "1.0.4", - "uuid": "0b3cd6f3-2a96-45ba-b525-05949dd667d7", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 436, - "trimY": 846, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_098.png": { - "ver": "1.0.4", - "uuid": "3300ae47-27e2-4d6e-8f16-0b1f96a23787", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 436, - "trimY": 902, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_099.png": { - "ver": "1.0.4", - "uuid": "00f888b0-ba41-478e-9163-7882b4869a9e", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 489, - "trimY": 876, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_100.png": { - "ver": "1.0.4", - "uuid": "c032fc87-9757-438c-820e-84fcb31215d0", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 542, - "trimY": 879, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_101.png": { - "ver": "1.0.4", - "uuid": "ed277ef7-6302-42f2-a362-2c288996463f", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 490, - "trimY": 932, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_102.png": { - "ver": "1.0.4", - "uuid": "f71e1a43-aaa9-4882-a9b8-aa5dad6e06e3", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 543, - "trimY": 932, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_103.png": { - "ver": "1.0.4", - "uuid": "ebd35802-6a41-4c59-96dc-83b0ecb781dd", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 654, - "trimY": 601, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_104.png": { - "ver": "1.0.4", - "uuid": "5a85920f-6697-4b51-b4d9-e81767eff1a6", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 656, - "trimY": 657, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_105.png": { - "ver": "1.0.4", - "uuid": "525840f6-c67d-46a2-bc65-e5ab81b4e193", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 659, - "trimY": 713, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_106.png": { - "ver": "1.0.4", - "uuid": "7d30c689-edf2-4210-b169-8cc08ffd0055", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 654, - "trimY": 427, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_107.png": { - "ver": "1.0.4", - "uuid": "5fe9ea7c-dd7f-4903-be4b-946686f851a1", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 658, - "trimY": 483, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_108.png": { - "ver": "1.0.4", - "uuid": "ce6b55b0-c75c-4968-9b81-8df22db8b75e", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 658, - "trimY": 539, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_109.png": { - "ver": "1.0.4", - "uuid": "cc05e33d-7108-4c05-8e03-67a5f4fca434", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 661, - "trimY": 212, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_110.png": { - "ver": "1.0.4", - "uuid": "caf8767c-e83f-4c4f-8f72-9e7f3c13a79a", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 717, - "trimY": 212, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_111.png": { - "ver": "1.0.4", - "uuid": "649464a5-65d3-45dd-9fc2-6578acedfe4e", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 773, - "trimY": 212, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_112.png": { - "ver": "1.0.4", - "uuid": "6470be52-867f-4b0d-91e1-df8d346512bf", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 829, - "trimY": 212, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_113.png": { - "ver": "1.0.4", - "uuid": "80ea0b83-8e41-40d4-a4d8-4b826f33b1af", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 885, - "trimY": 212, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_114.png": { - "ver": "1.0.4", - "uuid": "ef5c437e-5a61-4b5e-9663-a02bdd90a5e0", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 941, - "trimY": 212, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_115.png": { - "ver": "1.0.4", - "uuid": "8c0e2a99-f1e9-4350-873f-7c6370e66653", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 550, - "trimY": 267, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_116.png": { - "ver": "1.0.4", - "uuid": "79e24f13-d6e4-4e53-857d-bea77fd696bd", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 550, - "trimY": 267, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_117.png": { - "ver": "1.0.4", - "uuid": "ad995870-7b7b-4ac1-bf81-84b670e3b8d0", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 550, - "trimY": 267, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_118.png": { - "ver": "1.0.4", - "uuid": "1da85fe3-93c9-4843-8b2b-7a7421dd6247", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 550, - "trimY": 267, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_119.png": { - "ver": "1.0.4", - "uuid": "0c7276c3-a621-4003-bd6d-67558ad48727", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 550, - "trimY": 267, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_120.png": { - "ver": "1.0.4", - "uuid": "44d6fad6-3079-415b-8fc1-9059b70b785f", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 550, - "trimY": 267, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_121.png": { - "ver": "1.0.4", - "uuid": "991b3e38-c437-4e52-a7ac-d305eeada22c", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 659, - "trimY": 265, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_122.png": { - "ver": "1.0.4", - "uuid": "8394826d-fefb-4a3d-be01-adddc6b8aa7d", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 712, - "trimY": 265, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_123.png": { - "ver": "1.0.4", - "uuid": "248bcdf1-a271-4e9f-9d7b-9f39a210b5c2", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 659, - "trimY": 321, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_124.png": { - "ver": "1.0.4", - "uuid": "a46c8ee5-2fac-412e-8e85-3d8c4f2d41fa", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 712, - "trimY": 321, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_125.png": { - "ver": "1.0.4", - "uuid": "16c25261-26ca-43e6-8f35-2d2a4f109ebd", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 765, - "trimY": 265, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_126.png": { - "ver": "1.0.4", - "uuid": "4135a871-d9e4-409c-97d7-1841f05ea949", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 765, - "trimY": 321, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_127.png": { - "ver": "1.0.4", - "uuid": "eca0a7dd-904c-4ab7-ad6e-3d4c88c8bb11", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 818, - "trimY": 265, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_128.png": { - "ver": "1.0.4", - "uuid": "33d548b3-571b-42bb-8f34-8b0d8a27addc", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 818, - "trimY": 321, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_129.png": { - "ver": "1.0.4", - "uuid": "e803cdd8-5d2b-4938-b7b9-264eace2b60c", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 871, - "trimY": 265, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_130.png": { - "ver": "1.0.4", - "uuid": "c26fc1b2-3c38-42d1-bf18-9ac54c948a85", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 871, - "trimY": 321, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_131.png": { - "ver": "1.0.4", - "uuid": "a4b053c5-69ef-43d7-96bd-b15b1f330f54", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 924, - "trimY": 265, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_132.png": { - "ver": "1.0.4", - "uuid": "3b3570e1-95d5-4039-b7c9-022fa243239d", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 924, - "trimY": 321, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_133.png": { - "ver": "1.0.4", - "uuid": "9c8f31c4-a203-4546-9955-04c4dc515a96", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 712, - "trimY": 377, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_134.png": { - "ver": "1.0.4", - "uuid": "2ae1ffdd-cc05-4ac6-96a1-aafcf44f6a4e", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 768, - "trimY": 377, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_135.png": { - "ver": "1.0.4", - "uuid": "13985b02-095f-4fac-b708-18725b609bd3", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 601, - "trimY": 601, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_136.png": { - "ver": "1.0.4", - "uuid": "0eb6347c-8e7e-466c-94d8-3e7edbd3af53", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 497, - "trimY": 658, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_137.png": { - "ver": "1.0.4", - "uuid": "02b205c4-c02a-4e0d-9dd0-5634e766866f", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 550, - "trimY": 658, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_138.png": { - "ver": "1.0.4", - "uuid": "c59c34c8-8d85-48ba-8fa3-c5f6a0f12aa0", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 603, - "trimY": 657, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_139.png": { - "ver": "1.0.4", - "uuid": "fbbd41a4-bb92-4727-afd6-bf6f9ede1d34", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1640, - "trimY": 157, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_140.png": { - "ver": "1.0.4", - "uuid": "695cc877-af14-413e-916f-c0a36a7f3ac6", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 497, - "trimY": 714, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_141.png": { - "ver": "1.0.4", - "uuid": "149438e2-51bd-473f-a5fd-f9806e66341b", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 553, - "trimY": 714, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_142.png": { - "ver": "1.0.4", - "uuid": "f29d3f5c-4c09-4fc5-8fe3-a689b98da298", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 606, - "trimY": 713, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_143.png": { - "ver": "1.0.4", - "uuid": "cdff77ff-8c93-4b35-8e6a-0d94d224b0b6", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 495, - "trimY": 767, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_144.png": { - "ver": "1.0.4", - "uuid": "d333b6e7-806b-43a0-983e-b06e8217bbe8", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 548, - "trimY": 770, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_145.png": { - "ver": "1.0.4", - "uuid": "28582b2f-6d45-4acf-a86c-d37ac08bdc65", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 824, - "trimY": 377, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_146.png": { - "ver": "1.0.4", - "uuid": "5326a1d4-941f-46bb-abff-b0265412839e", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 880, - "trimY": 377, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_147.png": { - "ver": "1.0.4", - "uuid": "9058092a-4226-4d90-bcdc-149fa9a61552", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 707, - "trimY": 430, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_148.png": { - "ver": "1.0.4", - "uuid": "d1750054-1fc0-4104-a1ef-8b380f5d6bcf", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 763, - "trimY": 430, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_149.png": { - "ver": "1.0.4", - "uuid": "cdb75214-74f3-4332-8602-389b6777906a", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 711, - "trimY": 483, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_150.png": { - "ver": "1.0.4", - "uuid": "fc3448dc-9f3c-4ad8-bb50-bed750504604", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 819, - "trimY": 430, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_151.png": { - "ver": "1.0.4", - "uuid": "d230fbf4-9fb2-4f1e-bd53-d921bb262bcb", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 711, - "trimY": 539, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_152.png": { - "ver": "1.0.4", - "uuid": "e0ae8f5c-0c41-4279-bc4a-dd0ded0251e5", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 764, - "trimY": 483, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_153.png": { - "ver": "1.0.4", - "uuid": "4ba4cee1-7c22-4859-b319-acb97463181d", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 875, - "trimY": 430, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_154.png": { - "ver": "1.0.4", - "uuid": "4ae98f6b-012e-4daa-ac4d-f12b4fc688f0", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 764, - "trimY": 539, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_155.png": { - "ver": "1.0.4", - "uuid": "23e3928d-1ade-4467-be50-67d710d8dfa4", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 817, - "trimY": 483, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_156.png": { - "ver": "1.0.4", - "uuid": "40cf66f7-4b14-46b3-ae91-263cb1a20d2a", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 817, - "trimY": 539, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_157.png": { - "ver": "1.0.4", - "uuid": "75b99f65-deb7-49c2-8f3b-82b2057d136d", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 870, - "trimY": 483, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_158.png": { - "ver": "1.0.4", - "uuid": "5d78a726-782a-43f0-b32f-de795a417762", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 870, - "trimY": 539, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_159.png": { - "ver": "1.0.4", - "uuid": "a1009de0-2193-48ba-949e-f90fa720ec24", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 707, - "trimY": 595, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_160.png": { - "ver": "1.0.4", - "uuid": "c7b65647-55f4-4704-bd6b-1f09efbba42a", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 760, - "trimY": 595, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_161.png": { - "ver": "1.0.4", - "uuid": "fd069056-4e48-47d5-b0a7-fd73f6856013", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 813, - "trimY": 595, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_162.png": { - "ver": "1.0.4", - "uuid": "6b1f0ca9-fe99-4492-8a1b-c37fdb5ce8ea", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 866, - "trimY": 595, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_163.png": { - "ver": "1.0.4", - "uuid": "b1555440-763c-41e9-9bf9-97aa72ebfca3", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 709, - "trimY": 651, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_164.png": { - "ver": "1.0.4", - "uuid": "6cf7b888-65ce-4098-b31c-23222a98a4bf", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 762, - "trimY": 651, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_165.png": { - "ver": "1.0.4", - "uuid": "461f76c1-445d-4886-88f6-194979697830", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 815, - "trimY": 651, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_166.png": { - "ver": "1.0.4", - "uuid": "76db5390-0436-4bc2-91a9-a7189e74ea10", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 868, - "trimY": 651, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_167.png": { - "ver": "1.0.4", - "uuid": "6a96c333-8027-47e7-b30c-27d74edba581", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 712, - "trimY": 707, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_168.png": { - "ver": "1.0.4", - "uuid": "fbce83e2-cd62-4d44-b672-6f7f8d0dde99", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 765, - "trimY": 707, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_169.png": { - "ver": "1.0.4", - "uuid": "a38bb4f4-b07b-4302-bae8-91bfd353bbd2", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 818, - "trimY": 707, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_170.png": { - "ver": "1.0.4", - "uuid": "4455e17c-0fe5-4a5c-be2e-25f1c285f635", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 871, - "trimY": 707, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_171.png": { - "ver": "1.0.4", - "uuid": "d267ec66-7d30-47b0-a531-0c47e5f09bbc", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 997, - "trimY": 213, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_172.png": { - "ver": "1.0.4", - "uuid": "ce085359-ace4-43e5-8713-03a80dba533b", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 936, - "trimY": 377, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_173.png": { - "ver": "1.0.4", - "uuid": "66ac9f92-ef29-4e49-ba10-bdb9735176fe", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 931, - "trimY": 433, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Atk2_174.png": { - "ver": "1.0.4", - "uuid": "63dcc2ba-2226-4c6f-b77b-6f9c0deece96", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 550, - "trimY": 267, - "width": 53, - "height": 56, - "rawWidth": 53, - "rawHeight": 56, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, "SoldierFireGhost_Atked1_00.png": { "ver": "1.0.4", "uuid": "39aaeff6-3116-4e12-8ec4-9362a8a2fea2", @@ -4637,8 +787,8 @@ "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 330, - "trimY": 782, + "trimX": 424, + "trimY": 170, "width": 44, "height": 54, "rawWidth": 44, @@ -4656,11 +806,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 436, - "trimY": 958, + "trimX": 105, + "trimY": 654, "width": 44, "height": 54, "rawWidth": 44, @@ -4678,11 +828,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1053, - "trimY": 222, + "trimX": 122, + "trimY": 376, "width": 44, "height": 54, "rawWidth": 44, @@ -4703,8 +853,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1039, - "trimY": 372, + "trimX": 149, + "trimY": 654, "width": 44, "height": 54, "rawWidth": 44, @@ -4725,8 +875,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1077, - "trimY": 266, + "trimX": 166, + "trimY": 376, "width": 44, "height": 54, "rawWidth": 44, @@ -4747,8 +897,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1630, - "trimY": 316, + "trimX": 193, + "trimY": 654, "width": 44, "height": 54, "rawWidth": 44, @@ -4769,8 +919,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1630, - "trimY": 370, + "trimX": 183, + "trimY": 322, "width": 44, "height": 54, "rawWidth": 44, @@ -4791,8 +941,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 973, - "trimY": 486, + "trimX": 210, + "trimY": 376, "width": 44, "height": 54, "rawWidth": 44, @@ -4813,8 +963,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 973, - "trimY": 540, + "trimX": 227, + "trimY": 322, "width": 44, "height": 54, "rawWidth": 44, @@ -4835,8 +985,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1017, - "trimY": 486, + "trimX": 226, + "trimY": 430, "width": 44, "height": 54, "rawWidth": 44, @@ -4857,8 +1007,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1017, - "trimY": 540, + "trimX": 226, + "trimY": 484, "width": 44, "height": 54, "rawWidth": 44, @@ -4879,8 +1029,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1061, - "trimY": 479, + "trimX": 226, + "trimY": 538, "width": 44, "height": 54, "rawWidth": 44, @@ -4901,8 +1051,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1061, - "trimY": 533, + "trimX": 226, + "trimY": 592, "width": 44, "height": 54, "rawWidth": 44, @@ -4923,8 +1073,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1115, - "trimY": 423, + "trimX": 254, + "trimY": 376, "width": 44, "height": 54, "rawWidth": 44, @@ -4945,8 +1095,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1662, - "trimY": 424, + "trimX": 270, + "trimY": 430, "width": 44, "height": 54, "rawWidth": 44, @@ -4967,8 +1117,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1105, - "trimY": 479, + "trimX": 270, + "trimY": 484, "width": 44, "height": 54, "rawWidth": 44, @@ -4989,8 +1139,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1105, - "trimY": 533, + "trimX": 270, + "trimY": 538, "width": 44, "height": 54, "rawWidth": 44, @@ -5011,8 +1161,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1149, - "trimY": 477, + "trimX": 270, + "trimY": 592, "width": 44, "height": 54, "rawWidth": 44, @@ -5033,8 +1183,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1149, - "trimY": 531, + "trimX": 284, + "trimY": 646, "width": 44, "height": 54, "rawWidth": 44, @@ -5052,11 +1202,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": false, + "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 1667, - "trimY": 54, + "trimX": 942, + "trimY": 255, "width": 39, "height": 53, "rawWidth": 39, @@ -5077,8 +1227,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 987, - "trimY": 433, + "trimX": 302, + "trimY": 216, "width": 39, "height": 53, "rawWidth": 39, @@ -5099,8 +1249,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1076, - "trimY": 426, + "trimX": 341, + "trimY": 214, "width": 39, "height": 53, "rawWidth": 39, @@ -5121,8 +1271,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1593, - "trimY": 475, + "trimX": 380, + "trimY": 210, "width": 39, "height": 53, "rawWidth": 39, @@ -5140,11 +1290,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": false, + "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 1593, - "trimY": 528, + "trimX": 244, + "trimY": 268, "width": 39, "height": 53, "rawWidth": 39, @@ -5165,8 +1315,8 @@ "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 1061, - "trimY": 587, + "trimX": 297, + "trimY": 269, "width": 39, "height": 53, "rawWidth": 39, @@ -5187,8 +1337,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1114, - "trimY": 587, + "trimX": 350, + "trimY": 267, "width": 39, "height": 53, "rawWidth": 39, @@ -5209,8 +1359,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 598, - "trimY": 879, + "trimX": 389, + "trimY": 263, "width": 39, "height": 53, "rawWidth": 39, @@ -5228,11 +1378,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 712, - "trimY": 763, + "trimX": 898, + "trimY": 260, "width": 39, "height": 53, "rawWidth": 39, @@ -5253,8 +1403,8 @@ "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 765, - "trimY": 763, + "trimX": 937, + "trimY": 294, "width": 39, "height": 53, "rawWidth": 39, @@ -5272,11 +1422,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 818, - "trimY": 763, + "trimX": 345, + "trimY": 367, "width": 39, "height": 53, "rawWidth": 39, @@ -5294,11 +1444,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 871, - "trimY": 763, + "trimX": 375, + "trimY": 632, "width": 39, "height": 53, "rawWidth": 39, @@ -5319,8 +1469,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 919, - "trimY": 595, + "trimX": 408, + "trimY": 420, "width": 39, "height": 53, "rawWidth": 39, @@ -5341,8 +1491,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 921, - "trimY": 648, + "trimX": 408, + "trimY": 473, "width": 39, "height": 53, "rawWidth": 39, @@ -5360,11 +1510,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1061, - "trimY": 626, + "trimX": 408, + "trimY": 526, "width": 39, "height": 53, "rawWidth": 39, @@ -5382,11 +1532,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1060, - "trimY": 665, + "trimX": 408, + "trimY": 579, "width": 39, "height": 53, "rawWidth": 39, @@ -5407,8 +1557,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 924, - "trimY": 701, + "trimX": 414, + "trimY": 632, "width": 39, "height": 53, "rawWidth": 39, @@ -5426,11 +1576,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": false, + "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 924, - "trimY": 754, + "trimX": 475, + "trimY": 313, "width": 39, "height": 53, "rawWidth": 39, @@ -5448,11 +1598,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": false, + "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 1114, - "trimY": 640, + "trimX": 528, + "trimY": 313, "width": 39, "height": 53, "rawWidth": 39, @@ -5473,8 +1623,8 @@ "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 1207, - "trimY": 793, + "trimX": 581, + "trimY": 313, "width": 39, "height": 53, "rawWidth": 39, @@ -5495,8 +1645,8 @@ "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 1260, - "trimY": 793, + "trimX": 634, + "trimY": 313, "width": 39, "height": 53, "rawWidth": 39, @@ -5517,8 +1667,8 @@ "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 1313, - "trimY": 793, + "trimX": 687, + "trimY": 313, "width": 39, "height": 53, "rawWidth": 39, @@ -5539,8 +1689,8 @@ "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 1366, - "trimY": 793, + "trimX": 740, + "trimY": 313, "width": 39, "height": 53, "rawWidth": 39, @@ -5561,8 +1711,8 @@ "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 1419, - "trimY": 793, + "trimX": 793, + "trimY": 313, "width": 39, "height": 53, "rawWidth": 39, @@ -5583,8 +1733,8 @@ "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 1472, - "trimY": 793, + "trimX": 846, + "trimY": 313, "width": 39, "height": 53, "rawWidth": 39, @@ -5602,11 +1752,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1525, - "trimY": 793, + "trimX": 447, + "trimY": 420, "width": 39, "height": 53, "rawWidth": 39, @@ -5624,11 +1774,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1578, - "trimY": 793, + "trimX": 447, + "trimY": 473, "width": 39, "height": 53, "rawWidth": 39, @@ -5646,11 +1796,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1631, - "trimY": 793, + "trimX": 447, + "trimY": 526, "width": 39, "height": 53, "rawWidth": 39, @@ -5668,11 +1818,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1207, - "trimY": 832, + "trimX": 447, + "trimY": 579, "width": 39, "height": 53, "rawWidth": 39, @@ -5690,11 +1840,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1260, - "trimY": 832, + "trimX": 453, + "trimY": 632, "width": 39, "height": 53, "rawWidth": 39, @@ -5712,11 +1862,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1313, - "trimY": 832, + "trimX": 815, + "trimY": 458, "width": 39, "height": 53, "rawWidth": 39, @@ -5734,11 +1884,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1366, - "trimY": 832, + "trimX": 862, + "trimY": 405, "width": 39, "height": 53, "rawWidth": 39, @@ -5756,11 +1906,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1419, - "trimY": 832, + "trimX": 768, + "trimY": 564, "width": 39, "height": 53, "rawWidth": 39, @@ -5778,11 +1928,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1472, - "trimY": 832, + "trimX": 815, + "trimY": 511, "width": 39, "height": 53, "rawWidth": 39, @@ -5800,11 +1950,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1525, - "trimY": 832, + "trimX": 854, + "trimY": 458, "width": 39, "height": 53, "rawWidth": 39, @@ -5822,11 +1972,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1578, - "trimY": 832, + "trimX": 807, + "trimY": 564, "width": 39, "height": 53, "rawWidth": 39, @@ -5844,11 +1994,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1631, - "trimY": 832, + "trimX": 854, + "trimY": 511, "width": 39, "height": 53, "rawWidth": 39, @@ -5866,11 +2016,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1207, - "trimY": 871, + "trimX": 846, + "trimY": 564, "width": 39, "height": 53, "rawWidth": 39, @@ -5888,11 +2038,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1260, - "trimY": 871, + "trimX": 492, + "trimY": 617, "width": 39, "height": 53, "rawWidth": 39, @@ -5913,8 +2063,8 @@ "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 1313, - "trimY": 871, + "trimX": 492, + "trimY": 670, "width": 39, "height": 53, "rawWidth": 39, @@ -5932,11 +2082,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1366, - "trimY": 871, + "trimX": 531, + "trimY": 617, "width": 39, "height": 53, "rawWidth": 39, @@ -5957,8 +2107,8 @@ "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 1419, - "trimY": 871, + "trimX": 545, + "trimY": 670, "width": 39, "height": 53, "rawWidth": 39, @@ -5976,11 +2126,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1472, - "trimY": 871, + "trimX": 570, + "trimY": 617, "width": 39, "height": 53, "rawWidth": 39, @@ -6001,8 +2151,8 @@ "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 1525, - "trimY": 871, + "trimX": 598, + "trimY": 670, "width": 39, "height": 53, "rawWidth": 39, @@ -6020,11 +2170,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1578, - "trimY": 871, + "trimX": 609, + "trimY": 617, "width": 39, "height": 53, "rawWidth": 39, @@ -6042,11 +2192,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1631, - "trimY": 871, + "trimX": 648, + "trimY": 617, "width": 39, "height": 53, "rawWidth": 39, @@ -6064,11 +2214,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": false, + "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 604, - "trimY": 770, + "trimX": 651, + "trimY": 670, "width": 39, "height": 53, "rawWidth": 39, @@ -6089,8 +2239,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 604, - "trimY": 823, + "trimX": 687, + "trimY": 617, "width": 39, "height": 53, "rawWidth": 39, @@ -6108,11 +2258,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": false, + "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 878, - "trimY": 802, + "trimX": 704, + "trimY": 670, "width": 39, "height": 53, "rawWidth": 39, @@ -6130,11 +2280,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 690, - "trimY": 855, + "trimX": 726, + "trimY": 617, "width": 39, "height": 53, "rawWidth": 39, @@ -6155,8 +2305,8 @@ "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 743, - "trimY": 855, + "trimX": 757, + "trimY": 670, "width": 39, "height": 53, "rawWidth": 39, @@ -6174,11 +2324,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 796, - "trimY": 855, + "trimX": 765, + "trimY": 617, "width": 39, "height": 53, "rawWidth": 39, @@ -6196,11 +2346,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 849, - "trimY": 855, + "trimX": 804, + "trimY": 617, "width": 39, "height": 53, "rawWidth": 39, @@ -6221,8 +2371,8 @@ "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 902, - "trimY": 860, + "trimX": 810, + "trimY": 670, "width": 39, "height": 53, "rawWidth": 39, @@ -6240,11 +2390,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 690, - "trimY": 947, + "trimX": 843, + "trimY": 617, "width": 39, "height": 53, "rawWidth": 39, @@ -6265,8 +2415,8 @@ "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 743, - "trimY": 947, + "trimX": 863, + "trimY": 670, "width": 39, "height": 53, "rawWidth": 39, @@ -6284,11 +2434,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 796, - "trimY": 947, + "trimX": 882, + "trimY": 617, "width": 39, "height": 53, "rawWidth": 39, @@ -6306,11 +2456,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": false, + "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 931, - "trimY": 899, + "trimX": 916, + "trimY": 670, "width": 39, "height": 53, "rawWidth": 39, @@ -6331,8 +2481,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 849, - "trimY": 947, + "trimX": 885, + "trimY": 564, "width": 39, "height": 53, "rawWidth": 39, @@ -6353,8 +2503,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 888, - "trimY": 946, + "trimX": 921, + "trimY": 617, "width": 39, "height": 53, "rawWidth": 39, @@ -6372,11 +2522,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 955, - "trimY": 860, + "trimX": 969, + "trimY": 333, "width": 39, "height": 53, "rawWidth": 39, @@ -6397,8 +2547,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 970, - "trimY": 899, + "trimX": 969, + "trimY": 386, "width": 39, "height": 53, "rawWidth": 39, @@ -6416,11 +2566,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1058, - "trimY": 848, + "trimX": 969, + "trimY": 439, "width": 39, "height": 53, "rawWidth": 39, @@ -6438,11 +2588,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1009, - "trimY": 909, + "trimX": 969, + "trimY": 492, "width": 39, "height": 53, "rawWidth": 39, @@ -6460,11 +2610,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1109, - "trimY": 905, + "trimX": 969, + "trimY": 545, "width": 39, "height": 53, "rawWidth": 39, @@ -6485,8 +2635,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1162, - "trimY": 903, + "trimX": 969, + "trimY": 598, "width": 39, "height": 53, "rawWidth": 39, @@ -6504,11 +2654,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1298, - "trimY": 957, + "trimX": 969, + "trimY": 651, "width": 39, "height": 53, "rawWidth": 39, @@ -6526,11 +2676,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1351, - "trimY": 957, + "trimX": 893, + "trimY": 458, "width": 39, "height": 53, "rawWidth": 39, @@ -6548,11 +2698,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1404, - "trimY": 957, + "trimX": 893, + "trimY": 511, "width": 39, "height": 53, "rawWidth": 39, @@ -6570,11 +2720,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1457, - "trimY": 957, + "trimX": 924, + "trimY": 564, "width": 39, "height": 53, "rawWidth": 39, @@ -6592,11 +2742,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1510, - "trimY": 957, + "trimX": 901, + "trimY": 333, "width": 39, "height": 53, "rawWidth": 39, @@ -6614,11 +2764,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1563, - "trimY": 957, + "trimX": 901, + "trimY": 386, "width": 39, "height": 53, "rawWidth": 39, @@ -6636,11 +2786,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": false, + "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 1667, - "trimY": 54, + "trimX": 942, + "trimY": 255, "width": 39, "height": 53, "rawWidth": 39, @@ -6652,1744 +2802,6 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Dying_00.png": { - "ver": "1.0.4", - "uuid": "99db148a-4380-407d-a3fe-3d56eefaad1d", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 0, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_01.png": { - "ver": "1.0.4", - "uuid": "79ed583c-75d9-4562-a010-b328213bfd15", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 103, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_02.png": { - "ver": "1.0.4", - "uuid": "337d7b16-b5f7-4220-8217-529d0efefd3f", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 55, - "trimY": 0, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_03.png": { - "ver": "1.0.4", - "uuid": "43e297ef-c191-4e6e-90b9-fed0130a53d4", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 206, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_04.png": { - "ver": "1.0.4", - "uuid": "552e95ab-5253-48d5-8411-9d2b3d7843cc", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 55, - "trimY": 103, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_05.png": { - "ver": "1.0.4", - "uuid": "ca18916d-3ef2-459f-9362-8b0611daebae", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 110, - "trimY": 0, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_06.png": { - "ver": "1.0.4", - "uuid": "2c253023-e23b-4db4-956d-a74bafa7207d", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 309, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_07.png": { - "ver": "1.0.4", - "uuid": "5f6b4e95-464f-41f6-81be-137fa613bbba", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 55, - "trimY": 206, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_08.png": { - "ver": "1.0.4", - "uuid": "5b16759c-1ebc-4f14-a33d-5314589a4fa9", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 110, - "trimY": 103, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_09.png": { - "ver": "1.0.4", - "uuid": "265ad10b-a70a-4c3b-8bab-649610956d36", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 165, - "trimY": 0, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_10.png": { - "ver": "1.0.4", - "uuid": "3e3d35a3-d6a4-4a55-b0fd-838d39b888a5", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 412, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_11.png": { - "ver": "1.0.4", - "uuid": "ed72e246-6bf3-4f34-86f7-00495652308e", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 55, - "trimY": 309, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_12.png": { - "ver": "1.0.4", - "uuid": "e629f0ee-7135-40b8-802e-d5b496812f1b", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 110, - "trimY": 206, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_13.png": { - "ver": "1.0.4", - "uuid": "352c953d-2934-41f2-8bf3-f790aa74d93a", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 165, - "trimY": 103, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_14.png": { - "ver": "1.0.4", - "uuid": "0b42bb25-4745-45be-b7c8-3b51cf7ea57f", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 220, - "trimY": 0, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_15.png": { - "ver": "1.0.4", - "uuid": "4a2ce5ba-4ec4-46df-a54a-e1fa39cb3c79", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 515, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_16.png": { - "ver": "1.0.4", - "uuid": "8c9b7272-a91f-4064-bce1-f32358f2b863", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 55, - "trimY": 412, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_17.png": { - "ver": "1.0.4", - "uuid": "e2d9ca32-cd3e-4ba9-a494-8bc6d13706b0", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 110, - "trimY": 309, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_18.png": { - "ver": "1.0.4", - "uuid": "4dc55afa-4228-466d-9b6c-484908ccf3f7", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 165, - "trimY": 206, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_19.png": { - "ver": "1.0.4", - "uuid": "3fd55188-63f6-463b-8212-85f935f78fb9", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 220, - "trimY": 103, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_20.png": { - "ver": "1.0.4", - "uuid": "53ad54c8-c48d-4108-a055-abdaa3cec609", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 275, - "trimY": 0, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_21.png": { - "ver": "1.0.4", - "uuid": "3c9059cf-cfcc-475f-8c7f-1e575d4e15bd", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 618, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_22.png": { - "ver": "1.0.4", - "uuid": "a8c38e71-8e90-444c-b906-403991180ae4", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 55, - "trimY": 515, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_23.png": { - "ver": "1.0.4", - "uuid": "611963c0-ca50-416e-9d61-72beeea6235d", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 110, - "trimY": 412, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_24.png": { - "ver": "1.0.4", - "uuid": "64378ff4-eedb-4425-a1b3-dd387e1028db", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 165, - "trimY": 309, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_25.png": { - "ver": "1.0.4", - "uuid": "aff568ca-eb2e-4907-b2d2-75b3f8969dfb", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 220, - "trimY": 206, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_26.png": { - "ver": "1.0.4", - "uuid": "0ad92585-cd23-40d2-8aaa-355a751ade2b", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 275, - "trimY": 103, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_27.png": { - "ver": "1.0.4", - "uuid": "d8da1053-81da-44b5-9011-b018cf4336c6", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 330, - "trimY": 0, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_28.png": { - "ver": "1.0.4", - "uuid": "f35ced65-93de-4d59-b78d-0b0b1b8d8583", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 721, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_29.png": { - "ver": "1.0.4", - "uuid": "58cd1296-d767-4938-935f-368a0429c504", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 55, - "trimY": 618, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_30.png": { - "ver": "1.0.4", - "uuid": "b4b846d1-afd7-40a9-b2a9-049fd22114dc", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 110, - "trimY": 515, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_31.png": { - "ver": "1.0.4", - "uuid": "f4fd15ff-1291-4110-a1b3-56b81bd2473b", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 165, - "trimY": 412, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_32.png": { - "ver": "1.0.4", - "uuid": "85dfd0ad-3aa7-4ce3-a187-efacf56de90a", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 220, - "trimY": 309, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_33.png": { - "ver": "1.0.4", - "uuid": "7ca74379-236b-45d1-a2ee-93d03aec9c65", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 275, - "trimY": 206, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_34.png": { - "ver": "1.0.4", - "uuid": "6c2a888f-077c-4f8f-ba55-6c4cb7fea50d", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 330, - "trimY": 103, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_35.png": { - "ver": "1.0.4", - "uuid": "34b4c76e-6b84-4b92-8bda-b7d20d17a147", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 385, - "trimY": 0, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_36.png": { - "ver": "1.0.4", - "uuid": "6a56fd3a-984f-4026-8938-fb6b146baad4", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 824, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_37.png": { - "ver": "1.0.4", - "uuid": "c820c538-a728-4ab6-a8a5-64f270a1ee39", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 55, - "trimY": 721, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_38.png": { - "ver": "1.0.4", - "uuid": "67cb8604-caac-4879-b083-8d3806a55115", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 110, - "trimY": 618, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_39.png": { - "ver": "1.0.4", - "uuid": "f62792d6-d8c2-41ff-9741-383f8b69ec5a", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 165, - "trimY": 515, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_40.png": { - "ver": "1.0.4", - "uuid": "0dd4b926-49b5-4112-8098-6aa6701b1a7b", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 220, - "trimY": 412, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_41.png": { - "ver": "1.0.4", - "uuid": "90d1e838-587c-4f41-aea1-4f9d3dffd125", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 275, - "trimY": 309, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_42.png": { - "ver": "1.0.4", - "uuid": "52ca6c23-fd05-45a0-a2cf-e188fd25890a", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 330, - "trimY": 206, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_43.png": { - "ver": "1.0.4", - "uuid": "530ac16e-8ce0-466c-81be-0ca176b86011", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 385, - "trimY": 103, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_44.png": { - "ver": "1.0.4", - "uuid": "e79f8adf-f7ca-41da-82c8-e420ae1e9bb2", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 440, - "trimY": 0, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_45.png": { - "ver": "1.0.4", - "uuid": "aaca1b1b-4bb1-4aa8-b2df-5440cc6c211b", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 55, - "trimY": 824, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_46.png": { - "ver": "1.0.4", - "uuid": "a17c415e-4354-45c7-85f8-208d47419793", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 0, - "trimY": 927, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_47.png": { - "ver": "1.0.4", - "uuid": "22afe4bf-6f82-4c70-982b-c04b7c41d867", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 110, - "trimY": 721, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_48.png": { - "ver": "1.0.4", - "uuid": "8008eaba-659f-4da5-a2fc-25add3173ca5", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 165, - "trimY": 618, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_49.png": { - "ver": "1.0.4", - "uuid": "b0bb1d45-6643-4631-bf6a-999d69af0859", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 220, - "trimY": 515, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_50.png": { - "ver": "1.0.4", - "uuid": "72598b23-6fc9-4cb5-8285-e1942e3cd3a7", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 275, - "trimY": 412, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_51.png": { - "ver": "1.0.4", - "uuid": "56b3e960-f6c1-45d7-abe3-2a7bcf1c3813", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 330, - "trimY": 309, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_52.png": { - "ver": "1.0.4", - "uuid": "59b695d1-d763-403f-a9b7-5a266f8959ee", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 385, - "trimY": 206, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_53.png": { - "ver": "1.0.4", - "uuid": "76f5dc36-76f1-447d-94fc-52ab068564a9", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 440, - "trimY": 103, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_54.png": { - "ver": "1.0.4", - "uuid": "d0d9160f-b77f-4d1b-9fde-9106ba04c387", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 495, - "trimY": 0, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_55.png": { - "ver": "1.0.4", - "uuid": "eb8dd8e6-c412-4e28-9b1c-28224c321e36", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 110, - "trimY": 824, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_56.png": { - "ver": "1.0.4", - "uuid": "ce87605c-81ba-4329-8516-592bc84403f1", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 165, - "trimY": 721, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_57.png": { - "ver": "1.0.4", - "uuid": "3891e56e-5045-46aa-bbbe-6fe8f3898032", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 220, - "trimY": 618, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_58.png": { - "ver": "1.0.4", - "uuid": "c1e7fed5-c636-4322-b8c6-6ec75e773762", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 275, - "trimY": 515, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_59.png": { - "ver": "1.0.4", - "uuid": "890b2cb9-8e87-4be4-a8bf-829dff406c85", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 330, - "trimY": 412, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_60.png": { - "ver": "1.0.4", - "uuid": "5765c1d6-6527-4371-97a8-a413540da676", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 385, - "trimY": 309, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_61.png": { - "ver": "1.0.4", - "uuid": "65f70e4a-005e-41d7-89ac-42b2055c2e58", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 440, - "trimY": 206, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_62.png": { - "ver": "1.0.4", - "uuid": "0163adb2-39cf-49cb-8917-ff5c718ce3ce", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 495, - "trimY": 103, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_63.png": { - "ver": "1.0.4", - "uuid": "7fa6b81b-1292-418d-a9c3-4994fdae451b", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 550, - "trimY": 0, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_64.png": { - "ver": "1.0.4", - "uuid": "a5cd1442-2de1-4938-bb0e-d90b86936faf", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 165, - "trimY": 824, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_65.png": { - "ver": "1.0.4", - "uuid": "6b513902-4fb3-47db-b0eb-be14df917980", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 103, - "trimY": 927, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_66.png": { - "ver": "1.0.4", - "uuid": "14194adc-46fe-4a35-b153-a1e867420362", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 220, - "trimY": 721, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_67.png": { - "ver": "1.0.4", - "uuid": "b53d2367-61fa-4d02-ae1a-6cda692a9f80", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 275, - "trimY": 618, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_68.png": { - "ver": "1.0.4", - "uuid": "b41f2927-4462-432f-9751-5fbc14455880", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 330, - "trimY": 515, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_69.png": { - "ver": "1.0.4", - "uuid": "993661e7-5d9d-449a-a7bb-c73a82b37f33", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 385, - "trimY": 412, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_70.png": { - "ver": "1.0.4", - "uuid": "65e344be-d31c-4451-bb87-fe8a7dafe09b", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 440, - "trimY": 309, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_71.png": { - "ver": "1.0.4", - "uuid": "7c4f45e1-87d8-4780-901e-ab680fa442d0", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 495, - "trimY": 206, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_72.png": { - "ver": "1.0.4", - "uuid": "04f7f1ff-c4e4-4a3f-920a-ab84ca5d2b0a", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 550, - "trimY": 103, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_73.png": { - "ver": "1.0.4", - "uuid": "3e23b5e8-c570-44cb-afed-807c4410ab37", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 605, - "trimY": 0, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_74.png": { - "ver": "1.0.4", - "uuid": "8a5996bb-5ac4-4994-a7a7-373bf1f0c55f", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 220, - "trimY": 824, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_75.png": { - "ver": "1.0.4", - "uuid": "0d27cdc2-152e-4a2b-aeb4-8eed2095b699", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 275, - "trimY": 721, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_76.png": { - "ver": "1.0.4", - "uuid": "e6bc108d-7fc0-4486-9d33-6cc797b751d1", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 330, - "trimY": 618, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_77.png": { - "ver": "1.0.4", - "uuid": "7ba1278d-73df-4585-a203-cadafdf61a5c", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 385, - "trimY": 515, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Dying_78.png": { - "ver": "1.0.4", - "uuid": "c5defaab-5b1b-4792-973e-541cfd3cf825", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 440, - "trimY": 412, - "width": 55, - "height": 103, - "rawWidth": 55, - "rawHeight": 103, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, "SoldierFireGhost_Idle1_00.png": { "ver": "1.0.4", "uuid": "31b10e1f-7433-4c0d-b9a7-576adc0cdb51", @@ -8399,8 +2811,8 @@ "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 381, - "trimY": 836, + "trimX": 942, + "trimY": 208, "width": 47, "height": 53, "rawWidth": 47, @@ -8421,8 +2833,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1083, - "trimY": 370, + "trimX": 58, + "trimY": 656, "width": 47, "height": 53, "rawWidth": 47, @@ -8443,8 +2855,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1153, - "trimY": 585, + "trimX": 237, + "trimY": 646, "width": 47, "height": 53, "rawWidth": 47, @@ -8462,11 +2874,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": false, + "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 596, - "trimY": 932, + "trimX": 419, + "trimY": 214, "width": 47, "height": 53, "rawWidth": 47, @@ -8487,8 +2899,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 963, - "trimY": 700, + "trimX": 428, + "trimY": 261, "width": 47, "height": 53, "rawWidth": 47, @@ -8506,11 +2918,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1060, - "trimY": 704, + "trimX": 475, + "trimY": 260, "width": 47, "height": 53, "rawWidth": 47, @@ -8531,8 +2943,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 963, - "trimY": 753, + "trimX": 522, + "trimY": 260, "width": 47, "height": 53, "rawWidth": 47, @@ -8553,8 +2965,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1153, - "trimY": 638, + "trimX": 569, + "trimY": 260, "width": 47, "height": 53, "rawWidth": 47, @@ -8575,8 +2987,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1113, - "trimY": 693, + "trimX": 616, + "trimY": 260, "width": 47, "height": 53, "rawWidth": 47, @@ -8597,8 +3009,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1113, - "trimY": 746, + "trimX": 663, + "trimY": 260, "width": 47, "height": 53, "rawWidth": 47, @@ -8619,8 +3031,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1160, - "trimY": 691, + "trimX": 710, + "trimY": 260, "width": 47, "height": 53, "rawWidth": 47, @@ -8641,8 +3053,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1160, - "trimY": 744, + "trimX": 757, + "trimY": 260, "width": 47, "height": 53, "rawWidth": 47, @@ -8663,8 +3075,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1307, - "trimY": 687, + "trimX": 804, + "trimY": 260, "width": 47, "height": 53, "rawWidth": 47, @@ -8685,8 +3097,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1307, - "trimY": 740, + "trimX": 851, + "trimY": 260, "width": 47, "height": 53, "rawWidth": 47, @@ -8707,8 +3119,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1354, - "trimY": 687, + "trimX": 271, + "trimY": 308, "width": 47, "height": 53, "rawWidth": 47, @@ -8726,11 +3138,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": false, + "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 1354, - "trimY": 740, + "trimX": 318, + "trimY": 320, "width": 47, "height": 53, "rawWidth": 47, @@ -8751,8 +3163,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1401, - "trimY": 687, + "trimX": 298, + "trimY": 367, "width": 47, "height": 53, "rawWidth": 47, @@ -8773,8 +3185,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1401, - "trimY": 740, + "trimX": 314, + "trimY": 420, "width": 47, "height": 53, "rawWidth": 47, @@ -8795,8 +3207,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1448, - "trimY": 687, + "trimX": 314, + "trimY": 473, "width": 47, "height": 53, "rawWidth": 47, @@ -8817,8 +3229,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1448, - "trimY": 740, + "trimX": 314, + "trimY": 526, "width": 47, "height": 53, "rawWidth": 47, @@ -8839,8 +3251,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1495, - "trimY": 687, + "trimX": 314, + "trimY": 579, "width": 47, "height": 53, "rawWidth": 47, @@ -8858,11 +3270,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": false, + "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 1495, - "trimY": 740, + "trimX": 371, + "trimY": 320, "width": 47, "height": 53, "rawWidth": 47, @@ -8883,8 +3295,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1542, - "trimY": 687, + "trimX": 384, + "trimY": 367, "width": 47, "height": 53, "rawWidth": 47, @@ -8905,8 +3317,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1542, - "trimY": 740, + "trimX": 361, + "trimY": 420, "width": 47, "height": 53, "rawWidth": 47, @@ -8927,8 +3339,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1589, - "trimY": 687, + "trimX": 361, + "trimY": 473, "width": 47, "height": 53, "rawWidth": 47, @@ -8949,8 +3361,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1589, - "trimY": 740, + "trimX": 361, + "trimY": 526, "width": 47, "height": 53, "rawWidth": 47, @@ -8971,8 +3383,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1636, - "trimY": 687, + "trimX": 361, + "trimY": 579, "width": 47, "height": 53, "rawWidth": 47, @@ -8993,8 +3405,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1636, - "trimY": 740, + "trimX": 328, + "trimY": 632, "width": 47, "height": 53, "rawWidth": 47, @@ -9015,8 +3427,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1160, - "trimY": 797, + "trimX": 428, + "trimY": 314, "width": 47, "height": 53, "rawWidth": 47, @@ -9037,8 +3449,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1113, - "trimY": 799, + "trimX": 431, + "trimY": 367, "width": 47, "height": 53, "rawWidth": 47, @@ -9056,11 +3468,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1060, - "trimY": 801, + "trimX": 478, + "trimY": 352, "width": 47, "height": 53, "rawWidth": 47, @@ -9081,8 +3493,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1160, - "trimY": 850, + "trimX": 525, + "trimY": 352, "width": 47, "height": 53, "rawWidth": 47, @@ -9103,8 +3515,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 643, - "trimY": 769, + "trimX": 572, + "trimY": 352, "width": 47, "height": 53, "rawWidth": 47, @@ -9125,8 +3537,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 643, - "trimY": 822, + "trimX": 619, + "trimY": 352, "width": 47, "height": 53, "rawWidth": 47, @@ -9147,8 +3559,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 690, - "trimY": 802, + "trimX": 666, + "trimY": 352, "width": 47, "height": 53, "rawWidth": 47, @@ -9169,8 +3581,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 737, - "trimY": 802, + "trimX": 713, + "trimY": 352, "width": 47, "height": 53, "rawWidth": 47, @@ -9191,8 +3603,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 784, - "trimY": 802, + "trimX": 760, + "trimY": 352, "width": 47, "height": 53, "rawWidth": 47, @@ -9213,8 +3625,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 831, - "trimY": 802, + "trimX": 807, + "trimY": 352, "width": 47, "height": 53, "rawWidth": 47, @@ -9235,8 +3647,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 917, - "trimY": 807, + "trimX": 854, + "trimY": 352, "width": 47, "height": 53, "rawWidth": 47, @@ -9257,8 +3669,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 964, - "trimY": 806, + "trimX": 486, + "trimY": 405, "width": 47, "height": 53, "rawWidth": 47, @@ -9279,8 +3691,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1011, - "trimY": 803, + "trimX": 486, + "trimY": 458, "width": 47, "height": 53, "rawWidth": 47, @@ -9298,11 +3710,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 637, - "trimY": 876, + "trimX": 533, + "trimY": 405, "width": 47, "height": 53, "rawWidth": 47, @@ -9323,8 +3735,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 643, - "trimY": 923, + "trimX": 486, + "trimY": 511, "width": 47, "height": 53, "rawWidth": 47, @@ -9345,8 +3757,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 690, - "trimY": 894, + "trimX": 533, + "trimY": 458, "width": 47, "height": 53, "rawWidth": 47, @@ -9367,8 +3779,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 737, - "trimY": 894, + "trimX": 580, + "trimY": 405, "width": 47, "height": 53, "rawWidth": 47, @@ -9389,8 +3801,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 784, - "trimY": 894, + "trimX": 486, + "trimY": 564, "width": 47, "height": 53, "rawWidth": 47, @@ -9411,8 +3823,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 831, - "trimY": 894, + "trimX": 533, + "trimY": 511, "width": 47, "height": 53, "rawWidth": 47, @@ -9430,11 +3842,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 878, - "trimY": 899, + "trimX": 580, + "trimY": 458, "width": 47, "height": 53, "rawWidth": 47, @@ -9452,11 +3864,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 927, - "trimY": 952, + "trimX": 627, + "trimY": 405, "width": 47, "height": 53, "rawWidth": 47, @@ -9474,11 +3886,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 980, - "trimY": 952, + "trimX": 533, + "trimY": 564, "width": 47, "height": 53, "rawWidth": 47, @@ -9499,8 +3911,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1011, - "trimY": 856, + "trimX": 580, + "trimY": 511, "width": 47, "height": 53, "rawWidth": 47, @@ -9521,8 +3933,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1111, - "trimY": 852, + "trimX": 627, + "trimY": 458, "width": 47, "height": 53, "rawWidth": 47, @@ -9543,8 +3955,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1062, - "trimY": 887, + "trimX": 674, + "trimY": 405, "width": 47, "height": 53, "rawWidth": 47, @@ -9562,11 +3974,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1201, - "trimY": 910, + "trimX": 580, + "trimY": 564, "width": 47, "height": 53, "rawWidth": 47, @@ -9584,11 +3996,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1254, - "trimY": 910, + "trimX": 627, + "trimY": 511, "width": 47, "height": 53, "rawWidth": 47, @@ -9606,11 +4018,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1307, - "trimY": 910, + "trimX": 674, + "trimY": 458, "width": 47, "height": 53, "rawWidth": 47, @@ -9628,11 +4040,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1360, - "trimY": 910, + "trimX": 721, + "trimY": 405, "width": 47, "height": 53, "rawWidth": 47, @@ -9650,11 +4062,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1413, - "trimY": 910, + "trimX": 627, + "trimY": 564, "width": 47, "height": 53, "rawWidth": 47, @@ -9672,11 +4084,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1466, - "trimY": 910, + "trimX": 674, + "trimY": 511, "width": 47, "height": 53, "rawWidth": 47, @@ -9694,11 +4106,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1519, - "trimY": 910, + "trimX": 721, + "trimY": 458, "width": 47, "height": 53, "rawWidth": 47, @@ -9716,11 +4128,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1572, - "trimY": 910, + "trimX": 768, + "trimY": 405, "width": 47, "height": 53, "rawWidth": 47, @@ -9738,11 +4150,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1625, - "trimY": 910, + "trimX": 674, + "trimY": 564, "width": 47, "height": 53, "rawWidth": 47, @@ -9760,11 +4172,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1033, - "trimY": 957, + "trimX": 721, + "trimY": 511, "width": 47, "height": 53, "rawWidth": 47, @@ -9782,11 +4194,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1086, - "trimY": 957, + "trimX": 768, + "trimY": 458, "width": 47, "height": 53, "rawWidth": 47, @@ -9804,11 +4216,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1139, - "trimY": 957, + "trimX": 815, + "trimY": 405, "width": 47, "height": 53, "rawWidth": 47, @@ -9826,11 +4238,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1192, - "trimY": 957, + "trimX": 721, + "trimY": 564, "width": 47, "height": 53, "rawWidth": 47, @@ -9848,11 +4260,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1245, - "trimY": 957, + "trimX": 768, + "trimY": 511, "width": 47, "height": 53, "rawWidth": 47, @@ -9864,109 +4276,131 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_000.png": { + "SoldierFireGhost_InAirIdle1_00.png": { "ver": "1.0.4", - "uuid": "394c1279-7dd8-42bd-98e9-a13266dbbab7", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 604, - "trimY": 217, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_001.png": { - "ver": "1.0.4", - "uuid": "4fbeede1-1ad0-40eb-8a6b-1539690bd149", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 439, - "trimY": 629, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_002.png": { - "ver": "1.0.4", - "uuid": "3ca3c1c5-7081-42dc-998a-fae1b7f3c4c4", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1639, - "trimY": 107, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_003.png": { - "ver": "1.0.4", - "uuid": "28d4ff64-59b0-4a27-950b-839964a4aa21", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 659, - "trimY": 377, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_004.png": { - "ver": "1.0.4", - "uuid": "6c964e15-2b85-4487-8ace-6b426bdcde0e", + "uuid": "1906b14b-f3a2-4dc9-9e0d-99e3b334e67b", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 923, + "trimX": 58, + "trimY": 432, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_InAirIdle1_01.png": { + "ver": "1.0.4", + "uuid": "1b4f284c-be67-403b-9f5d-59aa641d3c92", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 58, + "trimY": 488, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_InAirIdle1_02.png": { + "ver": "1.0.4", + "uuid": "6feb197e-2013-48fd-bbbb-3d2809cb1d63", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 58, + "trimY": 544, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_InAirIdle1_03.png": { + "ver": "1.0.4", + "uuid": "2db4e807-a5d2-4c09-b033-a0ae97e5d0bf", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 58, + "trimY": 600, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_InAirIdle1_04.png": { + "ver": "1.0.4", + "uuid": "73958a6b-31a7-4bb8-babd-1aefba55a793", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 100, + "trimY": 430, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_InAirIdle1_05.png": { + "ver": "1.0.4", + "uuid": "9545ca77-8002-4ad1-a91e-1e343cdf0e0b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 100, "trimY": 486, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -9974,21 +4408,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_005.png": { + "SoldierFireGhost_InAirIdle1_06.png": { "ver": "1.0.4", - "uuid": "e5c936dd-d330-4ea2-ab98-0d4ae2fc24a2", + "uuid": "581e4c15-9de3-4b72-a91a-2e82ac6b092c", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 923, - "trimY": 539, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 100, + "trimY": 542, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -9996,21 +4430,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_006.png": { + "SoldierFireGhost_InAirIdle1_07.png": { "ver": "1.0.4", - "uuid": "12b4e29b-8ae2-4f86-aeab-82df26617224", + "uuid": "4af94082-f36b-4b9e-9077-bd458fd0b188", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 977, - "trimY": 266, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 100, + "trimY": 598, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -10018,21 +4452,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_007.png": { + "SoldierFireGhost_InAirIdle1_08.png": { "ver": "1.0.4", - "uuid": "46e0b4b0-d944-4121-8c59-a137180df027", + "uuid": "5463290d-7b25-4625-8be5-1a16dbe3bd83", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 977, - "trimY": 319, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 142, + "trimY": 430, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -10040,21 +4474,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_008.png": { + "SoldierFireGhost_InAirIdle1_09.png": { "ver": "1.0.4", - "uuid": "bb1b2430-5af0-470c-a4c3-fb6e509ef7c0", + "uuid": "e507775a-1009-47a8-b1a8-8ade0104e4c2", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1027, - "trimY": 266, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 142, + "trimY": 486, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -10062,21 +4496,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_009.png": { + "SoldierFireGhost_InAirIdle1_10.png": { "ver": "1.0.4", - "uuid": "ae75d5ab-585a-407c-a440-2f6e004dfad3", + "uuid": "6583a9e1-92fb-4db2-9437-9d2b26bc5920", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1027, - "trimY": 319, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 142, + "trimY": 542, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -10084,21 +4518,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_010.png": { + "SoldierFireGhost_InAirIdle1_11.png": { "ver": "1.0.4", - "uuid": "590c9cd3-62c3-4f1a-a5ab-cc4d56f3bf28", + "uuid": "b07e2da2-d1f2-4ec8-acdf-92706d0be9e0", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 989, - "trimY": 372, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 142, + "trimY": 598, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -10106,21 +4540,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_011.png": { + "SoldierFireGhost_InAirIdle1_12.png": { "ver": "1.0.4", - "uuid": "71c62ccc-f40d-4399-a0c9-deb76ca07b5c", + "uuid": "dd60bf4f-6b5f-4385-9e46-1e49e6a7cfbe", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1121, - "trimY": 263, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 184, + "trimY": 430, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -10128,21 +4562,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_012.png": { + "SoldierFireGhost_InAirIdle1_13.png": { "ver": "1.0.4", - "uuid": "be7a4db9-2cdd-4b74-a18c-c0b5e4fe8ef9", + "uuid": "46811e43-c874-41d5-8799-6fafc904cd5a", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1171, - "trimY": 263, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 184, + "trimY": 486, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -10150,21 +4584,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_013.png": { + "SoldierFireGhost_InAirIdle1_14.png": { "ver": "1.0.4", - "uuid": "bf09425d-f15b-4d82-a7b8-f660851c1f1f", + "uuid": "0a370e7e-e25f-4faf-9a76-73b246338a4d", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1221, - "trimY": 263, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 184, + "trimY": 542, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -10172,21 +4606,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_014.png": { + "SoldierFireGhost_InAirIdle1_15.png": { "ver": "1.0.4", - "uuid": "a3531505-b898-4441-b89e-48b187325dac", + "uuid": "1f003135-e929-4a05-9029-76e7cb8c76ef", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1271, - "trimY": 263, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 184, + "trimY": 598, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -10194,21 +4628,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_015.png": { + "SoldierFireGhost_InAirIdle1_16.png": { "ver": "1.0.4", - "uuid": "b78b5a5e-c84e-4339-89e5-cb714010ef1f", + "uuid": "b78015ba-98e4-4ccd-9852-a7ec053a0ba4", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1321, - "trimY": 263, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 184, + "trimY": 542, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -10216,21 +4650,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_016.png": { + "SoldierFireGhost_InAirIdle1_17.png": { "ver": "1.0.4", - "uuid": "d99f9d40-2def-43ea-bbd4-5a8ee47c659f", + "uuid": "0589abef-dc0d-4d33-a084-25b273ca1368", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1371, - "trimY": 263, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 184, + "trimY": 486, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -10238,21 +4672,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_017.png": { + "SoldierFireGhost_InAirIdle1_18.png": { "ver": "1.0.4", - "uuid": "61f5dd57-6695-4582-b2c8-db6582af3862", + "uuid": "20542755-bbfa-43cd-b593-e73d121b5ed6", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1421, - "trimY": 263, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 184, + "trimY": 430, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -10260,21 +4694,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_018.png": { + "SoldierFireGhost_InAirIdle1_19.png": { "ver": "1.0.4", - "uuid": "8652aa65-7b23-4689-8677-78adacafe200", + "uuid": "5d5ac5af-3da7-4b22-9183-5885736e2ca7", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1471, - "trimY": 263, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 142, + "trimY": 598, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -10282,21 +4716,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_019.png": { + "SoldierFireGhost_InAirIdle1_20.png": { "ver": "1.0.4", - "uuid": "6e59bd4b-0aec-46a7-ae96-7f405e476225", + "uuid": "47bbe2a2-a983-4aca-8a3e-6cd6df5eee03", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1521, - "trimY": 263, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 142, + "trimY": 542, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -10304,21 +4738,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_020.png": { + "SoldierFireGhost_InAirIdle1_21.png": { "ver": "1.0.4", - "uuid": "47aa92b2-0510-41e3-becc-29dcf3fff063", + "uuid": "6d3fb572-d6af-4b7e-9350-9ff482569127", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1571, - "trimY": 263, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 142, + "trimY": 486, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -10326,1627 +4760,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_021.png": { + "SoldierFireGhost_InAirIdle1_22.png": { "ver": "1.0.4", - "uuid": "148b9f4d-929d-4913-b1b6-254138f173ae", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1621, - "trimY": 266, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_022.png": { - "ver": "1.0.4", - "uuid": "2e687706-225b-4b0f-82f1-a47bc49b3b1a", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1077, - "trimY": 320, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_023.png": { - "ver": "1.0.4", - "uuid": "6ca10553-49b1-4bec-a62d-1cbd1757ec24", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1130, - "trimY": 316, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_024.png": { - "ver": "1.0.4", - "uuid": "ff536dda-b29f-414f-88a2-12ebadc810e8", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1180, - "trimY": 316, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_025.png": { - "ver": "1.0.4", - "uuid": "85ccd35a-bdd6-47b0-8324-386b39c652c7", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1230, - "trimY": 316, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_026.png": { - "ver": "1.0.4", - "uuid": "1bff8165-e0ac-4a19-a659-96b2dd8d9676", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1280, - "trimY": 316, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_027.png": { - "ver": "1.0.4", - "uuid": "44586130-51ac-4853-89d8-f4c2c4776563", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1330, - "trimY": 316, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_028.png": { - "ver": "1.0.4", - "uuid": "40864658-7f60-4650-be99-e9216e38fee5", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1380, - "trimY": 316, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_029.png": { - "ver": "1.0.4", - "uuid": "4445dede-e923-412b-a380-471ba20bd4e5", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1430, - "trimY": 316, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_030.png": { - "ver": "1.0.4", - "uuid": "6cda84b9-08fc-4977-a3d6-731e113b2093", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1480, - "trimY": 316, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_031.png": { - "ver": "1.0.4", - "uuid": "cf3043cc-3e6b-4ee3-88b8-c77c4fd3dbbe", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1530, - "trimY": 316, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_032.png": { - "ver": "1.0.4", - "uuid": "676411cf-6407-4f9a-b685-3c8c6121e6f9", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1580, - "trimY": 316, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_033.png": { - "ver": "1.0.4", - "uuid": "ea868568-e8f4-4364-8f4c-8dbd91658ca9", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1130, - "trimY": 369, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_034.png": { - "ver": "1.0.4", - "uuid": "a147c26d-d6af-4d10-840c-5be1a63901ae", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1180, - "trimY": 369, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_035.png": { - "ver": "1.0.4", - "uuid": "8adb203f-cb42-4047-a4ce-a64c5300d245", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1230, - "trimY": 369, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_036.png": { - "ver": "1.0.4", - "uuid": "eed6c0e9-2eab-43d9-a215-d648c600bc88", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1280, - "trimY": 369, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_037.png": { - "ver": "1.0.4", - "uuid": "5f1a5fb6-c729-4c17-b5a5-a5c020c96341", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1330, - "trimY": 369, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_038.png": { - "ver": "1.0.4", - "uuid": "c883429a-177f-486d-b149-efbc99fefb1b", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1380, - "trimY": 369, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_039.png": { - "ver": "1.0.4", - "uuid": "6605d04c-2576-4c56-b8bd-cd046d7c32b1", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1430, - "trimY": 369, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_040.png": { - "ver": "1.0.4", - "uuid": "2188359f-593d-49fd-b264-6dbebe578760", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1480, - "trimY": 369, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_041.png": { - "ver": "1.0.4", - "uuid": "2087cd10-2543-4f60-99b5-aa12fe15f504", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1530, - "trimY": 369, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_042.png": { - "ver": "1.0.4", - "uuid": "cd351f43-930a-416a-88f9-f4ab386a6b0a", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1580, - "trimY": 369, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_043.png": { - "ver": "1.0.4", - "uuid": "b342d3a0-1c99-4d91-91b4-8902f6aecd00", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1026, - "trimY": 426, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_044.png": { - "ver": "1.0.4", - "uuid": "b1190ef8-a68f-4151-8931-361545040dfc", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1159, - "trimY": 422, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_045.png": { - "ver": "1.0.4", - "uuid": "9829163c-ad79-4bf8-be9a-7fdba036fb1f", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1209, - "trimY": 422, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_046.png": { - "ver": "1.0.4", - "uuid": "0fc273d6-0a1a-4e13-ab3b-103b8a86a0e9", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1259, - "trimY": 422, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_047.png": { - "ver": "1.0.4", - "uuid": "c0cd2e2e-7e2a-4d72-bb89-255855b0684a", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1309, - "trimY": 422, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_048.png": { - "ver": "1.0.4", - "uuid": "499b1d7c-bc4c-4dbf-a3f6-13275d43432c", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1359, - "trimY": 422, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_049.png": { - "ver": "1.0.4", - "uuid": "d4e737ca-d9c4-4163-8546-b25d9370469b", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1409, - "trimY": 422, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_050.png": { - "ver": "1.0.4", - "uuid": "f150d2ba-e498-433e-8c0d-0c9e68fbb397", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1459, - "trimY": 422, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_051.png": { - "ver": "1.0.4", - "uuid": "ade4a079-1929-47e9-8644-d3cf612c358e", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1509, - "trimY": 422, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_052.png": { - "ver": "1.0.4", - "uuid": "60e55476-e798-41a6-a66d-ed499a354988", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1559, - "trimY": 422, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_053.png": { - "ver": "1.0.4", - "uuid": "806c5dd4-b2fb-415e-bd91-d67dfa1d9205", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1609, - "trimY": 424, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_054.png": { - "ver": "1.0.4", - "uuid": "47466437-f390-4bb4-8b31-f4eb83763a10", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1193, - "trimY": 475, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_055.png": { - "ver": "1.0.4", - "uuid": "a0e12ab3-0afe-469d-a0a1-143b828ef413", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1243, - "trimY": 475, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_056.png": { - "ver": "1.0.4", - "uuid": "65f852ed-ea9b-4ad9-89fa-7731ee5d12a8", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1293, - "trimY": 475, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_057.png": { - "ver": "1.0.4", - "uuid": "0bb239b7-ba33-44d8-8ba7-f995cd889948", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1343, - "trimY": 475, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_058.png": { - "ver": "1.0.4", - "uuid": "f2dce84d-9aec-41b4-aaa9-6ea719e9e9fc", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1393, - "trimY": 475, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_059.png": { - "ver": "1.0.4", - "uuid": "b6448465-2c01-4118-986f-beea56c19eea", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1443, - "trimY": 475, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_060.png": { - "ver": "1.0.4", - "uuid": "7cca6205-7f86-41f5-a82b-46d0726551bb", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1493, - "trimY": 475, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_061.png": { - "ver": "1.0.4", - "uuid": "6a9d04e3-a22e-49b5-84fa-bb3d533577e0", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1543, - "trimY": 475, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_062.png": { - "ver": "1.0.4", - "uuid": "a0eb2ce6-a049-4b5c-9fb2-deb15869050b", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1193, - "trimY": 528, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_063.png": { - "ver": "1.0.4", - "uuid": "c0034292-1a6f-4d09-a875-c482b710b400", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1243, - "trimY": 528, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_064.png": { - "ver": "1.0.4", - "uuid": "815bdf6d-e305-484c-8135-ab7ad49db565", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1293, - "trimY": 528, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_065.png": { - "ver": "1.0.4", - "uuid": "6d000227-6d33-4904-af97-246ca45de947", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1343, - "trimY": 528, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_066.png": { - "ver": "1.0.4", - "uuid": "e7a597cf-9c1c-4c21-896d-f1150a4cde9e", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1393, - "trimY": 528, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_067.png": { - "ver": "1.0.4", - "uuid": "e950ae81-da62-491d-928b-c7e0a72e23f8", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1443, - "trimY": 528, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_068.png": { - "ver": "1.0.4", - "uuid": "f84e204c-114f-4fe7-8d65-e37ecfe09b66", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1493, - "trimY": 528, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_069.png": { - "ver": "1.0.4", - "uuid": "e18fae56-12c6-4607-bf0f-7e2528af7e6f", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1543, - "trimY": 528, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_070.png": { - "ver": "1.0.4", - "uuid": "43777453-9a69-4aa8-a338-cb154d017426", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1632, - "trimY": 478, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_071.png": { - "ver": "1.0.4", - "uuid": "21b23d8e-259e-4d08-a2ab-905ccb6cfb6d", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1632, - "trimY": 531, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_072.png": { - "ver": "1.0.4", - "uuid": "0fdf190a-cbf0-40db-9bbe-3150d6258b24", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1200, - "trimY": 581, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_073.png": { - "ver": "1.0.4", - "uuid": "d668911c-16da-4b70-b94c-5266875b6f6b", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1250, - "trimY": 581, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_074.png": { - "ver": "1.0.4", - "uuid": "c7c9a2ec-6c92-4f89-9ada-6486be7966b3", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1300, - "trimY": 581, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_075.png": { - "ver": "1.0.4", - "uuid": "bcb48130-45dd-46c8-ad97-f29f668712bd", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1350, - "trimY": 581, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_076.png": { - "ver": "1.0.4", - "uuid": "4189e3ca-476b-47f0-bff0-e116e3bf5350", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1400, - "trimY": 581, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_077.png": { - "ver": "1.0.4", - "uuid": "e4811279-90a2-40e5-a95c-080b91adda9a", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1450, - "trimY": 581, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_078.png": { - "ver": "1.0.4", - "uuid": "bdbbfaf0-7d50-412b-94fd-3a074f9740c9", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1500, - "trimY": 581, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_079.png": { - "ver": "1.0.4", - "uuid": "8d25d8f7-753e-4617-8923-38dcaf9630b0", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1550, - "trimY": 581, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_080.png": { - "ver": "1.0.4", - "uuid": "ab304bf2-a41f-4b49-a0aa-7a0867a02df1", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1600, - "trimY": 584, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_081.png": { - "ver": "1.0.4", - "uuid": "ca349fc3-e364-4739-8763-210eca77fc9f", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1653, - "trimY": 584, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_082.png": { - "ver": "1.0.4", - "uuid": "58a8d73d-c745-4ab0-9e23-7a7ee40cda4f", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 958, - "trimY": 594, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_083.png": { - "ver": "1.0.4", - "uuid": "fd737955-5509-498b-8f05-d893bad83e62", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1008, - "trimY": 594, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_084.png": { - "ver": "1.0.4", - "uuid": "da74202b-3ada-467e-bf67-a5b8b74d2591", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 960, - "trimY": 647, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_085.png": { - "ver": "1.0.4", - "uuid": "2c5bc8a1-c26b-4ce7-b404-bdd3f1a8c257", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1010, - "trimY": 644, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_086.png": { - "ver": "1.0.4", - "uuid": "479b1003-9f51-48fd-93bd-22372205645c", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1010, - "trimY": 697, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_087.png": { - "ver": "1.0.4", - "uuid": "c446bd92-a7ee-4ba9-bae3-257c7d3c8cce", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1010, - "trimY": 750, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_088.png": { - "ver": "1.0.4", - "uuid": "6124258d-7f7c-48eb-875c-652de0e13afb", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": true, - "offsetX": 0, - "offsetY": 0, - "trimX": 1060, - "trimY": 751, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_089.png": { - "ver": "1.0.4", - "uuid": "737d98c6-34fb-49d9-886e-82a73e44b7a5", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1200, - "trimY": 634, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_090.png": { - "ver": "1.0.4", - "uuid": "4e754680-faa4-4a88-9e88-d3842fb7a858", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1250, - "trimY": 634, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_091.png": { - "ver": "1.0.4", - "uuid": "7ad6718d-efde-494b-8899-380614117085", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1300, - "trimY": 634, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_092.png": { - "ver": "1.0.4", - "uuid": "45155edb-4789-4031-a9e4-4f88429c3b79", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1350, - "trimY": 634, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_093.png": { - "ver": "1.0.4", - "uuid": "144f3570-1798-433f-bfbc-71bcbcf095da", - "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", - "trimType": "auto", - "trimThreshold": 1, - "rotated": false, - "offsetX": 0, - "offsetY": 0, - "trimX": 1400, - "trimY": 634, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, - "borderTop": 0, - "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, - "spriteType": "normal", - "subMetas": {} - }, - "SoldierFireGhost_Idle2_094.png": { - "ver": "1.0.4", - "uuid": "ef2ee158-2382-469e-bef6-bca10f55417f", + "uuid": "573cfba0-4534-4886-849a-61f4f2cbd349", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1450, - "trimY": 634, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 142, + "trimY": 430, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -11954,21 +4782,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_095.png": { + "SoldierFireGhost_InAirIdle1_23.png": { "ver": "1.0.4", - "uuid": "49c13bb9-1fa3-4c76-b420-f9db8f0e6c7b", + "uuid": "0b4ebd8a-6316-4802-aa24-49ab08e6a75b", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1500, - "trimY": 634, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 100, + "trimY": 598, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -11976,21 +4804,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_096.png": { + "SoldierFireGhost_InAirIdle1_24.png": { "ver": "1.0.4", - "uuid": "84aad06e-33b7-41f2-95ea-e3e7132dff6f", + "uuid": "5b7fff7b-5818-4be8-b65d-c212d15e6e71", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1550, - "trimY": 634, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 100, + "trimY": 542, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -11998,21 +4826,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_097.png": { + "SoldierFireGhost_InAirIdle1_25.png": { "ver": "1.0.4", - "uuid": "d34504ad-3b0f-4c60-8e50-596c0721564d", + "uuid": "f964ec77-c016-44fa-8f55-3e59ae30283d", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1600, - "trimY": 634, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 100, + "trimY": 486, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -12020,21 +4848,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_098.png": { + "SoldierFireGhost_InAirIdle1_26.png": { "ver": "1.0.4", - "uuid": "7985b99f-1402-4ee5-b7ed-57988eb0f061", + "uuid": "679a79eb-85c6-4445-8517-36465c57c6da", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1650, - "trimY": 634, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 100, + "trimY": 430, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -12042,21 +4870,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_099.png": { + "SoldierFireGhost_InAirIdle1_27.png": { "ver": "1.0.4", - "uuid": "7545ca05-d004-4b39-ab4c-2333b2a8af8e", + "uuid": "8764bb9b-4b08-4bc5-b9e5-93af39321c70", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1207, - "trimY": 687, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 58, + "trimY": 600, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -12064,21 +4892,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_100.png": { + "SoldierFireGhost_InAirIdle1_28.png": { "ver": "1.0.4", - "uuid": "9f435c66-9948-4afd-ba3c-cee9bd3e7586", + "uuid": "f291785e-2685-4ba0-b38b-9607972ce6f0", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1207, - "trimY": 740, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 58, + "trimY": 544, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -12086,21 +4914,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_101.png": { + "SoldierFireGhost_InAirIdle1_29.png": { "ver": "1.0.4", - "uuid": "f32c228d-604e-41d5-82a0-f4421741ff73", + "uuid": "a4e84eb9-b866-4cdc-8925-a5d29c65aea5", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1257, - "trimY": 687, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 58, + "trimY": 488, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -12108,21 +4936,21 @@ "spriteType": "normal", "subMetas": {} }, - "SoldierFireGhost_Idle2_102.png": { + "SoldierFireGhost_InAirIdle1_30.png": { "ver": "1.0.4", - "uuid": "9f99f169-91b8-4962-a3b4-805cff376eb4", + "uuid": "dd02916e-9ac8-4fe7-a944-d6082eb9007a", "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1257, - "trimY": 740, - "width": 50, - "height": 53, - "rawWidth": 50, - "rawHeight": 53, + "trimX": 58, + "trimY": 432, + "width": 42, + "height": 56, + "rawWidth": 42, + "rawHeight": 56, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -12139,7 +4967,7 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1087, + "trimX": 366, "trimY": 54, "width": 58, "height": 52, @@ -12161,8 +4989,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1145, - "trimY": 54, + "trimX": 427, + "trimY": 0, "width": 58, "height": 52, "rawWidth": 58, @@ -12183,8 +5011,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1203, - "trimY": 54, + "trimX": 0, + "trimY": 432, "width": 58, "height": 52, "rawWidth": 58, @@ -12205,8 +5033,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1261, - "trimY": 54, + "trimX": 61, + "trimY": 378, "width": 58, "height": 52, "rawWidth": 58, @@ -12227,8 +5055,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1319, - "trimY": 54, + "trimX": 122, + "trimY": 324, "width": 58, "height": 52, "rawWidth": 58, @@ -12249,8 +5077,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1377, - "trimY": 54, + "trimX": 183, + "trimY": 270, "width": 58, "height": 52, "rawWidth": 58, @@ -12271,8 +5099,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1435, - "trimY": 54, + "trimX": 244, + "trimY": 216, "width": 58, "height": 52, "rawWidth": 58, @@ -12293,8 +5121,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1493, - "trimY": 54, + "trimX": 305, + "trimY": 162, "width": 58, "height": 52, "rawWidth": 58, @@ -12315,8 +5143,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1551, - "trimY": 54, + "trimX": 366, + "trimY": 106, "width": 58, "height": 52, "rawWidth": 58, @@ -12337,8 +5165,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1609, - "trimY": 54, + "trimX": 485, + "trimY": 0, "width": 58, "height": 52, "rawWidth": 58, @@ -12359,8 +5187,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 659, - "trimY": 108, + "trimX": 0, + "trimY": 484, "width": 58, "height": 52, "rawWidth": 58, @@ -12381,8 +5209,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 717, - "trimY": 108, + "trimX": 543, + "trimY": 0, "width": 58, "height": 52, "rawWidth": 58, @@ -12403,8 +5231,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 775, - "trimY": 108, + "trimX": 0, + "trimY": 536, "width": 58, "height": 52, "rawWidth": 58, @@ -12425,8 +5253,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 833, - "trimY": 108, + "trimX": 601, + "trimY": 0, "width": 58, "height": 52, "rawWidth": 58, @@ -12447,8 +5275,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 891, - "trimY": 108, + "trimX": 0, + "trimY": 588, "width": 58, "height": 52, "rawWidth": 58, @@ -12469,8 +5297,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 949, - "trimY": 108, + "trimX": 659, + "trimY": 0, "width": 58, "height": 52, "rawWidth": 58, @@ -12491,8 +5319,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1007, - "trimY": 108, + "trimX": 0, + "trimY": 640, "width": 58, "height": 52, "rawWidth": 58, @@ -12510,11 +5338,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 549, - "trimY": 320, + "trimX": 717, + "trimY": 0, "width": 58, "height": 52, "rawWidth": 58, @@ -12532,11 +5360,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 549, - "trimY": 378, + "trimX": 775, + "trimY": 0, "width": 58, "height": 52, "rawWidth": 58, @@ -12557,8 +5385,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 384, - "trimY": 732, + "trimX": 833, + "trimY": 0, "width": 58, "height": 52, "rawWidth": 58, @@ -12576,11 +5404,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 329, - "trimY": 826, + "trimX": 891, + "trimY": 0, "width": 58, "height": 52, "rawWidth": 58, @@ -12601,8 +5429,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 384, - "trimY": 784, + "trimX": 949, + "trimY": 0, "width": 58, "height": 52, "rawWidth": 58, @@ -12620,11 +5448,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 384, - "trimY": 883, + "trimX": 366, + "trimY": 158, "width": 58, "height": 52, "rawWidth": 58, @@ -12642,11 +5470,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": false, + "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 661, - "trimY": 160, + "trimX": 424, + "trimY": 54, "width": 58, "height": 52, "rawWidth": 58, @@ -12664,11 +5492,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": false, + "rotated": true, "offsetX": 0, "offsetY": 0, - "trimX": 719, - "trimY": 160, + "trimX": 424, + "trimY": 112, "width": 58, "height": 52, "rawWidth": 58, @@ -12689,8 +5517,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 777, - "trimY": 160, + "trimX": 476, + "trimY": 52, "width": 58, "height": 52, "rawWidth": 58, @@ -12711,8 +5539,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 835, - "trimY": 160, + "trimX": 476, + "trimY": 104, "width": 58, "height": 52, "rawWidth": 58, @@ -12733,8 +5561,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 893, - "trimY": 160, + "trimX": 534, + "trimY": 52, "width": 58, "height": 52, "rawWidth": 58, @@ -12755,8 +5583,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 951, - "trimY": 160, + "trimX": 534, + "trimY": 104, "width": 58, "height": 52, "rawWidth": 58, @@ -12777,8 +5605,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 601, - "trimY": 323, + "trimX": 592, + "trimY": 52, "width": 58, "height": 52, "rawWidth": 58, @@ -12799,8 +5627,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 601, - "trimY": 375, + "trimX": 592, + "trimY": 104, "width": 58, "height": 52, "rawWidth": 58, @@ -12818,11 +5646,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 602, - "trimY": 427, + "trimX": 650, + "trimY": 52, "width": 58, "height": 52, "rawWidth": 58, @@ -12840,11 +5668,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 442, - "trimY": 732, + "trimX": 650, + "trimY": 104, "width": 58, "height": 52, "rawWidth": 58, @@ -12865,8 +5693,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 267, - "trimY": 938, + "trimX": 708, + "trimY": 52, "width": 58, "height": 52, "rawWidth": 58, @@ -12887,8 +5715,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 325, - "trimY": 940, + "trimX": 708, + "trimY": 104, "width": 58, "height": 52, "rawWidth": 58, @@ -12909,8 +5737,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 495, - "trimY": 492, + "trimX": 766, + "trimY": 52, "width": 58, "height": 52, "rawWidth": 58, @@ -12928,11 +5756,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 606, - "trimY": 485, + "trimX": 766, + "trimY": 104, "width": 58, "height": 52, "rawWidth": 58, @@ -12950,11 +5778,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1065, - "trimY": 108, + "trimX": 824, + "trimY": 52, "width": 58, "height": 52, "rawWidth": 58, @@ -12975,8 +5803,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1117, - "trimY": 106, + "trimX": 824, + "trimY": 104, "width": 58, "height": 52, "rawWidth": 58, @@ -12997,8 +5825,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1175, - "trimY": 106, + "trimX": 882, + "trimY": 52, "width": 58, "height": 52, "rawWidth": 58, @@ -13019,8 +5847,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1233, - "trimY": 106, + "trimX": 882, + "trimY": 104, "width": 58, "height": 52, "rawWidth": 58, @@ -13041,8 +5869,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1291, - "trimY": 106, + "trimX": 940, + "trimY": 52, "width": 58, "height": 52, "rawWidth": 58, @@ -13063,8 +5891,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1349, - "trimY": 106, + "trimX": 940, + "trimY": 104, "width": 58, "height": 52, "rawWidth": 58, @@ -13085,8 +5913,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1407, - "trimY": 106, + "trimX": 478, + "trimY": 156, "width": 58, "height": 52, "rawWidth": 58, @@ -13107,8 +5935,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1465, - "trimY": 106, + "trimX": 536, + "trimY": 156, "width": 58, "height": 52, "rawWidth": 58, @@ -13129,8 +5957,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1523, - "trimY": 106, + "trimX": 594, + "trimY": 156, "width": 58, "height": 52, "rawWidth": 58, @@ -13151,8 +5979,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1581, - "trimY": 106, + "trimX": 652, + "trimY": 156, "width": 58, "height": 52, "rawWidth": 58, @@ -13173,8 +6001,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1118, - "trimY": 158, + "trimX": 710, + "trimY": 156, "width": 58, "height": 52, "rawWidth": 58, @@ -13195,8 +6023,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1176, - "trimY": 158, + "trimX": 768, + "trimY": 156, "width": 58, "height": 52, "rawWidth": 58, @@ -13217,8 +6045,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1234, - "trimY": 158, + "trimX": 826, + "trimY": 156, "width": 58, "height": 52, "rawWidth": 58, @@ -13239,8 +6067,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1292, - "trimY": 158, + "trimX": 884, + "trimY": 156, "width": 58, "height": 52, "rawWidth": 58, @@ -13261,8 +6089,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1350, - "trimY": 158, + "trimX": 942, + "trimY": 156, "width": 58, "height": 52, "rawWidth": 58, @@ -13283,8 +6111,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1408, - "trimY": 158, + "trimX": 478, + "trimY": 208, "width": 58, "height": 52, "rawWidth": 58, @@ -13305,8 +6133,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1466, - "trimY": 158, + "trimX": 536, + "trimY": 208, "width": 58, "height": 52, "rawWidth": 58, @@ -13327,8 +6155,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1524, - "trimY": 158, + "trimX": 594, + "trimY": 208, "width": 58, "height": 52, "rawWidth": 58, @@ -13349,8 +6177,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1582, - "trimY": 158, + "trimX": 652, + "trimY": 208, "width": 58, "height": 52, "rawWidth": 58, @@ -13368,11 +6196,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 496, - "trimY": 544, + "trimX": 710, + "trimY": 208, "width": 58, "height": 52, "rawWidth": 58, @@ -13393,8 +6221,8 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 548, - "trimY": 548, + "trimX": 768, + "trimY": 208, "width": 58, "height": 52, "rawWidth": 58, @@ -13412,11 +6240,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 606, - "trimY": 543, + "trimX": 826, + "trimY": 208, "width": 58, "height": 52, "rawWidth": 58, @@ -13434,11 +6262,11 @@ "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", "trimType": "auto", "trimThreshold": 1, - "rotated": true, + "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 549, - "trimY": 600, + "trimX": 884, + "trimY": 208, "width": 58, "height": 52, "rawWidth": 58, @@ -13459,7 +6287,7 @@ "rotated": false, "offsetX": 0, "offsetY": 0, - "trimX": 1087, + "trimX": 366, "trimY": 54, "width": 58, "height": 52, diff --git a/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.png b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.png index 2592c8d..1db50eb 100644 Binary files a/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.png and b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.png differ diff --git a/frontend/assets/resources/map/dungeon/map.tmx b/frontend/assets/resources/map/dungeon/map.tmx index 60573ed..8a35325 100644 --- a/frontend/assets/resources/map/dungeon/map.tmx +++ b/frontend/assets/resources/map/dungeon/map.tmx @@ -1,18 +1,18 @@ - + - eJzt2q1u22AYhuEo1UhBtYFWKh/bmRRMRYNFPZPxwcKi7jznSInkWk7teG5ex88FLhQD570d5/PP1WazuQIAAAAAAAAAAAAAAAAAgAmu96r3g/N5bjn0fw5U3aGy/3bv0P+p8XDEdoX0f9//GP3Xp93/YaD/9QJa6f95/fvov26773671zeb7jmhupX+5+2fQH/9qztU9v8yQXUz/fXXX3/9a/ovgf7666+//vrrf1n9/4zc7tue/uvq/9Z4PfLZ7vnz38ZP/cv7T53p4Z7i7/+kv/7667/bl/sO/dff/77T3+9ff/3r+38dMGf/Nv1r+w917+v/0vh1okN/67/l9B/b/nFj/X8pxvYf236r/0UZ6t/X+Efj5kj7bv+uxxPpX9e/r/1NS7f7Z/S/a3zXfzH9Pzrvt/vPTf/l9p+yRjyV/ufvP+YY6M5yzr5D5uy/XUCLJfafa8YfmdJe//X0r6Z/9jGgv/7661/doqp/9fyrpV//Vc+/mv7Z9M+mfzb9s+mfTf9s+mfTP5v+2fTPpn82/bPpn03/bPpn0z+b/tn0z6Z/Nv2z6Z/N+9/Z9M+mfzb//9n0z6Z/Nv2z6Z9N/2z6Z9M/m/7Z0vtT3wEAAAAAAAAAAAAAAAA4v39IY4NC + eJzt3DFq3EAUgOFlTRoXJiEkkNQpAr5EyuDKVdKl8k1yh9wg94wMK1DEaqXVjvRGel/xgXFh7PnfSBqx+O5wONwBAAAAAAAAAAAAAAAAAMAM9yfRvwfreelo+78kFN0hsv/xpO3/q/E04LhD+v/ff4j++9Pt/zTS/76CVvov1/8c/fft9W//cHJubfrXhOhW+q/bPwP99Y/uENn//QzRzfSP7b+nGdBf/+gOW+xfE/1z9rf/c/cvMQP6b5f9r7/+efuXmAH9y69t+07x942W3vv666//Nvp/OtE/T/9u7+7X+uuvf1z/tyNK9u/SP7b/WPdz/f80flyp7e/5r57+U9s/Hzz/b8XU/lPbH/XflLH+5xo/Nh4G2vf79z1fSf+4/ufaP3T0uy/R/2Pji/7V9L903e/2L03/evvPeUa8lv7r958yA/21LNl3TMn+xwpa1Ni/1BpfMqe9/vvpf82MLPGz9d/GDCxF/9wzoL/+mftHr3+07Oe/6PWPpn9u+uemf27656Z/bvrnpn9u+uemf27656Z/bvrnpn9u+uemf276z7eHzwnpX0//dyPeDNB/H/3t/7r77/Fzovrnpv+6hu7tkf2PFbSouf/Pk/71vv1+9B7Wf9n+l+75+m/XlP5DZ65XY+e1yOv6Nf2jO9Tav+389Qa3ns/1j93/tyrxjkb/5fqXfp821L/WGcjef63936rtPZH+6/ZvZyDq/73oP96/5PP8pfPDEP3r2f+3zsGc/mveJ/SfZu4cfJ7Z/2/ju/7V9J+r6f9tbv/WknOQvT/xHQAAAAAAAAAAAAAAAID1/QPUuKyX - + - + @@ -20,149 +20,112 @@ - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - - + - + - + - + - + - - + - - + - - + - - - - - - - - - - - - - - - - - - - diff --git a/frontend/assets/resources/pbfiles/room_downsync_frame.proto b/frontend/assets/resources/pbfiles/room_downsync_frame.proto index 5799fec..26060e7 100644 --- a/frontend/assets/resources/pbfiles/room_downsync_frame.proto +++ b/frontend/assets/resources/pbfiles/room_downsync_frame.proto @@ -9,28 +9,32 @@ message PlayerDownsync { int32 virtualGridX = 2; int32 virtualGridY = 3; int32 dirX = 4; - int32 dirY = 5; - int32 speed = 6; // in terms of virtual grid units - int32 battleState = 7; - int32 joinIndex = 8; - double colliderRadius = 9; - bool removed = 10; - int32 score = 11; - int32 lastMoveGmtMillis = 12; - int32 framesToRecover = 13; - int32 hp = 14; - int32 maxHp = 15; - int32 characterState = 16; + int32 dirY = 5; // "dirX" and "dirY" determines character facing + int32 velX = 6; + int32 velY = 7; // "velX" and "velY" is used to record the accumulated effect by accelerations (including gravity) + int32 speed = 8; // this is the instantaneous scalar attribute of a character, different from but will be accounted in "velX" and "velY" + int32 battleState = 9; + int32 joinIndex = 10; + double colliderRadius = 11; + bool removed = 12; + int32 score = 13; + int32 lastMoveGmtMillis = 14; + int32 framesToRecover = 15; + int32 hp = 16; + int32 maxHp = 17; + int32 characterState = 18; + bool inAir = 19; // by design a standalone field only inferred by the collision result of "applyInputFrameDownsyncDynamicsOnSingleRenderFrame" instead of "characterState", because we need check the transition for "characterState" from this field, i.e. "inAir (prev -> curr)" - string name = 17; - string displayName = 18; - string avatar = 19; + string name = 20; + string displayName = 21; + string avatar = 22; } message InputFrameDecoded { int32 dx = 1; int32 dy = 2; int32 btnALevel = 3; + int32 btnBLevel = 4; } message InputFrameUpsync { @@ -133,6 +137,12 @@ message BattleColliderInfo { int32 renderCacheSize = 26; map meleeSkillConfig = 27; // skillId -> skill + + double snapIntoPlatformOverlap = 28; + double snapIntoPlatformThreshold = 29; + int32 jumpingInitVelY = 30; + int32 gravityX = 31; + int32 gravityY = 32; } message RoomDownsyncFrame { diff --git a/frontend/assets/resources/prefabs/ControlledCharacter.prefab b/frontend/assets/resources/prefabs/ControlledCharacter.prefab index f3f37e3..78a69a8 100644 --- a/frontend/assets/resources/prefabs/ControlledCharacter.prefab +++ b/frontend/assets/resources/prefabs/ControlledCharacter.prefab @@ -33,14 +33,14 @@ "_active": true, "_components": [ { - "__id__": 20 + "__id__": 23 }, { - "__id__": 21 + "__id__": 24 } ], "_prefab": { - "__id__": 22 + "__id__": 25 }, "_opacity": 255, "_color": { @@ -65,7 +65,7 @@ "ctor": "Float64Array", "array": [ 0, - 3, + 0, 0, 0, 0, @@ -97,7 +97,7 @@ "__id__": 1 }, "_children": [], - "_active": true, + "_active": false, "_components": [ { "__id__": 3 @@ -116,8 +116,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 46.68, - "height": 27.72 + "width": 28.01, + "height": 15.12 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -128,8 +128,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - -5, - 50, + 0, + 0, 0, 0, 0, @@ -169,8 +169,8 @@ "_useOriginalSize": false, "_string": "(0, 0)", "_N$string": "(0, 0)", - "_fontSize": 20, - "_lineHeight": 22, + "_fontSize": 12, + "_lineHeight": 12, "_enableWrapText": true, "_N$file": null, "_isSystemFontUsed": true, @@ -277,7 +277,7 @@ "__uuid__": "472df5d3-35e7-4184-9e6c-7f41bee65ee3" }, "_texture": null, - "_stopped": false, + "_stopped": true, "playOnLoad": true, "autoRemoveOnFinish": false, "totalParticles": 200, @@ -395,8 +395,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 76, - "height": 84 + "width": 24, + "height": 24 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -408,7 +408,7 @@ "ctor": "Float64Array", "array": [ 3, - 182, + 60, 0, 0, 0, @@ -451,7 +451,7 @@ "__uuid__": "a2170e4c-df31-41ef-be73-f4f605e75821" }, "_type": 0, - "_sizeMode": 1, + "_sizeMode": 0, "_fillType": 0, "_fillCenter": { "__type__": "cc.Vec2", @@ -490,12 +490,15 @@ }, { "__id__": 15 + }, + { + "__id__": 18 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 19 + "__id__": 22 }, "_opacity": 255, "_color": { @@ -584,7 +587,7 @@ "ctor": "Float64Array", "array": [ 0, - 0, + -24, 0, 0, 0, @@ -671,13 +674,128 @@ "_components": [ { "__id__": 16 - }, - { - "__id__": 17 } ], "_prefab": { - "__id__": 18 + "__id__": 17 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -24, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "dragonBones.ArmatureDisplay", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 15 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_armatureName": "SoldierFireGhost", + "_animationName": "Idle1", + "_preCacheMode": 0, + "_cacheMode": 0, + "playTimes": -1, + "premultipliedAlpha": false, + "_armatureKey": "36230012-8df3-4e85-afad-76ec47d0e4d7#4a9187d5-a9ad-4464-a03c-d2f3cc277051", + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_playing": false, + "_armatureCache": null, + "_N$dragonAsset": { + "__uuid__": "36230012-8df3-4e85-afad-76ec47d0e4d7" + }, + "_N$dragonAtlasAsset": { + "__uuid__": "4a9187d5-a9ad-4464-a03c-d2f3cc277051" + }, + "_N$_defaultArmatureIndex": 0, + "_N$_animationIndex": 8, + "_N$_defaultCacheMode": 0, + "_N$timeScale": 1, + "_N$debugBones": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__uuid__": "59bff7a2-23e1-4d69-bce7-afb37eae196a" + }, + "fileId": "3b2LJFABVL7ozO2U81FC4U", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "SoldierFireGhostFrameAnim", + "_objFlags": 0, + "_parent": { + "__id__": 11 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 19 + }, + { + "__id__": 20 + } + ], + "_prefab": { + "__id__": 21 }, "_opacity": 255, "_color": { @@ -731,7 +849,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 15 + "__id__": 18 }, "_enabled": true, "_defaultClip": null, @@ -745,6 +863,15 @@ { "__uuid__": "c738236a-0702-45f8-aa38-99457b051997" }, + { + "__uuid__": "c69bcceb-d7d1-4e33-9623-e2a374a0a6b6" + }, + { + "__uuid__": "43dbf141-be76-48c3-bdef-29233ccbe30d" + }, + { + "__uuid__": "c738236a-0702-45f8-aa38-99457b051997" + }, { "__uuid__": "c69bcceb-d7d1-4e33-9623-e2a374a0a6b6" } @@ -757,7 +884,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 15 + "__id__": 18 }, "_enabled": true, "_materials": [ diff --git a/frontend/assets/resources/prefabs/SoldierFireGhost.prefab b/frontend/assets/resources/prefabs/SoldierFireGhost.prefab deleted file mode 100644 index 5243ff9..0000000 --- a/frontend/assets/resources/prefabs/SoldierFireGhost.prefab +++ /dev/null @@ -1,151 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "", - "_objFlags": 0, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "asyncLoadAssets": false, - "readonly": false - }, - { - "__type__": "cc.Node", - "_name": "SoldierFireGhost", - "_objFlags": 0, - "_parent": null, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 2 - }, - { - "__id__": 3 - } - ], - "_prefab": { - "__id__": 4 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1425, - "height": 1024 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 1 - }, - "_enabled": true, - "_defaultClip": null, - "_clips": [ - { - "__uuid__": "252b321f-81f4-485c-85bd-ea44d298cb76" - }, - null, - null, - null, - { - "__uuid__": "c738236a-0702-45f8-aa38-99457b051997" - }, - { - "__uuid__": "f51bb583-0010-48f3-a6a1-451a78ac2d65" - }, - { - "__uuid__": "c69bcceb-d7d1-4e33-9623-e2a374a0a6b6" - } - ], - "playOnLoad": false, - "_id": "" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 1 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": null, - "_type": 0, - "_sizeMode": 1, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "145769c8-a259-42bc-8cce-6e035f493c70" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "44k8wsxglPsJSrMCX58Yve", - "sync": false - } -] \ No newline at end of file diff --git a/frontend/assets/resources/prefabs/SoldierFireGhost.prefab.meta b/frontend/assets/resources/prefabs/SoldierFireGhost.prefab.meta deleted file mode 100644 index 3000668..0000000 --- a/frontend/assets/resources/prefabs/SoldierFireGhost.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -{ - "ver": "1.2.5", - "uuid": "e3fc2487-17d1-4ff9-ae1f-38e974509077", - "optimizationPolicy": "AUTO", - "asyncLoadAssets": false, - "readonly": false, - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/scenes/login.fire b/frontend/assets/scenes/login.fire index 5bc0d73..e5bc0e5 100644 --- a/frontend/assets/scenes/login.fire +++ b/frontend/assets/scenes/login.fire @@ -440,7 +440,7 @@ "array": [ 0, 0, - 210.54381524704266, + 216.19964242526865, 0, 0, 0, diff --git a/frontend/assets/scenes/offline_map_1.fire b/frontend/assets/scenes/offline_map_1.fire index 4acd2a3..354c327 100644 --- a/frontend/assets/scenes/offline_map_1.fire +++ b/frontend/assets/scenes/offline_map_1.fire @@ -172,8 +172,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 3200, - "height": 3200 + "width": 2048, + "height": 2048 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -191,8 +191,8 @@ 0, 0, 1, - 2, - 2, + 1.5, + 1.5, 1 ] }, @@ -454,7 +454,7 @@ "array": [ 0, 0, - 216.50635094610968, + 216.67520680312998, 0, 0, 0, diff --git a/frontend/assets/scripts/AttackingCharacter.js b/frontend/assets/scripts/AttackingCharacter.js index ce05c8b..0304d82 100644 --- a/frontend/assets/scripts/AttackingCharacter.js +++ b/frontend/assets/scripts/AttackingCharacter.js @@ -5,8 +5,33 @@ window.ATK_CHARACTER_STATE = { Walking: [1, "Walking"], Atk1: [2, "Atk1"], Atked1: [3, "Atked1"], + InAirIdle1: [4, "InAirIdle1"], + InAirAtk1: [5, "Atk1"], + InAirAtked1: [6, "Atked1"], }; +window.toInAirConjugate = function(foo) { + switch (foo) { + case window.ATK_CHARACTER_STATE.Idle1[0]: + case window.ATK_CHARACTER_STATE.Walking[0]: + return window.ATK_CHARACTER_STATE.InAirIdle1[0]; + case window.ATK_CHARACTER_STATE.Atk1[0]: + return window.ATK_CHARACTER_STATE.InAirAtk1[0]; + case window.ATK_CHARACTER_STATE.Atked1[0]: + return window.ATK_CHARACTER_STATE.InAirAtked1[0]; + + case window.ATK_CHARACTER_STATE.InAirIdle1[0]: + return window.ATK_CHARACTER_STATE.Idle1[0]; + case window.ATK_CHARACTER_STATE.InAirAtk1[0]: + return window.ATK_CHARACTER_STATE.Atk1[0]; + case window.ATK_CHARACTER_STATE.InAirAtked1[0]: + return window.ATK_CHARACTER_STATE.Atked1[0]; + default: + console.warn(`Invalid characterState ${foo} received, no in air conjugate is available!`); + return null; + } +} + window.ATK_CHARACTER_STATE_ARR = []; for (let k in window.ATK_CHARACTER_STATE) { window.ATK_CHARACTER_STATE_ARR.push(window.ATK_CHARACTER_STATE[k]); @@ -15,6 +40,12 @@ for (let k in window.ATK_CHARACTER_STATE) { window.ATK_CHARACTER_STATE_INTERRUPT_WAIVE_SET = new Set(); window.ATK_CHARACTER_STATE_INTERRUPT_WAIVE_SET.add(window.ATK_CHARACTER_STATE.Idle1[0]); window.ATK_CHARACTER_STATE_INTERRUPT_WAIVE_SET.add(window.ATK_CHARACTER_STATE.Walking[0]); +window.ATK_CHARACTER_STATE_INTERRUPT_WAIVE_SET.add(window.ATK_CHARACTER_STATE.InAirIdle1[0]); + +window.ATK_CHARACTER_STATE_IN_AIR_SET = new Set(); +window.ATK_CHARACTER_STATE_IN_AIR_SET.add(window.ATK_CHARACTER_STATE.InAirIdle1[0]); +window.ATK_CHARACTER_STATE_IN_AIR_SET.add(window.ATK_CHARACTER_STATE.InAirAtk1[0]); +window.ATK_CHARACTER_STATE_IN_AIR_SET.add(window.ATK_CHARACTER_STATE.InAirAtked1[0]); /* Kindly note that the use of dragonBones anim is an informed choice for the feasibility of "gotoAndPlayByFrame", which is a required feature by "Map.rollbackAndChase". You might find that "cc.Animation" -- the traditional frame anim -- can also suffice this requirement, yet if we want to develop 3D frontend in the future, working with skeletal anim will make a smoother transition. @@ -37,6 +68,7 @@ cc.Class({ this.hp = 100; this.maxHp = 100; this.framesToRecover = 0; + this.inAir = true; }, setSpecies(speciesName) { @@ -49,8 +81,7 @@ cc.Class({ this.animComp = this.effAnimNode.getComponent(dragonBones.ArmatureDisplay); if (!this.animComp) { this.animComp = this.effAnimNode.getComponent(cc.Animation); - this.effAnimNode.anchorY = 0.0; // Otherwise the frame anim will show with an incorrect y-offset even if the collider boundaries are all correct! - } + } this.effAnimNode.active = true; }, @@ -96,7 +127,7 @@ cc.Class({ _interruptPlayingAnimAndPlayNewAnimDragonBones(rdfPlayer, prevRdfPlayer, newCharacterState, newAnimName, underlyingAnimationCtrl, playingAnimName) { if (window.ATK_CHARACTER_STATE_INTERRUPT_WAIVE_SET.has(newCharacterState)) { // No "framesToRecover" - //console.warn(`#DragonBones JoinIndex=${rdfPlayer.joinIndex}, ${playingAnimName} -> ${newAnimName}`); + // console.warn(`#DragonBones JoinIndex=${rdfPlayer.joinIndex}, ${playingAnimName} -> ${newAnimName}`); underlyingAnimationCtrl.gotoAndPlayByFrame(newAnimName, 0, -1); } else { const animationData = underlyingAnimationCtrl._animations[newAnimName]; @@ -112,7 +143,7 @@ cc.Class({ _interruptPlayingAnimAndPlayNewAnimFrameAnim(rdfPlayer, prevRdfPlayer, newCharacterState, newAnimName, playingAnimName) { if (window.ATK_CHARACTER_STATE_INTERRUPT_WAIVE_SET.has(newCharacterState)) { // No "framesToRecover" - //console.warn(`#DragonBones JoinIndex=${rdfPlayer.joinIndex}, ${playingAnimName} -> ${newAnimName}`); + //console.warn(`#FrameAnim JoinIndex=${rdfPlayer.joinIndex}, ${playingAnimName} -> ${newAnimName}`); this.animComp.play(newAnimName, 0); return; } diff --git a/frontend/assets/scripts/Map.js b/frontend/assets/scripts/Map.js index 93d049c..956cc25 100644 --- a/frontend/assets/scripts/Map.js +++ b/frontend/assets/scripts/Map.js @@ -402,6 +402,7 @@ cc.Class({ console.log(`Received parsedBattleColliderInfo via ws`); // TODO: Upon reconnection, the backend might have already been sending down data that'd trigger "onRoomDownsyncFrame & onInputFrameDownsyncBatch", but frontend could reject those data due to "battleState != PlayerBattleState.ACTIVE". Object.assign(self, parsedBattleColliderInfo); + self.gravityX = parsedBattleColliderInfo.gravityX; // to avoid integer default value 0 accidentally becoming null in "Object.assign(...)" self.tooFastDtIntervalMillis = 0.5 * self.rollbackEstimatedDtMillis; const tiledMapIns = self.node.getComponent(cc.TiledMap); @@ -426,6 +427,16 @@ cc.Class({ mapNode.removeAllChildren(); self._resetCurrentMatch(); + if (self.showCriticalCoordinateLabels) { + const drawer = new cc.Node(); + drawer.setPosition(cc.v2(0, 0)) + safelyAddChild(self.node, drawer); + setLocalZOrder(drawer, 999); + const g = drawer.addComponent(cc.Graphics); + g.lineWidth = 2; + self.g = g; + } + tiledMapIns.tmxAsset = tmxAsset; const newMapSize = tiledMapIns.getMapSize(); const newTileSize = tiledMapIns.getTileSize(); @@ -442,14 +453,19 @@ cc.Class({ } let barrierIdCounter = 0; - const boundaryObjs = tileCollisionManager.extractBoundaryObjects(self.node); - for (let boundaryObj of boundaryObjs.barriers) { - const x0 = boundaryObj.anchor.x, - y0 = boundaryObj.anchor.y; - - const newBarrierCollider = self.collisionSys.createPolygon(x0, y0, Array.from(boundaryObj, p => { + const refBoundaryObjs = tileCollisionManager.extractBoundaryObjects(self.node).barriers; + const boundaryObjs = parsedBattleColliderInfo.strToPolygon2DListMap; + for (let k = 0; k < boundaryObjs["Barrier"].eles.length; k++) { + let boundaryObj = boundaryObjs["Barrier"].eles[k]; + const refBoundaryObj = refBoundaryObjs[k]; + // boundaryObj = refBoundaryObj; + const [x0, y0] = [boundaryObj.anchor.x, boundaryObj.anchor.y]; + const newBarrierCollider = self.collisionSys.createPolygon(x0, y0, Array.from(boundaryObj.points, p => { return [p.x, p.y]; })); + newBarrierCollider.data = { + hardPushback: true + }; if (self.showCriticalCoordinateLabels) { for (let i = 0; i < boundaryObj.length; ++i) { @@ -762,18 +778,19 @@ cc.Class({ if (1 == joinIndex) { playerScriptIns.setSpecies("SoldierWaterGhost"); } else if (2 == joinIndex) { - playerScriptIns.setSpecies("SoldierFireGhost"); + playerScriptIns.setSpecies("SoldierFireGhostFrameAnim"); } const [wx, wy] = self.virtualGridToWorldPos(vx, vy); newPlayerNode.setPosition(wx, wy); playerScriptIns.mapNode = self.node; const colliderWidth = playerDownsyncInfo.colliderRadius * 2, - colliderHeight = playerDownsyncInfo.colliderRadius * 3; - const [x0, y0] = self.virtualGridToPolygonColliderAnchorPos(vx, vy, colliderWidth, colliderHeight), - pts = [[0, 0], [colliderWidth, 0], [colliderWidth, colliderHeight], [0, colliderHeight]]; + colliderHeight = playerDownsyncInfo.colliderRadius * 4; + const cpos = self.virtualGridToPolygonColliderTLPos(vx, vy, colliderWidth * 0.5, colliderHeight * 0.5); // the top-left corner is kept having integer coords + const pts = [[0, 0], [colliderWidth, 0], [colliderWidth, -colliderHeight - self.snapIntoPlatformOverlap], [0, -colliderHeight - self.snapIntoPlatformOverlap]]; - const newPlayerCollider = self.collisionSys.createPolygon(x0, y0, pts); + // [WARNING] The animNode "anchor & offset" are tuned to fit in this collider by "ControlledCharacter prefab & AttackingCharacter.js"! + const newPlayerCollider = self.collisionSys.createPolygon(cpos[0], cpos[1], pts); const collisionPlayerIndex = self.collisionPlayerIndexPrefix + joinIndex; newPlayerCollider.data = playerDownsyncInfo; self.collisionSysMap.set(collisionPlayerIndex, newPlayerCollider); @@ -833,6 +850,7 @@ cc.Class({ */ // [WARNING] Don't try to get "prevRdf(i.e. renderFrameId == latest-1)" by "self.recentRenderCache.getByFrameId(...)" here, as the cache might have been updated by asynchronous "onRoomDownsyncFrame(...)" calls! self.applyRoomDownsyncFrameDynamics(rdf, prevRdf); + self.showDebugBoundaries(rdf); ++self.renderFrameId; // [WARNING] It's important to increment the renderFrameId AFTER all the operations above!!! self.lastRenderFrameIdTriggeredAt = performance.now(); let t3 = performance.now(); @@ -961,13 +979,13 @@ cc.Class({ applyRoomDownsyncFrameDynamics(rdf, prevRdf) { const self = this; for (let [playerId, playerRichInfo] of self.playerRichInfoDict.entries()) { - const immediatePlayerInfo = rdf.players[playerId]; + const currPlayerDownsync = rdf.players[playerId]; const prevRdfPlayer = (null == prevRdf ? null : prevRdf.players[playerId]); - const [wx, wy] = self.virtualGridToWorldPos(immediatePlayerInfo.virtualGridX, immediatePlayerInfo.virtualGridY); + const [wx, wy] = self.virtualGridToWorldPos(currPlayerDownsync.virtualGridX, currPlayerDownsync.virtualGridY); //const justJiggling = (self.jigglingEps1D >= Math.abs(wx - playerRichInfo.node.x) && self.jigglingEps1D >= Math.abs(wy - playerRichInfo.node.y)); playerRichInfo.node.setPosition(wx, wy); - playerRichInfo.scriptIns.updateSpeed(immediatePlayerInfo.speed); - playerRichInfo.scriptIns.updateCharacterAnim(immediatePlayerInfo, prevRdfPlayer, false); + playerRichInfo.scriptIns.updateSpeed(currPlayerDownsync.speed); + playerRichInfo.scriptIns.updateCharacterAnim(currPlayerDownsync, prevRdfPlayer, false); } // Update countdown @@ -977,6 +995,73 @@ cc.Class({ } }, + showDebugBoundaries(rdf) { + const self = this; + if (self.showCriticalCoordinateLabels) { + let g = self.g; + g.clear(); + + for (let k in self.collisionSys._bvh._bodies) { + const body = self.collisionSys._bvh._bodies[k]; + if (!body._polygon) continue; + if (null != body.data && null != body.data.joinIndex) { + // character + if (1 == body.data.joinIndex) { + g.strokeColor = cc.Color.BLUE; + } else { + g.strokeColor = cc.Color.RED; + } + } else { + // barrier + g.strokeColor = cc.Color.WHITE; + } + g.moveTo(body.x, body.y); + const cnt = body._coords.length; + for (let j = 0; j < cnt; j += 2) { + const x = body._coords[j], + y = body._coords[j + 1]; + g.lineTo(x, y); + } + g.lineTo(body.x, body.y); + g.stroke(); + } + // For convenience of recovery upon reconnection, active bullets are always created & immediately removed from "collisionSys" within "applyInputFrameDownsyncDynamicsOnSingleRenderFrame" + + for (let k in rdf.meleeBullets) { + const meleeBullet = rdf.meleeBullets[k]; + if ( + meleeBullet.originatedRenderFrameId + meleeBullet.startupFrames <= rdf.id + && + meleeBullet.originatedRenderFrameId + meleeBullet.startupFrames + meleeBullet.activeFrames > rdf.id + ) { + const offender = rdf.players[meleeBullet.offenderPlayerId]; + if (1 == offender.joinIndex) { + g.strokeColor = cc.Color.BLUE; + } else { + g.strokeColor = cc.Color.RED; + } + + let xfac = 1; // By now, straight Punch offset doesn't respect "y-axis" + if (0 > offender.dirX) { + xfac = -1; + } + const [offenderWx, offenderWy] = self.virtualGridToWorldPos(offender.virtualGridX, offender.virtualGridY); + const bulletWx = offenderWx + xfac * meleeBullet.hitboxOffset; + const bulletWy = offenderWy; + const bulletCpos = self.worldToPolygonColliderTLPos(bulletWx, bulletWy, meleeBullet.hitboxSize.x * 0.5, meleeBullet.hitboxSize.y * 0.5); + const pts = [[0, 0], [meleeBullet.hitboxSize.x, 0], [meleeBullet.hitboxSize.x, -meleeBullet.hitboxSize.y], [0, -meleeBullet.hitboxSize.y]]; + + g.moveTo(bulletCpos[0], bulletCpos[1]); + for (let j = 0; j < pts.length; j += 1) { + g.lineTo(pts[j][0] + bulletCpos[0], pts[j][1] + bulletCpos[1]); + } + g.lineTo(bulletCpos[0], bulletCpos[1]); + g.stroke(); + } + } + } + }, + getCachedInputFrameDownsyncWithPrediction(inputFrameId) { const self = this; const inputFrameDownsync = self.recentInputCache.getByFrameId(inputFrameId); @@ -1003,7 +1088,10 @@ cc.Class({ virtualGridY: currPlayerDownsync.virtualGridY, dirX: currPlayerDownsync.dirX, dirY: currPlayerDownsync.dirY, + velX: currPlayerDownsync.velX, + velY: currPlayerDownsync.velY, characterState: currPlayerDownsync.characterState, + inAir: true, speed: currPlayerDownsync.speed, battleState: currPlayerDownsync.battleState, score: currPlayerDownsync.score, @@ -1016,27 +1104,104 @@ cc.Class({ } const nextRenderFrameMeleeBullets = []; + const effPushbacks = new Array(self.playerRichInfoArr.length); + const hardPushbackNorms = new Array(self.playerRichInfoArr.length); - const bulletPushbacks = new Array(self.playerRichInfoArr.length); // Guaranteed determinism regardless of traversal order - const effPushbacks = new Array(self.playerRichInfoArr.length); // Guaranteed determinism regardless of traversal order + // 1. Process player inputs + /* + [WARNING] Player input alone WOULD NOT take "characterState" into any "ATK_CHARACTER_STATE_IN_AIR_SET", only after the calculation of "effPushbacks" do we know exactly whether or not a player is "inAir", the finalize the transition of "thatPlayerInNextFrame.characterState". + */ + if (null != delayedInputFrame) { + const delayedInputFrameForPrevRenderFrame = self.getCachedInputFrameDownsyncWithPrediction(self._convertToInputFrameId(currRenderFrame.id - 1, self.inputDelayFrames)); + const inputList = delayedInputFrame.inputList; + for (let j in self.playerRichInfoArr) { + const joinIndex = parseInt(j) + 1; + const playerRichInfo = self.playerRichInfoArr[j]; + const playerId = playerRichInfo.id; + const currPlayerDownsync = currRenderFrame.players[playerId]; + const thatPlayerInNextFrame = nextRenderFramePlayers[playerId]; + if (0 < thatPlayerInNextFrame.framesToRecover) { + // No need to process inputs for this player, but there might be bullet pushbacks on this player + continue; + } - // Reset playerCollider position from the "virtual grid position" + const decodedInput = self.ctrl.decodeInput(inputList[joinIndex - 1]); + const prevDecodedInput = (null == delayedInputFrameForPrevRenderFrame ? null : self.ctrl.decodeInput(delayedInputFrameForPrevRenderFrame.inputList[joinIndex - 1])); + const prevBtnALevel = (null == prevDecodedInput ? 0 : prevDecodedInput.btnALevel); + const prevBtnBLevel = (null == prevDecodedInput ? 0 : prevDecodedInput.btnBLevel); + if (1 == decodedInput.btnBLevel && 0 == prevBtnBLevel) { + const characStateAlreadyInAir = window.ATK_CHARACTER_STATE_IN_AIR_SET.has(thatPlayerInNextFrame.characterState); + const characStateIsInterruptWaivable = window.ATK_CHARACTER_STATE_INTERRUPT_WAIVE_SET.has(thatPlayerInNextFrame.characterState); + if ( + !characStateAlreadyInAir + && + characStateIsInterruptWaivable + ) { + thatPlayerInNextFrame.velY = self.jumpingInitVelY; + if (1 == joinIndex) { + console.log(`playerId=${playerId}, joinIndex=${joinIndex} jumped at {renderFrame.id: ${currRenderFrame.id}, virtualX: ${currPlayerDownsync.virtualGridX}, virtualY: ${currPlayerDownsync.virtualGridY}, nextVelX: ${thatPlayerInNextFrame.velX}, nextVelY: ${thatPlayerInNextFrame.velY}}, delayedInputFrame.id=${delayedInputFrame.inputFrameId}`); + } + } + } + + if (1 == decodedInput.btnALevel && 0 == prevBtnALevel) { + const punchSkillId = 1; + const punch = window.pb.protos.MeleeBullet.create(self.meleeSkillConfig[punchSkillId]); + thatPlayerInNextFrame.framesToRecover = punch.recoveryFrames; + punch.battleLocalId = self.bulletBattleLocalIdCounter++; + punch.offenderJoinIndex = joinIndex; + punch.offenderPlayerId = playerId; + punch.originatedRenderFrameId = currRenderFrame.id; + nextRenderFrameMeleeBullets.push(punch); + // console.log(`playerId=${playerId}, joinIndex=${joinIndex} triggered a rising-edge of btnA at renderFrame.id=${currRenderFrame.id}, delayedInputFrame.id=${delayedInputFrame.inputFrameId}`); + + thatPlayerInNextFrame.characterState = window.ATK_CHARACTER_STATE.Atk1[0]; + if (false == currPlayerDownsync.inAir) { + thatPlayerInNextFrame.velX = 0; // prohibits simultaneous movement with Atk1 on the ground + } + } else if (0 == decodedInput.btnALevel && 1 == prevBtnALevel) { + // console.log(`playerId=${playerId} triggered a falling-edge of btnA at renderFrame.id=${currRenderFrame.id}, delayedInputFrame.id=${delayedInputFrame.inputFrameId}`); + } else { + // No bullet trigger, process joystick movement inputs. + if (0 != decodedInput.dx || 0 != decodedInput.dy) { + // Update directions and thus would eventually update moving animation accordingly + thatPlayerInNextFrame.dirX = decodedInput.dx; + thatPlayerInNextFrame.dirY = decodedInput.dy; + thatPlayerInNextFrame.velX = decodedInput.dx * currPlayerDownsync.speed; + thatPlayerInNextFrame.characterState = window.ATK_CHARACTER_STATE.Walking[0]; + } else { + thatPlayerInNextFrame.characterState = window.ATK_CHARACTER_STATE.Idle1[0]; + thatPlayerInNextFrame.velX = 0; + } + } + } + } + + // 2. Process player movement for (let j in self.playerRichInfoArr) { const joinIndex = parseInt(j) + 1; - bulletPushbacks[joinIndex - 1] = [0.0, 0.0]; effPushbacks[joinIndex - 1] = [0.0, 0.0]; const playerRichInfo = self.playerRichInfoArr[j]; const playerId = playerRichInfo.id; const collisionPlayerIndex = self.collisionPlayerIndexPrefix + joinIndex; const playerCollider = collisionSysMap.get(collisionPlayerIndex); const currPlayerDownsync = currRenderFrame.players[playerId]; + const thatPlayerInNextFrame = nextRenderFramePlayers[playerId]; + // Reset playerCollider position from the "virtual grid position" + const [newVx, newVy] = [currPlayerDownsync.virtualGridX + currPlayerDownsync.velX, currPlayerDownsync.virtualGridY + currPlayerDownsync.velY]; + const colliderWidth = self.playerRichInfoArr[joinIndex - 1].colliderRadius * 2, + colliderHeight = self.playerRichInfoArr[joinIndex - 1].colliderRadius * 4; + const newCpos = self.virtualGridToPolygonColliderTLPos(newVx, newVy, colliderWidth * 0.5, colliderHeight * 0.5); + playerCollider.x = newCpos[0]; + playerCollider.y = newCpos[1]; - const newVx = currPlayerDownsync.virtualGridX; - const newVy = currPlayerDownsync.virtualGridY; - [playerCollider.x, playerCollider.y] = self.virtualGridToPolygonColliderAnchorPos(newVx, newVy, self.playerRichInfoArr[joinIndex - 1].colliderRadius, self.playerRichInfoArr[joinIndex - 1].colliderRadius); + if (currPlayerDownsync.inAir) { + thatPlayerInNextFrame.velX += self.gravityX; + thatPlayerInNextFrame.velY += self.gravityY; + } } - // Check bullet-anything collisions first, because the pushbacks caused by bullets might later be reverted by player-barrier collision + // 3. Add bullet colliders into collision system const bulletColliders = new Map(); // Will all be removed at the end of `applyInputFrameDownsyncDynamicsOnSingleRenderFrame` due to the need for being rollback-compatible const removedBulletsAtCurrFrame = new Set(); for (let k in currRenderFrame.meleeBullets) { @@ -1058,38 +1223,131 @@ cc.Class({ const [offenderWx, offenderWy] = self.virtualGridToWorldPos(offender.virtualGridX, offender.virtualGridY); const bulletWx = offenderWx + xfac * meleeBullet.hitboxOffset; const bulletWy = offenderWy; - const [bulletCx, bulletCy] = self.worldToPolygonColliderAnchorPos(bulletWx, bulletWy, meleeBullet.hitboxSize.x * 0.5, meleeBullet.hitboxSize.y * 0.5), - pts = [[0, 0], [meleeBullet.hitboxSize.x, 0], [meleeBullet.hitboxSize.x, meleeBullet.hitboxSize.y], [0, meleeBullet.hitboxSize.y]]; - const newBulletCollider = collisionSys.createPolygon(bulletCx, bulletCy, pts); + const bulletCpos = self.worldToPolygonColliderTLPos(bulletWx, bulletWy, meleeBullet.hitboxSize.x * 0.5, meleeBullet.hitboxSize.y * 0.5), + pts = [[0, 0], [meleeBullet.hitboxSize.x, 0], [meleeBullet.hitboxSize.x, -meleeBullet.hitboxSize.y], [0, -meleeBullet.hitboxSize.y]]; + const newBulletCollider = collisionSys.createPolygon(bulletCpos[0], bulletCpos[1], pts); newBulletCollider.data = meleeBullet; collisionSysMap.set(collisionBulletIndex, newBulletCollider); bulletColliders.set(collisionBulletIndex, newBulletCollider); - // console.log(`A meleeBullet is added to collisionSys at currRenderFrame.id=${currRenderFrame.id} as start-up frames ended and active frame is not yet ended: ${JSON.stringify(meleeBullet)}`); } } + // 4. Invoke collision system stepping collisionSys.update(); - const result1 = collisionSys.createResult(); // Can I reuse a "self.collisionSysResult" object throughout the whole battle? + const result = collisionSys.createResult(); // Can I reuse a "self.collisionSysResult" object throughout the whole battle? + // 5. Calc pushbacks for each player (after its movement) w/o bullets + for (let j in self.playerRichInfoArr) { + const joinIndex = parseInt(j) + 1; + const playerRichInfo = self.playerRichInfoArr[j]; + const playerId = playerRichInfo.id; + const collisionPlayerIndex = self.collisionPlayerIndexPrefix + joinIndex; + const playerCollider = collisionSysMap.get(collisionPlayerIndex); + const potentials = playerCollider.potentials(); + hardPushbackNorms[joinIndex - 1] = self.calcHardPushbacksNorms(playerCollider, potentials, result, self.snapIntoPlatformOverlap, effPushbacks[joinIndex - 1]); + + const currPlayerDownsync = currRenderFrame.players[playerId]; + const thatPlayerInNextFrame = nextRenderFramePlayers[playerId]; + let fallStopping = false; + let possiblyFallStoppedOnAnotherPlayer = false; + for (const potential of potentials) { + let [isBarrier, isAnotherPlayer, isBullet] = [true == potential.data.hardPushback, null != potential.data.joinIndex, null != potential.data.offenderJoinIndex]; + // ignore bullets for this step + if (isBullet) continue; + // Test if the player collides with the wall/another player + if (!playerCollider.collides(potential, result)) continue; + + const normAlignmentWithGravity = (result.overlap_x * 0 + result.overlap_y * (-1.0)); + const landedOnGravityPushback = (self.snapIntoPlatformThreshold < normAlignmentWithGravity); // prevents false snapping on the lateral sides + let pushback = [result.overlap * result.overlap_x, result.overlap * result.overlap_y]; + if (landedOnGravityPushback) { + // kindly note that one player might land on top of another player, and snapping is also required in such case + pushback = [(result.overlap - self.snapIntoPlatformOverlap) * result.overlap_x, (result.overlap - self.snapIntoPlatformOverlap) * result.overlap_y]; + thatPlayerInNextFrame.inAir = false; + } + for (let hardPushbackNorm of hardPushbackNorms[joinIndex - 1]) { + // remove pushback component on the directions of "hardPushbackNorms[joinIndex-1]" (by now those hardPushbacks are already accounted in "effPushbacks[joinIndex-1]") + const projectedMagnitude = pushback[0] * hardPushbackNorm[0] + pushback[1] * hardPushbackNorm[1]; + if (isBarrier + || + (isAnotherPlayer && 0 > projectedMagnitude) + ) { + // [WARNING] Pushing by another player is different from pushing by barrier! + // Otherwise the player couldn't be pushed by another player to opposite dir of a side wall + pushback[0] -= projectedMagnitude * hardPushbackNorm[0]; + pushback[1] -= projectedMagnitude * hardPushbackNorm[1]; + } + } + + effPushbacks[joinIndex - 1][0] += pushback[0]; + effPushbacks[joinIndex - 1][1] += pushback[1]; + if (currPlayerDownsync.inAir && landedOnGravityPushback) { + fallStopping = true; + if (isAnotherPlayer) { + possiblyFallStoppedOnAnotherPlayer = true; + } + if (1 == thatPlayerInNextFrame.joinIndex) { + console.log(`playerId=${playerId}, joinIndex=${currPlayerDownsync.joinIndex} fallStopping#1 at {renderFrame.id: ${currRenderFrame.id}, virtualX: ${currPlayerDownsync.virtualGridX}, virtualY: ${currPlayerDownsync.virtualGridY}, velX: ${currPlayerDownsync.velX}, velY: ${currPlayerDownsync.velY}} with effPushback={${effPushbacks[joinIndex - 1][0].toFixed(3)}, ${effPushbacks[joinIndex - 1][1].toFixed(3)}}, overlayMag=${result.overlap.toFixed(4)}, possiblyFallStoppedOnAnotherPlayer=${possiblyFallStoppedOnAnotherPlayer}`); + } + } + + if (1 == joinIndex && currPlayerDownsync.inAir && isBarrier && !landedOnGravityPushback) { + console.warn(`playerId=${playerId}, joinIndex=${currPlayerDownsync.joinIndex} inAir & pushed back by barrier & not landed at {renderFrame.id: ${currRenderFrame.id}, virtualX: ${currPlayerDownsync.virtualGridX}, virtualY: ${currPlayerDownsync.virtualGridY}, velX: ${currPlayerDownsync.velX}, velY: ${currPlayerDownsync.velY}} with effPushback={${effPushbacks[joinIndex - 1][0].toFixed(3)}, ${effPushbacks[joinIndex - 1][1].toFixed(3)}}, playerColliderPos={${playerCollider.x.toFixed(3)}, ${playerCollider.y.toFixed(3)}}, barrierPos={${potential.x.toFixed(3)}, ${potential.y.toFixed(3)}}, overlayMag=${result.overlap.toFixed(4)}, len(hardPushbackNorms)=${hardPushbackNorms.length}`); + } + + if (1 == joinIndex && currPlayerDownsync.inAir && isAnotherPlayer) { + console.warn(`playerId=${playerId}, joinIndex=${currPlayerDownsync.joinIndex} inAir and pushed back by another player at {renderFrame.id: ${currRenderFrame.id}, virtualX: ${currPlayerDownsync.virtualGridX}, virtualY: ${currPlayerDownsync.virtualGridY}, velX: ${currPlayerDownsync.velX}, velY: ${currPlayerDownsync.velY}} with effPushback={${effPushbacks[joinIndex - 1][0].toFixed(3)}, ${effPushbacks[joinIndex - 1][1].toFixed(3)}}, landedOnGravityPushback=${landedOnGravityPushback}, fallStopping=${fallStopping}, playerColliderPos={${playerCollider.x.toFixed(3)}, ${playerCollider.y.toFixed(3)}}, anotherPlayerColliderPos={${potential.x.toFixed(3)}, ${potential.y.toFixed(3)}}, overlayMag=${result.overlap.toFixed(4)}, len(hardPushbackNorms)=${hardPushbackNorms.length}`); + } + } + + if (fallStopping) { + thatPlayerInNextFrame.velX = 0; + thatPlayerInNextFrame.velY = 0; + thatPlayerInNextFrame.characterState = window.ATK_CHARACTER_STATE.Idle1[0]; + thatPlayerInNextFrame.framesToRecover = 0; + } + if (currPlayerDownsync.inAir) { + thatPlayerInNextFrame.characterState = window.toInAirConjugate(thatPlayerInNextFrame.characterState); + } + } + + // 6. Check bullet-anything collisions bulletColliders.forEach((bulletCollider, collisionBulletIndex) => { const potentials = bulletCollider.potentials(); const offender = currRenderFrame.players[bulletCollider.data.offenderPlayerId]; let shouldRemove = false; for (const potential of potentials) { if (null != potential.data && potential.data.joinIndex == bulletCollider.data.offenderJoinIndex) continue; - if (!bulletCollider.collides(potential, result1)) continue; - if (null != potential.data && null !== potential.data.joinIndex) { + if (!bulletCollider.collides(potential, result)) continue; + if (null != potential.data && null != potential.data.joinIndex) { + const playerId = potential.data.id; const joinIndex = potential.data.joinIndex; let xfac = 1; if (0 > offender.dirX) { xfac = -1; } - bulletPushbacks[joinIndex - 1][0] += xfac * bulletCollider.data.pushback; // Only for straight punch, there's no y-pushback - bulletPushbacks[joinIndex - 1][1] += 0; - const thatAckedPlayerInNextFrame = nextRenderFramePlayers[potential.data.id]; - thatAckedPlayerInNextFrame.characterState = window.ATK_CHARACTER_STATE.Atked1[0]; - const oldFramesToRecover = thatAckedPlayerInNextFrame.framesToRecover; - thatAckedPlayerInNextFrame.framesToRecover = (oldFramesToRecover > bulletCollider.data.hitStunFrames ? oldFramesToRecover : bulletCollider.data.hitStunFrames); // In case the hit player is already stun, we extend it + // Only for straight punch, there's no y-pushback + let bulletPushback = [-xfac * bulletCollider.data.pushback, 0]; + // console.log(`playerId=${playerId}, joinIndex=${joinIndex} is supposed to be pushed back by meleeBullet for bulletPushback=${JSON.stringify(bulletPushback)} at renderFrame.id=${currRenderFrame.id}`); + for (let hardPushbackNorm of hardPushbackNorms[joinIndex - 1]) { + const projectedMagnitude = bulletPushback[0] * hardPushbackNorm[0] + bulletPushback[1] * hardPushbackNorm[1]; + if (0 > projectedMagnitude) { + // Otherwise when smashing into a wall the atked player would be pushed into the wall first and only got back in the next renderFrame, not what I want here + bulletPushback[0] -= (projectedMagnitude * hardPushbackNorm[0]); + bulletPushback[1] -= (projectedMagnitude * hardPushbackNorm[1]); + // console.log(`playerId=${playerId}, joinIndex=${joinIndex} reducing bulletPushback=${JSON.stringify(bulletPushback)} by ${JSON.stringify([projectedMagnitude * hardPushbackNorm[0], projectedMagnitude * hardPushbackNorm[1]])} where hardPushbackNorm=${JSON.stringify(hardPushbackNorm)}, projectedMagnitude=${projectedMagnitude} at renderFrame.id=${currRenderFrame.id}`); + } + } + // console.log(`playerId=${playerId}, joinIndex=${joinIndex} is actually pushed back by meleeBullet for bulletPushback=${JSON.stringify(bulletPushback)} at renderFrame.id=${currRenderFrame.id}`); + effPushbacks[joinIndex - 1][0] += bulletPushback[0]; + effPushbacks[joinIndex - 1][1] += bulletPushback[1]; + const [atkedPlayerInCurFrame, atkedPlayerInNextFrame] = [currRenderFrame.players[potential.data.id], nextRenderFramePlayers[potential.data.id]]; + atkedPlayerInNextFrame.characterState = window.ATK_CHARACTER_STATE.Atked1[0]; + if (atkedPlayerInCurFrame.inAir) { + atkedPlayerInNextFrame.characterState = window.toInAirConjugate(atkedPlayerInNextFrame.characterState); + } + const oldFramesToRecover = atkedPlayerInNextFrame.framesToRecover; + atkedPlayerInNextFrame.framesToRecover = (oldFramesToRecover > bulletCollider.data.hitStunFrames ? oldFramesToRecover : bulletCollider.data.hitStunFrames); // In case the hit player is already stun, we extend it } shouldRemove = true; } @@ -1111,95 +1369,32 @@ cc.Class({ nextRenderFrameMeleeBullets.push(meleeBullet); } - // Process player inputs - if (null != delayedInputFrame) { - const delayedInputFrameForPrevRenderFrame = self.getCachedInputFrameDownsyncWithPrediction(self._convertToInputFrameId(currRenderFrame.id - 1, self.inputDelayFrames)); - const inputList = delayedInputFrame.inputList; - for (let j in self.playerRichInfoArr) { - const joinIndex = parseInt(j) + 1; - effPushbacks[joinIndex - 1] = [0.0, 0.0]; - const playerRichInfo = self.playerRichInfoArr[j]; - const playerId = playerRichInfo.id; - const collisionPlayerIndex = self.collisionPlayerIndexPrefix + joinIndex; - const playerCollider = collisionSysMap.get(collisionPlayerIndex); - const currPlayerDownsync = currRenderFrame.players[playerId]; - const thatPlayerInNextFrame = nextRenderFramePlayers[playerId]; - if (0 < thatPlayerInNextFrame.framesToRecover) { - // No need to process inputs for this player, but there might be bullet pushbacks on this player - playerCollider.x += bulletPushbacks[joinIndex - 1][0]; - playerCollider.y += bulletPushbacks[joinIndex - 1][1]; - if (0 != bulletPushbacks[joinIndex - 1][0] || 0 != bulletPushbacks[joinIndex - 1][1]) { - console.log(`playerId=${playerId}, joinIndex=${joinIndex} is pushbacked back by ${bulletPushbacks[joinIndex - 1]} by bullet impacts, now its framesToRecover is ${thatPlayerInNextFrame.framesToRecover}`); - } - continue; + // 7. Get players out of stuck barriers if there's any + for (let j in self.playerRichInfoArr) { + const joinIndex = parseInt(j) + 1; + const playerId = self.playerRichInfoArr[j].id; + const collisionPlayerIndex = self.collisionPlayerIndexPrefix + joinIndex; + const playerCollider = collisionSysMap.get(collisionPlayerIndex); + // Update "virtual grid position" + const currPlayerDownsync = currRenderFrame.players[playerId]; + const thatPlayerInNextFrame = nextRenderFramePlayers[playerId]; + const colliderWidth = self.playerRichInfoArr[joinIndex - 1].colliderRadius * 2, + colliderHeight = self.playerRichInfoArr[joinIndex - 1].colliderRadius * 4; + const newVpos = self.polygonColliderTLToVirtualGridPos(playerCollider.x - effPushbacks[joinIndex - 1][0], playerCollider.y - effPushbacks[joinIndex - 1][1], colliderWidth * 0.5, colliderHeight * 0.5); + thatPlayerInNextFrame.virtualGridX = newVpos[0]; + thatPlayerInNextFrame.virtualGridY = newVpos[1]; + + if (1 == thatPlayerInNextFrame.joinIndex) { + if (thatPlayerInNextFrame.inAir && 0 != thatPlayerInNextFrame.velY) { + // console.log(`playerId=${playerId}, joinIndex=${thatPlayerInNextFrame.joinIndex} inAir trajectory: {nextRenderFrame.id: ${currRenderFrame.id + 1}, nextVirtualX: ${thatPlayerInNextFrame.virtualGridX}, nextVirtualY: ${thatPlayerInNextFrame.virtualGridY}, nextVelX: ${thatPlayerInNextFrame.velX}, nextVelY: ${thatPlayerInNextFrame.velY}}, with playerColliderPos={${playerCollider.x.toFixed(3)}, ${playerCollider.y.toFixed(3)}}, effPushback={${effPushbacks[joinIndex - 1][0].toFixed(3)}, ${effPushbacks[joinIndex - 1][1].toFixed(3)}}`); } - - const decodedInput = self.ctrl.decodeInput(inputList[joinIndex - 1]); - - const prevDecodedInput = (null == delayedInputFrameForPrevRenderFrame ? null : self.ctrl.decodeInput(delayedInputFrameForPrevRenderFrame.inputList[joinIndex - 1])); - const prevBtnALevel = (null == prevDecodedInput ? 0 : prevDecodedInput.btnALevel); - - if (1 == decodedInput.btnALevel && 0 == prevBtnALevel) { - // console.log(`playerId=${playerId} triggered a rising-edge of btnA at renderFrame.id=${currRenderFrame.id}, delayedInputFrame.id=${delayedInputFrame.inputFrameId}`); - if (self.bulletTriggerEnabled) { - const punchSkillId = 1; - const punch = window.pb.protos.MeleeBullet.create(self.meleeSkillConfig[punchSkillId]); - thatPlayerInNextFrame.framesToRecover = punch.recoveryFrames; - punch.battleLocalId = self.bulletBattleLocalIdCounter++; - punch.offenderJoinIndex = joinIndex; - punch.offenderPlayerId = playerId; - punch.originatedRenderFrameId = currRenderFrame.id; - nextRenderFrameMeleeBullets.push(punch); - // console.log(`A rising-edge of meleeBullet is created at renderFrame.id=${currRenderFrame.id}, delayedInputFrame.id=${delayedInputFrame.inputFrameId}: ${self._stringifyRecentInputCache(true)}`); - // console.log(`A rising-edge of meleeBullet is created at renderFrame.id=${currRenderFrame.id}, delayedInputFrame.id=${delayedInputFrame.inputFrameId}`); - - thatPlayerInNextFrame.characterState = window.ATK_CHARACTER_STATE.Atk1[0]; - } - } else if (0 == decodedInput.btnALevel && 1 == prevBtnALevel) { - // console.log(`playerId=${playerId} triggered a falling-edge of btnA at renderFrame.id=${currRenderFrame.id}, delayedInputFrame.id=${delayedInputFrame.inputFrameId}`); - } else { - // No bullet trigger, process movement inputs - if (0 != decodedInput.dx || 0 != decodedInput.dy) { - // Update directions and thus would eventually update moving animation accordingly - thatPlayerInNextFrame.dirX = decodedInput.dx; - thatPlayerInNextFrame.dirY = decodedInput.dy; - thatPlayerInNextFrame.characterState = window.ATK_CHARACTER_STATE.Walking[0]; - } else { - thatPlayerInNextFrame.characterState = window.ATK_CHARACTER_STATE.Idle1[0]; - } - const [movementX, movementY] = self.virtualGridToWorldPos(decodedInput.dx + currPlayerDownsync.speed * decodedInput.dx, decodedInput.dy + currPlayerDownsync.speed * decodedInput.dy); - playerCollider.x += movementX; - playerCollider.y += movementY; + if (currPlayerDownsync.inAir && !thatPlayerInNextFrame.inAir) { + console.warn(`playerId=${playerId}, joinIndex=${thatPlayerInNextFrame.joinIndex} fallStopping#2 at {nextRenderFrame.id: ${currRenderFrame.id + 1}, nextVirtualX: ${thatPlayerInNextFrame.virtualGridX}, nextVirtualY: ${thatPlayerInNextFrame.virtualGridY}, nextVelX: ${thatPlayerInNextFrame.velX}, nextVelY: ${thatPlayerInNextFrame.velY}}, with playerColliderPos={${playerCollider.x.toFixed(3)}, ${playerCollider.y.toFixed(3)}}, effPushback={${effPushbacks[joinIndex - 1][0].toFixed(3)}, ${effPushbacks[joinIndex - 1][1].toFixed(3)}}`); + } + if (!currPlayerDownsync.inAir && thatPlayerInNextFrame.inAir) { + console.warn(`playerId=${playerId}, joinIndex=${thatPlayerInNextFrame.joinIndex} took off at {nextRenderFrame.id: ${currRenderFrame.id + 1}, nextVirtualX: ${thatPlayerInNextFrame.virtualGridX}, nextVirtualY: ${thatPlayerInNextFrame.virtualGridY}, nextVelX: ${thatPlayerInNextFrame.velX}, nextVelY: ${thatPlayerInNextFrame.velY}}, with playerColliderPos={${playerCollider.x.toFixed(3)}, ${playerCollider.y.toFixed(3)}}, effPushback={${effPushbacks[joinIndex - 1][0].toFixed(3)}, ${effPushbacks[joinIndex - 1][1].toFixed(3)}}`); } } - - collisionSys.update(); // by now all "bulletCollider"s are removed - const result2 = collisionSys.createResult(); // Can I reuse a "self.collisionSysResult" object throughout the whole battle? - - for (let j in self.playerRichInfoArr) { - const joinIndex = parseInt(j) + 1; - const playerId = self.playerRichInfoArr[j].id; - const collisionPlayerIndex = self.collisionPlayerIndexPrefix + joinIndex; - const playerCollider = collisionSysMap.get(collisionPlayerIndex); - const potentials = playerCollider.potentials(); - for (const potential of potentials) { - // Test if the player collides with the wall - if (!playerCollider.collides(potential, result2)) continue; - // Push the player out of the wall - effPushbacks[joinIndex - 1][0] += result2.overlap * result2.overlap_x; - effPushbacks[joinIndex - 1][1] += result2.overlap * result2.overlap_y; - } - } - - for (let j in self.playerRichInfoArr) { - const joinIndex = parseInt(j) + 1; - const playerId = self.playerRichInfoArr[j].id; - const collisionPlayerIndex = self.collisionPlayerIndexPrefix + joinIndex; - const playerCollider = collisionSysMap.get(collisionPlayerIndex); - const thatPlayerInNextFrame = nextRenderFramePlayers[playerId]; - [thatPlayerInNextFrame.virtualGridX, thatPlayerInNextFrame.virtualGridY] = self.polygonColliderAnchorToVirtualGridPos(playerCollider.x - effPushbacks[joinIndex - 1][0], playerCollider.y - effPushbacks[joinIndex - 1][1], self.playerRichInfoArr[j].colliderRadius, self.playerRichInfoArr[j].colliderRadius); - } - } return window.pb.protos.RoomDownsyncFrame.create({ @@ -1214,11 +1409,10 @@ cc.Class({ This function eventually calculates a "RoomDownsyncFrame" where "RoomDownsyncFrame.id == renderFrameIdEd" if not interruptted. */ const self = this; - let i = renderFrameIdSt, - prevLatestRdf = null, + let prevLatestRdf = null, latestRdf = null; - do { + for (let i = renderFrameIdSt; i < renderFrameIdEd; i++) { latestRdf = self.recentRenderCache.getByFrameId(i); // typed "RoomDownsyncFrame"; [WARNING] When "true == isChasing", this function can be interruptted by "onRoomDownsyncFrame(rdf)" asynchronously anytime, making this line return "null"! if (null == latestRdf) { console.warn(`Couldn't find renderFrame for i=${i} to rollback, self.renderFrameId=${self.renderFrameId}, lastAllConfirmedRenderFrameId=${self.lastAllConfirmedRenderFrameId}, lastAllConfirmedInputFrameId=${self.lastAllConfirmedInputFrameId}, might've been interruptted by onRoomDownsyncFrame`); @@ -1250,8 +1444,7 @@ cc.Class({ self.chaserRenderFrameId = latestRdf.id; } self.recentRenderCache.setByFrameId(latestRdf, latestRdf.id); - ++i; - } while (i < renderFrameIdEd); + } return [prevLatestRdf, latestRdf]; }, @@ -1325,23 +1518,41 @@ cc.Class({ return [wx, wy]; }, - worldToPolygonColliderAnchorPos(wx, wy, halfBoundingW, halfBoundingH) { - return [wx - halfBoundingW, wy - halfBoundingH]; + worldToPolygonColliderTLPos(wx, wy, halfBoundingW, halfBoundingH) { + return [wx - halfBoundingW, wy + halfBoundingH]; }, - polygonColliderAnchorToWorldPos(cx, cy, halfBoundingW, halfBoundingH) { - return [cx + halfBoundingW, cy + halfBoundingH]; + polygonColliderTLToWorldPos(cx, cy, halfBoundingW, halfBoundingH) { + return [cx + halfBoundingW, cy - halfBoundingH]; }, - polygonColliderAnchorToVirtualGridPos(cx, cy, halfBoundingW, halfBoundingH) { + polygonColliderTLToVirtualGridPos(cx, cy, halfBoundingW, halfBoundingH) { const self = this; - const [wx, wy] = self.polygonColliderAnchorToWorldPos(cx, cy, halfBoundingW, halfBoundingH); + const [wx, wy] = self.polygonColliderTLToWorldPos(cx, cy, halfBoundingW, halfBoundingH); return self.worldToVirtualGridPos(wx, wy) }, - virtualGridToPolygonColliderAnchorPos(vx, vy, halfBoundingW, halfBoundingH) { + virtualGridToPolygonColliderTLPos(vx, vy, halfBoundingW, halfBoundingH) { const self = this; const [wx, wy] = self.virtualGridToWorldPos(vx, vy); - return self.worldToPolygonColliderAnchorPos(wx, wy, halfBoundingW, halfBoundingH) + return self.worldToPolygonColliderTLPos(wx, wy, halfBoundingW, halfBoundingH) + }, + + calcHardPushbacksNorms(collider, potentials, result, snapIntoPlatformOverlap, effPushback) { + const self = this; + let ret = []; + for (const potential of potentials) { + if (null == potential.data || !(true == potential.data.hardPushback)) continue; + if (!collider.collides(potential, result)) continue; + // ALWAY snap into hardPushbacks! + // [overlay_x, overlap_y] is the unit vector that points into the platform + const [pushbackX, pushbackY] = [(result.overlap - snapIntoPlatformOverlap) * result.overlap_x, (result.overlap - snapIntoPlatformOverlap) * result.overlap_y]; + + ret.push([result.overlap_x, result.overlap_y]); + effPushback[0] += pushbackX; + effPushback[1] += pushbackY; + } + + return ret; }, }); diff --git a/frontend/assets/scripts/OfflineMap.js b/frontend/assets/scripts/OfflineMap.js index 4780d2f..9b417b4 100644 --- a/frontend/assets/scripts/OfflineMap.js +++ b/frontend/assets/scripts/OfflineMap.js @@ -13,6 +13,7 @@ cc.Class({ onLoad() { const self = this; window.mapIns = self; + self.showCriticalCoordinateLabels = true; cc.director.getCollisionManager().enabled = false; @@ -34,9 +35,11 @@ cc.Class({ self.inputFrameUpsyncDelayTolerance = 2; self.renderCacheSize = 1024; + self.serverFps = 60; self.rollbackEstimatedDt = 0.016667; self.rollbackEstimatedDtMillis = 16.667; self.rollbackEstimatedDtNanos = 16666666; + self.tooFastDtIntervalMillis = 0.5 * self.rollbackEstimatedDtMillis; self.worldToVirtualGridRatio = 1000; self.virtualGridToWorldRatio = 1.0 / self.worldToVirtualGridRatio; @@ -67,6 +70,16 @@ cc.Class({ } }; + /* + [WARNING] As when a character is standing on a barrier, if not carefully curated there MIGHT BE a bouncing sequence of "[(inAir -> dropIntoBarrier ->), (notInAir -> pushedOutOfBarrier ->)], [(inAir -> ..." + + Moreover, "snapIntoPlatformOverlap" should be small enough such that the walking "velX" or jumping initial "velY" can escape from it by 1 renderFrame (when jumping is triggered, the character is waived from snappig for 1 renderFrame). + */ + self.snapIntoPlatformOverlap = 0.1; + self.snapIntoPlatformThreshold = 0.5; // a platform must be "horizontal enough" for a character to "stand on" + self.jumpingInitVelY = 7 * self.worldToVirtualGridRatio; // unit: (virtual grid length/renderFrame) + [self.gravityX, self.gravityY] = [0, -0.5*self.worldToVirtualGridRatio]; // unit: (virtual grid length/renderFrame^2) + const tiledMapIns = self.node.getComponent(cc.TiledMap); const fullPathOfTmxFile = cc.js.formatStr("map/%s/map", "dungeon"); @@ -80,6 +93,17 @@ cc.Class({ mapNode.removeAllChildren(); self._resetCurrentMatch(); + if (self.showCriticalCoordinateLabels) { + const drawer = new cc.Node(); + drawer.setPosition(cc.v2(0, 0)) + safelyAddChild(self.node, drawer); + setLocalZOrder(drawer, 999); + const g = drawer.addComponent(cc.Graphics); + g.lineWidth = 2; + self.g = g; + } + + tiledMapIns.tmxAsset = tmxAsset; const newMapSize = tiledMapIns.getMapSize(); const newTileSize = tiledMapIns.getTileSize(); @@ -95,8 +119,11 @@ cc.Class({ const newBarrier = self.collisionSys.createPolygon(x0, y0, Array.from(boundaryObj, p => { return [p.x, p.y]; })); + newBarrier.data = { + hardPushback: true + }; - if (self.showCriticalCoordinateLabels) { + if (false && self.showCriticalCoordinateLabels) { for (let i = 0; i < boundaryObj.length; ++i) { const barrierVertLabelNode = new cc.Node(); switch (i % 4) { @@ -136,30 +163,36 @@ cc.Class({ const startRdf = window.pb.protos.RoomDownsyncFrame.create({ id: window.MAGIC_ROOM_DOWNSYNC_FRAME_ID.BATTLE_START, players: { - 10: { + 10: window.pb.protos.PlayerDownsync.create({ id: 10, joinIndex: 1, - virtualGridX: 0, - virtualGridY: 0, + virtualGridX: self.worldToVirtualGridPos(boundaryObjs.playerStartingPositions[0].x, boundaryObjs.playerStartingPositions[0].y)[0], + virtualGridY: self.worldToVirtualGridPos(boundaryObjs.playerStartingPositions[0].x, boundaryObjs.playerStartingPositions[0].y)[1], speed: 1 * self.worldToVirtualGridRatio, colliderRadius: 12, - characterState: window.ATK_CHARACTER_STATE.Idle1[0], + characterState: window.ATK_CHARACTER_STATE.InAirIdle1[0], framesToRecover: 0, dirX: 0, dirY: 0, - }, - 11: { + velX: 0, + velY: 0, + inAir: true, + }), + 11: window.pb.protos.PlayerDownsync.create({ id: 11, joinIndex: 2, - virtualGridX: 80 * self.worldToVirtualGridRatio, - virtualGridY: 0 * self.worldToVirtualGridRatio, + virtualGridX: self.worldToVirtualGridPos(boundaryObjs.playerStartingPositions[1].x, boundaryObjs.playerStartingPositions[1].y)[0], + virtualGridY: self.worldToVirtualGridPos(boundaryObjs.playerStartingPositions[1].x, boundaryObjs.playerStartingPositions[1].y)[1], speed: 1 * self.worldToVirtualGridRatio, colliderRadius: 12, - characterState: window.ATK_CHARACTER_STATE.Idle1[0], + characterState: window.ATK_CHARACTER_STATE.InAirIdle1[0], framesToRecover: 0, dirX: 0, dirY: 0, - }, + velX: 0, + velY: 0, + inAir: true, + }), } }); self.selfPlayerInfo = { @@ -177,7 +210,8 @@ cc.Class({ const self = this; if (ALL_BATTLE_STATES.IN_BATTLE == self.battleState) { const elapsedMillisSinceLastFrameIdTriggered = performance.now() - self.lastRenderFrameIdTriggeredAt; - if (elapsedMillisSinceLastFrameIdTriggered < (self.rollbackEstimatedDtMillis)) { + if (elapsedMillisSinceLastFrameIdTriggered < self.tooFastDtIntervalMillis) { + // [WARNING] We should avoid a frontend ticking too fast to prevent cheating, as well as ticking too slow to cause a "resync avalanche" that impacts user experience! // console.debug("Avoiding too fast frame@renderFrameId=", self.renderFrameId, ": elapsedMillisSinceLastFrameIdTriggered=", elapsedMillisSinceLastFrameIdTriggered); return; } @@ -194,11 +228,12 @@ cc.Class({ const [prevRdf, rdf] = self.rollbackAndChase(self.renderFrameId, self.renderFrameId + 1, self.collisionSys, self.collisionSysMap, false); self.applyRoomDownsyncFrameDynamics(rdf, prevRdf); + self.showDebugBoundaries(rdf); + ++self.renderFrameId; + self.lastRenderFrameIdTriggeredAt = performance.now(); let t3 = performance.now(); } catch (err) { console.error("Error during Map.update", err); - } finally { - ++self.renderFrameId; // [WARNING] It's important to increment the renderFrameId AFTER all the operations above!!! } } }, diff --git a/frontend/assets/scripts/TileCollisionManagerSingleton.js b/frontend/assets/scripts/TileCollisionManagerSingleton.js index 80a2f17..342b111 100644 --- a/frontend/assets/scripts/TileCollisionManagerSingleton.js +++ b/frontend/assets/scripts/TileCollisionManagerSingleton.js @@ -108,6 +108,7 @@ TileCollisionManager.prototype.continuousMapNodePosToContinuousObjLayerOffset = window.battleEntityTypeNameToGlobalGid = {}; TileCollisionManager.prototype.extractBoundaryObjects = function(withTiledMapNode) { let toRet = { + playerStartingPositions: [], barriers: [], }; const tiledMapIns = withTiledMapNode.getComponent(cc.TiledMap); // This is a magic name. @@ -115,6 +116,18 @@ TileCollisionManager.prototype.extractBoundaryObjects = function(withTiledMapNod const allObjectGroups = tiledMapIns.getObjectGroups(); for (let i = 0; i < allObjectGroups.length; ++i) { var objectGroup = allObjectGroups[i]; + if ("PlayerStartingPos" == objectGroup.getGroupName()) { + var allObjects = objectGroup.getObjects(); + for (let j = 0; j < allObjects.length; ++j) { + const cccMaskedX = allObjects[j].x, + cccMaskedY = allObjects[j].y; + const origX = cccMaskedX, + origY = withTiledMapNode.getContentSize().height - cccMaskedY; // FIXME: I don't know why CocosCreator did this, it's stupid and MIGHT NOT WORK IN ISOMETRIC orientation! + let wpos = this.continuousObjLayerOffsetToContinuousMapNodePos(withTiledMapNode, cc.v2(origX, origY)); + toRet.playerStartingPositions.push(wpos); + } + continue; + } if ("barrier_and_shelter" != objectGroup.getProperty("type")) continue; var allObjects = objectGroup.getObjects(); for (let j = 0; j < allObjects.length; ++j) { @@ -123,21 +136,33 @@ TileCollisionManager.prototype.extractBoundaryObjects = function(withTiledMapNod if (0 < gid) { continue; } - const polylinePoints = object.polylinePoints; - if (null == polylinePoints) { - continue - } const boundaryType = object.boundary_type; - let toPushBarriers = []; - toPushBarriers.boundaryType = boundaryType; + let toPushBarrier = []; + toPushBarrier.boundaryType = boundaryType; switch (boundaryType) { case "barrier": + let polylinePoints = object.polylinePoints; + if (null == polylinePoints) { + polylinePoints = [{ + x: 0, + y: 0 + }, { + x: object.width, + y: 0 + }, { + x: object.width, + y: -object.height + }, { + x: 0, + y: -object.height + }]; + } for (let k = 0; k < polylinePoints.length; ++k) { /* Since CocosCreatorv2.1.3, the Y-coord of object polylines is inverted compared to that of the tmx file. */ - toPushBarriers.push(this.continuousObjLayerVecToContinuousMapNodeVec(withTiledMapNode, cc.v2(polylinePoints[k].x, -polylinePoints[k].y))); + toPushBarrier.push(this.continuousObjLayerVecToContinuousMapNodeVec(withTiledMapNode, cc.v2(polylinePoints[k].x, -polylinePoints[k].y))); } - toPushBarriers.anchor = this.continuousObjLayerOffsetToContinuousMapNodePos(withTiledMapNode, object.offset); // DON'T use "(object.x, object.y)" which are wrong/meaningless! - toRet.barriers.push(toPushBarriers); + toPushBarrier.anchor = this.continuousObjLayerOffsetToContinuousMapNodePos(withTiledMapNode, object.offset); // DON'T use "(object.x, object.y)" which are wrong/meaningless! + toRet.barriers.push(toPushBarrier); break; default: break; diff --git a/frontend/assets/scripts/TouchEventsManager.js b/frontend/assets/scripts/TouchEventsManager.js index 5a61093..29d7c6b 100644 --- a/frontend/assets/scripts/TouchEventsManager.js +++ b/frontend/assets/scripts/TouchEventsManager.js @@ -99,6 +99,7 @@ cc.Class({ this.cachedBtnLeftLevel = 0; this.cachedBtnRightLevel = 0; this.cachedBtnALevel = 0; + this.cachedBtnBLevel = 0; this.canvasNode = this.mapNode.parent; this.mainCameraNode = this.canvasNode.getChildByName("Main Camera"); // Cannot drag and assign the `mainCameraNode` from CocosCreator EDITOR directly, otherwise it'll cause an infinite loading time, till v2.1.0. @@ -168,6 +169,9 @@ cc.Class({ case cc.macro.KEY.h: self.cachedBtnALevel = 1; break; + case cc.macro.KEY.j: + self.cachedBtnBLevel = 1; + break; default: break; } @@ -190,6 +194,9 @@ cc.Class({ case cc.macro.KEY.h: self.cachedBtnALevel = 0; break; + case cc.macro.KEY.j: + self.cachedBtnBLevel = 0; + break; default: break; } @@ -400,7 +407,8 @@ cc.Class({ getEncodedInput() { const discretizedDir = this.discretizeDirection(this.stickhead.x, this.stickhead.y, this.joyStickEps).encodedIdx; // There're only 9 dirs, thus using only the lower 4-bits const btnALevel = (this.cachedBtnALevel << 4); - return (btnALevel + discretizedDir); + const btnBLevel = (this.cachedBtnBLevel << 5); + return (btnBLevel + btnALevel + discretizedDir); }, decodeInput(encodedInput) { @@ -410,10 +418,12 @@ cc.Class({ console.error("Unexpected encodedDirection = ", encodedDirection); } const btnALevel = ((encodedInput >> 4) & 1); + const btnBLevel = ((encodedInput >> 5) & 1); return window.pb.protos.InputFrameDecoded.create({ dx: mappedDirection[0], dy: mappedDirection[1], btnALevel: btnALevel, + btnBLevel: btnBLevel, }); }, }); diff --git a/frontend/assets/scripts/modules/room_downsync_frame_proto_bundle.forcemsg.js b/frontend/assets/scripts/modules/room_downsync_frame_proto_bundle.forcemsg.js index d880c6d..d58d1e3 100644 --- a/frontend/assets/scripts/modules/room_downsync_frame_proto_bundle.forcemsg.js +++ b/frontend/assets/scripts/modules/room_downsync_frame_proto_bundle.forcemsg.js @@ -1196,6 +1196,8 @@ $root.protos = (function() { * @property {number|null} [virtualGridY] PlayerDownsync virtualGridY * @property {number|null} [dirX] PlayerDownsync dirX * @property {number|null} [dirY] PlayerDownsync dirY + * @property {number|null} [velX] PlayerDownsync velX + * @property {number|null} [velY] PlayerDownsync velY * @property {number|null} [speed] PlayerDownsync speed * @property {number|null} [battleState] PlayerDownsync battleState * @property {number|null} [joinIndex] PlayerDownsync joinIndex @@ -1207,6 +1209,7 @@ $root.protos = (function() { * @property {number|null} [hp] PlayerDownsync hp * @property {number|null} [maxHp] PlayerDownsync maxHp * @property {number|null} [characterState] PlayerDownsync characterState + * @property {boolean|null} [inAir] PlayerDownsync inAir * @property {string|null} [name] PlayerDownsync name * @property {string|null} [displayName] PlayerDownsync displayName * @property {string|null} [avatar] PlayerDownsync avatar @@ -1267,6 +1270,22 @@ $root.protos = (function() { */ PlayerDownsync.prototype.dirY = 0; + /** + * PlayerDownsync velX. + * @member {number} velX + * @memberof protos.PlayerDownsync + * @instance + */ + PlayerDownsync.prototype.velX = 0; + + /** + * PlayerDownsync velY. + * @member {number} velY + * @memberof protos.PlayerDownsync + * @instance + */ + PlayerDownsync.prototype.velY = 0; + /** * PlayerDownsync speed. * @member {number} speed @@ -1355,6 +1374,14 @@ $root.protos = (function() { */ PlayerDownsync.prototype.characterState = 0; + /** + * PlayerDownsync inAir. + * @member {boolean} inAir + * @memberof protos.PlayerDownsync + * @instance + */ + PlayerDownsync.prototype.inAir = false; + /** * PlayerDownsync name. * @member {string} name @@ -1413,34 +1440,40 @@ $root.protos = (function() { writer.uint32(/* id 4, wireType 0 =*/32).int32(message.dirX); if (message.dirY != null && Object.hasOwnProperty.call(message, "dirY")) writer.uint32(/* id 5, wireType 0 =*/40).int32(message.dirY); + if (message.velX != null && Object.hasOwnProperty.call(message, "velX")) + writer.uint32(/* id 6, wireType 0 =*/48).int32(message.velX); + if (message.velY != null && Object.hasOwnProperty.call(message, "velY")) + writer.uint32(/* id 7, wireType 0 =*/56).int32(message.velY); if (message.speed != null && Object.hasOwnProperty.call(message, "speed")) - writer.uint32(/* id 6, wireType 0 =*/48).int32(message.speed); + writer.uint32(/* id 8, wireType 0 =*/64).int32(message.speed); if (message.battleState != null && Object.hasOwnProperty.call(message, "battleState")) - writer.uint32(/* id 7, wireType 0 =*/56).int32(message.battleState); + writer.uint32(/* id 9, wireType 0 =*/72).int32(message.battleState); if (message.joinIndex != null && Object.hasOwnProperty.call(message, "joinIndex")) - writer.uint32(/* id 8, wireType 0 =*/64).int32(message.joinIndex); + writer.uint32(/* id 10, wireType 0 =*/80).int32(message.joinIndex); if (message.colliderRadius != null && Object.hasOwnProperty.call(message, "colliderRadius")) - writer.uint32(/* id 9, wireType 1 =*/73).double(message.colliderRadius); + writer.uint32(/* id 11, wireType 1 =*/89).double(message.colliderRadius); if (message.removed != null && Object.hasOwnProperty.call(message, "removed")) - writer.uint32(/* id 10, wireType 0 =*/80).bool(message.removed); + writer.uint32(/* id 12, wireType 0 =*/96).bool(message.removed); if (message.score != null && Object.hasOwnProperty.call(message, "score")) - writer.uint32(/* id 11, wireType 0 =*/88).int32(message.score); + writer.uint32(/* id 13, wireType 0 =*/104).int32(message.score); if (message.lastMoveGmtMillis != null && Object.hasOwnProperty.call(message, "lastMoveGmtMillis")) - writer.uint32(/* id 12, wireType 0 =*/96).int32(message.lastMoveGmtMillis); + writer.uint32(/* id 14, wireType 0 =*/112).int32(message.lastMoveGmtMillis); if (message.framesToRecover != null && Object.hasOwnProperty.call(message, "framesToRecover")) - writer.uint32(/* id 13, wireType 0 =*/104).int32(message.framesToRecover); + writer.uint32(/* id 15, wireType 0 =*/120).int32(message.framesToRecover); if (message.hp != null && Object.hasOwnProperty.call(message, "hp")) - writer.uint32(/* id 14, wireType 0 =*/112).int32(message.hp); + writer.uint32(/* id 16, wireType 0 =*/128).int32(message.hp); if (message.maxHp != null && Object.hasOwnProperty.call(message, "maxHp")) - writer.uint32(/* id 15, wireType 0 =*/120).int32(message.maxHp); + writer.uint32(/* id 17, wireType 0 =*/136).int32(message.maxHp); if (message.characterState != null && Object.hasOwnProperty.call(message, "characterState")) - writer.uint32(/* id 16, wireType 0 =*/128).int32(message.characterState); + writer.uint32(/* id 18, wireType 0 =*/144).int32(message.characterState); + if (message.inAir != null && Object.hasOwnProperty.call(message, "inAir")) + writer.uint32(/* id 19, wireType 0 =*/152).bool(message.inAir); if (message.name != null && Object.hasOwnProperty.call(message, "name")) - writer.uint32(/* id 17, wireType 2 =*/138).string(message.name); + writer.uint32(/* id 20, wireType 2 =*/162).string(message.name); if (message.displayName != null && Object.hasOwnProperty.call(message, "displayName")) - writer.uint32(/* id 18, wireType 2 =*/146).string(message.displayName); + writer.uint32(/* id 21, wireType 2 =*/170).string(message.displayName); if (message.avatar != null && Object.hasOwnProperty.call(message, "avatar")) - writer.uint32(/* id 19, wireType 2 =*/154).string(message.avatar); + writer.uint32(/* id 22, wireType 2 =*/178).string(message.avatar); return writer; }; @@ -1496,58 +1529,70 @@ $root.protos = (function() { break; } case 6: { - message.speed = reader.int32(); + message.velX = reader.int32(); break; } case 7: { - message.battleState = reader.int32(); + message.velY = reader.int32(); break; } case 8: { - message.joinIndex = reader.int32(); + message.speed = reader.int32(); break; } case 9: { - message.colliderRadius = reader.double(); + message.battleState = reader.int32(); break; } case 10: { - message.removed = reader.bool(); + message.joinIndex = reader.int32(); break; } case 11: { - message.score = reader.int32(); + message.colliderRadius = reader.double(); break; } case 12: { - message.lastMoveGmtMillis = reader.int32(); + message.removed = reader.bool(); break; } case 13: { - message.framesToRecover = reader.int32(); + message.score = reader.int32(); break; } case 14: { - message.hp = reader.int32(); + message.lastMoveGmtMillis = reader.int32(); break; } case 15: { - message.maxHp = reader.int32(); + message.framesToRecover = reader.int32(); break; } case 16: { - message.characterState = reader.int32(); + message.hp = reader.int32(); break; } case 17: { - message.name = reader.string(); + message.maxHp = reader.int32(); break; } case 18: { - message.displayName = reader.string(); + message.characterState = reader.int32(); break; } case 19: { + message.inAir = reader.bool(); + break; + } + case 20: { + message.name = reader.string(); + break; + } + case 21: { + message.displayName = reader.string(); + break; + } + case 22: { message.avatar = reader.string(); break; } @@ -1601,6 +1646,12 @@ $root.protos = (function() { if (message.dirY != null && message.hasOwnProperty("dirY")) if (!$util.isInteger(message.dirY)) return "dirY: integer expected"; + if (message.velX != null && message.hasOwnProperty("velX")) + if (!$util.isInteger(message.velX)) + return "velX: integer expected"; + if (message.velY != null && message.hasOwnProperty("velY")) + if (!$util.isInteger(message.velY)) + return "velY: integer expected"; if (message.speed != null && message.hasOwnProperty("speed")) if (!$util.isInteger(message.speed)) return "speed: integer expected"; @@ -1634,6 +1685,9 @@ $root.protos = (function() { if (message.characterState != null && message.hasOwnProperty("characterState")) if (!$util.isInteger(message.characterState)) return "characterState: integer expected"; + if (message.inAir != null && message.hasOwnProperty("inAir")) + if (typeof message.inAir !== "boolean") + return "inAir: boolean expected"; if (message.name != null && message.hasOwnProperty("name")) if (!$util.isString(message.name)) return "name: string expected"; @@ -1668,6 +1722,10 @@ $root.protos = (function() { message.dirX = object.dirX | 0; if (object.dirY != null) message.dirY = object.dirY | 0; + if (object.velX != null) + message.velX = object.velX | 0; + if (object.velY != null) + message.velY = object.velY | 0; if (object.speed != null) message.speed = object.speed | 0; if (object.battleState != null) @@ -1690,6 +1748,8 @@ $root.protos = (function() { message.maxHp = object.maxHp | 0; if (object.characterState != null) message.characterState = object.characterState | 0; + if (object.inAir != null) + message.inAir = Boolean(object.inAir); if (object.name != null) message.name = String(object.name); if (object.displayName != null) @@ -1718,6 +1778,8 @@ $root.protos = (function() { object.virtualGridY = 0; object.dirX = 0; object.dirY = 0; + object.velX = 0; + object.velY = 0; object.speed = 0; object.battleState = 0; object.joinIndex = 0; @@ -1729,6 +1791,7 @@ $root.protos = (function() { object.hp = 0; object.maxHp = 0; object.characterState = 0; + object.inAir = false; object.name = ""; object.displayName = ""; object.avatar = ""; @@ -1743,6 +1806,10 @@ $root.protos = (function() { object.dirX = message.dirX; if (message.dirY != null && message.hasOwnProperty("dirY")) object.dirY = message.dirY; + if (message.velX != null && message.hasOwnProperty("velX")) + object.velX = message.velX; + if (message.velY != null && message.hasOwnProperty("velY")) + object.velY = message.velY; if (message.speed != null && message.hasOwnProperty("speed")) object.speed = message.speed; if (message.battleState != null && message.hasOwnProperty("battleState")) @@ -1765,6 +1832,8 @@ $root.protos = (function() { object.maxHp = message.maxHp; if (message.characterState != null && message.hasOwnProperty("characterState")) object.characterState = message.characterState; + if (message.inAir != null && message.hasOwnProperty("inAir")) + object.inAir = message.inAir; if (message.name != null && message.hasOwnProperty("name")) object.name = message.name; if (message.displayName != null && message.hasOwnProperty("displayName")) @@ -1812,6 +1881,7 @@ $root.protos = (function() { * @property {number|null} [dx] InputFrameDecoded dx * @property {number|null} [dy] InputFrameDecoded dy * @property {number|null} [btnALevel] InputFrameDecoded btnALevel + * @property {number|null} [btnBLevel] InputFrameDecoded btnBLevel */ /** @@ -1853,6 +1923,14 @@ $root.protos = (function() { */ InputFrameDecoded.prototype.btnALevel = 0; + /** + * InputFrameDecoded btnBLevel. + * @member {number} btnBLevel + * @memberof protos.InputFrameDecoded + * @instance + */ + InputFrameDecoded.prototype.btnBLevel = 0; + /** * Creates a new InputFrameDecoded instance using the specified properties. * @function create @@ -1883,6 +1961,8 @@ $root.protos = (function() { writer.uint32(/* id 2, wireType 0 =*/16).int32(message.dy); if (message.btnALevel != null && Object.hasOwnProperty.call(message, "btnALevel")) writer.uint32(/* id 3, wireType 0 =*/24).int32(message.btnALevel); + if (message.btnBLevel != null && Object.hasOwnProperty.call(message, "btnBLevel")) + writer.uint32(/* id 4, wireType 0 =*/32).int32(message.btnBLevel); return writer; }; @@ -1929,6 +2009,10 @@ $root.protos = (function() { message.btnALevel = reader.int32(); break; } + case 4: { + message.btnBLevel = reader.int32(); + break; + } default: reader.skipType(tag & 7); break; @@ -1973,6 +2057,9 @@ $root.protos = (function() { if (message.btnALevel != null && message.hasOwnProperty("btnALevel")) if (!$util.isInteger(message.btnALevel)) return "btnALevel: integer expected"; + if (message.btnBLevel != null && message.hasOwnProperty("btnBLevel")) + if (!$util.isInteger(message.btnBLevel)) + return "btnBLevel: integer expected"; return null; }; @@ -1994,6 +2081,8 @@ $root.protos = (function() { message.dy = object.dy | 0; if (object.btnALevel != null) message.btnALevel = object.btnALevel | 0; + if (object.btnBLevel != null) + message.btnBLevel = object.btnBLevel | 0; return message; }; @@ -2014,6 +2103,7 @@ $root.protos = (function() { object.dx = 0; object.dy = 0; object.btnALevel = 0; + object.btnBLevel = 0; } if (message.dx != null && message.hasOwnProperty("dx")) object.dx = message.dx; @@ -2021,6 +2111,8 @@ $root.protos = (function() { object.dy = message.dy; if (message.btnALevel != null && message.hasOwnProperty("btnALevel")) object.btnALevel = message.btnALevel; + if (message.btnBLevel != null && message.hasOwnProperty("btnBLevel")) + object.btnBLevel = message.btnBLevel; return object; }; @@ -4453,6 +4545,11 @@ $root.protos = (function() { * @property {number|null} [spAtkLookupFrames] BattleColliderInfo spAtkLookupFrames * @property {number|null} [renderCacheSize] BattleColliderInfo renderCacheSize * @property {Object.|null} [meleeSkillConfig] BattleColliderInfo meleeSkillConfig + * @property {number|null} [snapIntoPlatformOverlap] BattleColliderInfo snapIntoPlatformOverlap + * @property {number|null} [snapIntoPlatformThreshold] BattleColliderInfo snapIntoPlatformThreshold + * @property {number|null} [jumpingInitVelY] BattleColliderInfo jumpingInitVelY + * @property {number|null} [gravityX] BattleColliderInfo gravityX + * @property {number|null} [gravityY] BattleColliderInfo gravityY */ /** @@ -4681,6 +4778,46 @@ $root.protos = (function() { */ BattleColliderInfo.prototype.meleeSkillConfig = $util.emptyObject; + /** + * BattleColliderInfo snapIntoPlatformOverlap. + * @member {number} snapIntoPlatformOverlap + * @memberof protos.BattleColliderInfo + * @instance + */ + BattleColliderInfo.prototype.snapIntoPlatformOverlap = 0; + + /** + * BattleColliderInfo snapIntoPlatformThreshold. + * @member {number} snapIntoPlatformThreshold + * @memberof protos.BattleColliderInfo + * @instance + */ + BattleColliderInfo.prototype.snapIntoPlatformThreshold = 0; + + /** + * BattleColliderInfo jumpingInitVelY. + * @member {number} jumpingInitVelY + * @memberof protos.BattleColliderInfo + * @instance + */ + BattleColliderInfo.prototype.jumpingInitVelY = 0; + + /** + * BattleColliderInfo gravityX. + * @member {number} gravityX + * @memberof protos.BattleColliderInfo + * @instance + */ + BattleColliderInfo.prototype.gravityX = 0; + + /** + * BattleColliderInfo gravityY. + * @member {number} gravityY + * @memberof protos.BattleColliderInfo + * @instance + */ + BattleColliderInfo.prototype.gravityY = 0; + /** * Creates a new BattleColliderInfo instance using the specified properties. * @function create @@ -4766,6 +4903,16 @@ $root.protos = (function() { writer.uint32(/* id 27, wireType 2 =*/218).fork().uint32(/* id 1, wireType 0 =*/8).int32(keys[i]); $root.protos.MeleeBullet.encode(message.meleeSkillConfig[keys[i]], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim().ldelim(); } + if (message.snapIntoPlatformOverlap != null && Object.hasOwnProperty.call(message, "snapIntoPlatformOverlap")) + writer.uint32(/* id 28, wireType 1 =*/225).double(message.snapIntoPlatformOverlap); + if (message.snapIntoPlatformThreshold != null && Object.hasOwnProperty.call(message, "snapIntoPlatformThreshold")) + writer.uint32(/* id 29, wireType 1 =*/233).double(message.snapIntoPlatformThreshold); + if (message.jumpingInitVelY != null && Object.hasOwnProperty.call(message, "jumpingInitVelY")) + writer.uint32(/* id 30, wireType 0 =*/240).int32(message.jumpingInitVelY); + if (message.gravityX != null && Object.hasOwnProperty.call(message, "gravityX")) + writer.uint32(/* id 31, wireType 0 =*/248).int32(message.gravityX); + if (message.gravityY != null && Object.hasOwnProperty.call(message, "gravityY")) + writer.uint32(/* id 32, wireType 0 =*/256).int32(message.gravityY); return writer; }; @@ -4961,6 +5108,26 @@ $root.protos = (function() { message.meleeSkillConfig[key] = value; break; } + case 28: { + message.snapIntoPlatformOverlap = reader.double(); + break; + } + case 29: { + message.snapIntoPlatformThreshold = reader.double(); + break; + } + case 30: { + message.jumpingInitVelY = reader.int32(); + break; + } + case 31: { + message.gravityX = reader.int32(); + break; + } + case 32: { + message.gravityY = reader.int32(); + break; + } default: reader.skipType(tag & 7); break; @@ -5099,6 +5266,21 @@ $root.protos = (function() { } } } + if (message.snapIntoPlatformOverlap != null && message.hasOwnProperty("snapIntoPlatformOverlap")) + if (typeof message.snapIntoPlatformOverlap !== "number") + return "snapIntoPlatformOverlap: number expected"; + if (message.snapIntoPlatformThreshold != null && message.hasOwnProperty("snapIntoPlatformThreshold")) + if (typeof message.snapIntoPlatformThreshold !== "number") + return "snapIntoPlatformThreshold: number expected"; + if (message.jumpingInitVelY != null && message.hasOwnProperty("jumpingInitVelY")) + if (!$util.isInteger(message.jumpingInitVelY)) + return "jumpingInitVelY: integer expected"; + if (message.gravityX != null && message.hasOwnProperty("gravityX")) + if (!$util.isInteger(message.gravityX)) + return "gravityX: integer expected"; + if (message.gravityY != null && message.hasOwnProperty("gravityY")) + if (!$util.isInteger(message.gravityY)) + return "gravityY: integer expected"; return null; }; @@ -5204,6 +5386,16 @@ $root.protos = (function() { message.meleeSkillConfig[keys[i]] = $root.protos.MeleeBullet.fromObject(object.meleeSkillConfig[keys[i]]); } } + if (object.snapIntoPlatformOverlap != null) + message.snapIntoPlatformOverlap = Number(object.snapIntoPlatformOverlap); + if (object.snapIntoPlatformThreshold != null) + message.snapIntoPlatformThreshold = Number(object.snapIntoPlatformThreshold); + if (object.jumpingInitVelY != null) + message.jumpingInitVelY = object.jumpingInitVelY | 0; + if (object.gravityX != null) + message.gravityX = object.gravityX | 0; + if (object.gravityY != null) + message.gravityY = object.gravityY | 0; return message; }; @@ -5257,6 +5449,11 @@ $root.protos = (function() { object.virtualGridToWorldRatio = 0; object.spAtkLookupFrames = 0; object.renderCacheSize = 0; + object.snapIntoPlatformOverlap = 0; + object.snapIntoPlatformThreshold = 0; + object.jumpingInitVelY = 0; + object.gravityX = 0; + object.gravityY = 0; } if (message.stageName != null && message.hasOwnProperty("stageName")) object.stageName = message.stageName; @@ -5326,6 +5523,16 @@ $root.protos = (function() { for (var j = 0; j < keys2.length; ++j) object.meleeSkillConfig[keys2[j]] = $root.protos.MeleeBullet.toObject(message.meleeSkillConfig[keys2[j]], options); } + if (message.snapIntoPlatformOverlap != null && message.hasOwnProperty("snapIntoPlatformOverlap")) + object.snapIntoPlatformOverlap = options.json && !isFinite(message.snapIntoPlatformOverlap) ? String(message.snapIntoPlatformOverlap) : message.snapIntoPlatformOverlap; + if (message.snapIntoPlatformThreshold != null && message.hasOwnProperty("snapIntoPlatformThreshold")) + object.snapIntoPlatformThreshold = options.json && !isFinite(message.snapIntoPlatformThreshold) ? String(message.snapIntoPlatformThreshold) : message.snapIntoPlatformThreshold; + if (message.jumpingInitVelY != null && message.hasOwnProperty("jumpingInitVelY")) + object.jumpingInitVelY = message.jumpingInitVelY; + if (message.gravityX != null && message.hasOwnProperty("gravityX")) + object.gravityX = message.gravityX; + if (message.gravityY != null && message.hasOwnProperty("gravityY")) + object.gravityY = message.gravityY; return object; }; diff --git a/frontend/collision_test_nodejs.js b/frontend/collision_test_nodejs.js index 3db8003..4aac87d 100644 --- a/frontend/collision_test_nodejs.js +++ b/frontend/collision_test_nodejs.js @@ -11,24 +11,28 @@ function polygonStr(body) { return JSON.stringify(coords); } -const playerCollider = collisionSys.createPolygon(1269.665, 1353.335, [[0, 0], [64, 0], [64, 64], [0, 64]]); +const playerCollider1 = collisionSys.createPolygon(944.000, 676.000, [[0, 0], [24, 0], [24, 48], [0, 48]]); +playerCollider1.data = {isPlayer: true}; +const playerCollider2 = collisionSys.createPolygon(958.000, 724.000, [[0, 0], [24, 0], [24, 48], [0, 48]]); +playerCollider2.data = {isPlayer: true}; const barrierCollider1 = collisionSys.createPolygon(1277.7159000000001, 1570.5575, [[642.5696, 319.159], [0, 319.15680000000003], [5.7286, 0], [643.7451, 0.9014999999999986]]); const barrierCollider2 = collisionSys.createPolygon(1289.039, 1318.0805, [[628.626, 54.254500000000064], [0, 56.03250000000003], [0.42449999999999477, 1.1229999999999905], [625.9715000000001, 0]]); const barrierCollider3 = collisionSys.createPolygon(1207, 1310, [[69, 581], [0, 579], [8, 3], [79, 0]]); -playerCollider.x += -2.98; -playerCollider.y += -50.0; collisionSys.update(); const effPushback = [0.0, 0.0]; const result = collisionSys.createResult(); -const potentials = playerCollider.potentials(); - -for (const barrier of potentials) { - if (!playerCollider.collides(barrier, result)) continue; +// Check collision for player1 +const potentials = playerCollider1.potentials(); +for (const potential of potentials) { + if (null == potential.data || true != potential.data.isPlayer) continue; + console.log(`Collided player potential of a=${polygonStr(playerCollider1)}: b=${polygonStr(potential)}`); + if (!playerCollider1.collides(potential, result)) continue; + console.log(`Collided player of a=${polygonStr(playerCollider1)}: b=${polygonStr(potential)}`); const pushbackX = result.overlap * result.overlap_x; const pushbackY = result.overlap * result.overlap_y; console.log(`Overlapped: a=${polygonStr(result.a)}, b=${polygonStr(result.b)}, pushbackX=${pushbackX}, pushbackY=${pushbackY}`);