diff --git a/assets/JieDao/res/图片1.png b/assets/JieDao/res/图片1.png index a3d57538..9e5a166c 100644 Binary files a/assets/JieDao/res/图片1.png and b/assets/JieDao/res/图片1.png differ diff --git a/assets/JieDao/res/图片2.png b/assets/JieDao/res/图片2.png index 538d89f9..28dfc04f 100644 Binary files a/assets/JieDao/res/图片2.png and b/assets/JieDao/res/图片2.png differ diff --git a/assets/JieDao/res/图片3.png b/assets/JieDao/res/图片3.png new file mode 100644 index 00000000..7f5e52ce Binary files /dev/null and b/assets/JieDao/res/图片3.png differ diff --git a/assets/JieDao/res/图片3.png.meta b/assets/JieDao/res/图片3.png.meta new file mode 100644 index 00000000..2bae5a5a --- /dev/null +++ b/assets/JieDao/res/图片3.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "efdce3c8-5be6-493c-9894-984a7aa67420", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 404, + "height": 178, + "platformSettings": {}, + "subMetas": { + "图片3": { + "ver": "1.0.6", + "uuid": "9dfa0ca6-03ee-4014-ae77-818234ed659c", + "importer": "sprite-frame", + "rawTextureUuid": "efdce3c8-5be6-493c-9894-984a7aa67420", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 404, + "height": 178, + "rawWidth": 404, + "rawHeight": 178, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/Scripts/Manager/JieDaoManager.ts b/assets/Scripts/Manager/JieDaoManager.ts index e16cb05b..69a676ca 100644 --- a/assets/Scripts/Manager/JieDaoManager.ts +++ b/assets/Scripts/Manager/JieDaoManager.ts @@ -11,8 +11,8 @@ import TaskManager, { MainTaskIdEnum } from "../JuQingChat/TaskManager"; let Config = [ { level: 0, icon: 'res/图片1', isNeedAd: false, name: '解放路', descLab: '解放路', miaozhuan: 1, jiesuoMoney: 1, jiesuoBeiShu: 1 }, { level: 1, icon: 'res/图片2', isNeedAd: false, name: '朝阳路', descLab: '朝阳路', miaozhuan: 2, jiesuoMoney: 2, jiesuoBeiShu: 2 }, - { level: 2, icon: 'res/图片2', isNeedAd: false, name: '太平路', descLab: '太平路', miaozhuan: 3, jiesuoMoney: 3, jiesuoBeiShu: 3 }, - { level: 3, icon: 'res/图片2', isNeedAd: false, name: '劳动路', descLab: '劳动路', miaozhuan: 4, jiesuoMoney: 4, jiesuoBeiShu: 4 }, + { level: 2, icon: 'res/图片3', isNeedAd: false, name: '太平路', descLab: '太平路', miaozhuan: 3, jiesuoMoney: 3, jiesuoBeiShu: 3 }, + // { level: 3, icon: 'res/图片2', isNeedAd: false, name: '劳动路', descLab: '劳动路', miaozhuan: 4, jiesuoMoney: 4, jiesuoBeiShu: 4 }, ] export default class JieDaoManager { diff --git a/assets/Scripts/ZaoCanDian/ZaoCanDian.ts b/assets/Scripts/ZaoCanDian/ZaoCanDian.ts index 61b24f6c..94d012da 100644 --- a/assets/Scripts/ZaoCanDian/ZaoCanDian.ts +++ b/assets/Scripts/ZaoCanDian/ZaoCanDian.ts @@ -10,6 +10,7 @@ import EventMgr from "../../FrameWork/Event/EventMgr"; import User from "../../FrameWork/User/User"; import Common5 from "../../Platform/th/Common5"; import TaskManager, { MainTaskIdEnum } from "../JuQingChat/TaskManager"; +import JieDaoManager from "../Manager/JieDaoManager"; import ZaoCanManager from "../Manager/ZaoCanManager"; import PrefabManage, { GameType } from "../PrefabManager/PrefabManage"; import ZaoCanDianNpc from "./ZaoCanDianNpc"; @@ -40,6 +41,9 @@ export default class ZaoCanDian extends cc.Component { @property(sp.Skeleton) car: sp.Skeleton = null; + @property(cc.Sprite) + m_bg: cc.Sprite = null; + npcNodes: cc.Node[] = []; lastDirect: Npc_Direct = Npc_Direct.RIGHT; @@ -67,16 +71,32 @@ export default class ZaoCanDian extends cc.Component { //解锁会变更早餐 this.refreshZaoCan() }, this) + + //刷新街道 + this.RefreshJieDao() + EventMgr.onEvent_custom(ryw_Event.RefreshJieDao, () => { + //解锁会变更早餐 + this.RefreshJieDao() + }, this) + } + + RefreshJieDao() { + Common5.getSpriteFrameFromBundle("ZaoCanDian", `res/图片${JieDaoManager.getJieDaoInUse() + 1}`, this.m_bg) } refreshZaoCan() { //刷新当前摊位的早餐样式 + //摊位节点名字 let names = ['馒头', '鸡蛋', '饺子', '油条', '豆浆'] + //制作动画名 + let animation_names1 = ['蒸', '', '', '', ''] + //余几个的动画名 + let animation_names2 = ['', '', '', '静止放', ''] for (let i = 0; i < 5; i++) { let name = ZaoCanManager.getCurNameByType(i) this.ZaoCanArr[i] = name - let tanwei = this.node.getChildByName(names[i] + "摊位") + let tanwei = this.node.getChildByName("桌子").getChildByName(names[i] + "摊位") let shengyuNum = 0 for (const child of tanwei.getChildByName("touch").children) { if (child.active) { @@ -85,9 +105,9 @@ export default class ZaoCanDian extends cc.Component { } if (i == 3) { if (shengyuNum == 3) { - this.setTanWeiSpine(i, `静止放${name}`, 3) + this.setTanWeiSpine(i, `${animation_names2[i]}${name}`, 3) } else { - this.setTanWeiSpine(i, `静止放${name}余${shengyuNum}`, shengyuNum) + this.setTanWeiSpine(i, `${animation_names2[i]}${name}余${shengyuNum}`, shengyuNum) } } } @@ -138,7 +158,12 @@ export default class ZaoCanDian extends cc.Component { let _npc = this.getNpcByNeedStr(zaoCanStr) let children = target.children let names = ['馒头', '鸡蛋', '饺子', '油条', '豆浆'] - let tanwei = this.node.getChildByName(names[custom] + "摊位") + let tanwei = this.node.getChildByName("桌子").getChildByName(names[custom] + "摊位") + + //制作动画名 + let animation_names1 = ['蒸', '', '', '', ''] + //余几个的动画名 + let animation_names2 = ['', '', '', '静止放', ''] let shengyuNum = 0 let _child @@ -155,9 +180,9 @@ export default class ZaoCanDian extends cc.Component { if (shengyuNum < 3) { if (shengyuNum == 0) { //手动补货,补全 - this.setTanWeiSpine(custom, zaoCanStr, 3) + this.setTanWeiSpine(custom, `${animation_names1[custom]}${zaoCanStr}`, 3) } else { - this.setTanWeiSpine(custom, `${zaoCanStr}余${shengyuNum}`, 3) + this.setTanWeiSpine(custom, `${animation_names1[custom]}${zaoCanStr}余${shengyuNum}`, 3) } } else { //所属物品摊位放大缩小 @@ -189,13 +214,13 @@ export default class ZaoCanDian extends cc.Component { if (shengyuNum == 0) { //手动补货,补全 - this.setTanWeiSpine(custom, zaoCanStr, 3) + this.setTanWeiSpine(custom, `${animation_names1[custom]}${zaoCanStr}`, 3) return } if (shengyuNum == 1) { //自动补货,补全 - this.setTanWeiSpine(custom, zaoCanStr, 3) + this.setTanWeiSpine(custom, `${animation_names1[custom]}${zaoCanStr}`, 3) } else { - this.setTanWeiSpine(custom, `静止放${zaoCanStr}余${shengyuNum - 1}`, shengyuNum - 1) + this.setTanWeiSpine(custom, `${animation_names2[custom]}${zaoCanStr}余${shengyuNum - 1}`, shengyuNum - 1) } _position = target.convertToNodeSpaceAR(_npc.parent.convertToWorldSpaceAR(_npc.getPosition())) @@ -248,7 +273,7 @@ export default class ZaoCanDian extends cc.Component { return } let names = ['馒头', '鸡蛋', '饺子', '油条', '豆浆'] - let tanwei = this.node.getChildByName(names[tanweiIndex] + "摊位") + let tanwei = this.node.getChildByName("桌子").getChildByName(names[tanweiIndex] + "摊位") let tanweiSpine = tanwei.getComponent(sp.Skeleton) this.TanWeiSpineState[tanweiIndex] = true tanweiSpine.setAnimation(0, animation, loop) diff --git a/assets/ZaoCanDian/prefab/ZaoCanDian.prefab b/assets/ZaoCanDian/prefab/ZaoCanDian.prefab index b7b5a96f..80787525 100644 --- a/assets/ZaoCanDian/prefab/ZaoCanDian.prefab +++ b/assets/ZaoCanDian/prefab/ZaoCanDian.prefab @@ -21,41 +21,32 @@ "__id__": 2 }, { - "__id__": 9 - }, - { - "__id__": 11 - }, - { - "__id__": 19 - }, - { - "__id__": 34 + "__id__": 5 }, { - "__id__": 49 + "__id__": 12 }, { - "__id__": 64 + "__id__": 14 }, { - "__id__": 80 + "__id__": 22 } ], "_active": true, "_components": [ { - "__id__": 95 + "__id__": 114 }, { - "__id__": 96 + "__id__": 115 }, { - "__id__": 97 + "__id__": 116 } ], "_prefab": { - "__id__": 98 + "__id__": 117 }, "_opacity": 255, "_color": { @@ -104,6 +95,113 @@ "groupIndex": 0, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "图片1", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1100, + "height": 951 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0 + }, + "_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.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "da52b849-ed1a-43b6-b818-54e708a8ef0c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "23/xKsAgJBxbednpXiEvtc", + "sync": false + }, { "__type__": "cc.Node", "_name": "电动车", @@ -113,17 +211,17 @@ }, "_children": [ { - "__id__": 3 + "__id__": 6 } ], "_active": true, "_components": [ { - "__id__": 7 + "__id__": 10 } ], "_prefab": { - "__id__": 8 + "__id__": 11 }, "_opacity": 255, "_color": { @@ -177,17 +275,17 @@ "_name": "出发", "_objFlags": 0, "_parent": { - "__id__": 2 + "__id__": 5 }, "_children": [], "_active": true, "_components": [ { - "__id__": 4 + "__id__": 7 } ], "_prefab": { - "__id__": 6 + "__id__": 9 }, "_opacity": 255, "_color": { @@ -241,7 +339,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 3 + "__id__": 6 }, "_enabled": true, "_normalMaterial": null, @@ -250,7 +348,7 @@ "zoomScale": 1.2, "clickEvents": [ { - "__id__": 5 + "__id__": 8 } ], "_N$interactable": true, @@ -334,7 +432,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 2 + "__id__": 5 }, "_enabled": true, "_materials": [ @@ -393,7 +491,7 @@ "_active": true, "_components": [], "_prefab": { - "__id__": 10 + "__id__": 13 }, "_opacity": 255, "_color": { @@ -462,19 +560,19 @@ }, "_children": [ { - "__id__": 12 + "__id__": 15 }, { - "__id__": 14 + "__id__": 17 }, { - "__id__": 16 + "__id__": 19 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 18 + "__id__": 21 }, "_opacity": 255, "_color": { @@ -528,13 +626,13 @@ "_name": "npc位置1", "_objFlags": 0, "_parent": { - "__id__": 11 + "__id__": 14 }, "_children": [], "_active": true, "_components": [], "_prefab": { - "__id__": 13 + "__id__": 16 }, "_opacity": 255, "_color": { @@ -599,13 +697,13 @@ "_name": "npc位置2", "_objFlags": 0, "_parent": { - "__id__": 11 + "__id__": 14 }, "_children": [], "_active": true, "_components": [], "_prefab": { - "__id__": 15 + "__id__": 18 }, "_opacity": 255, "_color": { @@ -670,13 +768,13 @@ "_name": "npc位置3", "_objFlags": 0, "_parent": { - "__id__": 11 + "__id__": 14 }, "_children": [], "_active": true, "_components": [], "_prefab": { - "__id__": 17 + "__id__": 20 }, "_opacity": 255, "_color": { @@ -749,20 +847,48 @@ }, { "__type__": "cc.Node", - "_name": "馒头摊位", + "_name": "桌子", "_objFlags": 0, "_parent": { "__id__": 1 }, "_children": [ { - "__id__": 20 + "__id__": 23 + }, + { + "__id__": 39 + }, + { + "__id__": 42 + }, + { + "__id__": 45 + }, + { + "__id__": 48 + }, + { + "__id__": 63 + }, + { + "__id__": 78 + }, + { + "__id__": 93 + }, + { + "__id__": 109 } ], "_active": true, - "_components": [], + "_components": [ + { + "__id__": 112 + } + ], "_prefab": { - "__id__": 33 + "__id__": 113 }, "_opacity": 255, "_color": { @@ -774,13 +900,13 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 0, - "height": 0 + "width": 1100, + "height": 798 }, "_anchorPoint": { "__type__": "cc.Vec2", "x": 0.5, - "y": 0.5 + "y": 1 }, "_trs": { "__type__": "TypedArray", @@ -811,32 +937,100 @@ "groupIndex": 0, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "馒头摊位", + "_objFlags": 0, + "_parent": { + "__id__": 22 + }, + "_children": [ + { + "__id__": 24 + } + ], + "_active": true, + "_components": [ + { + "__id__": 37 + } + ], + "_prefab": { + "__id__": 38 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 423, + "height": 225 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -227.752, + -77.864, + 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.Node", "_name": "touch", "_objFlags": 0, "_parent": { - "__id__": 19 + "__id__": 23 }, "_children": [ { - "__id__": 21 + "__id__": 25 }, { - "__id__": 24 + "__id__": 28 }, { - "__id__": 27 + "__id__": 31 } ], "_active": true, "_components": [ { - "__id__": 30 + "__id__": 34 } ], "_prefab": { - "__id__": 32 + "__id__": 36 }, "_opacity": 255, "_color": { @@ -890,17 +1084,17 @@ "_name": "1", "_objFlags": 0, "_parent": { - "__id__": 20 + "__id__": 24 }, "_children": [], "_active": false, "_components": [ { - "__id__": 22 + "__id__": 26 } ], "_prefab": { - "__id__": 23 + "__id__": 27 }, "_opacity": 255, "_color": { @@ -954,7 +1148,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 21 + "__id__": 25 }, "_enabled": true, "_materials": [ @@ -989,7 +1183,7 @@ "asset": { "__id__": 0 }, - "fileId": "be4YZiCQNJ05wZmZdNr+A8", + "fileId": "17muWfUQRNx7VRLHiUhSGf", "sync": false }, { @@ -997,17 +1191,17 @@ "_name": "2", "_objFlags": 0, "_parent": { - "__id__": 20 + "__id__": 24 }, "_children": [], "_active": false, "_components": [ { - "__id__": 25 + "__id__": 29 } ], "_prefab": { - "__id__": 26 + "__id__": 30 }, "_opacity": 255, "_color": { @@ -1061,7 +1255,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 24 + "__id__": 28 }, "_enabled": true, "_materials": [ @@ -1096,7 +1290,7 @@ "asset": { "__id__": 0 }, - "fileId": "11abgrIOlFA6EIuq3zaiYS", + "fileId": "14oVYbL1tFWKOUFgpzn+cS", "sync": false }, { @@ -1104,17 +1298,17 @@ "_name": "3", "_objFlags": 0, "_parent": { - "__id__": 20 + "__id__": 24 }, "_children": [], "_active": false, "_components": [ { - "__id__": 28 + "__id__": 32 } ], "_prefab": { - "__id__": 29 + "__id__": 33 }, "_opacity": 255, "_color": { @@ -1168,7 +1362,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 27 + "__id__": 31 }, "_enabled": true, "_materials": [ @@ -1203,7 +1397,7 @@ "asset": { "__id__": 0 }, - "fileId": "36OIISSd5NPoSf7ZQ7l9Co", + "fileId": "3b1ycdLuJOQbKFGjkmanbD", "sync": false }, { @@ -1211,7 +1405,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 20 + "__id__": 24 }, "_enabled": true, "_normalMaterial": null, @@ -1220,7 +1414,7 @@ "zoomScale": 1.2, "clickEvents": [ { - "__id__": 31 + "__id__": 35 } ], "_N$interactable": true, @@ -1262,42 +1456,405 @@ "b": 255, "a": 255 }, - "_N$disabledColor": { - "__type__": "cc.Color", - "r": 124, - "g": 124, - "b": 124, - "a": 255 + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "78aa92gum1MDL6YWVymp3nP", + "handler": "onTouchZaoCan", + "customEventData": "3" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f2gHM4AaFPap2DQUmavmvo", + "sync": false + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 23 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "空蒸笼", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": true, + "premultipliedAlpha": true, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "空蒸笼", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "7523afa2-4688-4478-8ec0-cc34355d991d" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0f6geIVaJED4s9HorXKCCi", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "铁盒", + "_objFlags": 0, + "_parent": { + "__id__": 22 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 40 + } + ], + "_prefab": { + "__id__": 41 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 165, + "height": 122 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -110.35, + -374.114, + 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.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 39 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "9542bfdd-f69d-4cf1-b885-abbb5c803d68" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "06T/vva3hB9ZJWe/Qch3wj", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "图层 134611 拷贝 6", + "_objFlags": 0, + "_parent": { + "__id__": 22 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 44 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 88, + "height": 67 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -260.512, + -231.567, + 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.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 42 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a512cf68-4a21-4713-8223-24ac04c2b9e0" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2fh/DspzlPga7zVkROT7Ou", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "铁盆", + "_objFlags": 0, + "_parent": { + "__id__": 22 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 46 + } + ], + "_prefab": { + "__id__": 47 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 251, + "height": 172 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -94.049, + -197.188, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] }, - "_N$normalSprite": null, - "_N$pressedSprite": null, - "pressedSprite": null, - "_N$hoverSprite": null, - "hoverSprite": null, - "_N$disabledSprite": null, - "_N$target": null, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, "_id": "" }, { - "__type__": "cc.ClickEvent", - "target": { - "__id__": 1 + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 45 }, - "component": "", - "_componentId": "78aa92gum1MDL6YWVymp3nP", - "handler": "onTouchZaoCan", - "customEventData": "3" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "408d874e-e79c-474e-9862-48a4879ad87e" }, - "asset": { - "__id__": 0 + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 }, - "fileId": "20ng+bwolEy7mNTi8wRjEF", - "sync": false + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" }, { "__type__": "cc.PrefabInfo", @@ -1307,25 +1864,25 @@ "asset": { "__id__": 0 }, - "fileId": "12najmU0BATJda53MA9UiA", + "fileId": "887Q/qgbVNnaUxSLRAKKLg", "sync": false }, { "__type__": "cc.Node", - "_name": "鸡蛋摊位", + "_name": "豆浆摊位", "_objFlags": 0, "_parent": { - "__id__": 1 + "__id__": 22 }, "_children": [ { - "__id__": 35 + "__id__": 49 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 48 + "__id__": 62 }, "_opacity": 255, "_color": { @@ -1379,27 +1936,27 @@ "_name": "touch", "_objFlags": 0, "_parent": { - "__id__": 34 + "__id__": 48 }, "_children": [ { - "__id__": 36 + "__id__": 50 }, { - "__id__": 39 + "__id__": 53 }, { - "__id__": 42 + "__id__": 56 } ], "_active": true, "_components": [ { - "__id__": 45 + "__id__": 59 } ], "_prefab": { - "__id__": 47 + "__id__": 61 }, "_opacity": 255, "_color": { @@ -1453,17 +2010,17 @@ "_name": "1", "_objFlags": 0, "_parent": { - "__id__": 35 + "__id__": 49 }, "_children": [], "_active": false, "_components": [ { - "__id__": 37 + "__id__": 51 } ], "_prefab": { - "__id__": 38 + "__id__": 52 }, "_opacity": 255, "_color": { @@ -1517,7 +2074,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 36 + "__id__": 50 }, "_enabled": true, "_materials": [ @@ -1552,7 +2109,7 @@ "asset": { "__id__": 0 }, - "fileId": "436I3judlPQofWtGQBfOLf", + "fileId": "35TcyD3F9Pe5/PMfvd9Zrz", "sync": false }, { @@ -1560,17 +2117,17 @@ "_name": "2", "_objFlags": 0, "_parent": { - "__id__": 35 + "__id__": 49 }, "_children": [], "_active": false, "_components": [ { - "__id__": 40 + "__id__": 54 } ], "_prefab": { - "__id__": 41 + "__id__": 55 }, "_opacity": 255, "_color": { @@ -1624,7 +2181,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 39 + "__id__": 53 }, "_enabled": true, "_materials": [ @@ -1659,7 +2216,7 @@ "asset": { "__id__": 0 }, - "fileId": "48RGwZSvxL76p4mq6R8+QI", + "fileId": "7e7hfdQLpI3aiH5sjW5V9V", "sync": false }, { @@ -1667,17 +2224,17 @@ "_name": "3", "_objFlags": 0, "_parent": { - "__id__": 35 + "__id__": 49 }, "_children": [], "_active": false, "_components": [ { - "__id__": 43 + "__id__": 57 } ], "_prefab": { - "__id__": 44 + "__id__": 58 }, "_opacity": 255, "_color": { @@ -1731,7 +2288,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 42 + "__id__": 56 }, "_enabled": true, "_materials": [ @@ -1766,7 +2323,7 @@ "asset": { "__id__": 0 }, - "fileId": "134O1WmjJKC6ELe9JOzxVS", + "fileId": "84/T74wl9HoruWvpdJmJ0k", "sync": false }, { @@ -1774,7 +2331,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 35 + "__id__": 49 }, "_enabled": true, "_normalMaterial": null, @@ -1783,7 +2340,7 @@ "zoomScale": 1.2, "clickEvents": [ { - "__id__": 46 + "__id__": 60 } ], "_N$interactable": true, @@ -1859,7 +2416,7 @@ "asset": { "__id__": 0 }, - "fileId": "61Cy7t96ZErb4PRQRqdEru", + "fileId": "4e62EXrIZEn68BEz24lXN5", "sync": false }, { @@ -1870,25 +2427,25 @@ "asset": { "__id__": 0 }, - "fileId": "12MUcYJIpBravtaZbkMi8p", + "fileId": "0f17G5wpRF34POx0OVa1JH", "sync": false }, { "__type__": "cc.Node", - "_name": "饺子摊位", + "_name": "鸡蛋摊位", "_objFlags": 0, "_parent": { - "__id__": 1 + "__id__": 22 }, "_children": [ { - "__id__": 50 + "__id__": 64 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 63 + "__id__": 77 }, "_opacity": 255, "_color": { @@ -1942,27 +2499,27 @@ "_name": "touch", "_objFlags": 0, "_parent": { - "__id__": 49 + "__id__": 63 }, "_children": [ { - "__id__": 51 + "__id__": 65 }, { - "__id__": 54 + "__id__": 68 }, { - "__id__": 57 + "__id__": 71 } ], "_active": true, "_components": [ { - "__id__": 60 + "__id__": 74 } ], "_prefab": { - "__id__": 62 + "__id__": 76 }, "_opacity": 255, "_color": { @@ -2016,17 +2573,17 @@ "_name": "1", "_objFlags": 0, "_parent": { - "__id__": 50 + "__id__": 64 }, "_children": [], "_active": false, "_components": [ { - "__id__": 52 + "__id__": 66 } ], "_prefab": { - "__id__": 53 + "__id__": 67 }, "_opacity": 255, "_color": { @@ -2080,7 +2637,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 51 + "__id__": 65 }, "_enabled": true, "_materials": [ @@ -2115,7 +2672,7 @@ "asset": { "__id__": 0 }, - "fileId": "548GazosBAKIrC9o3CDB+1", + "fileId": "1fnHpZhuhDMqw37VBJ3Kch", "sync": false }, { @@ -2123,17 +2680,17 @@ "_name": "2", "_objFlags": 0, "_parent": { - "__id__": 50 + "__id__": 64 }, "_children": [], "_active": false, "_components": [ { - "__id__": 55 + "__id__": 69 } ], "_prefab": { - "__id__": 56 + "__id__": 70 }, "_opacity": 255, "_color": { @@ -2187,7 +2744,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 54 + "__id__": 68 }, "_enabled": true, "_materials": [ @@ -2222,7 +2779,7 @@ "asset": { "__id__": 0 }, - "fileId": "bf+AN04hRI5rH1lCuRMG8y", + "fileId": "eaHHDD9t5Hz7qSk2qR6wWi", "sync": false }, { @@ -2230,17 +2787,17 @@ "_name": "3", "_objFlags": 0, "_parent": { - "__id__": 50 + "__id__": 64 }, "_children": [], "_active": false, "_components": [ { - "__id__": 58 + "__id__": 72 } ], "_prefab": { - "__id__": 59 + "__id__": 73 }, "_opacity": 255, "_color": { @@ -2294,7 +2851,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 57 + "__id__": 71 }, "_enabled": true, "_materials": [ @@ -2329,7 +2886,7 @@ "asset": { "__id__": 0 }, - "fileId": "90jiry2D1IjokeJ+cB9FKp", + "fileId": "cbuJlBKSdKsYvUbLkfAGmN", "sync": false }, { @@ -2337,7 +2894,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 50 + "__id__": 64 }, "_enabled": true, "_normalMaterial": null, @@ -2346,7 +2903,7 @@ "zoomScale": 1.2, "clickEvents": [ { - "__id__": 61 + "__id__": 75 } ], "_N$interactable": true, @@ -2422,7 +2979,7 @@ "asset": { "__id__": 0 }, - "fileId": "c5FBObuK1B3YpYrzbud73m", + "fileId": "a1Ve2WCPlK/JQvoTN/AeRm", "sync": false }, { @@ -2433,29 +2990,25 @@ "asset": { "__id__": 0 }, - "fileId": "59OtZY2XpNjpd68qRGqzYr", + "fileId": "6ccBBzvm9IaKuMsSUe4L0+", "sync": false }, { "__type__": "cc.Node", - "_name": "油条摊位", + "_name": "饺子摊位", "_objFlags": 0, "_parent": { - "__id__": 1 + "__id__": 22 }, "_children": [ { - "__id__": 65 + "__id__": 79 } ], "_active": true, - "_components": [ - { - "__id__": 78 - } - ], + "_components": [], "_prefab": { - "__id__": 79 + "__id__": 92 }, "_opacity": 255, "_color": { @@ -2467,8 +3020,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 423, - "height": 225 + "width": 0, + "height": 0 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2479,8 +3032,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 159.406, - -375.628, + 0, + 0, 0, 0, 0, @@ -2509,27 +3062,27 @@ "_name": "touch", "_objFlags": 0, "_parent": { - "__id__": 64 + "__id__": 78 }, "_children": [ { - "__id__": 66 + "__id__": 80 }, { - "__id__": 69 + "__id__": 83 }, { - "__id__": 72 + "__id__": 86 } ], "_active": true, "_components": [ { - "__id__": 75 + "__id__": 89 } ], "_prefab": { - "__id__": 77 + "__id__": 91 }, "_opacity": 255, "_color": { @@ -2583,17 +3136,17 @@ "_name": "1", "_objFlags": 0, "_parent": { - "__id__": 65 + "__id__": 79 }, "_children": [], "_active": false, "_components": [ { - "__id__": 67 + "__id__": 81 } ], "_prefab": { - "__id__": 68 + "__id__": 82 }, "_opacity": 255, "_color": { @@ -2647,7 +3200,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 66 + "__id__": 80 }, "_enabled": true, "_materials": [ @@ -2682,7 +3235,7 @@ "asset": { "__id__": 0 }, - "fileId": "fa/E0Gg4dBD5Js4TuIi/LV", + "fileId": "1eblarVWZGnq8oVK3hCMOd", "sync": false }, { @@ -2690,17 +3243,17 @@ "_name": "2", "_objFlags": 0, "_parent": { - "__id__": 65 + "__id__": 79 }, "_children": [], "_active": false, "_components": [ { - "__id__": 70 + "__id__": 84 } ], "_prefab": { - "__id__": 71 + "__id__": 85 }, "_opacity": 255, "_color": { @@ -2754,7 +3307,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 69 + "__id__": 83 }, "_enabled": true, "_materials": [ @@ -2789,7 +3342,7 @@ "asset": { "__id__": 0 }, - "fileId": "3bqxNNQ6pPUplWhpctPckx", + "fileId": "f0TNYq0A1Lt40KAobPDn4F", "sync": false }, { @@ -2797,17 +3350,17 @@ "_name": "3", "_objFlags": 0, "_parent": { - "__id__": 65 + "__id__": 79 }, "_children": [], "_active": false, "_components": [ { - "__id__": 73 + "__id__": 87 } ], "_prefab": { - "__id__": 74 + "__id__": 88 }, "_opacity": 255, "_color": { @@ -2861,7 +3414,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 72 + "__id__": 86 }, "_enabled": true, "_materials": [ @@ -2896,7 +3449,7 @@ "asset": { "__id__": 0 }, - "fileId": "begRD1LedD1rYo4K8M3NyF", + "fileId": "13hTURgvNIfZTld7eAqvYA", "sync": false }, { @@ -2904,7 +3457,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 65 + "__id__": 79 }, "_enabled": true, "_normalMaterial": null, @@ -2913,7 +3466,7 @@ "zoomScale": 1.2, "clickEvents": [ { - "__id__": 76 + "__id__": 90 } ], "_N$interactable": true, @@ -2956,84 +3509,42 @@ "a": 255 }, "_N$disabledColor": { - "__type__": "cc.Color", - "r": 124, - "g": 124, - "b": 124, - "a": 255 - }, - "_N$normalSprite": null, - "_N$pressedSprite": null, - "pressedSprite": null, - "_N$hoverSprite": null, - "hoverSprite": null, - "_N$disabledSprite": null, - "_N$target": null, - "_id": "" - }, - { - "__type__": "cc.ClickEvent", - "target": { - "__id__": 1 - }, - "component": "", - "_componentId": "78aa92gum1MDL6YWVymp3nP", - "handler": "onTouchZaoCan", - "customEventData": "3" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "2a1o1hGhtL1oEQAZ/fEOVb", - "sync": false - }, - { - "__type__": "sp.Skeleton", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 64 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" - } - ], - "paused": false, - "defaultSkin": "default", - "defaultAnimation": "aa雾气", - "_preCacheMode": 0, - "_cacheMode": 0, - "loop": true, - "premultipliedAlpha": true, - "timeScale": 1, - "_accTime": 0, - "_playCount": 0, - "_frameCache": null, - "_curFrame": null, - "_skeletonCache": null, - "_animationName": "aa雾气", - "_animationQueue": [], - "_headAniInfo": null, - "_playTimes": 0, - "_isAniComplete": true, - "_N$skeletonData": { - "__uuid__": "a757b566-29f5-4186-9bd8-7495cdde8a9d" + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 }, - "_N$_defaultCacheMode": 0, - "_N$debugSlots": false, - "_N$debugBones": false, - "_N$debugMesh": false, - "_N$useTint": false, - "_N$enableBatch": false, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, "_id": "" }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "78aa92gum1MDL6YWVymp3nP", + "handler": "onTouchZaoCan", + "customEventData": "3" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7d22cbOEVHb7pVySb6OATY", + "sync": false + }, { "__type__": "cc.PrefabInfo", "root": { @@ -3042,25 +3553,29 @@ "asset": { "__id__": 0 }, - "fileId": "5aHNXGP81H9aZ5Euz/Nc37", + "fileId": "33CJ0xiGlJNoBHIknWkfg3", "sync": false }, { "__type__": "cc.Node", - "_name": "豆浆摊位", + "_name": "油条摊位", "_objFlags": 0, "_parent": { - "__id__": 1 + "__id__": 22 }, "_children": [ { - "__id__": 81 + "__id__": 94 } ], "_active": true, - "_components": [], + "_components": [ + { + "__id__": 107 + } + ], "_prefab": { - "__id__": 94 + "__id__": 108 }, "_opacity": 255, "_color": { @@ -3072,8 +3587,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 0, - "height": 0 + "width": 423, + "height": 225 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -3084,8 +3599,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - 0, + 159.406, + -375.628, 0, 0, 0, @@ -3114,27 +3629,27 @@ "_name": "touch", "_objFlags": 0, "_parent": { - "__id__": 80 + "__id__": 93 }, "_children": [ { - "__id__": 82 + "__id__": 95 }, { - "__id__": 85 + "__id__": 98 }, { - "__id__": 88 + "__id__": 101 } ], "_active": true, "_components": [ { - "__id__": 91 + "__id__": 104 } ], "_prefab": { - "__id__": 93 + "__id__": 106 }, "_opacity": 255, "_color": { @@ -3188,17 +3703,17 @@ "_name": "1", "_objFlags": 0, "_parent": { - "__id__": 81 + "__id__": 94 }, "_children": [], "_active": false, "_components": [ { - "__id__": 83 + "__id__": 96 } ], "_prefab": { - "__id__": 84 + "__id__": 97 }, "_opacity": 255, "_color": { @@ -3252,7 +3767,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 82 + "__id__": 95 }, "_enabled": true, "_materials": [ @@ -3287,7 +3802,7 @@ "asset": { "__id__": 0 }, - "fileId": "a7zI5GWatCJqiJYlCA8llY", + "fileId": "93/woqhY5EsqlvFaK/hATo", "sync": false }, { @@ -3295,17 +3810,17 @@ "_name": "2", "_objFlags": 0, "_parent": { - "__id__": 81 + "__id__": 94 }, "_children": [], "_active": false, "_components": [ { - "__id__": 86 + "__id__": 99 } ], "_prefab": { - "__id__": 87 + "__id__": 100 }, "_opacity": 255, "_color": { @@ -3359,7 +3874,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 85 + "__id__": 98 }, "_enabled": true, "_materials": [ @@ -3394,7 +3909,7 @@ "asset": { "__id__": 0 }, - "fileId": "7eYJTETqhMpq/E08oyIeLg", + "fileId": "d9cETqi5lM3pTPP8w2z5m+", "sync": false }, { @@ -3402,17 +3917,17 @@ "_name": "3", "_objFlags": 0, "_parent": { - "__id__": 81 + "__id__": 94 }, "_children": [], "_active": false, "_components": [ { - "__id__": 89 + "__id__": 102 } ], "_prefab": { - "__id__": 90 + "__id__": 103 }, "_opacity": 255, "_color": { @@ -3466,7 +3981,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 88 + "__id__": 101 }, "_enabled": true, "_materials": [ @@ -3501,7 +4016,7 @@ "asset": { "__id__": 0 }, - "fileId": "f8A+3H8aBLZKTp2rHPEjik", + "fileId": "02hyqwZv1LWYu6isfCs9Qb", "sync": false }, { @@ -3509,7 +4024,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 81 + "__id__": 94 }, "_enabled": true, "_normalMaterial": null, @@ -3518,7 +4033,7 @@ "zoomScale": 1.2, "clickEvents": [ { - "__id__": 92 + "__id__": 105 } ], "_N$interactable": true, @@ -3594,9 +4109,201 @@ "asset": { "__id__": 0 }, - "fileId": "c8e2STi9RNCrEYXKaQr7vP", + "fileId": "53s/q9WzdHS7EGKCaAd/c0", + "sync": false + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 93 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3" + } + ], + "paused": false, + "defaultSkin": "default", + "defaultAnimation": "aa雾气", + "_preCacheMode": 0, + "_cacheMode": 0, + "loop": true, + "premultipliedAlpha": true, + "timeScale": 1, + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_skeletonCache": null, + "_animationName": "aa雾气", + "_animationQueue": [], + "_headAniInfo": null, + "_playTimes": 0, + "_isAniComplete": true, + "_N$skeletonData": { + "__uuid__": "2ac23cea-5902-40b8-bf74-c8029eb7e600" + }, + "_N$_defaultCacheMode": 0, + "_N$debugSlots": false, + "_N$debugBones": false, + "_N$debugMesh": false, + "_N$useTint": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b9gEGMIkREwpybONgMeL81", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "碗", + "_objFlags": 0, + "_parent": { + "__id__": 22 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 110 + } + ], + "_prefab": { + "__id__": 111 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 180, + "height": 124 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 16.149, + -51.138, + 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.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 109 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "d8438aa2-da62-434a-8e6c-3f378c69d96b" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "44IgRRDXtDqpUt7N3MLM2m", "sync": false }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 22 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "bbfa028b-811b-45ba-bca7-b4f9ccb42400" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -3605,7 +4312,7 @@ "asset": { "__id__": 0 }, - "fileId": "90nZ+qs2RBx5N0b/YJF38D", + "fileId": "b69fwV+45C2pRZ9hT5fsWs", "sync": false }, { @@ -3660,20 +4367,23 @@ ], "npc_Positions": [ { - "__id__": 12 + "__id__": 15 }, { - "__id__": 14 + "__id__": 17 }, { - "__id__": 16 + "__id__": 19 } ], "npc_parent": { - "__id__": 9 + "__id__": 12 }, "car": { - "__id__": 7 + "__id__": 10 + }, + "m_bg": { + "__id__": 3 }, "_id": "" }, diff --git a/assets/ZaoCanDian/res/图片1.png b/assets/ZaoCanDian/res/图片1.png new file mode 100644 index 00000000..6de1d77e Binary files /dev/null and b/assets/ZaoCanDian/res/图片1.png differ diff --git a/assets/ZaoCanDian/res/图片1.png.meta b/assets/ZaoCanDian/res/图片1.png.meta new file mode 100644 index 00000000..d32d8e87 --- /dev/null +++ b/assets/ZaoCanDian/res/图片1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "06eacb25-d420-4c1b-8c18-b2f9c970443f", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1100, + "height": 951, + "platformSettings": {}, + "subMetas": { + "图片1": { + "ver": "1.0.6", + "uuid": "da52b849-ed1a-43b6-b818-54e708a8ef0c", + "importer": "sprite-frame", + "rawTextureUuid": "06eacb25-d420-4c1b-8c18-b2f9c970443f", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1100, + "height": 951, + "rawWidth": 1100, + "rawHeight": 951, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/ZaoCanDian/res/图片2.png b/assets/ZaoCanDian/res/图片2.png new file mode 100644 index 00000000..8b880638 Binary files /dev/null and b/assets/ZaoCanDian/res/图片2.png differ diff --git a/assets/ZaoCanDian/res/图片2.png.meta b/assets/ZaoCanDian/res/图片2.png.meta new file mode 100644 index 00000000..6b99d1bc --- /dev/null +++ b/assets/ZaoCanDian/res/图片2.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "1b4ba38a-2836-495d-b6cd-a278fddc9a83", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1100, + "height": 951, + "platformSettings": {}, + "subMetas": { + "图片2": { + "ver": "1.0.6", + "uuid": "d4d09c4e-e06f-4d85-a533-92ed1dbf62ed", + "importer": "sprite-frame", + "rawTextureUuid": "1b4ba38a-2836-495d-b6cd-a278fddc9a83", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1100, + "height": 951, + "rawWidth": 1100, + "rawHeight": 951, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/ZaoCanDian/res/图片3.png b/assets/ZaoCanDian/res/图片3.png new file mode 100644 index 00000000..cc8541a5 Binary files /dev/null and b/assets/ZaoCanDian/res/图片3.png differ diff --git a/assets/ZaoCanDian/res/图片3.png.meta b/assets/ZaoCanDian/res/图片3.png.meta new file mode 100644 index 00000000..91d74ddf --- /dev/null +++ b/assets/ZaoCanDian/res/图片3.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "43a2ada0-6c29-4319-a4d9-8111b7eea7c3", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1100, + "height": 951, + "platformSettings": {}, + "subMetas": { + "图片3": { + "ver": "1.0.6", + "uuid": "fc5f6aa6-ad88-4a29-8fad-7bdd1b834754", + "importer": "sprite-frame", + "rawTextureUuid": "43a2ada0-6c29-4319-a4d9-8111b7eea7c3", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1100, + "height": 951, + "rawWidth": 1100, + "rawHeight": 951, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/ZaoCanDian/res/桌子.png b/assets/ZaoCanDian/res/桌子.png new file mode 100644 index 00000000..879c881b Binary files /dev/null and b/assets/ZaoCanDian/res/桌子.png differ diff --git a/assets/ZaoCanDian/res/桌子.png.meta b/assets/ZaoCanDian/res/桌子.png.meta new file mode 100644 index 00000000..2ae9e7f8 --- /dev/null +++ b/assets/ZaoCanDian/res/桌子.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "b58c0335-9222-4138-aeaa-85e785a603da", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 1100, + "height": 798, + "platformSettings": {}, + "subMetas": { + "桌子": { + "ver": "1.0.6", + "uuid": "bbfa028b-811b-45ba-bca7-b4f9ccb42400", + "importer": "sprite-frame", + "rawTextureUuid": "b58c0335-9222-4138-aeaa-85e785a603da", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1100, + "height": 798, + "rawWidth": 1100, + "rawHeight": 798, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/ZaoCanDian/spine/油锅.meta b/assets/ZaoCanDian/spine/油锅.meta new file mode 100644 index 00000000..78ddc13d --- /dev/null +++ b/assets/ZaoCanDian/spine/油锅.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "03734bdd-56da-4963-a398-f874c1fe3f46", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/ZaoCanDian/spine/油锅/.WeDrive b/assets/ZaoCanDian/spine/油锅/.WeDrive new file mode 100644 index 00000000..98824967 --- /dev/null +++ b/assets/ZaoCanDian/spine/油锅/.WeDrive @@ -0,0 +1 @@ +D:\WXWork\1688855028601486\WeDrive\中昱智云\抖音游戏\逆袭类\【新】咸鱼的反击\动效\油锅 \ No newline at end of file diff --git a/assets/ZaoCanDian/spine/油锅.atlas b/assets/ZaoCanDian/spine/油锅/油锅.atlas similarity index 100% rename from assets/ZaoCanDian/spine/油锅.atlas rename to assets/ZaoCanDian/spine/油锅/油锅.atlas diff --git a/assets/ZaoCanDian/spine/油锅.atlas.meta b/assets/ZaoCanDian/spine/油锅/油锅.atlas.meta similarity index 54% rename from assets/ZaoCanDian/spine/油锅.atlas.meta rename to assets/ZaoCanDian/spine/油锅/油锅.atlas.meta index 70d163ac..c3def36f 100644 --- a/assets/ZaoCanDian/spine/油锅.atlas.meta +++ b/assets/ZaoCanDian/spine/油锅/油锅.atlas.meta @@ -1,6 +1,6 @@ { "ver": "1.0.3", - "uuid": "036ca128-2cd6-49f1-9f65-58823c23453b", + "uuid": "4b7dd3cf-86c6-48c2-b398-41b24eb8bc64", "importer": "asset", "subMetas": {} } \ No newline at end of file diff --git a/assets/ZaoCanDian/spine/油锅.json b/assets/ZaoCanDian/spine/油锅/油锅.json similarity index 100% rename from assets/ZaoCanDian/spine/油锅.json rename to assets/ZaoCanDian/spine/油锅/油锅.json diff --git a/assets/ZaoCanDian/spine/油锅.json.meta b/assets/ZaoCanDian/spine/油锅/油锅.json.meta similarity index 50% rename from assets/ZaoCanDian/spine/油锅.json.meta rename to assets/ZaoCanDian/spine/油锅/油锅.json.meta index 234366ae..a5514a7c 100644 --- a/assets/ZaoCanDian/spine/油锅.json.meta +++ b/assets/ZaoCanDian/spine/油锅/油锅.json.meta @@ -1,9 +1,9 @@ { "ver": "1.2.5", - "uuid": "a757b566-29f5-4186-9bd8-7495cdde8a9d", + "uuid": "2ac23cea-5902-40b8-bf74-c8029eb7e600", "importer": "spine", "textures": [ - "284b6438-2b70-446f-9128-9d7243f9d252" + "e5f1699b-52b7-435f-9673-64ee731885ea" ], "scale": 1, "subMetas": {} diff --git a/assets/ZaoCanDian/spine/油锅.png b/assets/ZaoCanDian/spine/油锅/油锅.png similarity index 100% rename from assets/ZaoCanDian/spine/油锅.png rename to assets/ZaoCanDian/spine/油锅/油锅.png diff --git a/assets/ZaoCanDian/spine/油锅.png.meta b/assets/ZaoCanDian/spine/油锅/油锅.png.meta similarity index 80% rename from assets/ZaoCanDian/spine/油锅.png.meta rename to assets/ZaoCanDian/spine/油锅/油锅.png.meta index 149762d6..17192a31 100644 --- a/assets/ZaoCanDian/spine/油锅.png.meta +++ b/assets/ZaoCanDian/spine/油锅/油锅.png.meta @@ -1,6 +1,6 @@ { "ver": "2.3.7", - "uuid": "284b6438-2b70-446f-9128-9d7243f9d252", + "uuid": "e5f1699b-52b7-435f-9673-64ee731885ea", "importer": "texture", "type": "sprite", "wrapMode": "clamp", @@ -14,9 +14,9 @@ "subMetas": { "油锅": { "ver": "1.0.6", - "uuid": "314b6853-19bf-4781-b4b9-0e252611fb97", + "uuid": "45a191ac-f658-4249-8ea8-d7134ac8f59b", "importer": "sprite-frame", - "rawTextureUuid": "284b6438-2b70-446f-9128-9d7243f9d252", + "rawTextureUuid": "e5f1699b-52b7-435f-9673-64ee731885ea", "trimType": "auto", "trimThreshold": 1, "rotated": false, diff --git a/assets/ZaoCanDian/spine/蒸笼.meta b/assets/ZaoCanDian/spine/蒸笼.meta new file mode 100644 index 00000000..2235428e --- /dev/null +++ b/assets/ZaoCanDian/spine/蒸笼.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "7e7caa11-7098-4d38-86b2-ffef35b7a7dc", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/ZaoCanDian/spine/蒸笼/.WeDrive b/assets/ZaoCanDian/spine/蒸笼/.WeDrive new file mode 100644 index 00000000..8e7e0ae3 --- /dev/null +++ b/assets/ZaoCanDian/spine/蒸笼/.WeDrive @@ -0,0 +1 @@ +D:\WXWork\1688855028601486\WeDrive\中昱智云\抖音游戏\逆袭类\【新】咸鱼的反击\动效\蒸笼 \ No newline at end of file diff --git a/assets/ZaoCanDian/spine/蒸笼/蒸笼.atlas b/assets/ZaoCanDian/spine/蒸笼/蒸笼.atlas new file mode 100644 index 00000000..5070f97b --- /dev/null +++ b/assets/ZaoCanDian/spine/蒸笼/蒸笼.atlas @@ -0,0 +1,132 @@ + +蒸笼.png +size: 1807,250 +format: RGBA8888 +filter: Linear,Linear +repeat: none +烧麦 + rotate: true + xy: 575, 33 + size: 45, 43 + orig: 47, 45 + offset: 1, 1 + index: -1 +烧麦熟 + rotate: false + xy: 620, 34 + size: 43, 44 + orig: 45, 46 + offset: 1, 1 + index: -1 +红薯 + rotate: false + xy: 297, 44 + size: 96, 34 + orig: 98, 36 + offset: 1, 1 + index: -1 +红薯熟 + rotate: false + xy: 297, 8 + size: 87, 34 + orig: 89, 36 + offset: 1, 1 + index: -1 +肉包 + rotate: false + xy: 386, 2 + size: 49, 40 + orig: 51, 42 + offset: 1, 1 + index: -1 +肉包熟 + rotate: true + xy: 533, 29 + size: 49, 40 + orig: 51, 42 + offset: 1, 1 + index: -1 +蒸笼 + rotate: false + xy: 686, 4 + size: 239, 244 + orig: 241, 246 + offset: 1, 1 + index: -1 +蒸笼布 + rotate: false + xy: 1201, 9 + size: 263, 121 + orig: 265, 123 + offset: 1, 1 + index: -1 +蒸笼手 + rotate: false + xy: 1504, 162 + size: 207, 86 + orig: 209, 88 + offset: 1, 1 + index: -1 +蒸笼手2 + rotate: true + xy: 1713, 39 + size: 209, 92 + orig: 211, 94 + offset: 1, 1 + index: -1 +蒸笼水雾 + rotate: true + xy: 1270, 133 + size: 115, 232 + orig: 115, 232 + offset: 0, 0 + index: -1 +蒸笼水雾2 + rotate: true + xy: 927, 2 + size: 128, 272 + orig: 128, 272 + offset: 0, 0 + index: -1 +蒸笼热气 + rotate: true + xy: 2, 13 + size: 235, 293 + orig: 235, 293 + offset: 0, 0 + index: -1 +蒸笼盖 + rotate: false + xy: 1466, 4 + size: 245, 127 + orig: 247, 129 + offset: 1, 1 + index: -1 +蒸笼锅 + rotate: false + xy: 297, 80 + size: 387, 168 + orig: 389, 170 + offset: 1, 1 + index: -1 +蒸笼阴影 + rotate: false + xy: 927, 132 + size: 341, 116 + orig: 349, 133 + offset: 5, 3 + index: -1 +馒头 + rotate: true + xy: 437, 28 + size: 50, 46 + orig: 52, 48 + offset: 1, 1 + index: -1 +馒头熟 + rotate: true + xy: 485, 28 + size: 50, 46 + orig: 52, 48 + offset: 1, 1 + index: -1 diff --git a/assets/ZaoCanDian/spine/蒸笼/蒸笼.atlas.meta b/assets/ZaoCanDian/spine/蒸笼/蒸笼.atlas.meta new file mode 100644 index 00000000..96e5d5eb --- /dev/null +++ b/assets/ZaoCanDian/spine/蒸笼/蒸笼.atlas.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.3", + "uuid": "c7462c90-f86a-4fb9-bd49-7f201f5011a3", + "importer": "asset", + "subMetas": {} +} \ No newline at end of file diff --git a/assets/ZaoCanDian/spine/蒸笼/蒸笼.json b/assets/ZaoCanDian/spine/蒸笼/蒸笼.json new file mode 100644 index 00000000..b0160d2d --- /dev/null +++ b/assets/ZaoCanDian/spine/蒸笼/蒸笼.json @@ -0,0 +1 @@ +{"skeleton":{"hash":"tUEQ4tr1+xJMEEFAR0szmNoTqkk","spine":"3.8.75","images":"./images/","audio":"C:/Users/LongKong/Documents/WXWork/1688855657527795/Cache/File/2025-02/咸鱼的反击 蒸笼"},"bones":[{"name":"root"},{"name":"笼","parent":"root","length":42.46,"x":-11.59,"y":-149.94,"color":"ff0000ff"},{"name":"蒸笼","parent":"笼","x":20.5,"y":88.94,"color":"ff0000ff"},{"name":"蒸笼盖","parent":"蒸笼","x":-210.82,"y":248.51,"color":"ff0000ff"},{"name":"蒸笼热气","parent":"笼","x":15.37,"y":92.4,"color":"1eff00ff"},{"name":"蒸笼热气2","parent":"蒸笼热气","x":22.85,"y":52.01,"color":"1eff00ff"},{"name":"蒸笼热气3","parent":"蒸笼热气","x":5.52,"y":113.47,"color":"1eff00ff"},{"name":"蒸笼热气4","parent":"蒸笼热气","x":55.16,"y":241.52,"color":"1eff00ff"},{"name":"蒸笼热气5","parent":"蒸笼热气","x":76.44,"y":158.78,"color":"1eff00ff"},{"name":"蒸笼热气6","parent":"蒸笼热气","x":1.18,"y":200.94,"color":"1eff00ff"},{"name":"bone","parent":"root","x":8.32,"y":106.84,"color":"599900ff"},{"name":"馒头","parent":"bone","x":8.26,"y":28.34,"scaleX":0.9,"color":"dbff00ff"},{"name":"蒸笼水雾","parent":"笼","x":27.61,"y":278.03,"color":"0d00ffff"},{"name":"蒸笼手","parent":"笼","length":35.82,"x":-176.64,"y":430.36,"color":"ff8dc7ff"},{"name":"馒头2","parent":"bone","x":-59.81,"y":-2.7,"scaleX":0.9,"color":"dbff00ff"},{"name":"馒头3","parent":"bone","x":60.62,"y":-10.56,"scaleX":0.9,"color":"dbff00ff"},{"name":"蒸笼热气7","parent":"笼","x":15.37,"y":92.4,"color":"1eff00ff"},{"name":"蒸笼热气8","parent":"蒸笼热气7","x":22.85,"y":52.01,"color":"1eff00ff"},{"name":"蒸笼热气9","parent":"蒸笼热气7","x":5.52,"y":113.47,"color":"1eff00ff"},{"name":"蒸笼热气10","parent":"蒸笼热气7","x":55.16,"y":241.52,"color":"1eff00ff"},{"name":"蒸笼热气11","parent":"蒸笼热气7","x":76.44,"y":158.78,"color":"1eff00ff"},{"name":"蒸笼热气12","parent":"蒸笼热气7","x":1.18,"y":200.94,"color":"1eff00ff"},{"name":"蒸笼热气13","parent":"笼","x":15.37,"y":92.4,"color":"1eff00ff"},{"name":"蒸笼热气14","parent":"蒸笼热气13","x":22.85,"y":52.01,"color":"1eff00ff"},{"name":"蒸笼热气15","parent":"蒸笼热气13","x":5.52,"y":113.47,"color":"1eff00ff"},{"name":"蒸笼热气16","parent":"蒸笼热气13","x":55.16,"y":241.52,"color":"1eff00ff"},{"name":"蒸笼热气17","parent":"蒸笼热气13","x":76.44,"y":158.78,"color":"1eff00ff"},{"name":"蒸笼热气18","parent":"蒸笼热气13","x":1.18,"y":200.94,"color":"1eff00ff"},{"name":"蒸笼热气19","parent":"笼","x":-106.58,"y":116.51,"color":"ffb200ff"},{"name":"蒸笼热气20","parent":"蒸笼热气19","x":22.85,"y":52.01,"color":"1eff00ff"},{"name":"蒸笼热气21","parent":"蒸笼热气19","x":5.52,"y":113.47,"color":"1eff00ff"},{"name":"蒸笼热气22","parent":"蒸笼热气19","x":55.16,"y":241.52,"color":"1eff00ff"},{"name":"蒸笼热气23","parent":"蒸笼热气19","x":76.44,"y":158.78,"color":"1eff00ff"},{"name":"蒸笼热气24","parent":"蒸笼热气19","x":1.18,"y":200.94,"color":"1eff00ff"},{"name":"蒸笼热气25","parent":"笼","x":-106.58,"y":116.51,"color":"ffb200ff"},{"name":"蒸笼热气26","parent":"蒸笼热气25","x":22.85,"y":52.01,"color":"1eff00ff"},{"name":"蒸笼热气27","parent":"蒸笼热气25","x":5.52,"y":113.47,"color":"1eff00ff"},{"name":"蒸笼热气28","parent":"蒸笼热气25","x":55.16,"y":241.52,"color":"1eff00ff"},{"name":"蒸笼热气29","parent":"蒸笼热气25","x":76.44,"y":158.78,"color":"1eff00ff"},{"name":"蒸笼热气30","parent":"蒸笼热气25","x":1.18,"y":200.94,"color":"1eff00ff"},{"name":"蒸笼热气31","parent":"笼","x":-106.58,"y":116.51,"color":"ffb200ff"},{"name":"蒸笼热气32","parent":"蒸笼热气31","x":22.85,"y":52.01,"color":"1eff00ff"},{"name":"蒸笼热气33","parent":"蒸笼热气31","x":5.52,"y":113.47,"color":"1eff00ff"},{"name":"蒸笼热气34","parent":"蒸笼热气31","x":55.16,"y":241.52,"color":"1eff00ff"},{"name":"蒸笼热气35","parent":"蒸笼热气31","x":76.44,"y":158.78,"color":"1eff00ff"},{"name":"蒸笼热气36","parent":"蒸笼热气31","x":1.18,"y":200.94,"color":"1eff00ff"},{"name":"蒸笼热气37","parent":"笼","x":136.61,"y":119.35,"color":"ff009aff"},{"name":"蒸笼热气38","parent":"蒸笼热气37","x":22.85,"y":52.01,"color":"1eff00ff"},{"name":"蒸笼热气39","parent":"蒸笼热气37","x":5.52,"y":113.47,"color":"1eff00ff"},{"name":"蒸笼热气40","parent":"蒸笼热气37","x":55.16,"y":241.52,"color":"1eff00ff"},{"name":"蒸笼热气41","parent":"蒸笼热气37","x":76.44,"y":158.78,"color":"1eff00ff"},{"name":"蒸笼热气42","parent":"蒸笼热气37","x":1.18,"y":200.94,"color":"1eff00ff"},{"name":"蒸笼热气43","parent":"笼","x":136.61,"y":119.35,"color":"ff009aff"},{"name":"蒸笼热气44","parent":"蒸笼热气43","x":22.85,"y":52.01,"color":"1eff00ff"},{"name":"蒸笼热气45","parent":"蒸笼热气43","x":5.52,"y":113.47,"color":"1eff00ff"},{"name":"蒸笼热气46","parent":"蒸笼热气43","x":55.16,"y":241.52,"color":"1eff00ff"},{"name":"蒸笼热气47","parent":"蒸笼热气43","x":76.44,"y":158.78,"color":"1eff00ff"},{"name":"蒸笼热气48","parent":"蒸笼热气43","x":1.18,"y":200.94,"color":"1eff00ff"},{"name":"蒸笼热气49","parent":"笼","x":136.61,"y":119.35,"color":"ff009aff"},{"name":"蒸笼热气50","parent":"蒸笼热气49","x":22.85,"y":52.01,"color":"1eff00ff"},{"name":"蒸笼热气51","parent":"蒸笼热气49","x":5.52,"y":113.47,"color":"1eff00ff"},{"name":"蒸笼热气52","parent":"蒸笼热气49","x":55.16,"y":241.52,"color":"1eff00ff"},{"name":"蒸笼热气53","parent":"蒸笼热气49","x":76.44,"y":158.78,"color":"1eff00ff"},{"name":"蒸笼热气54","parent":"蒸笼热气49","x":1.18,"y":200.94,"color":"1eff00ff"},{"name":"蒸笼水雾2","parent":"笼","x":-39.88,"y":250.29,"color":"0d00ffff"},{"name":"蒸笼水雾3","parent":"笼","x":79.95,"y":241.13,"color":"0d00ffff"}],"slots":[{"name":"蒸笼阴影","bone":"笼","blend":"multiply"},{"name":"蒸笼锅","bone":"笼"},{"name":"蒸笼","bone":"蒸笼"},{"name":"蒸笼布","bone":"笼"},{"name":"蒸笼手","bone":"蒸笼手"},{"name":"笼","bone":"笼","attachment":"笼"},{"name":"馒头","bone":"馒头"},{"name":"馒头2","bone":"馒头"},{"name":"馒头3","bone":"馒头"},{"name":"馒头01","bone":"馒头2"},{"name":"馒头02","bone":"馒头2"},{"name":"馒头03","bone":"馒头2"},{"name":"馒头001","bone":"馒头3"},{"name":"馒头002","bone":"馒头3"},{"name":"馒头003","bone":"馒头3"},{"name":"红薯","bone":"馒头"},{"name":"红薯2","bone":"馒头2"},{"name":"红薯3","bone":"馒头3"},{"name":"蒸笼盖","bone":"蒸笼盖"},{"name":"蒸笼水雾","bone":"蒸笼水雾"},{"name":"蒸笼水雾4","bone":"蒸笼水雾2"},{"name":"蒸笼水雾7","bone":"蒸笼水雾3"},{"name":"蒸笼水雾3","bone":"蒸笼水雾"},{"name":"蒸笼水雾5","bone":"蒸笼水雾2"},{"name":"蒸笼水雾8","bone":"蒸笼水雾3"},{"name":"蒸笼水雾2","bone":"蒸笼水雾"},{"name":"蒸笼水雾6","bone":"蒸笼水雾2"},{"name":"蒸笼水雾9","bone":"蒸笼水雾3"},{"name":"蒸笼热气","bone":"蒸笼热气"},{"name":"蒸笼热气4","bone":"蒸笼热气19"},{"name":"蒸笼热气7","bone":"蒸笼热气37"},{"name":"蒸笼热气2","bone":"蒸笼热气7"},{"name":"蒸笼热气5","bone":"蒸笼热气25"},{"name":"蒸笼热气8","bone":"蒸笼热气43"},{"name":"蒸笼热气3","bone":"蒸笼热气13"},{"name":"蒸笼热气6","bone":"蒸笼热气31"},{"name":"蒸笼热气9","bone":"蒸笼热气49"}],"skins":[{"name":"default","attachments":{"蒸笼阴影":{"蒸笼阴影":{"x":9.09,"y":70.44,"width":349,"height":133}},"蒸笼热气8":{"蒸笼热气":{"type":"mesh","uvs":[1,1,0.8,1,0.6,1,0.4,1,0.2,1,0,1,0,0.875,0,0.75,0,0.625,0,0.5,0,0.375,0,0.25,0,0.125,0,0,0.2,0,0.4,0,0.6,0,0.8,0,1,0,1,0.125,1,0.25,1,0.375,1,0.5,1,0.625,1,0.75,1,0.875,0.8,0.875,0.6,0.875,0.4,0.875,0.2,0.875,0.8,0.75,0.6,0.75,0.4,0.75,0.2,0.75,0.8,0.625,0.6,0.625,0.4,0.625,0.2,0.625,0.8,0.5,0.6,0.5,0.4,0.5,0.2,0.5,0.8,0.375,0.6,0.375,0.4,0.375,0.2,0.375,0.8,0.25,0.6,0.25,0.4,0.25,0.2,0.25,0.8,0.125,0.6,0.125,0.4,0.125,0.2,0.125],"triangles":[3,4,28,5,6,29,4,5,29,4,29,28,3,28,27,52,53,15,52,15,16,51,52,16,48,52,51,47,48,51,51,16,17,50,51,17,47,51,50,46,47,50,50,17,18,19,50,18,46,50,19,20,46,19,12,13,14,53,12,14,11,12,53,49,11,53,10,11,49,45,10,49,9,10,45,53,14,15,49,53,52,48,49,52,45,49,48,44,45,48,44,48,47,31,35,34,30,31,34,24,30,23,26,30,24,43,44,47,40,44,43,39,40,43,35,36,39,43,47,46,42,43,46,39,43,42,38,39,42,35,39,38,34,35,38,42,46,20,21,42,20,38,42,21,22,38,21,34,38,22,23,34,22,30,34,23,37,8,41,7,8,37,33,7,37,33,37,36,41,9,45,8,9,41,41,45,44,40,41,44,37,41,40,36,37,40,36,40,39,6,7,33,29,6,33,32,33,36,29,33,32,28,29,32,32,36,35,31,32,35,28,32,31,27,28,31,2,3,27,27,31,30,26,27,30,2,27,26,1,2,26,25,26,24,1,26,25,0,1,25],"vertices":[3,53,144.11,-65.87,0.52686,56,90.53,-172.65,0.47312,55,111.81,-255.39,2.0E-5,3,53,97.11,-65.87,0.57995,56,43.53,-172.65,0.42004,55,64.81,-255.39,1.0E-5,3,53,50.11,-65.87,0.74183,56,-3.47,-172.65,0.25817,55,17.81,-255.39,0,1,52,25.97,-13.87,1,1,52,-21.03,-13.87,1,3,53,-90.89,-65.87,0.26703,54,-73.55,-127.34,0.04179,52,-68.03,-13.87,0.69118,3,53,-90.88,-29.25,0.65627,54,-73.55,-90.71,0.19366,52,-68.03,22.76,0.15007,3,53,-90.88,7.38,0.51461,54,-73.55,-54.09,0.47474,57,-69.21,-141.56,0.01065,3,53,-90.89,44,0.20742,54,-73.55,-17.46,0.70593,57,-69.22,-104.93,0.08665,3,53,-90.88,80.63,0.03497,54,-73.55,19.16,0.67373,57,-69.21,-68.31,0.2913,3,53,-90.88,117.25,4.6E-4,54,-73.55,55.79,0.41132,57,-69.21,-31.68,0.58821,3,54,-73.55,92.41,0.14872,57,-69.22,4.94,0.84214,55,-123.19,-35.64,0.00915,3,54,-73.55,129.04,0.02122,57,-69.21,41.57,0.90557,55,-123.19,0.99,0.07322,2,57,-69.21,78.19,0.8825,55,-123.19,37.61,0.1175,2,57,-22.21,78.19,0.7319,55,-76.19,37.61,0.2681,2,57,24.79,78.19,0.28595,55,-29.19,37.61,0.71405,3,56,-3.47,120.35,0.03661,57,71.79,78.19,0.00184,55,17.81,37.61,0.96155,2,56,43.53,120.35,0.21674,55,64.81,37.61,0.78326,2,56,90.53,120.35,0.29562,55,111.81,37.61,0.70438,3,53,144.12,190.5,4.8E-4,56,90.53,83.73,0.37258,55,111.81,0.99,0.62694,3,53,144.12,153.88,0.01382,56,90.53,47.1,0.55905,55,111.81,-35.64,0.42712,3,53,144.12,117.25,0.07337,56,90.53,10.48,0.72693,55,111.81,-72.26,0.1997,3,53,144.12,80.63,0.20242,56,90.53,-26.15,0.74386,55,111.81,-108.89,0.05372,3,53,144.12,44,0.34802,56,90.53,-62.77,0.64638,55,111.81,-145.51,0.0056,3,53,144.12,7.38,0.44288,56,90.53,-99.4,0.55706,55,111.81,-182.14,6.0E-5,3,53,144.12,-29.25,0.50334,56,90.53,-136.02,0.49665,55,111.81,-218.76,2.0E-5,4,53,97.12,-29.25,0.55778,54,114.45,-90.71,0,56,43.53,-136.02,0.44222,55,64.81,-218.76,1.0E-5,4,53,50.12,-29.25,0.73143,54,67.45,-90.71,1.9E-4,56,-3.47,-136.02,0.26838,55,17.81,-218.76,0,4,53,3.12,-29.25,0.55296,56,-50.47,-136.02,0.02255,55,-29.19,-218.76,0,52,25.97,22.76,0.42449,4,53,-43.88,-29.25,0.19561,54,-26.55,-90.71,0.02977,55,-76.19,-218.76,0,52,-21.03,22.76,0.77462,3,53,97.12,7.38,0.48548,54,114.45,-54.09,0.00403,56,43.53,-99.4,0.51049,4,53,50.12,7.38,0.63427,54,67.45,-54.09,0.03415,56,-3.47,-99.4,0.33158,55,17.81,-182.14,0,3,53,3.12,7.38,0.9078,54,20.45,-54.09,0.06734,56,-50.47,-99.4,0.02486,3,53,-43.88,7.38,0.61541,54,-26.55,-54.09,0.38318,57,-22.21,-141.56,0.00141,4,53,97.11,44,0.3514,54,114.45,-17.46,0.01183,56,43.53,-62.77,0.63542,55,64.81,-145.51,0.00135,3,53,50.11,44,0.37467,54,67.45,-17.46,0.13352,56,-3.47,-62.77,0.49181,3,53,3.12,44,0.3135,54,20.45,-17.46,0.56942,56,-50.47,-62.77,0.11707,3,53,-43.88,44,0.19937,54,-26.55,-17.46,0.76765,57,-22.21,-104.93,0.03297,4,53,97.12,80.63,0.17737,54,114.45,19.16,0.00507,56,43.53,-26.15,0.78931,55,64.81,-108.89,0.02825,4,53,50.12,80.63,0.11173,54,67.45,19.16,0.12111,56,-3.47,-26.15,0.76154,57,71.79,-68.31,0.00562,4,53,3.12,80.63,0.02279,54,20.45,19.16,0.62418,56,-50.47,-26.15,0.24466,57,24.79,-68.31,0.10837,4,53,-43.88,80.63,0.00822,54,-26.55,19.16,0.75426,56,-97.47,-26.15,0.00374,57,-22.21,-68.31,0.23377,3,53,97.12,117.25,0.04618,56,43.53,10.48,0.78531,55,64.81,-72.26,0.16851,4,54,67.45,55.79,0.00894,56,-3.47,10.48,0.87535,57,71.79,-31.68,0.03797,55,17.81,-72.26,0.07774,4,54,20.45,55.79,0.24651,56,-50.47,10.48,0.28215,57,24.79,-31.68,0.43611,55,-29.19,-72.26,0.03523,3,54,-26.55,55.79,0.3737,56,-97.47,10.48,0.00972,57,-22.21,-31.68,0.61658,3,53,97.11,153.88,0.0052,56,43.53,47.1,0.54487,55,64.81,-35.64,0.44993,4,54,67.45,92.41,5.0E-4,56,-3.47,47.1,0.41891,57,71.78,4.94,0.06094,55,17.81,-35.64,0.51965,4,54,20.45,92.41,0.01181,56,-50.47,47.1,0.10806,57,24.79,4.94,0.61533,55,-29.19,-35.64,0.26479,3,54,-26.55,92.41,0.06199,57,-22.21,4.94,0.92395,55,-76.19,-35.64,0.01406,2,56,43.53,83.73,0.3047,55,64.81,0.99,0.6953,2,56,-3.47,83.73,0.08884,55,17.81,0.99,0.91116,3,56,-50.47,83.73,0.00209,57,24.79,41.57,0.36881,55,-29.19,0.99,0.6291,3,54,-26.55,129.04,0.00252,57,-22.21,41.57,0.81773,55,-76.19,0.99,0.17976],"hull":26,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,0],"width":235,"height":293}},"蒸笼":{"蒸笼":{"x":0.59,"y":111,"width":241,"height":246}},"红薯2":{"红薯":{"x":-2.7,"y":-4.54,"width":98,"height":36},"红薯熟":{"x":-2.7,"y":-4.54,"width":89,"height":36}},"红薯3":{"红薯":{"x":-2.7,"y":-4.54,"width":98,"height":36},"红薯熟":{"x":-2.7,"y":-4.54,"width":89,"height":36}},"蒸笼手":{"蒸笼手":{"x":104.73,"y":19.58,"width":209,"height":88},"蒸笼手2":{"x":104.73,"y":24.64,"width":211,"height":94}},"蒸笼热气3":{"蒸笼热气":{"type":"mesh","uvs":[1,1,0.8,1,0.6,1,0.4,1,0.2,1,0,1,0,0.875,0,0.75,0,0.625,0,0.5,0,0.375,0,0.25,0,0.125,0,0,0.2,0,0.4,0,0.6,0,0.8,0,1,0,1,0.125,1,0.25,1,0.375,1,0.5,1,0.625,1,0.75,1,0.875,0.8,0.875,0.6,0.875,0.4,0.875,0.2,0.875,0.8,0.75,0.6,0.75,0.4,0.75,0.2,0.75,0.8,0.625,0.6,0.625,0.4,0.625,0.2,0.625,0.8,0.5,0.6,0.5,0.4,0.5,0.2,0.5,0.8,0.375,0.6,0.375,0.4,0.375,0.2,0.375,0.8,0.25,0.6,0.25,0.4,0.25,0.2,0.25,0.8,0.125,0.6,0.125,0.4,0.125,0.2,0.125],"triangles":[3,4,28,5,6,29,4,5,29,4,29,28,3,28,27,52,53,15,52,15,16,51,52,16,48,52,51,47,48,51,51,16,17,50,51,17,47,51,50,46,47,50,50,17,18,19,50,18,46,50,19,20,46,19,12,13,14,53,12,14,11,12,53,49,11,53,10,11,49,45,10,49,9,10,45,53,14,15,49,53,52,48,49,52,45,49,48,44,45,48,44,48,47,31,35,34,30,31,34,24,30,23,26,30,24,43,44,47,40,44,43,39,40,43,35,36,39,43,47,46,42,43,46,39,43,42,38,39,42,35,39,38,34,35,38,42,46,20,21,42,20,38,42,21,22,38,21,34,38,22,23,34,22,30,34,23,37,8,41,7,8,37,33,7,37,33,37,36,41,9,45,8,9,41,41,45,44,40,41,44,37,41,40,36,37,40,36,40,39,6,7,33,29,6,33,32,33,36,29,33,32,28,29,32,32,36,35,31,32,35,28,32,31,27,28,31,2,3,27,27,31,30,26,27,30,2,27,26,1,2,26,25,26,24,1,26,25,0,1,25],"vertices":[3,23,144.11,-65.87,0.52686,26,90.53,-172.65,0.47312,25,111.81,-255.39,2.0E-5,3,23,97.11,-65.87,0.57995,26,43.53,-172.65,0.42004,25,64.81,-255.39,1.0E-5,3,23,50.11,-65.87,0.74183,26,-3.47,-172.65,0.25817,25,17.81,-255.39,0,1,22,25.97,-13.87,1,1,22,-21.03,-13.87,1,3,23,-90.89,-65.87,0.26703,24,-73.55,-127.34,0.04179,22,-68.03,-13.87,0.69118,3,23,-90.88,-29.25,0.65627,24,-73.55,-90.71,0.19366,22,-68.03,22.76,0.15007,3,23,-90.88,7.38,0.51461,24,-73.55,-54.09,0.47474,27,-69.21,-141.56,0.01065,3,23,-90.89,44,0.20742,24,-73.55,-17.46,0.70593,27,-69.22,-104.93,0.08665,3,23,-90.88,80.63,0.03497,24,-73.55,19.16,0.67373,27,-69.21,-68.31,0.2913,3,23,-90.88,117.25,4.6E-4,24,-73.55,55.79,0.41132,27,-69.21,-31.68,0.58821,3,24,-73.55,92.41,0.14872,27,-69.22,4.94,0.84214,25,-123.19,-35.64,0.00915,3,24,-73.55,129.04,0.02122,27,-69.21,41.57,0.90557,25,-123.19,0.99,0.07322,2,27,-69.21,78.19,0.8825,25,-123.19,37.61,0.1175,2,27,-22.21,78.19,0.7319,25,-76.19,37.61,0.2681,2,27,24.79,78.19,0.28595,25,-29.19,37.61,0.71405,3,26,-3.47,120.35,0.03661,27,71.79,78.19,0.00184,25,17.81,37.61,0.96155,2,26,43.53,120.35,0.21674,25,64.81,37.61,0.78326,2,26,90.53,120.35,0.29562,25,111.81,37.61,0.70438,3,23,144.12,190.5,4.8E-4,26,90.53,83.73,0.37258,25,111.81,0.99,0.62694,3,23,144.12,153.88,0.01382,26,90.53,47.1,0.55905,25,111.81,-35.64,0.42712,3,23,144.12,117.25,0.07337,26,90.53,10.48,0.72693,25,111.81,-72.26,0.1997,3,23,144.12,80.63,0.20242,26,90.53,-26.15,0.74386,25,111.81,-108.89,0.05372,3,23,144.12,44,0.34802,26,90.53,-62.77,0.64638,25,111.81,-145.51,0.0056,3,23,144.12,7.38,0.44288,26,90.53,-99.4,0.55706,25,111.81,-182.14,6.0E-5,3,23,144.12,-29.25,0.50334,26,90.53,-136.02,0.49665,25,111.81,-218.76,2.0E-5,4,23,97.12,-29.25,0.55778,24,114.45,-90.71,0,26,43.53,-136.02,0.44222,25,64.81,-218.76,1.0E-5,4,23,50.12,-29.25,0.73143,24,67.45,-90.71,1.9E-4,26,-3.47,-136.02,0.26838,25,17.81,-218.76,0,4,23,3.12,-29.25,0.55296,26,-50.47,-136.02,0.02255,25,-29.19,-218.76,0,22,25.97,22.76,0.42449,4,23,-43.88,-29.25,0.19561,24,-26.55,-90.71,0.02977,25,-76.19,-218.76,0,22,-21.03,22.76,0.77462,3,23,97.12,7.38,0.48548,24,114.45,-54.09,0.00403,26,43.53,-99.4,0.51049,4,23,50.12,7.38,0.63427,24,67.45,-54.09,0.03415,26,-3.47,-99.4,0.33158,25,17.81,-182.14,0,3,23,3.12,7.38,0.9078,24,20.45,-54.09,0.06734,26,-50.47,-99.4,0.02486,3,23,-43.88,7.38,0.61541,24,-26.55,-54.09,0.38318,27,-22.21,-141.56,0.00141,4,23,97.11,44,0.3514,24,114.45,-17.46,0.01183,26,43.53,-62.77,0.63542,25,64.81,-145.51,0.00135,3,23,50.11,44,0.37467,24,67.45,-17.46,0.13352,26,-3.47,-62.77,0.49181,3,23,3.12,44,0.3135,24,20.45,-17.46,0.56942,26,-50.47,-62.77,0.11707,3,23,-43.88,44,0.19937,24,-26.55,-17.46,0.76765,27,-22.21,-104.93,0.03297,4,23,97.12,80.63,0.17737,24,114.45,19.16,0.00507,26,43.53,-26.15,0.78931,25,64.81,-108.89,0.02825,4,23,50.12,80.63,0.11173,24,67.45,19.16,0.12111,26,-3.47,-26.15,0.76154,27,71.79,-68.31,0.00562,4,23,3.12,80.63,0.02279,24,20.45,19.16,0.62418,26,-50.47,-26.15,0.24466,27,24.79,-68.31,0.10837,4,23,-43.88,80.63,0.00822,24,-26.55,19.16,0.75426,26,-97.47,-26.15,0.00374,27,-22.21,-68.31,0.23377,3,23,97.12,117.25,0.04618,26,43.53,10.48,0.78531,25,64.81,-72.26,0.16851,4,24,67.45,55.79,0.00894,26,-3.47,10.48,0.87535,27,71.79,-31.68,0.03797,25,17.81,-72.26,0.07774,4,24,20.45,55.79,0.24651,26,-50.47,10.48,0.28215,27,24.79,-31.68,0.43611,25,-29.19,-72.26,0.03523,3,24,-26.55,55.79,0.3737,26,-97.47,10.48,0.00972,27,-22.21,-31.68,0.61658,3,23,97.11,153.88,0.0052,26,43.53,47.1,0.54487,25,64.81,-35.64,0.44993,4,24,67.45,92.41,5.0E-4,26,-3.47,47.1,0.41891,27,71.78,4.94,0.06094,25,17.81,-35.64,0.51965,4,24,20.45,92.41,0.01181,26,-50.47,47.1,0.10806,27,24.79,4.94,0.61533,25,-29.19,-35.64,0.26479,3,24,-26.55,92.41,0.06199,27,-22.21,4.94,0.92395,25,-76.19,-35.64,0.01406,2,26,43.53,83.73,0.3047,25,64.81,0.99,0.6953,2,26,-3.47,83.73,0.08884,25,17.81,0.99,0.91116,3,26,-50.47,83.73,0.00209,27,24.79,41.57,0.36881,25,-29.19,0.99,0.6291,3,24,-26.55,129.04,0.00252,27,-22.21,41.57,0.81773,25,-76.19,0.99,0.17976],"hull":26,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,0],"width":235,"height":293}},"蒸笼热气4":{"蒸笼热气":{"type":"mesh","uvs":[1,1,0.8,1,0.6,1,0.4,1,0.2,1,0,1,0,0.875,0,0.75,0,0.625,0,0.5,0,0.375,0,0.25,0,0.125,0,0,0.2,0,0.4,0,0.6,0,0.8,0,1,0,1,0.125,1,0.25,1,0.375,1,0.5,1,0.625,1,0.75,1,0.875,0.8,0.875,0.6,0.875,0.4,0.875,0.2,0.875,0.8,0.75,0.6,0.75,0.4,0.75,0.2,0.75,0.8,0.625,0.6,0.625,0.4,0.625,0.2,0.625,0.8,0.5,0.6,0.5,0.4,0.5,0.2,0.5,0.8,0.375,0.6,0.375,0.4,0.375,0.2,0.375,0.8,0.25,0.6,0.25,0.4,0.25,0.2,0.25,0.8,0.125,0.6,0.125,0.4,0.125,0.2,0.125],"triangles":[3,4,28,5,6,29,4,5,29,4,29,28,3,28,27,52,53,15,52,15,16,51,52,16,48,52,51,47,48,51,51,16,17,50,51,17,47,51,50,46,47,50,50,17,18,19,50,18,46,50,19,20,46,19,12,13,14,53,12,14,11,12,53,49,11,53,10,11,49,45,10,49,9,10,45,53,14,15,49,53,52,48,49,52,45,49,48,44,45,48,44,48,47,31,35,34,30,31,34,24,30,23,26,30,24,43,44,47,40,44,43,39,40,43,35,36,39,43,47,46,42,43,46,39,43,42,38,39,42,35,39,38,34,35,38,42,46,20,21,42,20,38,42,21,22,38,21,34,38,22,23,34,22,30,34,23,37,8,41,7,8,37,33,7,37,33,37,36,41,9,45,8,9,41,41,45,44,40,41,44,37,41,40,36,37,40,36,40,39,6,7,33,29,6,33,32,33,36,29,33,32,28,29,32,32,36,35,31,32,35,28,32,31,27,28,31,2,3,27,27,31,30,26,27,30,2,27,26,1,2,26,25,26,24,1,26,25,0,1,25],"vertices":[3,29,144.11,-65.87,0.52686,32,90.53,-172.65,0.47312,31,111.81,-255.39,2.0E-5,3,29,97.11,-65.87,0.57995,32,43.53,-172.65,0.42004,31,64.81,-255.39,1.0E-5,3,29,50.11,-65.87,0.74183,32,-3.47,-172.65,0.25817,31,17.81,-255.39,0,1,28,25.97,-13.87,1,1,28,-21.03,-13.87,1,3,29,-90.89,-65.87,0.26703,30,-73.55,-127.34,0.04179,28,-68.03,-13.87,0.69118,3,29,-90.88,-29.25,0.65627,30,-73.55,-90.71,0.19366,28,-68.03,22.76,0.15007,3,29,-90.88,7.38,0.51461,30,-73.55,-54.09,0.47474,33,-69.21,-141.56,0.01065,3,29,-90.89,44,0.20742,30,-73.55,-17.46,0.70593,33,-69.22,-104.93,0.08665,3,29,-90.88,80.63,0.03497,30,-73.55,19.16,0.67373,33,-69.21,-68.31,0.2913,3,29,-90.88,117.25,4.6E-4,30,-73.55,55.79,0.41132,33,-69.21,-31.68,0.58821,3,30,-73.55,92.41,0.14872,33,-69.22,4.94,0.84214,31,-123.19,-35.64,0.00915,3,30,-73.55,129.04,0.02122,33,-69.21,41.57,0.90557,31,-123.19,0.99,0.07322,2,33,-69.21,78.19,0.8825,31,-123.19,37.61,0.1175,2,33,-22.21,78.19,0.7319,31,-76.19,37.61,0.2681,2,33,24.79,78.19,0.28595,31,-29.19,37.61,0.71405,3,32,-3.47,120.35,0.03661,33,71.79,78.19,0.00184,31,17.81,37.61,0.96155,2,32,43.53,120.35,0.21674,31,64.81,37.61,0.78326,2,32,90.53,120.35,0.29562,31,111.81,37.61,0.70438,3,29,144.12,190.5,4.8E-4,32,90.53,83.73,0.37258,31,111.81,0.99,0.62694,3,29,144.12,153.88,0.01382,32,90.53,47.1,0.55905,31,111.81,-35.64,0.42712,3,29,144.12,117.25,0.07337,32,90.53,10.48,0.72693,31,111.81,-72.26,0.1997,3,29,144.12,80.63,0.20242,32,90.53,-26.15,0.74386,31,111.81,-108.89,0.05372,3,29,144.12,44,0.34802,32,90.53,-62.77,0.64638,31,111.81,-145.51,0.0056,3,29,144.12,7.38,0.44288,32,90.53,-99.4,0.55706,31,111.81,-182.14,6.0E-5,3,29,144.12,-29.25,0.50334,32,90.53,-136.02,0.49665,31,111.81,-218.76,2.0E-5,4,29,97.12,-29.25,0.55778,30,114.45,-90.71,0,32,43.53,-136.02,0.44222,31,64.81,-218.76,1.0E-5,4,29,50.12,-29.25,0.73143,30,67.45,-90.71,1.9E-4,32,-3.47,-136.02,0.26838,31,17.81,-218.76,0,4,29,3.12,-29.25,0.55296,32,-50.47,-136.02,0.02255,31,-29.19,-218.76,0,28,25.97,22.76,0.42449,4,29,-43.88,-29.25,0.19561,30,-26.55,-90.71,0.02977,31,-76.19,-218.76,0,28,-21.03,22.76,0.77462,3,29,97.12,7.38,0.48548,30,114.45,-54.09,0.00403,32,43.53,-99.4,0.51049,4,29,50.12,7.38,0.63427,30,67.45,-54.09,0.03415,32,-3.47,-99.4,0.33158,31,17.81,-182.14,0,3,29,3.12,7.38,0.9078,30,20.45,-54.09,0.06734,32,-50.47,-99.4,0.02486,3,29,-43.88,7.38,0.61541,30,-26.55,-54.09,0.38318,33,-22.21,-141.56,0.00141,4,29,97.11,44,0.3514,30,114.45,-17.46,0.01183,32,43.53,-62.77,0.63542,31,64.81,-145.51,0.00135,3,29,50.11,44,0.37467,30,67.45,-17.46,0.13352,32,-3.47,-62.77,0.49181,3,29,3.12,44,0.3135,30,20.45,-17.46,0.56942,32,-50.47,-62.77,0.11707,3,29,-43.88,44,0.19937,30,-26.55,-17.46,0.76765,33,-22.21,-104.93,0.03297,4,29,97.12,80.63,0.17737,30,114.45,19.16,0.00507,32,43.53,-26.15,0.78931,31,64.81,-108.89,0.02825,4,29,50.12,80.63,0.11173,30,67.45,19.16,0.12111,32,-3.47,-26.15,0.76154,33,71.79,-68.31,0.00562,4,29,3.12,80.63,0.02279,30,20.45,19.16,0.62418,32,-50.47,-26.15,0.24466,33,24.79,-68.31,0.10837,4,29,-43.88,80.63,0.00822,30,-26.55,19.16,0.75426,32,-97.47,-26.15,0.00374,33,-22.21,-68.31,0.23377,3,29,97.12,117.25,0.04618,32,43.53,10.48,0.78531,31,64.81,-72.26,0.16851,4,30,67.45,55.79,0.00894,32,-3.47,10.48,0.87535,33,71.79,-31.68,0.03797,31,17.81,-72.26,0.07774,4,30,20.45,55.79,0.24651,32,-50.47,10.48,0.28215,33,24.79,-31.68,0.43611,31,-29.19,-72.26,0.03523,3,30,-26.55,55.79,0.3737,32,-97.47,10.48,0.00972,33,-22.21,-31.68,0.61658,3,29,97.11,153.88,0.0052,32,43.53,47.1,0.54487,31,64.81,-35.64,0.44993,4,30,67.45,92.41,5.0E-4,32,-3.47,47.1,0.41891,33,71.78,4.94,0.06094,31,17.81,-35.64,0.51965,4,30,20.45,92.41,0.01181,32,-50.47,47.1,0.10806,33,24.79,4.94,0.61533,31,-29.19,-35.64,0.26479,3,30,-26.55,92.41,0.06199,33,-22.21,4.94,0.92395,31,-76.19,-35.64,0.01406,2,32,43.53,83.73,0.3047,31,64.81,0.99,0.6953,2,32,-3.47,83.73,0.08884,31,17.81,0.99,0.91116,3,32,-50.47,83.73,0.00209,33,24.79,41.57,0.36881,31,-29.19,0.99,0.6291,3,30,-26.55,129.04,0.00252,33,-22.21,41.57,0.81773,31,-76.19,0.99,0.17976],"hull":26,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,0],"width":235,"height":293}},"蒸笼热气5":{"蒸笼热气":{"type":"mesh","uvs":[1,1,0.8,1,0.6,1,0.4,1,0.2,1,0,1,0,0.875,0,0.75,0,0.625,0,0.5,0,0.375,0,0.25,0,0.125,0,0,0.2,0,0.4,0,0.6,0,0.8,0,1,0,1,0.125,1,0.25,1,0.375,1,0.5,1,0.625,1,0.75,1,0.875,0.8,0.875,0.6,0.875,0.4,0.875,0.2,0.875,0.8,0.75,0.6,0.75,0.4,0.75,0.2,0.75,0.8,0.625,0.6,0.625,0.4,0.625,0.2,0.625,0.8,0.5,0.6,0.5,0.4,0.5,0.2,0.5,0.8,0.375,0.6,0.375,0.4,0.375,0.2,0.375,0.8,0.25,0.6,0.25,0.4,0.25,0.2,0.25,0.8,0.125,0.6,0.125,0.4,0.125,0.2,0.125],"triangles":[3,4,28,5,6,29,4,5,29,4,29,28,3,28,27,52,53,15,52,15,16,51,52,16,48,52,51,47,48,51,51,16,17,50,51,17,47,51,50,46,47,50,50,17,18,19,50,18,46,50,19,20,46,19,12,13,14,53,12,14,11,12,53,49,11,53,10,11,49,45,10,49,9,10,45,53,14,15,49,53,52,48,49,52,45,49,48,44,45,48,44,48,47,31,35,34,30,31,34,24,30,23,26,30,24,43,44,47,40,44,43,39,40,43,35,36,39,43,47,46,42,43,46,39,43,42,38,39,42,35,39,38,34,35,38,42,46,20,21,42,20,38,42,21,22,38,21,34,38,22,23,34,22,30,34,23,37,8,41,7,8,37,33,7,37,33,37,36,41,9,45,8,9,41,41,45,44,40,41,44,37,41,40,36,37,40,36,40,39,6,7,33,29,6,33,32,33,36,29,33,32,28,29,32,32,36,35,31,32,35,28,32,31,27,28,31,2,3,27,27,31,30,26,27,30,2,27,26,1,2,26,25,26,24,1,26,25,0,1,25],"vertices":[3,35,144.11,-65.87,0.52686,38,90.53,-172.65,0.47312,37,111.81,-255.39,2.0E-5,3,35,97.11,-65.87,0.57995,38,43.53,-172.65,0.42004,37,64.81,-255.39,1.0E-5,3,35,50.11,-65.87,0.74183,38,-3.47,-172.65,0.25817,37,17.81,-255.39,0,1,34,25.97,-13.87,1,1,34,-21.03,-13.87,1,3,35,-90.89,-65.87,0.26703,36,-73.55,-127.34,0.04179,34,-68.03,-13.87,0.69118,3,35,-90.88,-29.25,0.65627,36,-73.55,-90.71,0.19366,34,-68.03,22.76,0.15007,3,35,-90.88,7.38,0.51461,36,-73.55,-54.09,0.47474,39,-69.21,-141.56,0.01065,3,35,-90.89,44,0.20742,36,-73.55,-17.46,0.70593,39,-69.22,-104.93,0.08665,3,35,-90.88,80.63,0.03497,36,-73.55,19.16,0.67373,39,-69.21,-68.31,0.2913,3,35,-90.88,117.25,4.6E-4,36,-73.55,55.79,0.41132,39,-69.21,-31.68,0.58821,3,36,-73.55,92.41,0.14872,39,-69.22,4.94,0.84214,37,-123.19,-35.64,0.00915,3,36,-73.55,129.04,0.02122,39,-69.21,41.57,0.90557,37,-123.19,0.99,0.07322,2,39,-69.21,78.19,0.8825,37,-123.19,37.61,0.1175,2,39,-22.21,78.19,0.7319,37,-76.19,37.61,0.2681,2,39,24.79,78.19,0.28595,37,-29.19,37.61,0.71405,3,38,-3.47,120.35,0.03661,39,71.79,78.19,0.00184,37,17.81,37.61,0.96155,2,38,43.53,120.35,0.21674,37,64.81,37.61,0.78326,2,38,90.53,120.35,0.29562,37,111.81,37.61,0.70438,3,35,144.12,190.5,4.8E-4,38,90.53,83.73,0.37258,37,111.81,0.99,0.62694,3,35,144.12,153.88,0.01382,38,90.53,47.1,0.55905,37,111.81,-35.64,0.42712,3,35,144.12,117.25,0.07337,38,90.53,10.48,0.72693,37,111.81,-72.26,0.1997,3,35,144.12,80.63,0.20242,38,90.53,-26.15,0.74386,37,111.81,-108.89,0.05372,3,35,144.12,44,0.34802,38,90.53,-62.77,0.64638,37,111.81,-145.51,0.0056,3,35,144.12,7.38,0.44288,38,90.53,-99.4,0.55706,37,111.81,-182.14,6.0E-5,3,35,144.12,-29.25,0.50334,38,90.53,-136.02,0.49665,37,111.81,-218.76,2.0E-5,4,35,97.12,-29.25,0.55778,36,114.45,-90.71,0,38,43.53,-136.02,0.44222,37,64.81,-218.76,1.0E-5,4,35,50.12,-29.25,0.73143,36,67.45,-90.71,1.9E-4,38,-3.47,-136.02,0.26838,37,17.81,-218.76,0,4,35,3.12,-29.25,0.55296,38,-50.47,-136.02,0.02255,37,-29.19,-218.76,0,34,25.97,22.76,0.42449,4,35,-43.88,-29.25,0.19561,36,-26.55,-90.71,0.02977,37,-76.19,-218.76,0,34,-21.03,22.76,0.77462,3,35,97.12,7.38,0.48548,36,114.45,-54.09,0.00403,38,43.53,-99.4,0.51049,4,35,50.12,7.38,0.63427,36,67.45,-54.09,0.03415,38,-3.47,-99.4,0.33158,37,17.81,-182.14,0,3,35,3.12,7.38,0.9078,36,20.45,-54.09,0.06734,38,-50.47,-99.4,0.02486,3,35,-43.88,7.38,0.61541,36,-26.55,-54.09,0.38318,39,-22.21,-141.56,0.00141,4,35,97.11,44,0.3514,36,114.45,-17.46,0.01183,38,43.53,-62.77,0.63542,37,64.81,-145.51,0.00135,3,35,50.11,44,0.37467,36,67.45,-17.46,0.13352,38,-3.47,-62.77,0.49181,3,35,3.12,44,0.3135,36,20.45,-17.46,0.56942,38,-50.47,-62.77,0.11707,3,35,-43.88,44,0.19937,36,-26.55,-17.46,0.76765,39,-22.21,-104.93,0.03297,4,35,97.12,80.63,0.17737,36,114.45,19.16,0.00507,38,43.53,-26.15,0.78931,37,64.81,-108.89,0.02825,4,35,50.12,80.63,0.11173,36,67.45,19.16,0.12111,38,-3.47,-26.15,0.76154,39,71.79,-68.31,0.00562,4,35,3.12,80.63,0.02279,36,20.45,19.16,0.62418,38,-50.47,-26.15,0.24466,39,24.79,-68.31,0.10837,4,35,-43.88,80.63,0.00822,36,-26.55,19.16,0.75426,38,-97.47,-26.15,0.00374,39,-22.21,-68.31,0.23377,3,35,97.12,117.25,0.04618,38,43.53,10.48,0.78531,37,64.81,-72.26,0.16851,4,36,67.45,55.79,0.00894,38,-3.47,10.48,0.87535,39,71.79,-31.68,0.03797,37,17.81,-72.26,0.07774,4,36,20.45,55.79,0.24651,38,-50.47,10.48,0.28215,39,24.79,-31.68,0.43611,37,-29.19,-72.26,0.03523,3,36,-26.55,55.79,0.3737,38,-97.47,10.48,0.00972,39,-22.21,-31.68,0.61658,3,35,97.11,153.88,0.0052,38,43.53,47.1,0.54487,37,64.81,-35.64,0.44993,4,36,67.45,92.41,5.0E-4,38,-3.47,47.1,0.41891,39,71.78,4.94,0.06094,37,17.81,-35.64,0.51965,4,36,20.45,92.41,0.01181,38,-50.47,47.1,0.10806,39,24.79,4.94,0.61533,37,-29.19,-35.64,0.26479,3,36,-26.55,92.41,0.06199,39,-22.21,4.94,0.92395,37,-76.19,-35.64,0.01406,2,38,43.53,83.73,0.3047,37,64.81,0.99,0.6953,2,38,-3.47,83.73,0.08884,37,17.81,0.99,0.91116,3,38,-50.47,83.73,0.00209,39,24.79,41.57,0.36881,37,-29.19,0.99,0.6291,3,36,-26.55,129.04,0.00252,39,-22.21,41.57,0.81773,37,-76.19,0.99,0.17976],"hull":26,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,0],"width":235,"height":293}},"蒸笼热气":{"蒸笼热气":{"type":"mesh","uvs":[1,1,0.8,1,0.6,1,0.4,1,0.2,1,0,1,0,0.875,0,0.75,0,0.625,0,0.5,0,0.375,0,0.25,0,0.125,0,0,0.2,0,0.4,0,0.6,0,0.8,0,1,0,1,0.125,1,0.25,1,0.375,1,0.5,1,0.625,1,0.75,1,0.875,0.8,0.875,0.6,0.875,0.4,0.875,0.2,0.875,0.8,0.75,0.6,0.75,0.4,0.75,0.2,0.75,0.8,0.625,0.6,0.625,0.4,0.625,0.2,0.625,0.8,0.5,0.6,0.5,0.4,0.5,0.2,0.5,0.8,0.375,0.6,0.375,0.4,0.375,0.2,0.375,0.8,0.25,0.6,0.25,0.4,0.25,0.2,0.25,0.8,0.125,0.6,0.125,0.4,0.125,0.2,0.125],"triangles":[3,4,28,5,6,29,4,5,29,4,29,28,3,28,27,52,53,15,52,15,16,51,52,16,48,52,51,47,48,51,51,16,17,50,51,17,47,51,50,46,47,50,50,17,18,19,50,18,46,50,19,20,46,19,12,13,14,53,12,14,11,12,53,49,11,53,10,11,49,45,10,49,9,10,45,53,14,15,49,53,52,48,49,52,45,49,48,44,45,48,44,48,47,31,35,34,30,31,34,24,30,23,26,30,24,43,44,47,40,44,43,39,40,43,35,36,39,43,47,46,42,43,46,39,43,42,38,39,42,35,39,38,34,35,38,42,46,20,21,42,20,38,42,21,22,38,21,34,38,22,23,34,22,30,34,23,37,8,41,7,8,37,33,7,37,33,37,36,41,9,45,8,9,41,41,45,44,40,41,44,37,41,40,36,37,40,36,40,39,6,7,33,29,6,33,32,33,36,29,33,32,28,29,32,32,36,35,31,32,35,28,32,31,27,28,31,2,3,27,27,31,30,26,27,30,2,27,26,1,2,26,25,26,24,1,26,25,0,1,25],"vertices":[3,5,144.11,-65.87,0.52686,8,90.53,-172.65,0.47312,7,111.81,-255.39,2.0E-5,3,5,97.11,-65.87,0.57995,8,43.53,-172.65,0.42004,7,64.81,-255.39,1.0E-5,3,5,50.11,-65.87,0.74183,8,-3.47,-172.65,0.25817,7,17.81,-255.39,0,1,4,25.97,-13.87,1,1,4,-21.03,-13.87,1,3,5,-90.89,-65.87,0.26703,6,-73.55,-127.34,0.04179,4,-68.03,-13.87,0.69118,3,5,-90.88,-29.25,0.65627,6,-73.55,-90.71,0.19366,4,-68.03,22.76,0.15007,3,5,-90.88,7.38,0.51461,6,-73.55,-54.09,0.47474,9,-69.21,-141.56,0.01065,3,5,-90.89,44,0.20742,6,-73.55,-17.46,0.70593,9,-69.22,-104.93,0.08665,3,5,-90.88,80.63,0.03497,6,-73.55,19.16,0.67373,9,-69.21,-68.31,0.2913,3,5,-90.88,117.25,4.6E-4,6,-73.55,55.79,0.41132,9,-69.21,-31.68,0.58821,3,6,-73.55,92.41,0.14872,9,-69.22,4.94,0.84214,7,-123.19,-35.64,0.00915,3,6,-73.55,129.04,0.02122,9,-69.21,41.57,0.90557,7,-123.19,0.99,0.07322,2,9,-69.21,78.19,0.8825,7,-123.19,37.61,0.1175,2,9,-22.21,78.19,0.7319,7,-76.19,37.61,0.2681,2,9,24.79,78.19,0.28595,7,-29.19,37.61,0.71405,3,8,-3.47,120.35,0.03661,9,71.79,78.19,0.00184,7,17.81,37.61,0.96155,2,8,43.53,120.35,0.21674,7,64.81,37.61,0.78326,2,8,90.53,120.35,0.29562,7,111.81,37.61,0.70438,3,5,144.12,190.5,4.8E-4,8,90.53,83.73,0.37258,7,111.81,0.99,0.62694,3,5,144.12,153.88,0.01382,8,90.53,47.1,0.55905,7,111.81,-35.64,0.42712,3,5,144.12,117.25,0.07337,8,90.53,10.48,0.72693,7,111.81,-72.26,0.1997,3,5,144.12,80.63,0.20242,8,90.53,-26.15,0.74386,7,111.81,-108.89,0.05372,3,5,144.12,44,0.34802,8,90.53,-62.77,0.64638,7,111.81,-145.51,0.0056,3,5,144.12,7.38,0.44288,8,90.53,-99.4,0.55706,7,111.81,-182.14,6.0E-5,3,5,144.12,-29.25,0.50334,8,90.53,-136.02,0.49665,7,111.81,-218.76,2.0E-5,4,5,97.12,-29.25,0.55778,6,114.45,-90.71,0,8,43.53,-136.02,0.44222,7,64.81,-218.76,1.0E-5,4,5,50.12,-29.25,0.73143,6,67.45,-90.71,1.9E-4,8,-3.47,-136.02,0.26838,7,17.81,-218.76,0,4,5,3.12,-29.25,0.55296,8,-50.47,-136.02,0.02255,7,-29.19,-218.76,0,4,25.97,22.76,0.42449,4,5,-43.88,-29.25,0.19561,6,-26.55,-90.71,0.02977,7,-76.19,-218.76,0,4,-21.03,22.76,0.77462,3,5,97.12,7.38,0.48548,6,114.45,-54.09,0.00403,8,43.53,-99.4,0.51049,4,5,50.12,7.38,0.63427,6,67.45,-54.09,0.03415,8,-3.47,-99.4,0.33158,7,17.81,-182.14,0,3,5,3.12,7.38,0.9078,6,20.45,-54.09,0.06734,8,-50.47,-99.4,0.02486,3,5,-43.88,7.38,0.61541,6,-26.55,-54.09,0.38318,9,-22.21,-141.56,0.00141,4,5,97.11,44,0.3514,6,114.45,-17.46,0.01183,8,43.53,-62.77,0.63542,7,64.81,-145.51,0.00135,3,5,50.11,44,0.37467,6,67.45,-17.46,0.13352,8,-3.47,-62.77,0.49181,3,5,3.12,44,0.3135,6,20.45,-17.46,0.56942,8,-50.47,-62.77,0.11707,3,5,-43.88,44,0.19937,6,-26.55,-17.46,0.76765,9,-22.21,-104.93,0.03297,4,5,97.12,80.63,0.17737,6,114.45,19.16,0.00507,8,43.53,-26.15,0.78931,7,64.81,-108.89,0.02825,4,5,50.12,80.63,0.11173,6,67.45,19.16,0.12111,8,-3.47,-26.15,0.76154,9,71.79,-68.31,0.00562,4,5,3.12,80.63,0.02279,6,20.45,19.16,0.62418,8,-50.47,-26.15,0.24466,9,24.79,-68.31,0.10837,4,5,-43.88,80.63,0.00822,6,-26.55,19.16,0.75426,8,-97.47,-26.15,0.00374,9,-22.21,-68.31,0.23377,3,5,97.12,117.25,0.04618,8,43.53,10.48,0.78531,7,64.81,-72.26,0.16851,4,6,67.45,55.79,0.00894,8,-3.47,10.48,0.87535,9,71.79,-31.68,0.03797,7,17.81,-72.26,0.07774,4,6,20.45,55.79,0.24651,8,-50.47,10.48,0.28215,9,24.79,-31.68,0.43611,7,-29.19,-72.26,0.03523,3,6,-26.55,55.79,0.3737,8,-97.47,10.48,0.00972,9,-22.21,-31.68,0.61658,3,5,97.11,153.88,0.0052,8,43.53,47.1,0.54487,7,64.81,-35.64,0.44993,4,6,67.45,92.41,5.0E-4,8,-3.47,47.1,0.41891,9,71.78,4.94,0.06094,7,17.81,-35.64,0.51965,4,6,20.45,92.41,0.01181,8,-50.47,47.1,0.10806,9,24.79,4.94,0.61533,7,-29.19,-35.64,0.26479,3,6,-26.55,92.41,0.06199,9,-22.21,4.94,0.92395,7,-76.19,-35.64,0.01406,2,8,43.53,83.73,0.3047,7,64.81,0.99,0.6953,2,8,-3.47,83.73,0.08884,7,17.81,0.99,0.91116,3,8,-50.47,83.73,0.00209,9,24.79,41.57,0.36881,7,-29.19,0.99,0.6291,3,6,-26.55,129.04,0.00252,9,-22.21,41.57,0.81773,7,-76.19,0.99,0.17976],"hull":26,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,0],"width":235,"height":293}},"蒸笼热气7":{"蒸笼热气":{"type":"mesh","uvs":[1,1,0.8,1,0.6,1,0.4,1,0.2,1,0,1,0,0.875,0,0.75,0,0.625,0,0.5,0,0.375,0,0.25,0,0.125,0,0,0.2,0,0.4,0,0.6,0,0.8,0,1,0,1,0.125,1,0.25,1,0.375,1,0.5,1,0.625,1,0.75,1,0.875,0.8,0.875,0.6,0.875,0.4,0.875,0.2,0.875,0.8,0.75,0.6,0.75,0.4,0.75,0.2,0.75,0.8,0.625,0.6,0.625,0.4,0.625,0.2,0.625,0.8,0.5,0.6,0.5,0.4,0.5,0.2,0.5,0.8,0.375,0.6,0.375,0.4,0.375,0.2,0.375,0.8,0.25,0.6,0.25,0.4,0.25,0.2,0.25,0.8,0.125,0.6,0.125,0.4,0.125,0.2,0.125],"triangles":[3,4,28,5,6,29,4,5,29,4,29,28,3,28,27,52,53,15,52,15,16,51,52,16,48,52,51,47,48,51,51,16,17,50,51,17,47,51,50,46,47,50,50,17,18,19,50,18,46,50,19,20,46,19,12,13,14,53,12,14,11,12,53,49,11,53,10,11,49,45,10,49,9,10,45,53,14,15,49,53,52,48,49,52,45,49,48,44,45,48,44,48,47,31,35,34,30,31,34,24,30,23,26,30,24,43,44,47,40,44,43,39,40,43,35,36,39,43,47,46,42,43,46,39,43,42,38,39,42,35,39,38,34,35,38,42,46,20,21,42,20,38,42,21,22,38,21,34,38,22,23,34,22,30,34,23,37,8,41,7,8,37,33,7,37,33,37,36,41,9,45,8,9,41,41,45,44,40,41,44,37,41,40,36,37,40,36,40,39,6,7,33,29,6,33,32,33,36,29,33,32,28,29,32,32,36,35,31,32,35,28,32,31,27,28,31,2,3,27,27,31,30,26,27,30,2,27,26,1,2,26,25,26,24,1,26,25,0,1,25],"vertices":[3,47,144.11,-65.87,0.52686,50,90.53,-172.65,0.47312,49,111.81,-255.39,2.0E-5,3,47,97.11,-65.87,0.57995,50,43.53,-172.65,0.42004,49,64.81,-255.39,1.0E-5,3,47,50.11,-65.87,0.74183,50,-3.47,-172.65,0.25817,49,17.81,-255.39,0,1,46,25.97,-13.87,1,1,46,-21.03,-13.87,1,3,47,-90.89,-65.87,0.26703,48,-73.55,-127.34,0.04179,46,-68.03,-13.87,0.69118,3,47,-90.88,-29.25,0.65627,48,-73.55,-90.71,0.19366,46,-68.03,22.76,0.15007,3,47,-90.88,7.38,0.51461,48,-73.55,-54.09,0.47474,51,-69.21,-141.56,0.01065,3,47,-90.89,44,0.20742,48,-73.55,-17.46,0.70593,51,-69.22,-104.93,0.08665,3,47,-90.88,80.63,0.03497,48,-73.55,19.16,0.67373,51,-69.21,-68.31,0.2913,3,47,-90.88,117.25,4.6E-4,48,-73.55,55.79,0.41132,51,-69.21,-31.68,0.58821,3,48,-73.55,92.41,0.14872,51,-69.22,4.94,0.84214,49,-123.19,-35.64,0.00915,3,48,-73.55,129.04,0.02122,51,-69.21,41.57,0.90557,49,-123.19,0.99,0.07322,2,51,-69.21,78.19,0.8825,49,-123.19,37.61,0.1175,2,51,-22.21,78.19,0.7319,49,-76.19,37.61,0.2681,2,51,24.79,78.19,0.28595,49,-29.19,37.61,0.71405,3,50,-3.47,120.35,0.03661,51,71.79,78.19,0.00184,49,17.81,37.61,0.96155,2,50,43.53,120.35,0.21674,49,64.81,37.61,0.78326,2,50,90.53,120.35,0.29562,49,111.81,37.61,0.70438,3,47,144.12,190.5,4.8E-4,50,90.53,83.73,0.37258,49,111.81,0.99,0.62694,3,47,144.12,153.88,0.01382,50,90.53,47.1,0.55905,49,111.81,-35.64,0.42712,3,47,144.12,117.25,0.07337,50,90.53,10.48,0.72693,49,111.81,-72.26,0.1997,3,47,144.12,80.63,0.20242,50,90.53,-26.15,0.74386,49,111.81,-108.89,0.05372,3,47,144.12,44,0.34802,50,90.53,-62.77,0.64638,49,111.81,-145.51,0.0056,3,47,144.12,7.38,0.44288,50,90.53,-99.4,0.55706,49,111.81,-182.14,6.0E-5,3,47,144.12,-29.25,0.50334,50,90.53,-136.02,0.49665,49,111.81,-218.76,2.0E-5,4,47,97.12,-29.25,0.55778,48,114.45,-90.71,0,50,43.53,-136.02,0.44222,49,64.81,-218.76,1.0E-5,4,47,50.12,-29.25,0.73143,48,67.45,-90.71,1.9E-4,50,-3.47,-136.02,0.26838,49,17.81,-218.76,0,4,47,3.12,-29.25,0.55296,50,-50.47,-136.02,0.02255,49,-29.19,-218.76,0,46,25.97,22.76,0.42449,4,47,-43.88,-29.25,0.19561,48,-26.55,-90.71,0.02977,49,-76.19,-218.76,0,46,-21.03,22.76,0.77462,3,47,97.12,7.38,0.48548,48,114.45,-54.09,0.00403,50,43.53,-99.4,0.51049,4,47,50.12,7.38,0.63427,48,67.45,-54.09,0.03415,50,-3.47,-99.4,0.33158,49,17.81,-182.14,0,3,47,3.12,7.38,0.9078,48,20.45,-54.09,0.06734,50,-50.47,-99.4,0.02486,3,47,-43.88,7.38,0.61541,48,-26.55,-54.09,0.38318,51,-22.21,-141.56,0.00141,4,47,97.11,44,0.3514,48,114.45,-17.46,0.01183,50,43.53,-62.77,0.63542,49,64.81,-145.51,0.00135,3,47,50.11,44,0.37467,48,67.45,-17.46,0.13352,50,-3.47,-62.77,0.49181,3,47,3.12,44,0.3135,48,20.45,-17.46,0.56942,50,-50.47,-62.77,0.11707,3,47,-43.88,44,0.19937,48,-26.55,-17.46,0.76765,51,-22.21,-104.93,0.03297,4,47,97.12,80.63,0.17737,48,114.45,19.16,0.00507,50,43.53,-26.15,0.78931,49,64.81,-108.89,0.02825,4,47,50.12,80.63,0.11173,48,67.45,19.16,0.12111,50,-3.47,-26.15,0.76154,51,71.79,-68.31,0.00562,4,47,3.12,80.63,0.02279,48,20.45,19.16,0.62418,50,-50.47,-26.15,0.24466,51,24.79,-68.31,0.10837,4,47,-43.88,80.63,0.00822,48,-26.55,19.16,0.75426,50,-97.47,-26.15,0.00374,51,-22.21,-68.31,0.23377,3,47,97.12,117.25,0.04618,50,43.53,10.48,0.78531,49,64.81,-72.26,0.16851,4,48,67.45,55.79,0.00894,50,-3.47,10.48,0.87535,51,71.79,-31.68,0.03797,49,17.81,-72.26,0.07774,4,48,20.45,55.79,0.24651,50,-50.47,10.48,0.28215,51,24.79,-31.68,0.43611,49,-29.19,-72.26,0.03523,3,48,-26.55,55.79,0.3737,50,-97.47,10.48,0.00972,51,-22.21,-31.68,0.61658,3,47,97.11,153.88,0.0052,50,43.53,47.1,0.54487,49,64.81,-35.64,0.44993,4,48,67.45,92.41,5.0E-4,50,-3.47,47.1,0.41891,51,71.78,4.94,0.06094,49,17.81,-35.64,0.51965,4,48,20.45,92.41,0.01181,50,-50.47,47.1,0.10806,51,24.79,4.94,0.61533,49,-29.19,-35.64,0.26479,3,48,-26.55,92.41,0.06199,51,-22.21,4.94,0.92395,49,-76.19,-35.64,0.01406,2,50,43.53,83.73,0.3047,49,64.81,0.99,0.6953,2,50,-3.47,83.73,0.08884,49,17.81,0.99,0.91116,3,50,-50.47,83.73,0.00209,51,24.79,41.57,0.36881,49,-29.19,0.99,0.6291,3,48,-26.55,129.04,0.00252,51,-22.21,41.57,0.81773,49,-76.19,0.99,0.17976],"hull":26,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,0],"width":235,"height":293}},"红薯":{"红薯":{"x":-2.7,"y":-4.54,"width":98,"height":36},"红薯熟":{"x":-2.7,"y":-4.54,"width":89,"height":36}},"蒸笼水雾":{"蒸笼水雾":{"type":"mesh","uvs":[1,1,0.5,1,0,1,0,0.85714,0,0.71429,0,0.57143,0,0.42857,0,0.28571,0,0.14286,0,0,0.5,0,1,0,1,0.14286,1,0.28571,1,0.42857,1,0.57143,1,0.71429,1,0.85714,0.5,0.85714,0.5,0.71429,0.5,0.57143,0.5,0.42857,0.5,0.28571,0.5,0.14286],"triangles":[0,1,17,1,18,17,17,18,16,18,19,16,16,19,15,19,20,15,15,20,14,20,21,14,14,21,13,21,22,13,13,22,12,22,23,12,12,23,11,23,10,11,1,2,18,2,3,18,18,3,19,3,4,19,19,4,20,4,5,20,20,5,21,5,6,21,21,6,22,6,7,22,22,7,23,7,8,23,23,8,10,8,9,10],"vertices":[77.72,-27.81,20.22,-27.81,-37.28,-27.81,-37.28,5.33,-37.28,38.47,-37.28,71.62,-37.28,104.76,-37.28,137.9,-37.28,171.04,-37.28,204.19,20.22,204.19,77.72,204.19,77.72,171.04,77.72,137.9,77.72,104.76,77.72,71.62,77.72,38.47,77.72,5.33,20.22,5.33,20.22,38.47,20.22,71.62,20.22,104.76,20.22,137.9,20.22,171.04],"hull":18,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,0],"width":115,"height":232}},"馒头001":{"烧麦":{"x":-18.04,"y":8.83,"width":47,"height":45},"烧麦熟":{"x":-18.04,"y":8.83,"width":45,"height":46},"肉包":{"x":-18.18,"y":5.95,"width":51,"height":42},"肉包熟":{"x":-18.18,"y":5.95,"width":51,"height":42},"馒头":{"x":-15.81,"y":5.44,"width":52,"height":48},"馒头熟":{"x":-15.81,"y":5.44,"width":52,"height":48}},"馒头2":{"烧麦":{"x":17.01,"y":8.63,"width":47,"height":45},"烧麦熟":{"x":17.01,"y":8.63,"width":45,"height":46},"肉包":{"x":20.98,"y":5.95,"width":51,"height":42},"肉包熟":{"x":20.98,"y":5.95,"width":51,"height":42},"馒头":{"x":20.79,"y":2.58,"width":52,"height":48},"馒头熟":{"x":20.79,"y":2.58,"width":52,"height":48}},"馒头3":{"烧麦":{"x":-3.08,"y":-11.26,"width":47,"height":45},"烧麦熟":{"x":-3.08,"y":-11.26,"width":45,"height":46},"肉包":{"x":-2.39,"y":-14.75,"width":51,"height":42},"肉包熟":{"x":-2.39,"y":-14.75,"width":51,"height":42},"馒头":{"x":-1.23,"y":-15.73,"width":52,"height":48},"馒头熟":{"x":-1.23,"y":-15.73,"width":52,"height":48}},"蒸笼盖":{"蒸笼盖":{"x":0.41,"y":-16.01,"width":247,"height":129}},"馒头002":{"烧麦":{"x":17.01,"y":8.63,"width":47,"height":45},"烧麦熟":{"x":17.01,"y":8.63,"width":45,"height":46},"肉包":{"x":20.98,"y":5.95,"width":51,"height":42},"肉包熟":{"x":20.98,"y":5.95,"width":51,"height":42},"馒头":{"x":20.79,"y":2.58,"width":52,"height":48},"馒头熟":{"x":20.79,"y":2.58,"width":52,"height":48}},"馒头003":{"烧麦":{"x":-3.08,"y":-11.26,"width":47,"height":45},"烧麦熟":{"x":-3.08,"y":-11.26,"width":45,"height":46},"肉包":{"x":-2.39,"y":-14.75,"width":51,"height":42},"肉包熟":{"x":-2.39,"y":-14.75,"width":51,"height":42},"馒头":{"x":-1.23,"y":-15.73,"width":52,"height":48},"馒头熟":{"x":-1.23,"y":-15.73,"width":52,"height":48}},"蒸笼热气6":{"蒸笼热气":{"type":"mesh","uvs":[1,1,0.8,1,0.6,1,0.4,1,0.2,1,0,1,0,0.875,0,0.75,0,0.625,0,0.5,0,0.375,0,0.25,0,0.125,0,0,0.2,0,0.4,0,0.6,0,0.8,0,1,0,1,0.125,1,0.25,1,0.375,1,0.5,1,0.625,1,0.75,1,0.875,0.8,0.875,0.6,0.875,0.4,0.875,0.2,0.875,0.8,0.75,0.6,0.75,0.4,0.75,0.2,0.75,0.8,0.625,0.6,0.625,0.4,0.625,0.2,0.625,0.8,0.5,0.6,0.5,0.4,0.5,0.2,0.5,0.8,0.375,0.6,0.375,0.4,0.375,0.2,0.375,0.8,0.25,0.6,0.25,0.4,0.25,0.2,0.25,0.8,0.125,0.6,0.125,0.4,0.125,0.2,0.125],"triangles":[3,4,28,5,6,29,4,5,29,4,29,28,3,28,27,52,53,15,52,15,16,51,52,16,48,52,51,47,48,51,51,16,17,50,51,17,47,51,50,46,47,50,50,17,18,19,50,18,46,50,19,20,46,19,12,13,14,53,12,14,11,12,53,49,11,53,10,11,49,45,10,49,9,10,45,53,14,15,49,53,52,48,49,52,45,49,48,44,45,48,44,48,47,31,35,34,30,31,34,24,30,23,26,30,24,43,44,47,40,44,43,39,40,43,35,36,39,43,47,46,42,43,46,39,43,42,38,39,42,35,39,38,34,35,38,42,46,20,21,42,20,38,42,21,22,38,21,34,38,22,23,34,22,30,34,23,37,8,41,7,8,37,33,7,37,33,37,36,41,9,45,8,9,41,41,45,44,40,41,44,37,41,40,36,37,40,36,40,39,6,7,33,29,6,33,32,33,36,29,33,32,28,29,32,32,36,35,31,32,35,28,32,31,27,28,31,2,3,27,27,31,30,26,27,30,2,27,26,1,2,26,25,26,24,1,26,25,0,1,25],"vertices":[3,41,144.11,-65.87,0.52686,44,90.53,-172.65,0.47312,43,111.81,-255.39,2.0E-5,3,41,97.11,-65.87,0.57995,44,43.53,-172.65,0.42004,43,64.81,-255.39,1.0E-5,3,41,50.11,-65.87,0.74183,44,-3.47,-172.65,0.25817,43,17.81,-255.39,0,1,40,25.97,-13.87,1,1,40,-21.03,-13.87,1,3,41,-90.89,-65.87,0.26703,42,-73.55,-127.34,0.04179,40,-68.03,-13.87,0.69118,3,41,-90.88,-29.25,0.65627,42,-73.55,-90.71,0.19366,40,-68.03,22.76,0.15007,3,41,-90.88,7.38,0.51461,42,-73.55,-54.09,0.47474,45,-69.21,-141.56,0.01065,3,41,-90.89,44,0.20742,42,-73.55,-17.46,0.70593,45,-69.22,-104.93,0.08665,3,41,-90.88,80.63,0.03497,42,-73.55,19.16,0.67373,45,-69.21,-68.31,0.2913,3,41,-90.88,117.25,4.6E-4,42,-73.55,55.79,0.41132,45,-69.21,-31.68,0.58821,3,42,-73.55,92.41,0.14872,45,-69.22,4.94,0.84214,43,-123.19,-35.64,0.00915,3,42,-73.55,129.04,0.02122,45,-69.21,41.57,0.90557,43,-123.19,0.99,0.07322,2,45,-69.21,78.19,0.8825,43,-123.19,37.61,0.1175,2,45,-22.21,78.19,0.7319,43,-76.19,37.61,0.2681,2,45,24.79,78.19,0.28595,43,-29.19,37.61,0.71405,3,44,-3.47,120.35,0.03661,45,71.79,78.19,0.00184,43,17.81,37.61,0.96155,2,44,43.53,120.35,0.21674,43,64.81,37.61,0.78326,2,44,90.53,120.35,0.29562,43,111.81,37.61,0.70438,3,41,144.12,190.5,4.8E-4,44,90.53,83.73,0.37258,43,111.81,0.99,0.62694,3,41,144.12,153.88,0.01382,44,90.53,47.1,0.55905,43,111.81,-35.64,0.42712,3,41,144.12,117.25,0.07337,44,90.53,10.48,0.72693,43,111.81,-72.26,0.1997,3,41,144.12,80.63,0.20242,44,90.53,-26.15,0.74386,43,111.81,-108.89,0.05372,3,41,144.12,44,0.34802,44,90.53,-62.77,0.64638,43,111.81,-145.51,0.0056,3,41,144.12,7.38,0.44288,44,90.53,-99.4,0.55706,43,111.81,-182.14,6.0E-5,3,41,144.12,-29.25,0.50334,44,90.53,-136.02,0.49665,43,111.81,-218.76,2.0E-5,4,41,97.12,-29.25,0.55778,42,114.45,-90.71,0,44,43.53,-136.02,0.44222,43,64.81,-218.76,1.0E-5,4,41,50.12,-29.25,0.73143,42,67.45,-90.71,1.9E-4,44,-3.47,-136.02,0.26838,43,17.81,-218.76,0,4,41,3.12,-29.25,0.55296,44,-50.47,-136.02,0.02255,43,-29.19,-218.76,0,40,25.97,22.76,0.42449,4,41,-43.88,-29.25,0.19561,42,-26.55,-90.71,0.02977,43,-76.19,-218.76,0,40,-21.03,22.76,0.77462,3,41,97.12,7.38,0.48548,42,114.45,-54.09,0.00403,44,43.53,-99.4,0.51049,4,41,50.12,7.38,0.63427,42,67.45,-54.09,0.03415,44,-3.47,-99.4,0.33158,43,17.81,-182.14,0,3,41,3.12,7.38,0.9078,42,20.45,-54.09,0.06734,44,-50.47,-99.4,0.02486,3,41,-43.88,7.38,0.61541,42,-26.55,-54.09,0.38318,45,-22.21,-141.56,0.00141,4,41,97.11,44,0.3514,42,114.45,-17.46,0.01183,44,43.53,-62.77,0.63542,43,64.81,-145.51,0.00135,3,41,50.11,44,0.37467,42,67.45,-17.46,0.13352,44,-3.47,-62.77,0.49181,3,41,3.12,44,0.3135,42,20.45,-17.46,0.56942,44,-50.47,-62.77,0.11707,3,41,-43.88,44,0.19937,42,-26.55,-17.46,0.76765,45,-22.21,-104.93,0.03297,4,41,97.12,80.63,0.17737,42,114.45,19.16,0.00507,44,43.53,-26.15,0.78931,43,64.81,-108.89,0.02825,4,41,50.12,80.63,0.11173,42,67.45,19.16,0.12111,44,-3.47,-26.15,0.76154,45,71.79,-68.31,0.00562,4,41,3.12,80.63,0.02279,42,20.45,19.16,0.62418,44,-50.47,-26.15,0.24466,45,24.79,-68.31,0.10837,4,41,-43.88,80.63,0.00822,42,-26.55,19.16,0.75426,44,-97.47,-26.15,0.00374,45,-22.21,-68.31,0.23377,3,41,97.12,117.25,0.04618,44,43.53,10.48,0.78531,43,64.81,-72.26,0.16851,4,42,67.45,55.79,0.00894,44,-3.47,10.48,0.87535,45,71.79,-31.68,0.03797,43,17.81,-72.26,0.07774,4,42,20.45,55.79,0.24651,44,-50.47,10.48,0.28215,45,24.79,-31.68,0.43611,43,-29.19,-72.26,0.03523,3,42,-26.55,55.79,0.3737,44,-97.47,10.48,0.00972,45,-22.21,-31.68,0.61658,3,41,97.11,153.88,0.0052,44,43.53,47.1,0.54487,43,64.81,-35.64,0.44993,4,42,67.45,92.41,5.0E-4,44,-3.47,47.1,0.41891,45,71.78,4.94,0.06094,43,17.81,-35.64,0.51965,4,42,20.45,92.41,0.01181,44,-50.47,47.1,0.10806,45,24.79,4.94,0.61533,43,-29.19,-35.64,0.26479,3,42,-26.55,92.41,0.06199,45,-22.21,4.94,0.92395,43,-76.19,-35.64,0.01406,2,44,43.53,83.73,0.3047,43,64.81,0.99,0.6953,2,44,-3.47,83.73,0.08884,43,17.81,0.99,0.91116,3,44,-50.47,83.73,0.00209,45,24.79,41.57,0.36881,43,-29.19,0.99,0.6291,3,42,-26.55,129.04,0.00252,45,-22.21,41.57,0.81773,43,-76.19,0.99,0.17976],"hull":26,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,0],"width":235,"height":293}},"蒸笼热气9":{"蒸笼热气":{"type":"mesh","uvs":[1,1,0.8,1,0.6,1,0.4,1,0.2,1,0,1,0,0.875,0,0.75,0,0.625,0,0.5,0,0.375,0,0.25,0,0.125,0,0,0.2,0,0.4,0,0.6,0,0.8,0,1,0,1,0.125,1,0.25,1,0.375,1,0.5,1,0.625,1,0.75,1,0.875,0.8,0.875,0.6,0.875,0.4,0.875,0.2,0.875,0.8,0.75,0.6,0.75,0.4,0.75,0.2,0.75,0.8,0.625,0.6,0.625,0.4,0.625,0.2,0.625,0.8,0.5,0.6,0.5,0.4,0.5,0.2,0.5,0.8,0.375,0.6,0.375,0.4,0.375,0.2,0.375,0.8,0.25,0.6,0.25,0.4,0.25,0.2,0.25,0.8,0.125,0.6,0.125,0.4,0.125,0.2,0.125],"triangles":[3,4,28,5,6,29,4,5,29,4,29,28,3,28,27,52,53,15,52,15,16,51,52,16,48,52,51,47,48,51,51,16,17,50,51,17,47,51,50,46,47,50,50,17,18,19,50,18,46,50,19,20,46,19,12,13,14,53,12,14,11,12,53,49,11,53,10,11,49,45,10,49,9,10,45,53,14,15,49,53,52,48,49,52,45,49,48,44,45,48,44,48,47,31,35,34,30,31,34,24,30,23,26,30,24,43,44,47,40,44,43,39,40,43,35,36,39,43,47,46,42,43,46,39,43,42,38,39,42,35,39,38,34,35,38,42,46,20,21,42,20,38,42,21,22,38,21,34,38,22,23,34,22,30,34,23,37,8,41,7,8,37,33,7,37,33,37,36,41,9,45,8,9,41,41,45,44,40,41,44,37,41,40,36,37,40,36,40,39,6,7,33,29,6,33,32,33,36,29,33,32,28,29,32,32,36,35,31,32,35,28,32,31,27,28,31,2,3,27,27,31,30,26,27,30,2,27,26,1,2,26,25,26,24,1,26,25,0,1,25],"vertices":[3,59,144.11,-65.87,0.52686,62,90.53,-172.65,0.47312,61,111.81,-255.39,2.0E-5,3,59,97.11,-65.87,0.57995,62,43.53,-172.65,0.42004,61,64.81,-255.39,1.0E-5,3,59,50.11,-65.87,0.74183,62,-3.47,-172.65,0.25817,61,17.81,-255.39,0,1,58,25.97,-13.87,1,1,58,-21.03,-13.87,1,3,59,-90.89,-65.87,0.26703,60,-73.55,-127.34,0.04179,58,-68.03,-13.87,0.69118,3,59,-90.88,-29.25,0.65627,60,-73.55,-90.71,0.19366,58,-68.03,22.76,0.15007,3,59,-90.88,7.38,0.51461,60,-73.55,-54.09,0.47474,63,-69.21,-141.56,0.01065,3,59,-90.89,44,0.20742,60,-73.55,-17.46,0.70593,63,-69.22,-104.93,0.08665,3,59,-90.88,80.63,0.03497,60,-73.55,19.16,0.67373,63,-69.21,-68.31,0.2913,3,59,-90.88,117.25,4.6E-4,60,-73.55,55.79,0.41132,63,-69.21,-31.68,0.58821,3,60,-73.55,92.41,0.14872,63,-69.22,4.94,0.84214,61,-123.19,-35.64,0.00915,3,60,-73.55,129.04,0.02122,63,-69.21,41.57,0.90557,61,-123.19,0.99,0.07322,2,63,-69.21,78.19,0.8825,61,-123.19,37.61,0.1175,2,63,-22.21,78.19,0.7319,61,-76.19,37.61,0.2681,2,63,24.79,78.19,0.28595,61,-29.19,37.61,0.71405,3,62,-3.47,120.35,0.03661,63,71.79,78.19,0.00184,61,17.81,37.61,0.96155,2,62,43.53,120.35,0.21674,61,64.81,37.61,0.78326,2,62,90.53,120.35,0.29562,61,111.81,37.61,0.70438,3,59,144.12,190.5,4.8E-4,62,90.53,83.73,0.37258,61,111.81,0.99,0.62694,3,59,144.12,153.88,0.01382,62,90.53,47.1,0.55905,61,111.81,-35.64,0.42712,3,59,144.12,117.25,0.07337,62,90.53,10.48,0.72693,61,111.81,-72.26,0.1997,3,59,144.12,80.63,0.20242,62,90.53,-26.15,0.74386,61,111.81,-108.89,0.05372,3,59,144.12,44,0.34802,62,90.53,-62.77,0.64638,61,111.81,-145.51,0.0056,3,59,144.12,7.38,0.44288,62,90.53,-99.4,0.55706,61,111.81,-182.14,6.0E-5,3,59,144.12,-29.25,0.50334,62,90.53,-136.02,0.49665,61,111.81,-218.76,2.0E-5,4,59,97.12,-29.25,0.55778,60,114.45,-90.71,0,62,43.53,-136.02,0.44222,61,64.81,-218.76,1.0E-5,4,59,50.12,-29.25,0.73143,60,67.45,-90.71,1.9E-4,62,-3.47,-136.02,0.26838,61,17.81,-218.76,0,4,59,3.12,-29.25,0.55296,62,-50.47,-136.02,0.02255,61,-29.19,-218.76,0,58,25.97,22.76,0.42449,4,59,-43.88,-29.25,0.19561,60,-26.55,-90.71,0.02977,61,-76.19,-218.76,0,58,-21.03,22.76,0.77462,3,59,97.12,7.38,0.48548,60,114.45,-54.09,0.00403,62,43.53,-99.4,0.51049,4,59,50.12,7.38,0.63427,60,67.45,-54.09,0.03415,62,-3.47,-99.4,0.33158,61,17.81,-182.14,0,3,59,3.12,7.38,0.9078,60,20.45,-54.09,0.06734,62,-50.47,-99.4,0.02486,3,59,-43.88,7.38,0.61541,60,-26.55,-54.09,0.38318,63,-22.21,-141.56,0.00141,4,59,97.11,44,0.3514,60,114.45,-17.46,0.01183,62,43.53,-62.77,0.63542,61,64.81,-145.51,0.00135,3,59,50.11,44,0.37467,60,67.45,-17.46,0.13352,62,-3.47,-62.77,0.49181,3,59,3.12,44,0.3135,60,20.45,-17.46,0.56942,62,-50.47,-62.77,0.11707,3,59,-43.88,44,0.19937,60,-26.55,-17.46,0.76765,63,-22.21,-104.93,0.03297,4,59,97.12,80.63,0.17737,60,114.45,19.16,0.00507,62,43.53,-26.15,0.78931,61,64.81,-108.89,0.02825,4,59,50.12,80.63,0.11173,60,67.45,19.16,0.12111,62,-3.47,-26.15,0.76154,63,71.79,-68.31,0.00562,4,59,3.12,80.63,0.02279,60,20.45,19.16,0.62418,62,-50.47,-26.15,0.24466,63,24.79,-68.31,0.10837,4,59,-43.88,80.63,0.00822,60,-26.55,19.16,0.75426,62,-97.47,-26.15,0.00374,63,-22.21,-68.31,0.23377,3,59,97.12,117.25,0.04618,62,43.53,10.48,0.78531,61,64.81,-72.26,0.16851,4,60,67.45,55.79,0.00894,62,-3.47,10.48,0.87535,63,71.79,-31.68,0.03797,61,17.81,-72.26,0.07774,4,60,20.45,55.79,0.24651,62,-50.47,10.48,0.28215,63,24.79,-31.68,0.43611,61,-29.19,-72.26,0.03523,3,60,-26.55,55.79,0.3737,62,-97.47,10.48,0.00972,63,-22.21,-31.68,0.61658,3,59,97.11,153.88,0.0052,62,43.53,47.1,0.54487,61,64.81,-35.64,0.44993,4,60,67.45,92.41,5.0E-4,62,-3.47,47.1,0.41891,63,71.78,4.94,0.06094,61,17.81,-35.64,0.51965,4,60,20.45,92.41,0.01181,62,-50.47,47.1,0.10806,63,24.79,4.94,0.61533,61,-29.19,-35.64,0.26479,3,60,-26.55,92.41,0.06199,63,-22.21,4.94,0.92395,61,-76.19,-35.64,0.01406,2,62,43.53,83.73,0.3047,61,64.81,0.99,0.6953,2,62,-3.47,83.73,0.08884,61,17.81,0.99,0.91116,3,62,-50.47,83.73,0.00209,63,24.79,41.57,0.36881,61,-29.19,0.99,0.6291,3,60,-26.55,129.04,0.00252,63,-22.21,41.57,0.81773,61,-76.19,0.99,0.17976],"hull":26,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,0],"width":235,"height":293}},"蒸笼锅":{"蒸笼锅":{"x":24.09,"y":108.94,"width":389,"height":170}},"馒头01":{"烧麦":{"x":-18.04,"y":8.83,"width":47,"height":45},"烧麦熟":{"x":-18.04,"y":8.83,"width":45,"height":46},"肉包":{"x":-18.18,"y":5.95,"width":51,"height":42},"肉包熟":{"x":-18.18,"y":5.95,"width":51,"height":42},"馒头":{"x":-15.81,"y":5.44,"width":52,"height":48},"馒头熟":{"x":-15.81,"y":5.44,"width":52,"height":48}},"馒头02":{"烧麦":{"x":17.01,"y":8.63,"width":47,"height":45},"烧麦熟":{"x":17.01,"y":8.63,"width":45,"height":46},"肉包":{"x":20.98,"y":5.95,"width":51,"height":42},"肉包熟":{"x":20.98,"y":5.95,"width":51,"height":42},"馒头":{"x":20.79,"y":2.58,"width":52,"height":48},"馒头熟":{"x":20.79,"y":2.58,"width":52,"height":48}},"馒头03":{"烧麦":{"x":-3.08,"y":-11.26,"width":47,"height":45},"烧麦熟":{"x":-3.08,"y":-11.26,"width":45,"height":46},"肉包":{"x":-2.39,"y":-14.75,"width":51,"height":42},"肉包熟":{"x":-2.39,"y":-14.75,"width":51,"height":42},"馒头":{"x":-1.23,"y":-15.73,"width":52,"height":48},"馒头熟":{"x":-1.23,"y":-15.73,"width":52,"height":48}},"蒸笼水雾4":{"蒸笼水雾":{"type":"mesh","uvs":[1,1,0.5,1,0,1,0,0.85714,0,0.71429,0,0.57143,0,0.42857,0,0.28571,0,0.14286,0,0,0.5,0,1,0,1,0.14286,1,0.28571,1,0.42857,1,0.57143,1,0.71429,1,0.85714,0.5,0.85714,0.5,0.71429,0.5,0.57143,0.5,0.42857,0.5,0.28571,0.5,0.14286],"triangles":[0,1,17,1,18,17,17,18,16,18,19,16,16,19,15,19,20,15,15,20,14,20,21,14,14,21,13,21,22,13,13,22,12,22,23,12,12,23,11,23,10,11,1,2,18,2,3,18,18,3,19,3,4,19,19,4,20,4,5,20,20,5,21,5,6,21,21,6,22,6,7,22,22,7,23,7,8,23,23,8,10,8,9,10],"vertices":[77.72,-27.81,20.22,-27.81,-37.28,-27.81,-37.28,5.33,-37.28,38.47,-37.28,71.62,-37.28,104.76,-37.28,137.9,-37.28,171.04,-37.28,204.19,20.22,204.19,77.72,204.19,77.72,171.04,77.72,137.9,77.72,104.76,77.72,71.62,77.72,38.47,77.72,5.33,20.22,5.33,20.22,38.47,20.22,71.62,20.22,104.76,20.22,137.9,20.22,171.04],"hull":18,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,0],"width":115,"height":232}},"蒸笼水雾5":{"蒸笼水雾":{"type":"mesh","uvs":[1,1,0.5,1,0,1,0,0.85714,0,0.71429,0,0.57143,0,0.42857,0,0.28571,0,0.14286,0,0,0.5,0,1,0,1,0.14286,1,0.28571,1,0.42857,1,0.57143,1,0.71429,1,0.85714,0.5,0.85714,0.5,0.71429,0.5,0.57143,0.5,0.42857,0.5,0.28571,0.5,0.14286],"triangles":[0,1,17,1,18,17,17,18,16,18,19,16,16,19,15,19,20,15,15,20,14,20,21,14,14,21,13,21,22,13,13,22,12,22,23,12,12,23,11,23,10,11,1,2,18,2,3,18,18,3,19,3,4,19,19,4,20,4,5,20,20,5,21,5,6,21,21,6,22,6,7,22,22,7,23,7,8,23,23,8,10,8,9,10],"vertices":[77.72,-27.81,20.22,-27.81,-37.28,-27.81,-37.28,5.33,-37.28,38.47,-37.28,71.62,-37.28,104.76,-37.28,137.9,-37.28,171.04,-37.28,204.19,20.22,204.19,77.72,204.19,77.72,171.04,77.72,137.9,77.72,104.76,77.72,71.62,77.72,38.47,77.72,5.33,20.22,5.33,20.22,38.47,20.22,71.62,20.22,104.76,20.22,137.9,20.22,171.04],"hull":18,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,0],"width":115,"height":232}},"蒸笼水雾6":{"蒸笼水雾2":{"type":"mesh","uvs":[1,1,0.66667,1,0.33333,1,0,1,0,0.875,0,0.75,0,0.625,0,0.5,0,0.375,0,0.25,0,0.125,0,0,0.33333,0,0.66667,0,1,0,1,0.125,1,0.25,1,0.375,1,0.5,1,0.625,1,0.75,1,0.875,0.66667,0.875,0.33333,0.875,0.66667,0.75,0.33333,0.75,0.66667,0.625,0.33333,0.625,0.66667,0.5,0.33333,0.5,0.66667,0.375,0.33333,0.375,0.66667,0.25,0.33333,0.25,0.66667,0.125,0.33333,0.125],"triangles":[0,1,21,1,22,21,21,22,20,22,24,20,20,24,19,24,26,19,19,26,18,26,28,18,18,28,17,28,30,17,17,30,16,30,32,16,16,32,15,32,34,15,15,34,14,34,13,14,1,2,22,2,23,22,22,23,24,23,25,24,24,25,26,25,27,26,26,27,28,27,29,28,28,29,30,29,31,30,30,31,32,31,33,32,32,33,34,33,35,34,34,35,13,35,12,13,2,3,23,3,4,23,23,4,25,4,5,25,25,5,27,5,6,27,27,6,29,6,7,29,29,7,31,7,8,31,31,8,33,8,9,33,33,9,35,9,10,35,35,10,12,10,11,12],"vertices":[63.08,-38.11,20.41,-38.11,-22.25,-38.11,-64.92,-38.11,-64.92,-4.11,-64.92,29.89,-64.92,63.89,-64.92,97.89,-64.92,131.89,-64.92,165.89,-64.92,199.89,-64.92,233.89,-22.25,233.89,20.41,233.89,63.08,233.89,63.08,199.89,63.08,165.89,63.08,131.89,63.08,97.89,63.08,63.89,63.08,29.89,63.08,-4.11,20.41,-4.11,-22.25,-4.11,20.41,29.89,-22.25,29.89,20.41,63.89,-22.25,63.89,20.41,97.89,-22.25,97.89,20.41,131.89,-22.25,131.89,20.41,165.89,-22.25,165.89,20.41,199.89,-22.25,199.89],"hull":22,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,0],"width":128,"height":272}},"蒸笼水雾7":{"蒸笼水雾":{"type":"mesh","uvs":[1,1,0.5,1,0,1,0,0.85714,0,0.71429,0,0.57143,0,0.42857,0,0.28571,0,0.14286,0,0,0.5,0,1,0,1,0.14286,1,0.28571,1,0.42857,1,0.57143,1,0.71429,1,0.85714,0.5,0.85714,0.5,0.71429,0.5,0.57143,0.5,0.42857,0.5,0.28571,0.5,0.14286],"triangles":[0,1,17,1,18,17,17,18,16,18,19,16,16,19,15,19,20,15,15,20,14,20,21,14,14,21,13,21,22,13,13,22,12,22,23,12,12,23,11,23,10,11,1,2,18,2,3,18,18,3,19,3,4,19,19,4,20,4,5,20,20,5,21,5,6,21,21,6,22,6,7,22,22,7,23,7,8,23,23,8,10,8,9,10],"vertices":[77.72,-27.81,20.22,-27.81,-37.28,-27.81,-37.28,5.33,-37.28,38.47,-37.28,71.62,-37.28,104.76,-37.28,137.9,-37.28,171.04,-37.28,204.19,20.22,204.19,77.72,204.19,77.72,171.04,77.72,137.9,77.72,104.76,77.72,71.62,77.72,38.47,77.72,5.33,20.22,5.33,20.22,38.47,20.22,71.62,20.22,104.76,20.22,137.9,20.22,171.04],"hull":18,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,0],"width":115,"height":232}},"蒸笼水雾8":{"蒸笼水雾":{"type":"mesh","uvs":[1,1,0.5,1,0,1,0,0.85714,0,0.71429,0,0.57143,0,0.42857,0,0.28571,0,0.14286,0,0,0.5,0,1,0,1,0.14286,1,0.28571,1,0.42857,1,0.57143,1,0.71429,1,0.85714,0.5,0.85714,0.5,0.71429,0.5,0.57143,0.5,0.42857,0.5,0.28571,0.5,0.14286],"triangles":[0,1,17,1,18,17,17,18,16,18,19,16,16,19,15,19,20,15,15,20,14,20,21,14,14,21,13,21,22,13,13,22,12,22,23,12,12,23,11,23,10,11,1,2,18,2,3,18,18,3,19,3,4,19,19,4,20,4,5,20,20,5,21,5,6,21,21,6,22,6,7,22,22,7,23,7,8,23,23,8,10,8,9,10],"vertices":[77.72,-27.81,20.22,-27.81,-37.28,-27.81,-37.28,5.33,-37.28,38.47,-37.28,71.62,-37.28,104.76,-37.28,137.9,-37.28,171.04,-37.28,204.19,20.22,204.19,77.72,204.19,77.72,171.04,77.72,137.9,77.72,104.76,77.72,71.62,77.72,38.47,77.72,5.33,20.22,5.33,20.22,38.47,20.22,71.62,20.22,104.76,20.22,137.9,20.22,171.04],"hull":18,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,0],"width":115,"height":232}},"蒸笼水雾9":{"蒸笼水雾2":{"type":"mesh","uvs":[1,1,0.66667,1,0.33333,1,0,1,0,0.875,0,0.75,0,0.625,0,0.5,0,0.375,0,0.25,0,0.125,0,0,0.33333,0,0.66667,0,1,0,1,0.125,1,0.25,1,0.375,1,0.5,1,0.625,1,0.75,1,0.875,0.66667,0.875,0.33333,0.875,0.66667,0.75,0.33333,0.75,0.66667,0.625,0.33333,0.625,0.66667,0.5,0.33333,0.5,0.66667,0.375,0.33333,0.375,0.66667,0.25,0.33333,0.25,0.66667,0.125,0.33333,0.125],"triangles":[0,1,21,1,22,21,21,22,20,22,24,20,20,24,19,24,26,19,19,26,18,26,28,18,18,28,17,28,30,17,17,30,16,30,32,16,16,32,15,32,34,15,15,34,14,34,13,14,1,2,22,2,23,22,22,23,24,23,25,24,24,25,26,25,27,26,26,27,28,27,29,28,28,29,30,29,31,30,30,31,32,31,33,32,32,33,34,33,35,34,34,35,13,35,12,13,2,3,23,3,4,23,23,4,25,4,5,25,25,5,27,5,6,27,27,6,29,6,7,29,29,7,31,7,8,31,31,8,33,8,9,33,33,9,35,9,10,35,35,10,12,10,11,12],"vertices":[63.08,-38.11,20.41,-38.11,-22.25,-38.11,-64.92,-38.11,-64.92,-4.11,-64.92,29.89,-64.92,63.89,-64.92,97.89,-64.92,131.89,-64.92,165.89,-64.92,199.89,-64.92,233.89,-22.25,233.89,20.41,233.89,63.08,233.89,63.08,199.89,63.08,165.89,63.08,131.89,63.08,97.89,63.08,63.89,63.08,29.89,63.08,-4.11,20.41,-4.11,-22.25,-4.11,20.41,29.89,-22.25,29.89,20.41,63.89,-22.25,63.89,20.41,97.89,-22.25,97.89,20.41,131.89,-22.25,131.89,20.41,165.89,-22.25,165.89,20.41,199.89,-22.25,199.89],"hull":22,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,0],"width":128,"height":272}},"蒸笼水雾2":{"蒸笼水雾2":{"type":"mesh","uvs":[1,1,0.66667,1,0.33333,1,0,1,0,0.875,0,0.75,0,0.625,0,0.5,0,0.375,0,0.25,0,0.125,0,0,0.33333,0,0.66667,0,1,0,1,0.125,1,0.25,1,0.375,1,0.5,1,0.625,1,0.75,1,0.875,0.66667,0.875,0.33333,0.875,0.66667,0.75,0.33333,0.75,0.66667,0.625,0.33333,0.625,0.66667,0.5,0.33333,0.5,0.66667,0.375,0.33333,0.375,0.66667,0.25,0.33333,0.25,0.66667,0.125,0.33333,0.125],"triangles":[0,1,21,1,22,21,21,22,20,22,24,20,20,24,19,24,26,19,19,26,18,26,28,18,18,28,17,28,30,17,17,30,16,30,32,16,16,32,15,32,34,15,15,34,14,34,13,14,1,2,22,2,23,22,22,23,24,23,25,24,24,25,26,25,27,26,26,27,28,27,29,28,28,29,30,29,31,30,30,31,32,31,33,32,32,33,34,33,35,34,34,35,13,35,12,13,2,3,23,3,4,23,23,4,25,4,5,25,25,5,27,5,6,27,27,6,29,6,7,29,29,7,31,7,8,31,31,8,33,8,9,33,33,9,35,9,10,35,35,10,12,10,11,12],"vertices":[63.08,-38.11,20.41,-38.11,-22.25,-38.11,-64.92,-38.11,-64.92,-4.11,-64.92,29.89,-64.92,63.89,-64.92,97.89,-64.92,131.89,-64.92,165.89,-64.92,199.89,-64.92,233.89,-22.25,233.89,20.41,233.89,63.08,233.89,63.08,199.89,63.08,165.89,63.08,131.89,63.08,97.89,63.08,63.89,63.08,29.89,63.08,-4.11,20.41,-4.11,-22.25,-4.11,20.41,29.89,-22.25,29.89,20.41,63.89,-22.25,63.89,20.41,97.89,-22.25,97.89,20.41,131.89,-22.25,131.89,20.41,165.89,-22.25,165.89,20.41,199.89,-22.25,199.89],"hull":22,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,0],"width":128,"height":272}},"蒸笼热气2":{"蒸笼热气":{"type":"mesh","uvs":[1,1,0.8,1,0.6,1,0.4,1,0.2,1,0,1,0,0.875,0,0.75,0,0.625,0,0.5,0,0.375,0,0.25,0,0.125,0,0,0.2,0,0.4,0,0.6,0,0.8,0,1,0,1,0.125,1,0.25,1,0.375,1,0.5,1,0.625,1,0.75,1,0.875,0.8,0.875,0.6,0.875,0.4,0.875,0.2,0.875,0.8,0.75,0.6,0.75,0.4,0.75,0.2,0.75,0.8,0.625,0.6,0.625,0.4,0.625,0.2,0.625,0.8,0.5,0.6,0.5,0.4,0.5,0.2,0.5,0.8,0.375,0.6,0.375,0.4,0.375,0.2,0.375,0.8,0.25,0.6,0.25,0.4,0.25,0.2,0.25,0.8,0.125,0.6,0.125,0.4,0.125,0.2,0.125],"triangles":[3,4,28,5,6,29,4,5,29,4,29,28,3,28,27,52,53,15,52,15,16,51,52,16,48,52,51,47,48,51,51,16,17,50,51,17,47,51,50,46,47,50,50,17,18,19,50,18,46,50,19,20,46,19,12,13,14,53,12,14,11,12,53,49,11,53,10,11,49,45,10,49,9,10,45,53,14,15,49,53,52,48,49,52,45,49,48,44,45,48,44,48,47,31,35,34,30,31,34,24,30,23,26,30,24,43,44,47,40,44,43,39,40,43,35,36,39,43,47,46,42,43,46,39,43,42,38,39,42,35,39,38,34,35,38,42,46,20,21,42,20,38,42,21,22,38,21,34,38,22,23,34,22,30,34,23,37,8,41,7,8,37,33,7,37,33,37,36,41,9,45,8,9,41,41,45,44,40,41,44,37,41,40,36,37,40,36,40,39,6,7,33,29,6,33,32,33,36,29,33,32,28,29,32,32,36,35,31,32,35,28,32,31,27,28,31,2,3,27,27,31,30,26,27,30,2,27,26,1,2,26,25,26,24,1,26,25,0,1,25],"vertices":[3,17,144.11,-65.87,0.52686,20,90.53,-172.65,0.47312,19,111.81,-255.39,2.0E-5,3,17,97.11,-65.87,0.57995,20,43.53,-172.65,0.42004,19,64.81,-255.39,1.0E-5,3,17,50.11,-65.87,0.74183,20,-3.47,-172.65,0.25817,19,17.81,-255.39,0,1,16,25.97,-13.87,1,1,16,-21.03,-13.87,1,3,17,-90.89,-65.87,0.26703,18,-73.55,-127.34,0.04179,16,-68.03,-13.87,0.69118,3,17,-90.88,-29.25,0.65627,18,-73.55,-90.71,0.19366,16,-68.03,22.76,0.15007,3,17,-90.88,7.38,0.51461,18,-73.55,-54.09,0.47474,21,-69.21,-141.56,0.01065,3,17,-90.89,44,0.20742,18,-73.55,-17.46,0.70593,21,-69.22,-104.93,0.08665,3,17,-90.88,80.63,0.03497,18,-73.55,19.16,0.67373,21,-69.21,-68.31,0.2913,3,17,-90.88,117.25,4.6E-4,18,-73.55,55.79,0.41132,21,-69.21,-31.68,0.58821,3,18,-73.55,92.41,0.14872,21,-69.22,4.94,0.84214,19,-123.19,-35.64,0.00915,3,18,-73.55,129.04,0.02122,21,-69.21,41.57,0.90557,19,-123.19,0.99,0.07322,2,21,-69.21,78.19,0.8825,19,-123.19,37.61,0.1175,2,21,-22.21,78.19,0.7319,19,-76.19,37.61,0.2681,2,21,24.79,78.19,0.28595,19,-29.19,37.61,0.71405,3,20,-3.47,120.35,0.03661,21,71.79,78.19,0.00184,19,17.81,37.61,0.96155,2,20,43.53,120.35,0.21674,19,64.81,37.61,0.78326,2,20,90.53,120.35,0.29562,19,111.81,37.61,0.70438,3,17,144.12,190.5,4.8E-4,20,90.53,83.73,0.37258,19,111.81,0.99,0.62694,3,17,144.12,153.88,0.01382,20,90.53,47.1,0.55905,19,111.81,-35.64,0.42712,3,17,144.12,117.25,0.07337,20,90.53,10.48,0.72693,19,111.81,-72.26,0.1997,3,17,144.12,80.63,0.20242,20,90.53,-26.15,0.74386,19,111.81,-108.89,0.05372,3,17,144.12,44,0.34802,20,90.53,-62.77,0.64638,19,111.81,-145.51,0.0056,3,17,144.12,7.38,0.44288,20,90.53,-99.4,0.55706,19,111.81,-182.14,6.0E-5,3,17,144.12,-29.25,0.50334,20,90.53,-136.02,0.49665,19,111.81,-218.76,2.0E-5,4,17,97.12,-29.25,0.55778,18,114.45,-90.71,0,20,43.53,-136.02,0.44222,19,64.81,-218.76,1.0E-5,4,17,50.12,-29.25,0.73143,18,67.45,-90.71,1.9E-4,20,-3.47,-136.02,0.26838,19,17.81,-218.76,0,4,17,3.12,-29.25,0.55296,20,-50.47,-136.02,0.02255,19,-29.19,-218.76,0,16,25.97,22.76,0.42449,4,17,-43.88,-29.25,0.19561,18,-26.55,-90.71,0.02977,19,-76.19,-218.76,0,16,-21.03,22.76,0.77462,3,17,97.12,7.38,0.48548,18,114.45,-54.09,0.00403,20,43.53,-99.4,0.51049,4,17,50.12,7.38,0.63427,18,67.45,-54.09,0.03415,20,-3.47,-99.4,0.33158,19,17.81,-182.14,0,3,17,3.12,7.38,0.9078,18,20.45,-54.09,0.06734,20,-50.47,-99.4,0.02486,3,17,-43.88,7.38,0.61541,18,-26.55,-54.09,0.38318,21,-22.21,-141.56,0.00141,4,17,97.11,44,0.3514,18,114.45,-17.46,0.01183,20,43.53,-62.77,0.63542,19,64.81,-145.51,0.00135,3,17,50.11,44,0.37467,18,67.45,-17.46,0.13352,20,-3.47,-62.77,0.49181,3,17,3.12,44,0.3135,18,20.45,-17.46,0.56942,20,-50.47,-62.77,0.11707,3,17,-43.88,44,0.19937,18,-26.55,-17.46,0.76765,21,-22.21,-104.93,0.03297,4,17,97.12,80.63,0.17737,18,114.45,19.16,0.00507,20,43.53,-26.15,0.78931,19,64.81,-108.89,0.02825,4,17,50.12,80.63,0.11173,18,67.45,19.16,0.12111,20,-3.47,-26.15,0.76154,21,71.79,-68.31,0.00562,4,17,3.12,80.63,0.02279,18,20.45,19.16,0.62418,20,-50.47,-26.15,0.24466,21,24.79,-68.31,0.10837,4,17,-43.88,80.63,0.00822,18,-26.55,19.16,0.75426,20,-97.47,-26.15,0.00374,21,-22.21,-68.31,0.23377,3,17,97.12,117.25,0.04618,20,43.53,10.48,0.78531,19,64.81,-72.26,0.16851,4,18,67.45,55.79,0.00894,20,-3.47,10.48,0.87535,21,71.79,-31.68,0.03797,19,17.81,-72.26,0.07774,4,18,20.45,55.79,0.24651,20,-50.47,10.48,0.28215,21,24.79,-31.68,0.43611,19,-29.19,-72.26,0.03523,3,18,-26.55,55.79,0.3737,20,-97.47,10.48,0.00972,21,-22.21,-31.68,0.61658,3,17,97.11,153.88,0.0052,20,43.53,47.1,0.54487,19,64.81,-35.64,0.44993,4,18,67.45,92.41,5.0E-4,20,-3.47,47.1,0.41891,21,71.78,4.94,0.06094,19,17.81,-35.64,0.51965,4,18,20.45,92.41,0.01181,20,-50.47,47.1,0.10806,21,24.79,4.94,0.61533,19,-29.19,-35.64,0.26479,3,18,-26.55,92.41,0.06199,21,-22.21,4.94,0.92395,19,-76.19,-35.64,0.01406,2,20,43.53,83.73,0.3047,19,64.81,0.99,0.6953,2,20,-3.47,83.73,0.08884,19,17.81,0.99,0.91116,3,20,-50.47,83.73,0.00209,21,24.79,41.57,0.36881,19,-29.19,0.99,0.6291,3,18,-26.55,129.04,0.00252,21,-22.21,41.57,0.81773,19,-76.19,0.99,0.17976],"hull":26,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,36,36,38,38,40,40,42,42,44,44,46,46,48,48,50,50,0],"width":235,"height":293}},"馒头":{"烧麦":{"x":-18.04,"y":8.83,"width":47,"height":45},"烧麦熟":{"x":-18.04,"y":8.83,"width":45,"height":46},"肉包":{"x":-18.18,"y":5.95,"width":51,"height":42},"肉包熟":{"x":-18.18,"y":5.95,"width":51,"height":42},"馒头":{"x":-15.81,"y":5.44,"width":52,"height":48},"馒头熟":{"x":-15.81,"y":5.44,"width":52,"height":48}},"蒸笼水雾3":{"蒸笼水雾":{"type":"mesh","uvs":[1,1,0.5,1,0,1,0,0.85714,0,0.71429,0,0.57143,0,0.42857,0,0.28571,0,0.14286,0,0,0.5,0,1,0,1,0.14286,1,0.28571,1,0.42857,1,0.57143,1,0.71429,1,0.85714,0.5,0.85714,0.5,0.71429,0.5,0.57143,0.5,0.42857,0.5,0.28571,0.5,0.14286],"triangles":[0,1,17,1,18,17,17,18,16,18,19,16,16,19,15,19,20,15,15,20,14,20,21,14,14,21,13,21,22,13,13,22,12,22,23,12,12,23,11,23,10,11,1,2,18,2,3,18,18,3,19,3,4,19,19,4,20,4,5,20,20,5,21,5,6,21,21,6,22,6,7,22,22,7,23,7,8,23,23,8,10,8,9,10],"vertices":[77.72,-27.81,20.22,-27.81,-37.28,-27.81,-37.28,5.33,-37.28,38.47,-37.28,71.62,-37.28,104.76,-37.28,137.9,-37.28,171.04,-37.28,204.19,20.22,204.19,77.72,204.19,77.72,171.04,77.72,137.9,77.72,104.76,77.72,71.62,77.72,38.47,77.72,5.33,20.22,5.33,20.22,38.47,20.22,71.62,20.22,104.76,20.22,137.9,20.22,171.04],"hull":18,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,20,22,22,24,24,26,26,28,28,30,30,32,32,34,34,0],"width":115,"height":232}},"笼":{"笼":{"type":"clipping","end":"红薯3","vertexCount":20,"vertices":[-97.14,264.64,-92.38,264.6,-91.09,255.08,-87.89,245.97,-80.69,237.88,-65.25,226.86,-49.15,219.62,-19.41,211.02,12.61,207.7,39.64,208.15,69.68,210.72,100.34,219.62,117.85,229.89,132.46,246.17,136.69,256.41,136.94,264.73,251.67,268.95,252.28,602,-372.85,607.98,-394.2,250.58],"color":"ce3a3aff"}},"蒸笼布":{"蒸笼布":{"x":26.09,"y":109.44,"width":265,"height":123}}}}],"animations":{"烧卖":{"slots":{"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"馒头3":{"attachment":[{"name":"烧麦熟"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"馒头002":{"attachment":[{"name":"烧麦熟"}]},"馒头02":{"attachment":[{"name":"烧麦熟"}]},"馒头01":{"attachment":[{"name":"烧麦熟"}]},"馒头001":{"attachment":[{"name":"烧麦熟"}]},"馒头003":{"attachment":[{"name":"烧麦熟"}]},"馒头":{"attachment":[{"name":"烧麦熟"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"馒头03":{"attachment":[{"name":"烧麦熟"}]},"馒头2":{"attachment":[{"name":"烧麦熟"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]}},"bones":{"馒头2":{"translate":[{"x":-5.4}],"scale":[{"x":1.111}]},"馒头3":{"translate":[{"x":5.4}],"scale":[{"x":1.111}]},"bone":{"scale":[{"x":0.9,"y":0.9}]},"馒头":{"translate":[{"y":2.08}],"scale":[{"x":1.111}]}}},"烧卖余1":{"slots":{"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"馒头3":{"attachment":[{"name":"烧麦熟"}]},"馒头":{"attachment":[{"name":"烧麦熟"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"馒头2":{"attachment":[{"name":"烧麦熟"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]}},"bones":{"bone":{"scale":[{"x":0.9,"y":0.9}]},"馒头":{"translate":[{"y":2.08}],"scale":[{"x":1.111}]}}},"烧卖余2":{"slots":{"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"馒头3":{"attachment":[{"name":"烧麦熟"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"馒头001":{"attachment":[{"name":"烧麦熟"}]},"馒头003":{"attachment":[{"name":"烧麦熟"}]},"馒头":{"attachment":[{"name":"烧麦熟"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"馒头002":{"attachment":[{"name":"烧麦熟"}]},"馒头2":{"attachment":[{"name":"烧麦熟"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]}},"bones":{"馒头3":{"translate":[{"x":5.4}],"scale":[{"x":1.111}]},"bone":{"scale":[{"x":0.9,"y":0.9}]},"馒头":{"translate":[{"y":2.08}],"scale":[{"x":1.111}]}}},"空蒸笼":{"slots":{"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]}}},"红薯":{"slots":{"红薯3":{"attachment":[{"name":"红薯熟"}]},"红薯":{"attachment":[{"name":"红薯熟"}]},"红薯2":{"attachment":[{"name":"红薯熟"}]},"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]}}},"红薯余1":{"slots":{"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"红薯":{"attachment":[{"name":"红薯熟"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]}}},"红薯余2":{"slots":{"红薯3":{"attachment":[{"name":"红薯熟"}]},"红薯":{"attachment":[{"name":"红薯熟"}]},"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]}}},"肉包":{"slots":{"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"馒头3":{"attachment":[{"name":"肉包熟"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"馒头002":{"attachment":[{"name":"肉包熟"}]},"馒头02":{"attachment":[{"name":"肉包熟"}]},"馒头01":{"attachment":[{"name":"肉包熟"}]},"馒头001":{"attachment":[{"name":"肉包熟"}]},"馒头003":{"attachment":[{"name":"肉包熟"}]},"馒头":{"attachment":[{"name":"肉包熟"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"馒头03":{"attachment":[{"name":"肉包熟"}]},"馒头2":{"attachment":[{"name":"肉包熟"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]}},"bones":{"馒头":{"translate":[{"y":2.08}],"scale":[{"x":1.111}]},"馒头2":{"translate":[{"x":-5.4}],"scale":[{"x":1.111}]},"馒头3":{"translate":[{"x":5.4}],"scale":[{"x":1.111}]},"bone":{"scale":[{"x":0.9,"y":0.9}]}}},"肉包余1":{"slots":{"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"馒头3":{"attachment":[{"name":"肉包熟"}]},"馒头":{"attachment":[{"name":"肉包熟"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"馒头2":{"attachment":[{"name":"肉包熟"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]}},"bones":{"馒头":{"translate":[{"y":2.08}],"scale":[{"x":1.111}]},"bone":{"scale":[{"x":0.9,"y":0.9}]}}},"肉包余2":{"slots":{"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"馒头3":{"attachment":[{"name":"肉包熟"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"馒头001":{"attachment":[{"name":"肉包熟"}]},"馒头003":{"attachment":[{"name":"肉包熟"}]},"馒头":{"attachment":[{"name":"肉包熟"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"馒头002":{"attachment":[{"name":"肉包熟"}]},"馒头2":{"attachment":[{"name":"肉包熟"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]}},"bones":{"馒头":{"translate":[{"y":2.08}],"scale":[{"x":1.111}]},"馒头3":{"translate":[{"x":5.4}],"scale":[{"x":1.111}]},"bone":{"scale":[{"x":0.9,"y":0.9}]}}},"蒸烧卖":{"slots":{"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"馒头03":{"attachment":[{"name":"烧麦"},{"time":2,"name":"烧麦熟"}]},"蒸笼手":{"attachment":[{"name":"蒸笼手"},{"time":0.2,"name":"蒸笼手2"},{"time":0.5333,"name":"蒸笼手"},{"time":0.9333,"name":null}]},"蒸笼水雾4":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头3":{"attachment":[{"name":"烧麦"},{"time":2,"name":"烧麦熟"}]},"蒸笼热气5":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"馒头002":{"attachment":[{"name":"烧麦"},{"time":2,"name":"烧麦熟"}]},"馒头02":{"attachment":[{"name":"烧麦"},{"time":2,"name":"烧麦熟"}]},"蒸笼热气":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾3":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼水雾8":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头01":{"attachment":[{"name":"烧麦"},{"time":2,"name":"烧麦熟"}]},"蒸笼热气8":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气9":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气6":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气7":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾2":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"蒸笼热气4":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"馒头001":{"attachment":[{"name":"烧麦"},{"time":2,"name":"烧麦熟"}]},"蒸笼热气3":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾5":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头003":{"attachment":[{"name":"烧麦"},{"time":2,"name":"烧麦熟"}]},"蒸笼水雾6":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"馒头":{"attachment":[{"name":"烧麦"},{"time":2,"name":"烧麦熟"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"蒸笼水雾":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼热气2":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"蒸笼盖":{"attachment":[{"time":0.5333,"name":"蒸笼盖"},{"time":2.3333,"name":null}]},"馒头2":{"attachment":[{"name":"烧麦"},{"time":2,"name":"烧麦熟"}]},"蒸笼水雾7":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]},"蒸笼水雾9":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]}},"bones":{"蒸笼":{"translate":[{"time":0.9333,"curve":0.25,"c3":0.75},{"time":1,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.0667,"curve":0.25,"c3":0.75},{"time":1.1333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.2,"curve":0.25,"c3":0.75},{"time":1.2667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.3333,"curve":0.25,"c3":0.75},{"time":1.4,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.4667,"curve":0.25,"c3":0.75},{"time":1.5333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.6,"curve":0.25,"c3":0.75},{"time":1.6667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.7333,"curve":0.25,"c3":0.75},{"time":1.8,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.8667,"curve":0.25,"c3":0.75},{"time":1.9333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":2}]},"蒸笼盖":{"rotate":[{"angle":64.3,"curve":"stepped"},{"time":0.5333,"angle":64.3,"curve":0.25,"c3":0.75},{"time":0.7333,"curve":"stepped"},{"time":2},{"time":2.3333,"angle":64.3}],"translate":[{"x":-41.74,"y":146.32,"curve":"stepped"},{"time":0.5333,"x":-41.74,"y":146.32,"curve":0.25,"c3":0.75},{"time":0.6333,"x":141.21,"y":74.71,"curve":0.25,"c3":0.75},{"time":0.7333,"x":211.13,"y":-59.41,"curve":"stepped"},{"time":0.9333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.0667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.1333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.2,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.2667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.3333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.4,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.4667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.5333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.6,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.6667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.7333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.8,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.8667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.9333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":2,"x":211.13,"y":-59.41},{"time":2.1667,"x":117.1,"y":57.69},{"time":2.3333,"x":-41.74,"y":146.32}]},"蒸笼手":{"rotate":[{"angle":6.42,"curve":"stepped"},{"time":0.1333,"angle":6.42,"curve":0.25,"c3":0.75},{"time":0.2333,"angle":-13.46,"curve":0.25,"c3":0.75},{"time":0.3333,"curve":"stepped"},{"time":0.5,"curve":0.25,"c3":0.75},{"time":0.5333,"angle":55.87,"curve":0.25,"c3":0.75},{"time":0.7333,"angle":-2.66,"curve":0.25,"c3":0.75},{"time":0.9333,"angle":55.87}],"translate":[{"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.1333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.2333,"x":61.87,"y":-48.61,"curve":0.25,"c3":0.75},{"time":0.3333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.5,"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.5333,"x":-185.54,"y":-105.64,"curve":0.25,"c3":0.75},{"time":0.6333,"x":-65.01,"y":-92.88,"curve":0.25,"c3":0.75},{"time":0.7333,"x":-11.12,"y":-118.4,"curve":0.25,"c3":0.75},{"time":0.9333,"x":-185.54,"y":-105.64}]},"蒸笼热气2":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气3":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气4":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气5":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气6":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气54":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气8":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气9":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气10":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气11":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气12":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气14":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气15":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气16":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气17":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气18":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气20":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气21":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气22":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气23":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气24":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气26":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气27":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气28":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气29":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气30":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气32":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气33":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气34":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气35":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气36":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气38":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气39":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气40":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气41":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气42":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气44":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气45":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气46":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气47":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气48":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气50":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气51":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气52":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气53":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"馒头":{"translate":[{"x":-272.96,"y":212.17,"curve":0.25,"c3":0.75},{"time":0.1333,"x":-6.34,"y":206.06,"curve":0.25,"c3":0.75},{"time":0.2667,"y":0.96,"curve":0.25,"c3":0.75},{"time":0.4,"y":2.08,"curve":"stepped"},{"time":2,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.1667,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.3333,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.5,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.6667,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.8333,"y":-0.17,"curve":0.25,"c3":0.75},{"time":3,"y":2.08}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头3":{"translate":[{"x":-325.26,"y":250.78,"curve":0.25,"c3":0.75},{"time":0.1333,"x":-58.64,"y":244.67,"curve":0.25,"c3":0.75},{"time":0.2667,"x":5.4,"y":-1.11,"curve":0.25,"c3":0.75},{"time":0.4,"x":5.4,"curve":"stepped"},{"time":2,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头2":{"translate":[{"x":-204.87,"y":243.06,"curve":0.25,"c3":0.75},{"time":0.1333,"x":61.75,"y":236.94,"curve":0.25,"c3":0.75},{"time":0.2667,"x":-5.4,"y":-1.11,"curve":0.25,"c3":0.75},{"time":0.4,"x":-5.4,"curve":"stepped"},{"time":2,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":-5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"bone":{"scale":[{"x":0.9,"y":0.9}]}},"deform":{"default":{"蒸笼水雾4":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾3":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾8":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾2":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾6":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾9":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾7":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾5":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]}}}},"蒸烧卖余1":{"slots":{"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"馒头03":{"attachment":[{"name":"烧麦"},{"time":2,"name":"烧麦熟"}]},"蒸笼手":{"attachment":[{"name":"蒸笼手"},{"time":0.2,"name":"蒸笼手2"},{"time":0.5333,"name":"蒸笼手"},{"time":0.9333,"name":null}]},"蒸笼水雾4":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头3":{"attachment":[{"name":"烧麦熟"}]},"蒸笼热气5":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"馒头002":{"attachment":[{"name":"烧麦"},{"time":2,"name":"烧麦熟"}]},"馒头02":{"attachment":[{"name":"烧麦"},{"time":2,"name":"烧麦熟"}]},"蒸笼热气":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾3":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼水雾8":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头01":{"attachment":[{"name":"烧麦"},{"time":2,"name":"烧麦熟"}]},"蒸笼热气8":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气9":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气6":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气7":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾2":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"蒸笼热气4":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"馒头001":{"attachment":[{"name":"烧麦"},{"time":2,"name":"烧麦熟"}]},"蒸笼热气3":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾5":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头003":{"attachment":[{"name":"烧麦"},{"time":2,"name":"烧麦熟"}]},"蒸笼水雾6":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"馒头":{"attachment":[{"name":"烧麦熟"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"蒸笼水雾":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼热气2":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"蒸笼盖":{"attachment":[{"time":0.5333,"name":"蒸笼盖"},{"time":2.3333,"name":null}]},"馒头2":{"attachment":[{"name":"烧麦熟"}]},"蒸笼水雾7":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]},"蒸笼水雾9":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]}},"bones":{"蒸笼":{"translate":[{"time":0.9333,"curve":0.25,"c3":0.75},{"time":1,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.0667,"curve":0.25,"c3":0.75},{"time":1.1333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.2,"curve":0.25,"c3":0.75},{"time":1.2667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.3333,"curve":0.25,"c3":0.75},{"time":1.4,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.4667,"curve":0.25,"c3":0.75},{"time":1.5333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.6,"curve":0.25,"c3":0.75},{"time":1.6667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.7333,"curve":0.25,"c3":0.75},{"time":1.8,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.8667,"curve":0.25,"c3":0.75},{"time":1.9333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":2}]},"蒸笼盖":{"rotate":[{"angle":64.3,"curve":"stepped"},{"time":0.5333,"angle":64.3,"curve":0.25,"c3":0.75},{"time":0.7333,"curve":"stepped"},{"time":2},{"time":2.3333,"angle":64.3}],"translate":[{"x":-41.74,"y":146.32,"curve":"stepped"},{"time":0.5333,"x":-41.74,"y":146.32,"curve":0.25,"c3":0.75},{"time":0.6333,"x":141.21,"y":74.71,"curve":0.25,"c3":0.75},{"time":0.7333,"x":211.13,"y":-59.41,"curve":"stepped"},{"time":0.9333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.0667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.1333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.2,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.2667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.3333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.4,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.4667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.5333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.6,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.6667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.7333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.8,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.8667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.9333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":2,"x":211.13,"y":-59.41},{"time":2.1667,"x":117.1,"y":57.69},{"time":2.3333,"x":-41.74,"y":146.32}]},"蒸笼手":{"rotate":[{"angle":6.42,"curve":"stepped"},{"time":0.1333,"angle":6.42,"curve":0.25,"c3":0.75},{"time":0.2333,"angle":-13.46,"curve":0.25,"c3":0.75},{"time":0.3333,"curve":"stepped"},{"time":0.5,"curve":0.25,"c3":0.75},{"time":0.5333,"angle":55.87,"curve":0.25,"c3":0.75},{"time":0.7333,"angle":-2.66,"curve":0.25,"c3":0.75},{"time":0.9333,"angle":55.87}],"translate":[{"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.1333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.2333,"x":61.87,"y":-48.61,"curve":0.25,"c3":0.75},{"time":0.3333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.5,"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.5333,"x":-185.54,"y":-105.64,"curve":0.25,"c3":0.75},{"time":0.6333,"x":-65.01,"y":-92.88,"curve":0.25,"c3":0.75},{"time":0.7333,"x":-11.12,"y":-118.4,"curve":0.25,"c3":0.75},{"time":0.9333,"x":-185.54,"y":-105.64}]},"蒸笼热气2":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气3":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气4":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气5":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气6":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气54":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气8":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气9":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气10":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气11":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气12":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气14":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气15":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气16":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气17":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气18":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气20":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气21":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气22":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气23":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气24":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气26":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气27":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气28":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气29":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气30":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气32":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气33":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气34":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气35":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气36":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气38":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气39":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气40":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气41":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气42":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气44":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气45":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气46":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气47":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气48":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气50":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气51":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气52":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气53":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"馒头":{"translate":[{"y":2.08,"curve":"stepped"},{"time":2,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.1667,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.3333,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.5,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.6667,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.8333,"y":-0.17,"curve":0.25,"c3":0.75},{"time":3,"y":2.08}],"scale":[{"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头3":{"translate":[{"x":-325.26,"y":250.78,"curve":0.25,"c3":0.75},{"time":0.1333,"x":-58.64,"y":244.67,"curve":0.25,"c3":0.75},{"time":0.2667,"x":5.4,"y":-1.11,"curve":0.25,"c3":0.75},{"time":0.4,"x":5.4,"curve":"stepped"},{"time":2,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头2":{"translate":[{"x":-204.87,"y":243.06,"curve":0.25,"c3":0.75},{"time":0.1333,"x":61.75,"y":236.94,"curve":0.25,"c3":0.75},{"time":0.2667,"x":-5.4,"y":-1.11,"curve":0.25,"c3":0.75},{"time":0.4,"x":-5.4,"curve":"stepped"},{"time":2,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":-5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"bone":{"scale":[{"x":0.9,"y":0.9}]}},"deform":{"default":{"蒸笼水雾4":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾3":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾8":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾2":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾6":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾9":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾7":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾5":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]}}}},"蒸烧卖余2":{"slots":{"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"馒头03":{"attachment":[{"name":"烧麦"},{"time":2,"name":"烧麦熟"}]},"蒸笼手":{"attachment":[{"name":"蒸笼手"},{"time":0.2,"name":"蒸笼手2"},{"time":0.5333,"name":"蒸笼手"},{"time":0.9333,"name":null}]},"蒸笼水雾4":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头3":{"attachment":[{"name":"烧麦熟"}]},"蒸笼热气5":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"馒头002":{"attachment":[{"name":"烧麦熟"}]},"馒头02":{"attachment":[{"name":"烧麦"},{"time":2,"name":"烧麦熟"}]},"蒸笼热气":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾3":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼水雾8":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头01":{"attachment":[{"name":"烧麦"},{"time":2,"name":"烧麦熟"}]},"蒸笼热气8":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气9":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气6":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气7":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾2":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"蒸笼热气4":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"馒头001":{"attachment":[{"name":"烧麦熟"}]},"蒸笼热气3":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾5":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头003":{"attachment":[{"name":"烧麦熟"}]},"蒸笼水雾6":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"馒头":{"attachment":[{"name":"烧麦熟"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"蒸笼水雾":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼热气2":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"蒸笼盖":{"attachment":[{"time":0.5333,"name":"蒸笼盖"},{"time":2.3333,"name":null}]},"馒头2":{"attachment":[{"name":"烧麦熟"}]},"蒸笼水雾7":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]},"蒸笼水雾9":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]}},"bones":{"蒸笼":{"translate":[{"time":0.9333,"curve":0.25,"c3":0.75},{"time":1,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.0667,"curve":0.25,"c3":0.75},{"time":1.1333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.2,"curve":0.25,"c3":0.75},{"time":1.2667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.3333,"curve":0.25,"c3":0.75},{"time":1.4,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.4667,"curve":0.25,"c3":0.75},{"time":1.5333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.6,"curve":0.25,"c3":0.75},{"time":1.6667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.7333,"curve":0.25,"c3":0.75},{"time":1.8,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.8667,"curve":0.25,"c3":0.75},{"time":1.9333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":2}]},"蒸笼盖":{"rotate":[{"angle":64.3,"curve":"stepped"},{"time":0.5333,"angle":64.3,"curve":0.25,"c3":0.75},{"time":0.7333,"curve":"stepped"},{"time":2},{"time":2.3333,"angle":64.3}],"translate":[{"x":-41.74,"y":146.32,"curve":"stepped"},{"time":0.5333,"x":-41.74,"y":146.32,"curve":0.25,"c3":0.75},{"time":0.6333,"x":141.21,"y":74.71,"curve":0.25,"c3":0.75},{"time":0.7333,"x":211.13,"y":-59.41,"curve":"stepped"},{"time":0.9333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.0667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.1333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.2,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.2667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.3333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.4,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.4667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.5333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.6,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.6667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.7333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.8,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.8667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.9333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":2,"x":211.13,"y":-59.41},{"time":2.1667,"x":117.1,"y":57.69},{"time":2.3333,"x":-41.74,"y":146.32}]},"蒸笼手":{"rotate":[{"angle":6.42,"curve":"stepped"},{"time":0.1333,"angle":6.42,"curve":0.25,"c3":0.75},{"time":0.2333,"angle":-13.46,"curve":0.25,"c3":0.75},{"time":0.3333,"curve":"stepped"},{"time":0.5,"curve":0.25,"c3":0.75},{"time":0.5333,"angle":55.87,"curve":0.25,"c3":0.75},{"time":0.7333,"angle":-2.66,"curve":0.25,"c3":0.75},{"time":0.9333,"angle":55.87}],"translate":[{"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.1333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.2333,"x":61.87,"y":-48.61,"curve":0.25,"c3":0.75},{"time":0.3333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.5,"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.5333,"x":-185.54,"y":-105.64,"curve":0.25,"c3":0.75},{"time":0.6333,"x":-65.01,"y":-92.88,"curve":0.25,"c3":0.75},{"time":0.7333,"x":-11.12,"y":-118.4,"curve":0.25,"c3":0.75},{"time":0.9333,"x":-185.54,"y":-105.64}]},"蒸笼热气2":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气3":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气4":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气5":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气6":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气54":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气8":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气9":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气10":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气11":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气12":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气14":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气15":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气16":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气17":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气18":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气20":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气21":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气22":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气23":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气24":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气26":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气27":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气28":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气29":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气30":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气32":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气33":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气34":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气35":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气36":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气38":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气39":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气40":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气41":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气42":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气44":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气45":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气46":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气47":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气48":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气50":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气51":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气52":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气53":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"馒头":{"translate":[{"y":2.08,"curve":"stepped"},{"time":2,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.1667,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.3333,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.5,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.6667,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.8333,"y":-0.17,"curve":0.25,"c3":0.75},{"time":3,"y":2.08}],"scale":[{"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头3":{"translate":[{"x":5.4,"curve":"stepped"},{"time":2,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头2":{"translate":[{"x":-204.87,"y":243.06,"curve":0.25,"c3":0.75},{"time":0.1333,"x":61.75,"y":236.94,"curve":0.25,"c3":0.75},{"time":0.2667,"x":-5.4,"y":-1.11,"curve":0.25,"c3":0.75},{"time":0.4,"x":-5.4,"curve":"stepped"},{"time":2,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":-5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"bone":{"scale":[{"x":0.9,"y":0.9}]}},"deform":{"default":{"蒸笼水雾4":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾3":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾8":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾2":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾6":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾9":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾7":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾5":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]}}}},"蒸红薯":{"slots":{"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"蒸笼手":{"attachment":[{"name":"蒸笼手"},{"time":0.2,"name":"蒸笼手2"},{"time":0.5333,"name":"蒸笼手"},{"time":0.9333,"name":null}]},"蒸笼水雾4":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼热气5":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"红薯":{"attachment":[{"name":"红薯"},{"time":2,"name":"红薯熟"}]},"蒸笼热气":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾3":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼水雾8":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼热气8":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气9":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气6":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气7":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"红薯3":{"attachment":[{"name":"红薯"},{"time":2,"name":"红薯熟"}]},"蒸笼水雾2":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"蒸笼热气4":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气3":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾5":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼水雾6":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"蒸笼水雾9":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"蒸笼热气2":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"蒸笼盖":{"attachment":[{"time":0.5333,"name":"蒸笼盖"},{"time":2.3333,"name":null}]},"蒸笼水雾":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"红薯2":{"attachment":[{"name":"红薯"},{"time":2,"name":"红薯熟"}]},"蒸笼水雾7":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]}},"bones":{"蒸笼":{"translate":[{"time":0.9333,"curve":0.25,"c3":0.75},{"time":1,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.0667,"curve":0.25,"c3":0.75},{"time":1.1333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.2,"curve":0.25,"c3":0.75},{"time":1.2667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.3333,"curve":0.25,"c3":0.75},{"time":1.4,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.4667,"curve":0.25,"c3":0.75},{"time":1.5333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.6,"curve":0.25,"c3":0.75},{"time":1.6667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.7333,"curve":0.25,"c3":0.75},{"time":1.8,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.8667,"curve":0.25,"c3":0.75},{"time":1.9333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":2}]},"蒸笼盖":{"rotate":[{"angle":64.3,"curve":"stepped"},{"time":0.5333,"angle":64.3,"curve":0.25,"c3":0.75},{"time":0.7333,"curve":"stepped"},{"time":2},{"time":2.3333,"angle":64.3}],"translate":[{"x":-41.74,"y":146.32,"curve":"stepped"},{"time":0.5333,"x":-41.74,"y":146.32,"curve":0.25,"c3":0.75},{"time":0.6333,"x":141.21,"y":74.71,"curve":0.25,"c3":0.75},{"time":0.7333,"x":211.13,"y":-59.41,"curve":"stepped"},{"time":0.9333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.0667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.1333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.2,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.2667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.3333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.4,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.4667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.5333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.6,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.6667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.7333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.8,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.8667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.9333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":2,"x":211.13,"y":-59.41},{"time":2.1667,"x":117.1,"y":57.69},{"time":2.3333,"x":-41.74,"y":146.32}]},"蒸笼手":{"rotate":[{"angle":6.42,"curve":"stepped"},{"time":0.1333,"angle":6.42,"curve":0.25,"c3":0.75},{"time":0.2333,"angle":-13.46,"curve":0.25,"c3":0.75},{"time":0.3333,"curve":"stepped"},{"time":0.5,"curve":0.25,"c3":0.75},{"time":0.5333,"angle":55.87,"curve":0.25,"c3":0.75},{"time":0.7333,"angle":-2.66,"curve":0.25,"c3":0.75},{"time":0.9333,"angle":55.87}],"translate":[{"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.1333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.2333,"x":61.87,"y":-48.61,"curve":0.25,"c3":0.75},{"time":0.3333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.5,"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.5333,"x":-185.54,"y":-105.64,"curve":0.25,"c3":0.75},{"time":0.6333,"x":-65.01,"y":-92.88,"curve":0.25,"c3":0.75},{"time":0.7333,"x":-11.12,"y":-118.4,"curve":0.25,"c3":0.75},{"time":0.9333,"x":-185.54,"y":-105.64}]},"蒸笼热气2":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气3":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气4":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气5":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气6":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气54":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气8":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气9":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气10":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气11":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气12":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气14":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气15":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气16":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气17":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气18":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气20":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气21":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气22":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气23":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气24":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气26":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气27":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气28":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气29":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气30":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气32":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气33":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气34":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气35":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气36":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气38":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气39":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气40":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气41":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气42":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气44":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气45":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气46":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气47":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气48":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气50":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气51":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气52":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气53":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"馒头":{"translate":[{"x":-272.96,"y":212.17,"curve":0.25,"c3":0.75},{"time":0.1333,"x":-6.34,"y":206.06,"curve":0.25,"c3":0.75},{"time":0.2667,"y":0.96,"curve":0.25,"c3":0.75},{"time":0.4,"y":2.08,"curve":"stepped"},{"time":2,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.1667,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.3333,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.5,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.6667,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.8333,"y":-0.17,"curve":0.25,"c3":0.75},{"time":3,"y":2.08}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头3":{"translate":[{"x":-325.26,"y":250.78,"curve":0.25,"c3":0.75},{"time":0.1333,"x":-58.64,"y":244.67,"curve":0.25,"c3":0.75},{"time":0.2667,"x":5.4,"y":-1.11,"curve":0.25,"c3":0.75},{"time":0.4,"x":5.4,"curve":"stepped"},{"time":2,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头2":{"translate":[{"x":-204.87,"y":243.06,"curve":0.25,"c3":0.75},{"time":0.1333,"x":61.75,"y":236.94,"curve":0.25,"c3":0.75},{"time":0.2667,"x":-5.4,"y":-1.11,"curve":0.25,"c3":0.75},{"time":0.4,"x":-5.4,"curve":"stepped"},{"time":2,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":-5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"bone":{"scale":[{"x":0.9,"y":0.9}]}},"deform":{"default":{"蒸笼水雾4":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾3":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾8":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾2":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾6":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾9":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾7":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾5":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]}}}},"蒸红薯余1":{"slots":{"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"蒸笼手":{"attachment":[{"name":"蒸笼手"},{"time":0.2,"name":"蒸笼手2"},{"time":0.5333,"name":"蒸笼手"},{"time":0.9333,"name":null}]},"蒸笼水雾4":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼热气5":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"红薯":{"attachment":[{"name":"红薯熟"}]},"蒸笼热气":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾3":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼水雾8":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼热气8":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气9":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气6":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气7":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"红薯3":{"attachment":[{"name":"红薯"},{"time":2,"name":"红薯熟"}]},"蒸笼水雾2":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"蒸笼热气4":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气3":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾5":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼水雾6":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"蒸笼水雾9":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"蒸笼热气2":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"蒸笼盖":{"attachment":[{"time":0.5333,"name":"蒸笼盖"},{"time":2.3333,"name":null}]},"蒸笼水雾":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"红薯2":{"attachment":[{"name":"红薯"},{"time":2,"name":"红薯熟"}]},"蒸笼水雾7":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]}},"bones":{"蒸笼":{"translate":[{"time":0.9333,"curve":0.25,"c3":0.75},{"time":1,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.0667,"curve":0.25,"c3":0.75},{"time":1.1333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.2,"curve":0.25,"c3":0.75},{"time":1.2667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.3333,"curve":0.25,"c3":0.75},{"time":1.4,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.4667,"curve":0.25,"c3":0.75},{"time":1.5333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.6,"curve":0.25,"c3":0.75},{"time":1.6667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.7333,"curve":0.25,"c3":0.75},{"time":1.8,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.8667,"curve":0.25,"c3":0.75},{"time":1.9333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":2}]},"蒸笼盖":{"rotate":[{"angle":64.3,"curve":"stepped"},{"time":0.5333,"angle":64.3,"curve":0.25,"c3":0.75},{"time":0.7333,"curve":"stepped"},{"time":2},{"time":2.3333,"angle":64.3}],"translate":[{"x":-41.74,"y":146.32,"curve":"stepped"},{"time":0.5333,"x":-41.74,"y":146.32,"curve":0.25,"c3":0.75},{"time":0.6333,"x":141.21,"y":74.71,"curve":0.25,"c3":0.75},{"time":0.7333,"x":211.13,"y":-59.41,"curve":"stepped"},{"time":0.9333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.0667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.1333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.2,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.2667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.3333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.4,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.4667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.5333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.6,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.6667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.7333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.8,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.8667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.9333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":2,"x":211.13,"y":-59.41},{"time":2.1667,"x":117.1,"y":57.69},{"time":2.3333,"x":-41.74,"y":146.32}]},"蒸笼手":{"rotate":[{"angle":6.42,"curve":"stepped"},{"time":0.1333,"angle":6.42,"curve":0.25,"c3":0.75},{"time":0.2333,"angle":-13.46,"curve":0.25,"c3":0.75},{"time":0.3333,"curve":"stepped"},{"time":0.5,"curve":0.25,"c3":0.75},{"time":0.5333,"angle":55.87,"curve":0.25,"c3":0.75},{"time":0.7333,"angle":-2.66,"curve":0.25,"c3":0.75},{"time":0.9333,"angle":55.87}],"translate":[{"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.1333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.2333,"x":61.87,"y":-48.61,"curve":0.25,"c3":0.75},{"time":0.3333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.5,"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.5333,"x":-185.54,"y":-105.64,"curve":0.25,"c3":0.75},{"time":0.6333,"x":-65.01,"y":-92.88,"curve":0.25,"c3":0.75},{"time":0.7333,"x":-11.12,"y":-118.4,"curve":0.25,"c3":0.75},{"time":0.9333,"x":-185.54,"y":-105.64}]},"蒸笼热气2":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气3":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气4":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气5":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气6":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气54":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气8":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气9":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气10":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气11":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气12":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气14":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气15":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气16":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气17":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气18":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气20":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气21":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气22":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气23":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气24":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气26":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气27":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气28":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气29":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气30":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气32":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气33":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气34":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气35":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气36":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气38":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气39":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气40":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气41":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气42":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气44":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气45":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气46":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气47":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气48":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气50":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气51":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气52":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气53":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"馒头":{"translate":[{"y":2.08,"curve":"stepped"},{"time":2,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.1667,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.3333,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.5,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.6667,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.8333,"y":-0.17,"curve":0.25,"c3":0.75},{"time":3,"y":2.08}],"scale":[{"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头3":{"translate":[{"x":-325.26,"y":250.78,"curve":0.25,"c3":0.75},{"time":0.1333,"x":-58.64,"y":244.67,"curve":0.25,"c3":0.75},{"time":0.2667,"x":5.4,"y":-1.11,"curve":0.25,"c3":0.75},{"time":0.4,"x":5.4,"curve":"stepped"},{"time":2,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头2":{"translate":[{"x":-204.87,"y":243.06,"curve":0.25,"c3":0.75},{"time":0.1333,"x":61.75,"y":236.94,"curve":0.25,"c3":0.75},{"time":0.2667,"x":-5.4,"y":-1.11,"curve":0.25,"c3":0.75},{"time":0.4,"x":-5.4,"curve":"stepped"},{"time":2,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":-5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"bone":{"scale":[{"x":0.9,"y":0.9}]}},"deform":{"default":{"蒸笼水雾4":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾3":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾8":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾2":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾6":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾9":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾7":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾5":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]}}}},"蒸红薯余2":{"slots":{"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"蒸笼手":{"attachment":[{"name":"蒸笼手"},{"time":0.2,"name":"蒸笼手2"},{"time":0.5333,"name":"蒸笼手"},{"time":0.9333,"name":null}]},"蒸笼水雾4":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼热气5":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"红薯":{"attachment":[{"name":"红薯熟"}]},"蒸笼热气":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾3":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼水雾8":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼热气8":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气9":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气6":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气7":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"红薯3":{"attachment":[{"name":"红薯熟"}]},"蒸笼水雾2":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"蒸笼热气4":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气3":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾5":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼水雾6":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"蒸笼水雾9":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"蒸笼热气2":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"蒸笼盖":{"attachment":[{"time":0.5333,"name":"蒸笼盖"},{"time":2.3333,"name":null}]},"蒸笼水雾":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"红薯2":{"attachment":[{"name":"红薯"},{"time":2,"name":"红薯熟"}]},"蒸笼水雾7":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]}},"bones":{"蒸笼":{"translate":[{"time":0.9333,"curve":0.25,"c3":0.75},{"time":1,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.0667,"curve":0.25,"c3":0.75},{"time":1.1333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.2,"curve":0.25,"c3":0.75},{"time":1.2667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.3333,"curve":0.25,"c3":0.75},{"time":1.4,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.4667,"curve":0.25,"c3":0.75},{"time":1.5333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.6,"curve":0.25,"c3":0.75},{"time":1.6667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.7333,"curve":0.25,"c3":0.75},{"time":1.8,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.8667,"curve":0.25,"c3":0.75},{"time":1.9333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":2}]},"蒸笼盖":{"rotate":[{"angle":64.3,"curve":"stepped"},{"time":0.5333,"angle":64.3,"curve":0.25,"c3":0.75},{"time":0.7333,"curve":"stepped"},{"time":2},{"time":2.3333,"angle":64.3}],"translate":[{"x":-41.74,"y":146.32,"curve":"stepped"},{"time":0.5333,"x":-41.74,"y":146.32,"curve":0.25,"c3":0.75},{"time":0.6333,"x":141.21,"y":74.71,"curve":0.25,"c3":0.75},{"time":0.7333,"x":211.13,"y":-59.41,"curve":"stepped"},{"time":0.9333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.0667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.1333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.2,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.2667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.3333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.4,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.4667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.5333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.6,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.6667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.7333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.8,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.8667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.9333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":2,"x":211.13,"y":-59.41},{"time":2.1667,"x":117.1,"y":57.69},{"time":2.3333,"x":-41.74,"y":146.32}]},"蒸笼手":{"rotate":[{"angle":6.42,"curve":"stepped"},{"time":0.1333,"angle":6.42,"curve":0.25,"c3":0.75},{"time":0.2333,"angle":-13.46,"curve":0.25,"c3":0.75},{"time":0.3333,"curve":"stepped"},{"time":0.5,"curve":0.25,"c3":0.75},{"time":0.5333,"angle":55.87,"curve":0.25,"c3":0.75},{"time":0.7333,"angle":-2.66,"curve":0.25,"c3":0.75},{"time":0.9333,"angle":55.87}],"translate":[{"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.1333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.2333,"x":61.87,"y":-48.61,"curve":0.25,"c3":0.75},{"time":0.3333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.5,"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.5333,"x":-185.54,"y":-105.64,"curve":0.25,"c3":0.75},{"time":0.6333,"x":-65.01,"y":-92.88,"curve":0.25,"c3":0.75},{"time":0.7333,"x":-11.12,"y":-118.4,"curve":0.25,"c3":0.75},{"time":0.9333,"x":-185.54,"y":-105.64}]},"蒸笼热气2":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气3":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气4":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气5":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气6":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气54":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气8":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气9":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气10":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气11":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气12":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气14":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气15":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气16":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气17":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气18":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气20":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气21":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气22":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气23":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气24":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气26":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气27":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气28":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气29":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气30":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气32":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气33":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气34":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气35":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气36":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气38":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气39":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气40":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气41":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气42":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气44":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气45":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气46":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气47":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气48":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气50":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气51":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气52":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气53":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"馒头":{"translate":[{"y":2.08,"curve":"stepped"},{"time":2,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.1667,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.3333,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.5,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.6667,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.8333,"y":-0.17,"curve":0.25,"c3":0.75},{"time":3,"y":2.08}],"scale":[{"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头3":{"translate":[{"x":5.4,"curve":"stepped"},{"time":2,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头2":{"translate":[{"x":-204.87,"y":243.06,"curve":0.25,"c3":0.75},{"time":0.1333,"x":61.75,"y":236.94,"curve":0.25,"c3":0.75},{"time":0.2667,"x":-5.4,"y":-1.11,"curve":0.25,"c3":0.75},{"time":0.4,"x":-5.4,"curve":"stepped"},{"time":2,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":-5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"bone":{"scale":[{"x":0.9,"y":0.9}]}},"deform":{"default":{"蒸笼水雾4":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾3":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾8":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾2":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾6":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾9":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾7":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾5":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]}}}},"蒸肉包":{"slots":{"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"馒头03":{"attachment":[{"name":"肉包"},{"time":2,"name":"肉包熟"}]},"蒸笼手":{"attachment":[{"name":"蒸笼手"},{"time":0.2,"name":"蒸笼手2"},{"time":0.5333,"name":"蒸笼手"},{"time":0.9333,"name":null}]},"蒸笼水雾4":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头3":{"attachment":[{"name":"肉包"},{"time":2,"name":"肉包熟"}]},"蒸笼热气5":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"馒头002":{"attachment":[{"name":"肉包"},{"time":2,"name":"肉包熟"}]},"馒头02":{"attachment":[{"name":"肉包"},{"time":2,"name":"肉包熟"}]},"蒸笼热气":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾3":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼水雾8":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头01":{"attachment":[{"name":"肉包"},{"time":2,"name":"肉包熟"}]},"蒸笼热气8":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气9":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气6":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气7":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾2":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"蒸笼热气4":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"馒头001":{"attachment":[{"name":"肉包"},{"time":2,"name":"肉包熟"}]},"蒸笼热气3":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾5":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头003":{"attachment":[{"name":"肉包"},{"time":2,"name":"肉包熟"}]},"蒸笼水雾6":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"馒头":{"attachment":[{"name":"肉包"},{"time":2,"name":"肉包熟"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"蒸笼水雾":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼热气2":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"蒸笼盖":{"attachment":[{"time":0.5333,"name":"蒸笼盖"},{"time":2.3333,"name":null}]},"馒头2":{"attachment":[{"name":"肉包"},{"time":2,"name":"肉包熟"}]},"蒸笼水雾7":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]},"蒸笼水雾9":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]}},"bones":{"蒸笼":{"translate":[{"time":0.9333,"curve":0.25,"c3":0.75},{"time":1,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.0667,"curve":0.25,"c3":0.75},{"time":1.1333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.2,"curve":0.25,"c3":0.75},{"time":1.2667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.3333,"curve":0.25,"c3":0.75},{"time":1.4,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.4667,"curve":0.25,"c3":0.75},{"time":1.5333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.6,"curve":0.25,"c3":0.75},{"time":1.6667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.7333,"curve":0.25,"c3":0.75},{"time":1.8,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.8667,"curve":0.25,"c3":0.75},{"time":1.9333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":2}]},"蒸笼盖":{"rotate":[{"angle":64.3,"curve":"stepped"},{"time":0.5333,"angle":64.3,"curve":0.25,"c3":0.75},{"time":0.7333,"curve":"stepped"},{"time":2},{"time":2.3333,"angle":64.3}],"translate":[{"x":-41.74,"y":146.32,"curve":"stepped"},{"time":0.5333,"x":-41.74,"y":146.32,"curve":0.25,"c3":0.75},{"time":0.6333,"x":141.21,"y":74.71,"curve":0.25,"c3":0.75},{"time":0.7333,"x":211.13,"y":-59.41,"curve":"stepped"},{"time":0.9333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.0667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.1333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.2,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.2667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.3333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.4,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.4667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.5333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.6,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.6667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.7333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.8,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.8667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.9333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":2,"x":211.13,"y":-59.41},{"time":2.1667,"x":117.1,"y":57.69},{"time":2.3333,"x":-41.74,"y":146.32}]},"蒸笼手":{"rotate":[{"angle":6.42,"curve":"stepped"},{"time":0.1333,"angle":6.42,"curve":0.25,"c3":0.75},{"time":0.2333,"angle":-13.46,"curve":0.25,"c3":0.75},{"time":0.3333,"curve":"stepped"},{"time":0.5,"curve":0.25,"c3":0.75},{"time":0.5333,"angle":55.87,"curve":0.25,"c3":0.75},{"time":0.7333,"angle":-2.66,"curve":0.25,"c3":0.75},{"time":0.9333,"angle":55.87}],"translate":[{"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.1333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.2333,"x":61.87,"y":-48.61,"curve":0.25,"c3":0.75},{"time":0.3333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.5,"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.5333,"x":-185.54,"y":-105.64,"curve":0.25,"c3":0.75},{"time":0.6333,"x":-65.01,"y":-92.88,"curve":0.25,"c3":0.75},{"time":0.7333,"x":-11.12,"y":-118.4,"curve":0.25,"c3":0.75},{"time":0.9333,"x":-185.54,"y":-105.64}]},"蒸笼热气2":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气3":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气4":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气5":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气6":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气54":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气8":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气9":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气10":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气11":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气12":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气14":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气15":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气16":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气17":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气18":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气20":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气21":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气22":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气23":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气24":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气26":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气27":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气28":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气29":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气30":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气32":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气33":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气34":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气35":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气36":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气38":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气39":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气40":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气41":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气42":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气44":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气45":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气46":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气47":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气48":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气50":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气51":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气52":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气53":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"馒头":{"translate":[{"x":-272.96,"y":212.17,"curve":0.25,"c3":0.75},{"time":0.1333,"x":-6.34,"y":206.06,"curve":0.25,"c3":0.75},{"time":0.2667,"y":0.96,"curve":0.25,"c3":0.75},{"time":0.4,"y":2.08,"curve":"stepped"},{"time":2,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.1667,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.3333,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.5,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.6667,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.8333,"y":-0.17,"curve":0.25,"c3":0.75},{"time":3,"y":2.08}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头3":{"translate":[{"x":-325.26,"y":250.78,"curve":0.25,"c3":0.75},{"time":0.1333,"x":-58.64,"y":244.67,"curve":0.25,"c3":0.75},{"time":0.2667,"x":5.4,"y":-1.11,"curve":0.25,"c3":0.75},{"time":0.4,"x":5.4,"curve":"stepped"},{"time":2,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头2":{"translate":[{"x":-204.87,"y":243.06,"curve":0.25,"c3":0.75},{"time":0.1333,"x":61.75,"y":236.94,"curve":0.25,"c3":0.75},{"time":0.2667,"x":-5.4,"y":-1.11,"curve":0.25,"c3":0.75},{"time":0.4,"x":-5.4,"curve":"stepped"},{"time":2,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":-5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"bone":{"scale":[{"x":0.9,"y":0.9}]}},"deform":{"default":{"蒸笼水雾4":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾3":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾8":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾2":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾6":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾9":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾7":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾5":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]}}}},"蒸肉包余1":{"slots":{"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"馒头03":{"attachment":[{"name":"肉包"},{"time":2,"name":"肉包熟"}]},"蒸笼手":{"attachment":[{"name":"蒸笼手"},{"time":0.2,"name":"蒸笼手2"},{"time":0.5333,"name":"蒸笼手"},{"time":0.9333,"name":null}]},"蒸笼水雾4":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头3":{"attachment":[{"name":"肉包熟"}]},"蒸笼热气5":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"馒头002":{"attachment":[{"name":"肉包"},{"time":2,"name":"肉包熟"}]},"馒头02":{"attachment":[{"name":"肉包"},{"time":2,"name":"肉包熟"}]},"蒸笼热气":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾3":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼水雾8":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头01":{"attachment":[{"name":"肉包"},{"time":2,"name":"肉包熟"}]},"蒸笼热气8":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气9":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气6":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气7":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾2":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"蒸笼热气4":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"馒头001":{"attachment":[{"name":"肉包"},{"time":2,"name":"肉包熟"}]},"蒸笼热气3":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾5":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头003":{"attachment":[{"name":"肉包"},{"time":2,"name":"肉包熟"}]},"蒸笼水雾6":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"馒头":{"attachment":[{"name":"肉包熟"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"蒸笼水雾":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼热气2":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"蒸笼盖":{"attachment":[{"time":0.5333,"name":"蒸笼盖"},{"time":2.3333,"name":null}]},"馒头2":{"attachment":[{"name":"肉包熟"}]},"蒸笼水雾7":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]},"蒸笼水雾9":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]}},"bones":{"蒸笼":{"translate":[{"time":0.9333,"curve":0.25,"c3":0.75},{"time":1,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.0667,"curve":0.25,"c3":0.75},{"time":1.1333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.2,"curve":0.25,"c3":0.75},{"time":1.2667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.3333,"curve":0.25,"c3":0.75},{"time":1.4,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.4667,"curve":0.25,"c3":0.75},{"time":1.5333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.6,"curve":0.25,"c3":0.75},{"time":1.6667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.7333,"curve":0.25,"c3":0.75},{"time":1.8,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.8667,"curve":0.25,"c3":0.75},{"time":1.9333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":2}]},"蒸笼盖":{"rotate":[{"angle":64.3,"curve":"stepped"},{"time":0.5333,"angle":64.3,"curve":0.25,"c3":0.75},{"time":0.7333,"curve":"stepped"},{"time":2},{"time":2.3333,"angle":64.3}],"translate":[{"x":-41.74,"y":146.32,"curve":"stepped"},{"time":0.5333,"x":-41.74,"y":146.32,"curve":0.25,"c3":0.75},{"time":0.6333,"x":141.21,"y":74.71,"curve":0.25,"c3":0.75},{"time":0.7333,"x":211.13,"y":-59.41,"curve":"stepped"},{"time":0.9333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.0667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.1333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.2,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.2667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.3333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.4,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.4667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.5333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.6,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.6667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.7333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.8,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.8667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.9333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":2,"x":211.13,"y":-59.41},{"time":2.1667,"x":117.1,"y":57.69},{"time":2.3333,"x":-41.74,"y":146.32}]},"蒸笼手":{"rotate":[{"angle":6.42,"curve":"stepped"},{"time":0.1333,"angle":6.42,"curve":0.25,"c3":0.75},{"time":0.2333,"angle":-13.46,"curve":0.25,"c3":0.75},{"time":0.3333,"curve":"stepped"},{"time":0.5,"curve":0.25,"c3":0.75},{"time":0.5333,"angle":55.87,"curve":0.25,"c3":0.75},{"time":0.7333,"angle":-2.66,"curve":0.25,"c3":0.75},{"time":0.9333,"angle":55.87}],"translate":[{"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.1333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.2333,"x":61.87,"y":-48.61,"curve":0.25,"c3":0.75},{"time":0.3333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.5,"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.5333,"x":-185.54,"y":-105.64,"curve":0.25,"c3":0.75},{"time":0.6333,"x":-65.01,"y":-92.88,"curve":0.25,"c3":0.75},{"time":0.7333,"x":-11.12,"y":-118.4,"curve":0.25,"c3":0.75},{"time":0.9333,"x":-185.54,"y":-105.64}]},"蒸笼热气2":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气3":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气4":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气5":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气6":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气54":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气8":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气9":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气10":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气11":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气12":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气14":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气15":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气16":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气17":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气18":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气20":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气21":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气22":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气23":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气24":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气26":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气27":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气28":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气29":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气30":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气32":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气33":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气34":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气35":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气36":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气38":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气39":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气40":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气41":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气42":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气44":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气45":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气46":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气47":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气48":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气50":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气51":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气52":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气53":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"馒头":{"translate":[{"y":2.08,"curve":"stepped"},{"time":2,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.1667,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.3333,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.5,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.6667,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.8333,"y":-0.17,"curve":0.25,"c3":0.75},{"time":3,"y":2.08}],"scale":[{"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头3":{"translate":[{"x":-325.26,"y":250.78,"curve":0.25,"c3":0.75},{"time":0.1333,"x":-58.64,"y":244.67,"curve":0.25,"c3":0.75},{"time":0.2667,"x":5.4,"y":-1.11,"curve":0.25,"c3":0.75},{"time":0.4,"x":5.4,"curve":"stepped"},{"time":2,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头2":{"translate":[{"x":-204.87,"y":243.06,"curve":0.25,"c3":0.75},{"time":0.1333,"x":61.75,"y":236.94,"curve":0.25,"c3":0.75},{"time":0.2667,"x":-5.4,"y":-1.11,"curve":0.25,"c3":0.75},{"time":0.4,"x":-5.4,"curve":"stepped"},{"time":2,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":-5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"bone":{"scale":[{"x":0.9,"y":0.9}]}},"deform":{"default":{"蒸笼水雾4":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾3":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾8":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾2":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾6":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾9":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾7":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾5":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]}}}},"蒸肉包余2":{"slots":{"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"馒头03":{"attachment":[{"name":"肉包"},{"time":2,"name":"肉包熟"}]},"蒸笼手":{"attachment":[{"name":"蒸笼手"},{"time":0.2,"name":"蒸笼手2"},{"time":0.5333,"name":"蒸笼手"},{"time":0.9333,"name":null}]},"蒸笼水雾4":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头3":{"attachment":[{"name":"肉包熟"}]},"蒸笼热气5":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"馒头002":{"attachment":[{"name":"肉包熟"}]},"馒头02":{"attachment":[{"name":"肉包"},{"time":2,"name":"肉包熟"}]},"蒸笼热气":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾3":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼水雾8":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头01":{"attachment":[{"name":"肉包"},{"time":2,"name":"肉包熟"}]},"蒸笼热气8":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气9":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气6":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气7":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾2":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"蒸笼热气4":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"馒头001":{"attachment":[{"name":"肉包熟"}]},"蒸笼热气3":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾5":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头003":{"attachment":[{"name":"肉包熟"}]},"蒸笼水雾6":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"馒头":{"attachment":[{"name":"肉包熟"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"蒸笼水雾":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼热气2":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"蒸笼盖":{"attachment":[{"time":0.5333,"name":"蒸笼盖"},{"time":2.3333,"name":null}]},"馒头2":{"attachment":[{"name":"肉包熟"}]},"蒸笼水雾7":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]},"蒸笼水雾9":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]}},"bones":{"蒸笼":{"translate":[{"time":0.9333,"curve":0.25,"c3":0.75},{"time":1,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.0667,"curve":0.25,"c3":0.75},{"time":1.1333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.2,"curve":0.25,"c3":0.75},{"time":1.2667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.3333,"curve":0.25,"c3":0.75},{"time":1.4,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.4667,"curve":0.25,"c3":0.75},{"time":1.5333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.6,"curve":0.25,"c3":0.75},{"time":1.6667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.7333,"curve":0.25,"c3":0.75},{"time":1.8,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.8667,"curve":0.25,"c3":0.75},{"time":1.9333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":2}]},"蒸笼盖":{"rotate":[{"angle":64.3,"curve":"stepped"},{"time":0.5333,"angle":64.3,"curve":0.25,"c3":0.75},{"time":0.7333,"curve":"stepped"},{"time":2},{"time":2.3333,"angle":64.3}],"translate":[{"x":-41.74,"y":146.32,"curve":"stepped"},{"time":0.5333,"x":-41.74,"y":146.32,"curve":0.25,"c3":0.75},{"time":0.6333,"x":141.21,"y":74.71,"curve":0.25,"c3":0.75},{"time":0.7333,"x":211.13,"y":-59.41,"curve":"stepped"},{"time":0.9333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.0667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.1333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.2,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.2667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.3333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.4,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.4667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.5333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.6,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.6667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.7333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.8,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.8667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.9333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":2,"x":211.13,"y":-59.41},{"time":2.1667,"x":117.1,"y":57.69},{"time":2.3333,"x":-41.74,"y":146.32}]},"蒸笼手":{"rotate":[{"angle":6.42,"curve":"stepped"},{"time":0.1333,"angle":6.42,"curve":0.25,"c3":0.75},{"time":0.2333,"angle":-13.46,"curve":0.25,"c3":0.75},{"time":0.3333,"curve":"stepped"},{"time":0.5,"curve":0.25,"c3":0.75},{"time":0.5333,"angle":55.87,"curve":0.25,"c3":0.75},{"time":0.7333,"angle":-2.66,"curve":0.25,"c3":0.75},{"time":0.9333,"angle":55.87}],"translate":[{"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.1333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.2333,"x":61.87,"y":-48.61,"curve":0.25,"c3":0.75},{"time":0.3333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.5,"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.5333,"x":-185.54,"y":-105.64,"curve":0.25,"c3":0.75},{"time":0.6333,"x":-65.01,"y":-92.88,"curve":0.25,"c3":0.75},{"time":0.7333,"x":-11.12,"y":-118.4,"curve":0.25,"c3":0.75},{"time":0.9333,"x":-185.54,"y":-105.64}]},"蒸笼热气2":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气3":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气4":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气5":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气6":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气54":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气8":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气9":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气10":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气11":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气12":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气14":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气15":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气16":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气17":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气18":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气20":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气21":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气22":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气23":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气24":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气26":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气27":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气28":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气29":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气30":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气32":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气33":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气34":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气35":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气36":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气38":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气39":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气40":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气41":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气42":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气44":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气45":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气46":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气47":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气48":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气50":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气51":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气52":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气53":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"馒头":{"translate":[{"y":2.08,"curve":"stepped"},{"time":2,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.1667,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.3333,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.5,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.6667,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.8333,"y":-0.17,"curve":0.25,"c3":0.75},{"time":3,"y":2.08}],"scale":[{"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头3":{"translate":[{"x":5.4,"curve":"stepped"},{"time":2,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头2":{"translate":[{"x":-204.87,"y":243.06,"curve":0.25,"c3":0.75},{"time":0.1333,"x":61.75,"y":236.94,"curve":0.25,"c3":0.75},{"time":0.2667,"x":-5.4,"y":-1.11,"curve":0.25,"c3":0.75},{"time":0.4,"x":-5.4,"curve":"stepped"},{"time":2,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":-5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"bone":{"scale":[{"x":0.9,"y":0.9}]}},"deform":{"default":{"蒸笼水雾4":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾3":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾8":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾2":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾6":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾9":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾7":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾5":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]}}}},"蒸馒头":{"slots":{"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"馒头03":{"attachment":[{"name":"馒头"},{"time":2,"name":"馒头熟"}]},"蒸笼手":{"attachment":[{"name":"蒸笼手"},{"time":0.2,"name":"蒸笼手2"},{"time":0.5333,"name":"蒸笼手"},{"time":0.9333,"name":null}]},"蒸笼水雾4":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头3":{"attachment":[{"name":"馒头"},{"time":2,"name":"馒头熟"}]},"蒸笼热气5":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"馒头002":{"attachment":[{"name":"馒头"},{"time":2,"name":"馒头熟"}]},"馒头02":{"attachment":[{"name":"馒头"},{"time":2,"name":"馒头熟"}]},"蒸笼热气":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾3":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼水雾8":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头01":{"attachment":[{"name":"馒头"},{"time":2,"name":"馒头熟"}]},"蒸笼热气8":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气9":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气6":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气7":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾2":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"蒸笼热气4":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"馒头001":{"attachment":[{"name":"馒头"},{"time":2,"name":"馒头熟"}]},"蒸笼热气3":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾5":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头003":{"attachment":[{"name":"馒头"},{"time":2,"name":"馒头熟"}]},"蒸笼水雾6":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"馒头":{"attachment":[{"name":"馒头"},{"time":2,"name":"馒头熟"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"蒸笼水雾":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼热气2":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"蒸笼盖":{"attachment":[{"time":0.5333,"name":"蒸笼盖"},{"time":2.3333,"name":null}]},"馒头2":{"attachment":[{"name":"馒头"},{"time":2,"name":"馒头熟"}]},"蒸笼水雾7":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]},"蒸笼水雾9":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]}},"bones":{"蒸笼":{"translate":[{"time":0.9333,"curve":0.25,"c3":0.75},{"time":1,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.0667,"curve":0.25,"c3":0.75},{"time":1.1333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.2,"curve":0.25,"c3":0.75},{"time":1.2667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.3333,"curve":0.25,"c3":0.75},{"time":1.4,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.4667,"curve":0.25,"c3":0.75},{"time":1.5333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.6,"curve":0.25,"c3":0.75},{"time":1.6667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.7333,"curve":0.25,"c3":0.75},{"time":1.8,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.8667,"curve":0.25,"c3":0.75},{"time":1.9333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":2}]},"蒸笼盖":{"rotate":[{"angle":64.3,"curve":"stepped"},{"time":0.5333,"angle":64.3,"curve":0.25,"c3":0.75},{"time":0.7333,"curve":"stepped"},{"time":2},{"time":2.3333,"angle":64.3}],"translate":[{"x":-41.74,"y":146.32,"curve":"stepped"},{"time":0.5333,"x":-41.74,"y":146.32,"curve":0.25,"c3":0.75},{"time":0.6333,"x":141.21,"y":74.71,"curve":0.25,"c3":0.75},{"time":0.7333,"x":211.13,"y":-59.41,"curve":"stepped"},{"time":0.9333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.0667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.1333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.2,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.2667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.3333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.4,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.4667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.5333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.6,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.6667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.7333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.8,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.8667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.9333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":2,"x":211.13,"y":-59.41},{"time":2.1667,"x":117.1,"y":57.69},{"time":2.3333,"x":-41.74,"y":146.32}]},"蒸笼手":{"rotate":[{"angle":6.42,"curve":"stepped"},{"time":0.1333,"angle":6.42,"curve":0.25,"c3":0.75},{"time":0.2333,"angle":-13.46,"curve":0.25,"c3":0.75},{"time":0.3333,"curve":"stepped"},{"time":0.5,"curve":0.25,"c3":0.75},{"time":0.5333,"angle":55.87,"curve":0.25,"c3":0.75},{"time":0.7333,"angle":-2.66,"curve":0.25,"c3":0.75},{"time":0.9333,"angle":55.87}],"translate":[{"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.1333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.2333,"x":61.87,"y":-48.61,"curve":0.25,"c3":0.75},{"time":0.3333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.5,"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.5333,"x":-185.54,"y":-105.64,"curve":0.25,"c3":0.75},{"time":0.6333,"x":-65.01,"y":-92.88,"curve":0.25,"c3":0.75},{"time":0.7333,"x":-11.12,"y":-118.4,"curve":0.25,"c3":0.75},{"time":0.9333,"x":-185.54,"y":-105.64}]},"蒸笼热气2":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气3":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气4":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气5":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气6":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气54":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气8":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气9":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气10":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气11":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气12":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气14":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气15":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气16":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气17":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气18":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气20":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气21":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气22":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气23":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气24":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气26":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气27":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气28":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气29":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气30":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气32":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气33":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气34":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气35":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气36":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气38":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气39":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气40":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气41":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气42":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气44":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气45":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气46":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气47":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气48":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气50":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气51":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气52":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气53":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"馒头":{"translate":[{"x":-272.96,"y":212.17,"curve":0.25,"c3":0.75},{"time":0.1333,"x":-6.34,"y":206.06,"curve":0.25,"c3":0.75},{"time":0.2667,"y":0.96,"curve":0.25,"c3":0.75},{"time":0.4,"y":2.08,"curve":"stepped"},{"time":2,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.1667,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.3333,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.5,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.6667,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.8333,"y":-0.17,"curve":0.25,"c3":0.75},{"time":3,"y":2.08}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头3":{"translate":[{"x":-325.26,"y":250.78,"curve":0.25,"c3":0.75},{"time":0.1333,"x":-58.64,"y":244.67,"curve":0.25,"c3":0.75},{"time":0.2667,"x":5.4,"y":-1.11,"curve":0.25,"c3":0.75},{"time":0.4,"x":5.4,"curve":"stepped"},{"time":2,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头2":{"translate":[{"x":-204.87,"y":243.06,"curve":0.25,"c3":0.75},{"time":0.1333,"x":61.75,"y":236.94,"curve":0.25,"c3":0.75},{"time":0.2667,"x":-5.4,"y":-1.11,"curve":0.25,"c3":0.75},{"time":0.4,"x":-5.4,"curve":"stepped"},{"time":2,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":-5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"bone":{"scale":[{"x":0.9,"y":0.9}]}},"deform":{"default":{"蒸笼水雾4":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾3":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾8":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾2":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾6":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾9":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾7":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾5":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]}}}},"蒸馒头余1":{"slots":{"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"馒头03":{"attachment":[{"name":"馒头"},{"time":2,"name":"馒头熟"}]},"蒸笼手":{"attachment":[{"name":"蒸笼手"},{"time":0.2,"name":"蒸笼手2"},{"time":0.5333,"name":"蒸笼手"},{"time":0.9333,"name":null}]},"蒸笼水雾4":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头3":{"attachment":[{"name":"馒头熟"}]},"蒸笼热气5":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"馒头002":{"attachment":[{"name":"馒头"},{"time":2,"name":"馒头熟"}]},"馒头02":{"attachment":[{"name":"馒头"},{"time":2,"name":"馒头熟"}]},"蒸笼热气":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾3":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼水雾8":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头01":{"attachment":[{"name":"馒头"},{"time":2,"name":"馒头熟"}]},"蒸笼热气8":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气9":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气6":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气7":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾2":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"蒸笼热气4":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"馒头001":{"attachment":[{"name":"馒头"},{"time":2,"name":"馒头熟"}]},"蒸笼热气3":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾5":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头003":{"attachment":[{"name":"馒头"},{"time":2,"name":"馒头熟"}]},"蒸笼水雾6":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"馒头":{"attachment":[{"name":"馒头熟"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"蒸笼水雾":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼热气2":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"蒸笼盖":{"attachment":[{"time":0.5333,"name":"蒸笼盖"},{"time":2.3333,"name":null}]},"馒头2":{"attachment":[{"name":"馒头熟"}]},"蒸笼水雾7":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]},"蒸笼水雾9":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]}},"bones":{"蒸笼":{"translate":[{"time":0.9333,"curve":0.25,"c3":0.75},{"time":1,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.0667,"curve":0.25,"c3":0.75},{"time":1.1333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.2,"curve":0.25,"c3":0.75},{"time":1.2667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.3333,"curve":0.25,"c3":0.75},{"time":1.4,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.4667,"curve":0.25,"c3":0.75},{"time":1.5333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.6,"curve":0.25,"c3":0.75},{"time":1.6667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.7333,"curve":0.25,"c3":0.75},{"time":1.8,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.8667,"curve":0.25,"c3":0.75},{"time":1.9333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":2}]},"蒸笼盖":{"rotate":[{"angle":64.3,"curve":"stepped"},{"time":0.5333,"angle":64.3,"curve":0.25,"c3":0.75},{"time":0.7333,"curve":"stepped"},{"time":2},{"time":2.3333,"angle":64.3}],"translate":[{"x":-41.74,"y":146.32,"curve":"stepped"},{"time":0.5333,"x":-41.74,"y":146.32,"curve":0.25,"c3":0.75},{"time":0.6333,"x":141.21,"y":74.71,"curve":0.25,"c3":0.75},{"time":0.7333,"x":211.13,"y":-59.41,"curve":"stepped"},{"time":0.9333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.0667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.1333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.2,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.2667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.3333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.4,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.4667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.5333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.6,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.6667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.7333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.8,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.8667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.9333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":2,"x":211.13,"y":-59.41},{"time":2.1667,"x":117.1,"y":57.69},{"time":2.3333,"x":-41.74,"y":146.32}]},"蒸笼手":{"rotate":[{"angle":6.42,"curve":"stepped"},{"time":0.1333,"angle":6.42,"curve":0.25,"c3":0.75},{"time":0.2333,"angle":-13.46,"curve":0.25,"c3":0.75},{"time":0.3333,"curve":"stepped"},{"time":0.5,"curve":0.25,"c3":0.75},{"time":0.5333,"angle":55.87,"curve":0.25,"c3":0.75},{"time":0.7333,"angle":-2.66,"curve":0.25,"c3":0.75},{"time":0.9333,"angle":55.87}],"translate":[{"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.1333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.2333,"x":61.87,"y":-48.61,"curve":0.25,"c3":0.75},{"time":0.3333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.5,"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.5333,"x":-185.54,"y":-105.64,"curve":0.25,"c3":0.75},{"time":0.6333,"x":-65.01,"y":-92.88,"curve":0.25,"c3":0.75},{"time":0.7333,"x":-11.12,"y":-118.4,"curve":0.25,"c3":0.75},{"time":0.9333,"x":-185.54,"y":-105.64}]},"蒸笼热气2":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气3":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气4":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气5":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气6":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气54":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气8":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气9":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气10":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气11":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气12":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气14":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气15":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气16":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气17":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气18":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气20":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气21":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气22":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气23":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气24":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气26":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气27":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气28":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气29":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气30":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气32":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气33":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气34":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气35":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气36":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气38":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气39":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气40":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气41":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气42":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气44":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气45":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气46":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气47":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气48":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气50":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气51":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气52":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气53":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"馒头":{"translate":[{"y":2.08,"curve":"stepped"},{"time":2,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.1667,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.3333,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.5,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.6667,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.8333,"y":-0.17,"curve":0.25,"c3":0.75},{"time":3,"y":2.08}],"scale":[{"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头3":{"translate":[{"x":-325.26,"y":250.78,"curve":0.25,"c3":0.75},{"time":0.1333,"x":-58.64,"y":244.67,"curve":0.25,"c3":0.75},{"time":0.2667,"x":5.4,"y":-1.11,"curve":0.25,"c3":0.75},{"time":0.4,"x":5.4,"curve":"stepped"},{"time":2,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头2":{"translate":[{"x":-204.87,"y":243.06,"curve":0.25,"c3":0.75},{"time":0.1333,"x":61.75,"y":236.94,"curve":0.25,"c3":0.75},{"time":0.2667,"x":-5.4,"y":-1.11,"curve":0.25,"c3":0.75},{"time":0.4,"x":-5.4,"curve":"stepped"},{"time":2,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":-5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"bone":{"scale":[{"x":0.9,"y":0.9}]}},"deform":{"default":{"蒸笼水雾4":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾3":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾8":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾2":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾6":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾9":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾7":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾5":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]}}}},"蒸馒头余2":{"slots":{"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"馒头03":{"attachment":[{"name":"馒头"},{"time":2,"name":"馒头熟"}]},"蒸笼手":{"attachment":[{"name":"蒸笼手"},{"time":0.2,"name":"蒸笼手2"},{"time":0.5333,"name":"蒸笼手"},{"time":0.9333,"name":null}]},"蒸笼水雾4":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头3":{"attachment":[{"name":"馒头熟"}]},"蒸笼热气5":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"馒头002":{"attachment":[{"name":"馒头熟"}]},"馒头02":{"attachment":[{"name":"馒头"},{"time":2,"name":"馒头熟"}]},"蒸笼热气":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾3":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼水雾8":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头01":{"attachment":[{"name":"馒头"},{"time":2,"name":"馒头熟"}]},"蒸笼热气8":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气9":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气6":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼热气7":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾2":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"蒸笼热气4":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1.6,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":2.2667,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"馒头001":{"attachment":[{"name":"馒头熟"}]},"蒸笼热气3":{"color":[{"time":0.9333,"color":"ffffff00","curve":0.375,"c2":0.62,"c3":0.716},{"time":1.0667,"color":"ffffffff","curve":0.25,"c3":0.75},{"time":1.7333,"color":"ffffff00","curve":0.243,"c3":0.68,"c4":0.71},{"time":2.2667,"color":"ffffffdd","curve":0.375,"c2":0.62,"c3":0.716},{"time":3,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼水雾5":{"color":[{"time":2,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":2.1667,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":2.6667,"color":"ffffff00","curve":0.243,"c3":0.649,"c4":0.6},{"time":3,"color":"ffffff49","curve":0.382,"c2":0.57,"c3":0.735},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"馒头003":{"attachment":[{"name":"馒头熟"}]},"蒸笼水雾6":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]},"馒头":{"attachment":[{"name":"馒头熟"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"蒸笼水雾":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼热气2":{"color":[{"time":0.9333,"color":"ffffff00","curve":"stepped"},{"time":1.3333,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2,"color":"ffffffff","curve":0.258,"c3":0.619,"c4":0.45},{"time":2.2667,"color":"ffffffa1","curve":0.363,"c2":0.44,"c3":0.755},{"time":2.6333,"color":"ffffff00"}],"attachment":[{"time":0.9333,"name":"蒸笼热气"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"蒸笼盖":{"attachment":[{"time":0.5333,"name":"蒸笼盖"},{"time":2.3333,"name":null}]},"馒头2":{"attachment":[{"name":"馒头熟"}]},"蒸笼水雾7":{"color":[{"time":2,"color":"ffffff00","curve":0.25,"c3":0.75},{"time":2.5,"color":"ffffff66","curve":0.25,"c3":0.75},{"time":3,"color":"ffffff00"},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]},"蒸笼水雾9":{"color":[{"time":2,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":2.3333,"color":"ffffff00","curve":0.333,"c2":0.33,"c3":0.758},{"time":2.8333,"color":"ffffff66","curve":0.265,"c3":0.618,"c4":0.43},{"time":3,"color":"ffffff49","curve":0.351,"c2":0.4,"c3":0.757},{"time":3.5,"color":"ffffff00"}],"attachment":[{"time":2,"name":"蒸笼水雾2"}]}},"bones":{"蒸笼":{"translate":[{"time":0.9333,"curve":0.25,"c3":0.75},{"time":1,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.0667,"curve":0.25,"c3":0.75},{"time":1.1333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.2,"curve":0.25,"c3":0.75},{"time":1.2667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.3333,"curve":0.25,"c3":0.75},{"time":1.4,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.4667,"curve":0.25,"c3":0.75},{"time":1.5333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.6,"curve":0.25,"c3":0.75},{"time":1.6667,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.7333,"curve":0.25,"c3":0.75},{"time":1.8,"y":-0.74,"curve":0.25,"c3":0.75},{"time":1.8667,"curve":0.25,"c3":0.75},{"time":1.9333,"y":-0.74,"curve":0.25,"c3":0.75},{"time":2}]},"蒸笼盖":{"rotate":[{"angle":64.3,"curve":"stepped"},{"time":0.5333,"angle":64.3,"curve":0.25,"c3":0.75},{"time":0.7333,"curve":"stepped"},{"time":2},{"time":2.3333,"angle":64.3}],"translate":[{"x":-41.74,"y":146.32,"curve":"stepped"},{"time":0.5333,"x":-41.74,"y":146.32,"curve":0.25,"c3":0.75},{"time":0.6333,"x":141.21,"y":74.71,"curve":0.25,"c3":0.75},{"time":0.7333,"x":211.13,"y":-59.41,"curve":"stepped"},{"time":0.9333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.0667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.1333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.2,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.2667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.3333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.4,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.4667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.5333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.6,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.6667,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.7333,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.8,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":1.8667,"x":211.13,"y":-59.41,"curve":0.25,"c3":0.75},{"time":1.9333,"x":211.13,"y":-60.39,"curve":0.25,"c3":0.75},{"time":2,"x":211.13,"y":-59.41},{"time":2.1667,"x":117.1,"y":57.69},{"time":2.3333,"x":-41.74,"y":146.32}]},"蒸笼手":{"rotate":[{"angle":6.42,"curve":"stepped"},{"time":0.1333,"angle":6.42,"curve":0.25,"c3":0.75},{"time":0.2333,"angle":-13.46,"curve":0.25,"c3":0.75},{"time":0.3333,"curve":"stepped"},{"time":0.5,"curve":0.25,"c3":0.75},{"time":0.5333,"angle":55.87,"curve":0.25,"c3":0.75},{"time":0.7333,"angle":-2.66,"curve":0.25,"c3":0.75},{"time":0.9333,"angle":55.87}],"translate":[{"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.1333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.2333,"x":61.87,"y":-48.61,"curve":0.25,"c3":0.75},{"time":0.3333,"x":72.18,"curve":0.25,"c3":0.75},{"time":0.5,"x":-164.98,"curve":0.25,"c3":0.75},{"time":0.5333,"x":-185.54,"y":-105.64,"curve":0.25,"c3":0.75},{"time":0.6333,"x":-65.01,"y":-92.88,"curve":0.25,"c3":0.75},{"time":0.7333,"x":-11.12,"y":-118.4,"curve":0.25,"c3":0.75},{"time":0.9333,"x":-185.54,"y":-105.64}]},"蒸笼热气2":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气3":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气4":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气5":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气6":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气54":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气8":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气9":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气10":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气11":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气12":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气14":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气15":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气16":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气17":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气18":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气20":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气21":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气22":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气23":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气24":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气26":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气27":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气28":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气29":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气30":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气32":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气33":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气34":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气35":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气36":{"translate":[{"time":0.9333,"x":4.65,"y":-83.1,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":1.7333,"x":2.54,"y":-133.56,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":4.65,"y":-83.1,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":8.03,"y":-2}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气38":{"translate":[{"time":0.9333,"x":-18.23,"y":-33.92,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-18.23,"y":-33.92,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-7.57,"y":-14.09}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气39":{"translate":[{"time":0.9333,"x":-4.24,"y":-76.74,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":-4.24,"y":-76.74,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-1.76,"y":-31.87}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气40":{"translate":[{"time":0.9333,"x":-37.74,"y":-159.42,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":2.2667,"x":-37.74,"y":-159.42,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-17.65,"y":-48.61}],"scale":[{"time":0.9333,"x":0.215,"y":0.215,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.215,"y":0.215,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.674,"y":0.674}]},"蒸笼热气41":{"translate":[{"time":0.9333,"x":-61.48,"y":-115.75,"curve":0.25,"c3":0.75},{"time":2.2333,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":2.2667,"x":-61.48,"y":-115.75,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":-30.49,"y":-46.83}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气42":{"translate":[{"time":0.9333,"x":2.54,"y":-133.56,"curve":0.25,"c3":0.75},{"time":2.2333,"x":8.06,"y":-1.27,"curve":"stepped"},{"time":2.2667,"x":2.54,"y":-133.56,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":5.77,"y":-56.21}],"scale":[{"time":0.9333,"x":0.394,"y":0.394,"curve":0.25,"c3":0.75},{"time":2.2333,"curve":"stepped"},{"time":2.2667,"x":0.394,"y":0.394,"curve":0.247,"c3":0.632,"c4":0.53},{"time":3,"x":0.748,"y":0.748}]},"蒸笼热气44":{"translate":[{"time":0.9333,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":8.9,"y":21.62,"curve":"stepped"},{"time":1.3333,"x":-18.23,"y":-33.92,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":2.94,"y":9.42,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":8.9,"y":21.62,"curve":"stepped"},{"time":2.6667,"x":-18.23,"y":-33.92,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-13.01,"y":-23.23}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气45":{"translate":[{"time":0.9333,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":1.3333,"x":-4.24,"y":-76.74,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-9.2,"y":-30.1,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-10.6,"y":-16.96,"curve":"stepped"},{"time":2.6667,"x":-4.24,"y":-76.74,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-5.46,"y":-65.24}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气46":{"translate":[{"time":0.9333,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":1.3333,"x":-37.74,"y":-159.42,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-3.99,"y":-45.63,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":5.51,"y":-13.57,"curve":"stepped"},{"time":2.6667,"x":-37.74,"y":-159.42,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-29.41,"y":-131.36}],"scale":[{"time":0.9333,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.215,"y":0.215,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.827,"y":0.827,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.215,"y":0.215,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.366,"y":0.366}]},"蒸笼热气47":{"translate":[{"time":0.9333,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":1.3333,"x":-61.48,"y":-115.75,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":-29.39,"y":-25.77,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":-20.35,"y":-0.42,"curve":"stepped"},{"time":2.6667,"x":-61.48,"y":-115.75,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":-53.57,"y":-93.56}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气48":{"translate":[{"time":0.9333,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":1.3333,"x":2.54,"y":-133.56,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":4.2,"y":-34.65,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"x":4.66,"y":-6.78,"curve":"stepped"},{"time":2.6667,"x":2.54,"y":-133.56,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":2.95,"y":-109.17}],"scale":[{"time":0.9333,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":1.3,"curve":"stepped"},{"time":1.3333,"x":0.394,"y":0.394,"curve":0.243,"c3":0.659,"c4":0.64},{"time":2.2667,"x":0.867,"y":0.867,"curve":0.381,"c2":0.59,"c3":0.729},{"time":2.6333,"curve":"stepped"},{"time":2.6667,"x":0.394,"y":0.394,"curve":0.275,"c3":0.62,"c4":0.4},{"time":3,"x":0.51,"y":0.51}]},"蒸笼热气50":{"translate":[{"time":0.9333,"x":-11.28,"y":-20.98,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-18.23,"y":-33.92,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-11.28,"y":-20.98,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.1,"y":-0.19}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气51":{"translate":[{"time":0.9333,"x":-2.62,"y":-47.47,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":-4.24,"y":-76.74,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-2.62,"y":-47.47,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-0.02,"y":-0.42}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"蒸笼热气52":{"translate":[{"time":0.9333,"x":-24.64,"y":-87.14,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-3.39,"y":30.1,"curve":"stepped"},{"time":1.7333,"x":-37.74,"y":-159.42,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-24.64,"y":-87.14,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-3.58,"y":29.07}],"scale":[{"time":0.9333,"x":0.514,"y":0.514,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.215,"y":0.215,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.514,"y":0.514,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.996,"y":0.996}]},"蒸笼热气53":{"translate":[{"time":0.9333,"x":-41.27,"y":-70.79,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"x":-8.48,"y":2.12,"curve":"stepped"},{"time":1.7333,"x":-61.48,"y":-115.75,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":-41.27,"y":-70.79,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":-8.77,"y":1.48}],"scale":[{"time":0.9333,"x":0.625,"y":0.625,"curve":0.364,"c2":0.45,"c3":0.755},{"time":1.7,"curve":"stepped"},{"time":1.7333,"x":0.394,"y":0.394,"curve":0.257,"c3":0.619,"c4":0.46},{"time":2.2667,"x":0.625,"y":0.625,"curve":0.36,"c2":0.43,"c3":0.745,"c4":0.96},{"time":3,"x":0.997,"y":0.997}]},"馒头":{"translate":[{"y":2.08,"curve":"stepped"},{"time":2,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.1667,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.3333,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.5,"y":-0.17,"curve":0.25,"c3":0.75},{"time":2.6667,"y":2.08,"curve":0.25,"c3":0.75},{"time":2.8333,"y":-0.17,"curve":0.25,"c3":0.75},{"time":3,"y":2.08}],"scale":[{"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头3":{"translate":[{"x":5.4,"curve":"stepped"},{"time":2,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"馒头2":{"translate":[{"x":-204.87,"y":243.06,"curve":0.25,"c3":0.75},{"time":0.1333,"x":61.75,"y":236.94,"curve":0.25,"c3":0.75},{"time":0.2667,"x":-5.4,"y":-1.11,"curve":0.25,"c3":0.75},{"time":0.4,"x":-5.4,"curve":"stepped"},{"time":2,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.1667,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.3333,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.5,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":2.6667,"x":-5.4,"curve":0.25,"c3":0.75},{"time":2.8333,"x":-5.4,"y":-2.25,"curve":0.25,"c3":0.75},{"time":3,"x":-5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":0.1333,"x":1.111,"curve":0.25,"c3":0.75},{"time":0.2667,"x":1.075,"y":0.946,"curve":0.25,"c3":0.75},{"time":0.4,"x":1.111,"curve":"stepped"},{"time":2,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.1667,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.3333,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.5,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":2.6667,"x":1.111,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2.8333,"x":1.111,"y":0.965,"curve":0.375,"c2":0.5,"c3":0.75},{"time":3,"x":1.111,"curve":"stepped"},{"time":3.1,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.245,"y":1.081,"curve":0.25,"c3":0.75},{"time":3.5,"x":1.111}]},"bone":{"scale":[{"x":0.9,"y":0.9}]}},"deform":{"default":{"蒸笼水雾4":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾3":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾8":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]},"蒸笼水雾":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾2":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾6":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾9":{"蒸笼水雾2":[{"time":2,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":2.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":2.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.243,"c3":0.653,"c4":0.62},{"time":3,"offset":24,"vertices":[2.3909,9.59409,-9.22075,19.54699,-9.22075,19.54699,-9.22075,19.54699,-11.06934,17.79569,-11.06934,17.79569,-11.06934,17.79569,-1.7561,7.52054,0,0,0,0,0,0,0.77836,0.38918,-0.97293,-1.07025,4.99719,0.71136,-2.63174,5.86653,4.0449,4.64795,-11.06934,15.26604,3.26655,3.86959,-12.72334,14.97414,3.16927,6.78845,-13.01522,14.0985,3.75303,7.8428,-9.22075,19.54699,2.3909,9.59409],"curve":0.382,"c2":0.58,"c3":0.733},{"time":3.3,"offset":24,"vertices":[3.07196,14.84799,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-11.26392,27.13596,-2.04797,12.28796,0,0,0,0,0,0,0,0,0,0,4.60803,2.55995,-2.04797,12.28796,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,11.26398,-11.26392,27.13596,3.07196,14.84799,-11.26392,27.13596,3.07196,14.84799],"curve":"stepped"},{"time":3.3333,"offset":24,"vertices":[0.40228,-5.74673,-3.25493,-2.61196,-3.25493,-2.61196,-3.25493,-2.61196,-10.5012,-9.47688,-10.5012,-9.47688,-10.5012,-9.47688,-0.90386,-6.39982,0,0,0,0,0,0,3.05108,1.52555,-3.81379,-4.19526,6.1335,-4.68631,-4.33629,-12.88336,6.8858,-14.67013,-10.5012,-19.39285,3.83472,-17.72123,-16.98472,-20.53705,3.45341,-6.27962,-18.12883,-23.96944,5.74168,-12.6116,-3.25493,-2.61196,0.40228,-5.74673],"curve":0.289,"c3":0.628,"c4":0.38},{"time":3.5,"offset":24,"vertices":[0.67563,-3.63808,-4.07496,0.43388,-4.07496,0.43388,-4.07496,0.43388,-10.5793,-5.72815,-10.5793,-5.72815,-10.5793,-5.72815,-1.021,-4.48641,0,0,0,0,0,0,2.73868,1.36935,-3.4233,-3.76572,5.97731,-3.94438,-4.102,-10.30611,6.49531,-12.01478,-10.5793,-14.62885,3.75662,-14.75348,-16.39897,-15.6559,3.41435,-4.48337,-17.42595,-18.73685,5.46833,-9.80006,-4.07496,0.43388,0.67563,-3.63808]}]},"蒸笼水雾7":{"蒸笼水雾":[{"time":2,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.25,"c3":0.75},{"time":2.9667,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":3,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.249,"c3":0.627,"c4":0.51},{"time":3.5,"vertices":[-14.19619,2.36603,0,0,8.37213,2.36605,4.91407,4.36806,9.23988,7.25995,15.21384,-0.64616,15.79196,-2.02219,5.82408,-10.92016,6.18808,-14.37822,3.64005,-8.00811,-15.35991,41.80122,-28.69217,18.44137,-31.0582,21.89941,-27.23616,24.81145,-23.77808,29.36151,-20.34207,13.56577,-18.80602,10.07181,-17.50815,5.70004,-3.82204,2.53795,-6.41611,5.25792,-3.60603,-2.95424,-7.52011,-7.40228,-10.67207,-4.15839,-16.36002,24.91535]}]},"蒸笼水雾5":{"蒸笼水雾":[{"time":2,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.354,"c2":0.41,"c3":0.757},{"time":2.6333,"offset":8,"vertices":[14.33594,11.26402,23.03992,9.72801,14.33594,11.26402,0,0,0,0,0,0,-15.35986,88.5759,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-17.40796,59.39197,-14.33594,28.67203,-12.79987,20.99197,-7.67999,4.60803,0,5.63197,-2.04803,11.26402,-0.51196,14.33604,-4.60803,12.80003,-9.216,21.50403,-11.26392,66.04797],"curve":"stepped"},{"time":2.6667,"vertices":[-29.74789,4.95797,0,0,17.54367,4.95803,10.29735,9.15319,3.65723,2.87356,6.6405,-12.0109,17.38702,-16.57703,12.20427,-22.88302,12.96703,-30.12933,7.62767,-16.78086,-15.35995,-9.43969,-41.05383,-26.41935,-46.01183,-19.17308,-38.0028,-13.07096,-30.75644,-3.53638,-26.9217,-2.9829,-25.38567,-1.89106,-28.27474,6.89631,-8.00903,-0.85151,-11.20127,-1.32166,-6.99552,-21.89548,-10.71024,-29.53359,-12.26717,-32.27115,-21.94271,-20.14478],"curve":0.263,"c3":0.618,"c4":0.43},{"time":3,"vertices":[-20.87905,3.47983,0,0,12.31331,3.47987,7.22737,6.42432,6.84091,5.37504,11.52972,-5.5298,16.47739,-8.27668,8.56577,-16.06083,9.10112,-21.14677,5.35361,-11.77793,-15.35993,19.78204,-34.0042,-0.83612,-37.48405,4.24979,-31.86279,8.53267,-26.77681,15.22467,-23.16946,6.4545,-21.63342,4.93114,-22.13476,6.2141,-5.62127,1.08144,-8.47238,2.43055,-5.06256,-11.09365,-8.89096,-16.91252,-11.35752,-16.23897,-18.75901,5.55217],"curve":0.337,"c2":0.35,"c3":0.712,"c4":0.82},{"time":3.5,"vertices":[-2.13394,0.35566,0,0,1.25848,0.35566,0.73867,0.6566,13.56991,10.66214,21.86352,8.16859,14.5548,9.26687,0.87546,-1.6415,0.93018,-2.1613,0.54717,-1.20376,-15.35987,81.54482,-19.10418,53.23636,-19.45984,53.75616,-18.88531,54.19389,-18.3655,54.87785,-15.23877,26.40128,-13.7027,19.35048,-9.15734,4.77218,-0.57452,5.16689,-2.70464,10.3612,-0.97706,11.737,-5.04577,9.76326,-9.43488,17.64651,-12.02995,59.86501]}]}}}},"馒头":{"slots":{"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"馒头3":{"attachment":[{"name":"馒头熟"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"馒头002":{"attachment":[{"name":"馒头熟"}]},"馒头02":{"attachment":[{"name":"馒头熟"}]},"馒头01":{"attachment":[{"name":"馒头熟"}]},"馒头001":{"attachment":[{"name":"馒头熟"}]},"馒头003":{"attachment":[{"name":"馒头熟"}]},"馒头":{"attachment":[{"name":"馒头熟"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"馒头03":{"attachment":[{"name":"馒头熟"}]},"馒头2":{"attachment":[{"name":"馒头熟"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]}},"bones":{"馒头":{"translate":[{"y":2.08}],"scale":[{"x":1.111}]},"馒头2":{"translate":[{"x":-5.4}],"scale":[{"x":1.111}]},"bone":{"scale":[{"x":0.9,"y":0.9}]},"馒头3":{"translate":[{"x":5.4}],"scale":[{"x":1.111}]}}},"馒头余1":{"slots":{"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"馒头3":{"attachment":[{"name":"馒头熟"}]},"馒头":{"attachment":[{"name":"馒头熟"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"馒头2":{"attachment":[{"name":"馒头熟"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]}},"bones":{"馒头":{"translate":[{"y":2.08}],"scale":[{"x":1.111,"curve":"stepped"},{"time":2.9333,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.1,"x":1.009,"y":0.908,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.168,"y":1.051,"curve":0.25,"c3":0.75},{"time":3.4333,"x":1.09,"y":0.981,"curve":0.25,"c3":0.75},{"time":3.6667,"x":1.111}]},"bone":{"scale":[{"x":0.9,"y":0.9}]}}},"馒头余2":{"slots":{"蒸笼阴影":{"attachment":[{"name":"蒸笼阴影"}]},"馒头3":{"attachment":[{"name":"馒头熟"}]},"馒头002":{"attachment":[{"name":"馒头熟"}]},"馒头001":{"attachment":[{"name":"馒头熟"}]},"馒头003":{"attachment":[{"name":"馒头熟"}]},"馒头":{"attachment":[{"name":"馒头熟"}]},"蒸笼锅":{"attachment":[{"name":"蒸笼锅"}]},"蒸笼布":{"attachment":[{"name":"蒸笼布"}]},"馒头2":{"attachment":[{"name":"馒头熟"}]},"蒸笼":{"attachment":[{"name":"蒸笼"}]}},"bones":{"馒头":{"translate":[{"y":2.08}],"scale":[{"x":1.111,"curve":"stepped"},{"time":2.9333,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.1,"x":1.009,"y":0.908,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.168,"y":1.051,"curve":0.25,"c3":0.75},{"time":3.4333,"x":1.09,"y":0.981,"curve":0.25,"c3":0.75},{"time":3.6667,"x":1.111}]},"bone":{"scale":[{"x":0.9,"y":0.9}]},"馒头3":{"translate":[{"x":5.4}],"scale":[{"x":1.111,"curve":"stepped"},{"time":2.9333,"x":1.111,"curve":0.25,"c3":0.75},{"time":3.1,"x":1.009,"y":0.908,"curve":0.25,"c3":0.75},{"time":3.2667,"x":1.168,"y":1.051,"curve":0.25,"c3":0.75},{"time":3.4333,"x":1.09,"y":0.981,"curve":0.25,"c3":0.75},{"time":3.6667,"x":1.111}]}}}}} \ No newline at end of file diff --git a/assets/ZaoCanDian/spine/蒸笼/蒸笼.json.meta b/assets/ZaoCanDian/spine/蒸笼/蒸笼.json.meta new file mode 100644 index 00000000..703e74ec --- /dev/null +++ b/assets/ZaoCanDian/spine/蒸笼/蒸笼.json.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.2.5", + "uuid": "7523afa2-4688-4478-8ec0-cc34355d991d", + "importer": "spine", + "textures": [ + "291931cd-c7a6-4034-98b1-6f6711c5c349" + ], + "scale": 1, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/ZaoCanDian/spine/蒸笼/蒸笼.png b/assets/ZaoCanDian/spine/蒸笼/蒸笼.png new file mode 100644 index 00000000..64a76a98 Binary files /dev/null and b/assets/ZaoCanDian/spine/蒸笼/蒸笼.png differ diff --git a/assets/ZaoCanDian/spine/蒸笼/蒸笼.png.meta b/assets/ZaoCanDian/spine/蒸笼/蒸笼.png.meta new file mode 100644 index 00000000..2bf52943 --- /dev/null +++ b/assets/ZaoCanDian/spine/蒸笼/蒸笼.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "291931cd-c7a6-4034-98b1-6f6711c5c349", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 734, + "height": 518, + "platformSettings": {}, + "subMetas": { + "蒸笼": { + "ver": "1.0.6", + "uuid": "157f3ee5-aefd-4048-b94f-427dbc491ef1", + "importer": "sprite-frame", + "rawTextureUuid": "291931cd-c7a6-4034-98b1-6f6711c5c349", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0.5, + "offsetY": 0, + "trimX": 3, + "trimY": 2, + "width": 1802, + "height": 246, + "rawWidth": 1807, + "rawHeight": 250, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file