Commit 02e41910 authored by 苏尧华's avatar 苏尧华

farm web

parents
This source diff could not be displayed because it is too large. You can view the blob instead.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Cocos Creator | nongchang</title>
<!--http://www.html5rocks.com/en/mobile/mobifying/-->
<meta name="viewport"
content="width=device-width,user-scalable=no,initial-scale=1, minimum-scale=1,maximum-scale=1"/>
<!--https://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html-->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="format-detection" content="telephone=no">
<!-- force webkit on 360 -->
<meta name="renderer" content="webkit"/>
<meta name="force-rendering" content="webkit"/>
<!-- force edge on IE -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<meta name="msapplication-tap-highlight" content="no">
<!-- force full screen on some browser -->
<meta name="full-screen" content="yes"/>
<meta name="x5-fullscreen" content="true"/>
<meta name="360-fullscreen" content="true"/>
<!-- force screen orientation on some browser -->
<meta name="screen-orientation" content=""/>
<meta name="x5-orientation" content="">
<!--fix fireball/issues/3568 -->
<!--<meta name="browsermode" content="application">-->
<meta name="x5-page-mode" content="app">
<!--<link rel="apple-touch-icon" href=".png" />-->
<!--<link rel="apple-touch-icon-precomposed" href=".png" />-->
<link rel="stylesheet" type="text/css" href="style-mobile.css"/>
</head>
<body>
<canvas id="GameCanvas" oncontextmenu="event.preventDefault()" tabindex="0"></canvas>
<div id="splash">
<div class="progress-bar stripes">
<span style="width: 0%"></span>
</div>
</div>
<script src="src/settings.js" charset="utf-8"></script>
<script src="main.js" charset="utf-8"></script>
<script type="text/javascript">
(function () {
// open web debugger console
if (typeof VConsole !== 'undefined') {
window.vConsole = new VConsole();
}
var splash = document.getElementById('splash');
splash.style.display = 'block';
var cocos2d = document.createElement('script');
cocos2d.async = true;
cocos2d.src = window._CCSettings.debug ? 'cocos2d-js.js' : 'cocos2d-js-min.js';
var engineLoaded = function () {
document.body.removeChild(cocos2d);
cocos2d.removeEventListener('load', engineLoaded, false);
window.boot();
};
cocos2d.addEventListener('load', engineLoaded, false);
document.body.appendChild(cocos2d);
})();
</script>
</body>
</html>
// QQPlay window need to be inited first
if (false) {
BK.Script.loadlib('GameRes://libs/qqplay-adapter.js');
}
window.boot = function () {
var settings = window._CCSettings;
window._CCSettings = undefined;
if ( !settings.debug ) {
var uuids = settings.uuids;
var rawAssets = settings.rawAssets;
var assetTypes = settings.assetTypes;
var realRawAssets = settings.rawAssets = {};
for (var mount in rawAssets) {
var entries = rawAssets[mount];
var realEntries = realRawAssets[mount] = {};
for (var id in entries) {
var entry = entries[id];
var type = entry[1];
// retrieve minified raw asset
if (typeof type === 'number') {
entry[1] = assetTypes[type];
}
// retrieve uuid
realEntries[uuids[id] || id] = entry;
}
}
var scenes = settings.scenes;
for (var i = 0; i < scenes.length; ++i) {
var scene = scenes[i];
if (typeof scene.uuid === 'number') {
scene.uuid = uuids[scene.uuid];
}
}
var packedAssets = settings.packedAssets;
for (var packId in packedAssets) {
var packedIds = packedAssets[packId];
for (var j = 0; j < packedIds.length; ++j) {
if (typeof packedIds[j] === 'number') {
packedIds[j] = uuids[packedIds[j]];
}
}
}
}
function setLoadingDisplay () {
// Loading splash scene
var splash = document.getElementById('splash');
var progressBar = splash.querySelector('.progress-bar span');
cc.loader.onProgress = function (completedCount, totalCount, item) {
var percent = 100 * completedCount / totalCount;
if (progressBar) {
progressBar.style.width = percent.toFixed(2) + '%';
}
};
splash.style.display = 'block';
progressBar.style.width = '0%';
cc.director.once(cc.Director.EVENT_AFTER_SCENE_LAUNCH, function () {
splash.style.display = 'none';
});
}
var onStart = function () {
cc.loader.downloader._subpackages = settings.subpackages;
cc.view.enableRetina(true);
cc.view.resizeWithBrowserSize(true);
if (!false && !false) {
if (cc.sys.isBrowser) {
setLoadingDisplay();
}
if (cc.sys.isMobile) {
if (settings.orientation === 'landscape') {
cc.view.setOrientation(cc.macro.ORIENTATION_LANDSCAPE);
}
else if (settings.orientation === 'portrait') {
cc.view.setOrientation(cc.macro.ORIENTATION_PORTRAIT);
}
cc.view.enableAutoFullScreen([
cc.sys.BROWSER_TYPE_BAIDU,
cc.sys.BROWSER_TYPE_WECHAT,
cc.sys.BROWSER_TYPE_MOBILE_QQ,
cc.sys.BROWSER_TYPE_MIUI,
].indexOf(cc.sys.browserType) < 0);
}
// Limit downloading max concurrent task to 2,
// more tasks simultaneously may cause performance draw back on some android system / browsers.
// You can adjust the number based on your own test result, you have to set it before any loading process to take effect.
if (cc.sys.isBrowser && cc.sys.os === cc.sys.OS_ANDROID) {
cc.macro.DOWNLOAD_MAX_CONCURRENT = 2;
}
}
// init assets
cc.AssetLibrary.init({
libraryPath: 'res/import',
rawAssetsBase: 'res/raw-',
rawAssets: settings.rawAssets,
packedAssets: settings.packedAssets,
md5AssetsMap: settings.md5AssetsMap
});
var launchScene = settings.launchScene;
// load scene
cc.director.loadScene(launchScene, null,
function () {
if (cc.sys.isBrowser) {
// show canvas
var canvas = document.getElementById('GameCanvas');
canvas.style.visibility = '';
var div = document.getElementById('GameDiv');
if (div) {
div.style.backgroundImage = '';
}
}
cc.loader.onProgress = null;
console.log('Success to load scene: ' + launchScene);
}
);
};
// jsList
var jsList = settings.jsList;
if (false) {
BK.Script.loadlib();
}
else {
var bundledScript = settings.debug ? 'src/project.dev.js' : 'src/project.js';
if (jsList) {
jsList = jsList.map(function (x) {
return 'src/' + x;
});
jsList.push(bundledScript);
}
else {
jsList = [bundledScript];
}
}
// ANYS scripts
if (cc.sys.isNative && cc.sys.isMobile) {
jsList = jsList.concat(['src/ANYS/jsb_ANYS.js', 'src/ANYS/jsb_ANYS_constants.js']);
}
var option = {
id: 'GameCanvas',
scenes: settings.scenes,
debugMode: settings.debug ? cc.debug.DebugMode.INFO : cc.debug.DebugMode.ERROR,
showFPS: !false && settings.debug,
frameRate: 60,
jsList: jsList,
groupList: settings.groupList,
collisionMatrix: settings.collisionMatrix,
}
cc.game.run(option, onStart);
};
// main.js is qqplay and jsb platform entry file, so we must leave platform init code here
if (false) {
BK.Script.loadlib('GameRes://src/settings.js');
BK.Script.loadlib();
BK.Script.loadlib('GameRes://libs/qqplay-downloader.js');
var ORIENTATIONS = {
'portrait': 1,
'landscape left': 2,
'landscape right': 3
};
BK.Director.screenMode = ORIENTATIONS[window._CCSettings.orientation];
initAdapter();
cc.game.once(cc.game.EVENT_ENGINE_INITED, function () {
initRendererAdapter();
});
qqPlayDownloader.REMOTE_SERVER_ROOT = "";
var prevPipe = cc.loader.md5Pipe || cc.loader.assetLoader;
cc.loader.insertPipeAfter(prevPipe, qqPlayDownloader);
window.boot();
}
else if (window.jsb) {
require('src/settings.js');
require('src/cocos2d-jsb.js');
require('jsb-adapter/engine/index.js');
window.boot();
}
\ No newline at end of file
{"__type__":"cc.SpriteFrame","content":{"name":"n_08","texture":"faan5IkXJC2p0QMFDmzYVC","rect":[3,3,725,263],"offset":[-97.5,28.5],"originalSize":[926,326],"capInsets":[0,0,0,0]}}
\ No newline at end of file
[{"__type__":"cc.SpriteFrame","content":{"name":"diban14","texture":"58y2W5WipMWJdNEJ8WRQus","rect":[0,0,63,38],"offset":[0,0],"originalSize":[63,38],"capInsets":[12,12,11,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_disabled","texture":"71VhFCTINJM6/Ky3oX9nBT","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},[{"__type__":"cc.Prefab","_name":"goodStoreUI","data":{"__id__":1}},{"__type__":"cc.Node","_name":"goodStoreUI","_children":[{"__id__":2},{"__id__":3}],"_level":1,"_components":[{"__type__":"cc.BlockInputEvents","node":{"__id__":1}},{"__type__":"b399fdGpdtGrai7/V5yFzLm","node":{"__id__":1},"itemPre":{"__uuid__":"b5YJuB4z9G8p4jjBJJ+bHh"},"scrollContent":{"__id__":13},"showInfoNode":{"__id__":15},"spIcon":{"__id__":20},"labDesc":{"__id__":22}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"36xV9JHAhBa6uFW+z2OgBP"},"fileId":"0ea3DYC2dBt42Ys0oNZwen"},"_contentSize":{"__type__":"cc.Size","width":750,"height":1334},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"bg","_parent":{"__id__":1},"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":2},"_spriteFrame":{"__uuid__":"a2MjXRFdtLlYQ5ouAFv/+R"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"36xV9JHAhBa6uFW+z2OgBP"},"fileId":"24VZ0sI/JB/KivizHj1HJl"},"_opacity":150,"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":750,"height":1334},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"content","_parent":{"__id__":1},"_children":[{"__id__":4},{"__id__":7},{"__id__":15},{"__id__":23}],"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":3},"_spriteFrame":{"__uuid__":"757nIdGSNLsqmAAJFA2JzX"},"_type":1,"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"36xV9JHAhBa6uFW+z2OgBP"},"fileId":"75RyCOIAJHyr7wf+RkLYAC"},"_contentSize":{"__type__":"cc.Size","width":720,"height":790},"_position":{"__type__":"cc.Vec3","y":4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"headline","_parent":{"__id__":3},"_children":[{"__id__":5},{"__id__":6}],"_level":4,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"36xV9JHAhBa6uFW+z2OgBP"},"fileId":"59zmZ38k9PFJ4Q+HZE/Bmc"},"_contentSize":{"__type__":"cc.Size","width":620,"height":100},"_position":{"__type__":"cc.Vec3","x":9,"y":424},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"biaoti","_parent":{"__id__":4},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":5},"_spriteFrame":{"__uuid__":"3c/sEkUjpEQrEJz66SpgRP"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"36xV9JHAhBa6uFW+z2OgBP"},"fileId":"60c/GtPdFBUrhXIf25Pfom"},"_contentSize":{"__type__":"cc.Size","width":535,"height":138},"_position":{"__type__":"cc.Vec3","x":21,"y":-10},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"cangku","_parent":{"__id__":4},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":6},"_spriteFrame":{"__uuid__":"f1YmKMrflIfZUIFSow3ky8"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"36xV9JHAhBa6uFW+z2OgBP"},"fileId":"69fFo6gg1DuLN7MlXhc+HM"},"_contentSize":{"__type__":"cc.Size","width":141,"height":70},"_position":{"__type__":"cc.Vec3","y":-7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"scrollView","_parent":{"__id__":3},"_children":[{"__id__":8},{"__id__":14}],"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":7},"_enabled":false,"_spriteFrame":{"__uuid__":"9bvaMerUlDyary99mJa6xp"},"_type":1,"_sizeMode":0},{"__id__":12}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"36xV9JHAhBa6uFW+z2OgBP"},"fileId":"13YnmuxCBI05NYqXbfhwMp"},"_contentSize":{"__type__":"cc.Size","width":580,"height":200},"_position":{"__type__":"cc.Vec3","x":5,"y":-206},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"scrollBar","_parent":{"__id__":7},"_children":[{"__id__":9}],"_active":false,"_components":[{"__id__":11},{"__type__":"cc.Widget","node":{"__id__":8},"alignMode":0,"_alignFlags":37,"_left":350.07654921020657,"_originalHeight":237},{"__type__":"cc.Sprite","node":{"__id__":8},"_spriteFrame":{"__uuid__":"5f5dyqtRNNxaFmVzYns6FZ"},"_type":1,"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"36xV9JHAhBa6uFW+z2OgBP"},"fileId":"501VbgUotOGbgzh1g7XLw0"},"_contentSize":{"__type__":"cc.Size","width":12,"height":750},"_anchorPoint":{"__type__":"cc.Vec2","x":1,"y":0.5},"_position":{"__type__":"cc.Vec3","x":290},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"bar","_parent":{"__id__":8},"_components":[{"__id__":10}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"36xV9JHAhBa6uFW+z2OgBP"},"fileId":"8872W0wOBF84EiRWyUl+d3"},"_contentSize":{"__type__":"cc.Size","width":10,"height":30},"_anchorPoint":{"__type__":"cc.Vec2","x":1},"_position":{"__type__":"cc.Vec3","x":-1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":9},"_spriteFrame":{"__uuid__":"5cO7kybDxGj4ipyMYdRYZB"},"_type":1,"_sizeMode":0},{"__type__":"cc.Scrollbar","node":{"__id__":8},"_scrollView":{"__id__":12},"_N$handle":{"__id__":10},"_N$direction":1},{"__type__":"cc.ScrollView","node":{"__id__":7},"horizontal":false,"brake":0.75,"bounceDuration":0.23,"_N$content":{"__id__":13},"content":{"__id__":13},"_N$horizontalScrollBar":null,"_N$verticalScrollBar":{"__id__":11}},{"__type__":"cc.Node","_name":"content","_parent":{"__id__":14},"_components":[{"__type__":"cc.Layout","node":{"__id__":13},"_layoutSize":{"__type__":"cc.Size","width":580,"height":200},"_N$layoutType":3,"_N$paddingLeft":30,"_N$paddingTop":10,"_N$spacingX":25,"_N$spacingY":30}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"36xV9JHAhBa6uFW+z2OgBP"},"fileId":"c9AoAdRtVHDY+VQtHEu2Uy"},"_contentSize":{"__type__":"cc.Size","width":580,"height":200},"_anchorPoint":{"__type__":"cc.Vec2","x":0.5,"y":1},"_position":{"__type__":"cc.Vec3","y":100},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"view","_parent":{"__id__":7},"_children":[{"__id__":13}],"_components":[{"__type__":"cc.Mask","node":{"__id__":14}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"36xV9JHAhBa6uFW+z2OgBP"},"fileId":"7aGUODj8xM7LDKKm/DkQtm"},"_contentSize":{"__type__":"cc.Size","width":580,"height":200},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"showInfo","_parent":{"__id__":3},"_children":[{"__id__":16},{"__id__":17},{"__id__":18},{"__id__":19},{"__id__":21}],"_active":false,"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":15},"_enabled":false,"_spriteFrame":{"__uuid__":"a2MjXRFdtLlYQ5ouAFv/+R"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"36xV9JHAhBa6uFW+z2OgBP"},"fileId":"9a8rBDllxDzLqsyROqMq6M"},"_contentSize":{"__type__":"cc.Size","width":520,"height":200},"_position":{"__type__":"cc.Vec3","x":2,"y":217},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diban","_parent":{"__id__":15},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":16},"_spriteFrame":{"__uuid__":"89IjhBi91BhZOsCO5nA3Ev"},"_type":1,"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"36xV9JHAhBa6uFW+z2OgBP"},"fileId":"b3zlsAYD5M/Zugv4VIg/D/"},"_contentSize":{"__type__":"cc.Size","width":530,"height":390},"_position":{"__type__":"cc.Vec3","x":-1,"y":-91},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diban2","_parent":{"__id__":15},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":17},"_spriteFrame":{"__uuid__":"11iqZDrT9PaZyQ+Lto+WYl"},"_type":1,"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"36xV9JHAhBa6uFW+z2OgBP"},"fileId":"acCmutqZtPPbfWAHpcUJ+1"},"_contentSize":{"__type__":"cc.Size","width":530,"height":215},"_position":{"__type__":"cc.Vec3","x":-1,"y":-3},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"xian","_parent":{"__id__":15},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":18},"_spriteFrame":{"__uuid__":"4bncJjjZBDnLxvURXkmgdA"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"36xV9JHAhBa6uFW+z2OgBP"},"fileId":"6beKBpyGVLsLlS1kGvAG4N"},"_contentSize":{"__type__":"cc.Size","width":476,"height":4},"_position":{"__type__":"cc.Vec3","x":-2,"y":-115.5},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"spIcon","_parent":{"__id__":15},"_level":5,"_components":[{"__id__":20}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"36xV9JHAhBa6uFW+z2OgBP"},"fileId":"2eQ7lcy1pDz5+V84iYAV8J"},"_contentSize":{"__type__":"cc.Size","width":520,"height":200},"_position":{"__type__":"cc.Vec3","y":-5},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":19},"_sizeMode":0},{"__type__":"cc.Node","_name":"labDesc","_parent":{"__id__":15},"_level":5,"_components":[{"__id__":22},{"__type__":"cc.LabelOutline","node":{"__id__":21},"_color":{"__type__":"cc.Color","r":98,"g":84,"b":62},"_width":0.2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"36xV9JHAhBa6uFW+z2OgBP"},"fileId":"d2PHbYNwlFfIdXmxOmBnMk"},"_color":{"__type__":"cc.Color","r":98,"g":84,"b":62},"_contentSize":{"__type__":"cc.Size","width":452,"height":30},"_position":{"__type__":"cc.Vec3","x":-9,"y":-164.2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":21},"_srcBlendFactor":1,"_useOriginalSize":false,"_fontSize":25,"_lineHeight":30,"_N$overflow":3},{"__type__":"cc.Node","_name":"closeBtn","_parent":{"__id__":3},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":23},"_spriteFrame":{"__uuid__":"89eJUe2dlPuZVpJFyxfSK7"}},{"__type__":"cc.Button","node":{"__id__":23},"transition":3,"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"zoomScale":0.9,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"GoodStoreUI","handler":"onClose"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":23}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"36xV9JHAhBa6uFW+z2OgBP"},"fileId":"a5Y+up535NhZ7QmUSGBxef"},"_contentSize":{"__type__":"cc.Size","width":84,"height":87},"_position":{"__type__":"cc.Vec3","x":297,"y":378},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}}],{"__type__":"cc.SpriteFrame","content":{"name":"biaoti","texture":"fdLoCzzVhNr66i10hm1Xw0","rect":[1,1,535,138],"offset":[0,0],"originalSize":[537,140],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"xian","texture":"68SDnZvYxE/IVnbTu/KJi/","rect":[1,1,476,4],"offset":[0,0],"originalSize":[478,6],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_scrollbar_vertical","texture":"d608qFRoFHwbXd0Dap056i","rect":[0,0,15,30],"offset":[0,0],"originalSize":[15,30],"capInsets":[4,10,4,10]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_scrollbar_vertical_bg","texture":"61cyPdEfRN047sDK9rO0W5","rect":[0,0,15,30],"offset":[0,0],"originalSize":[15,30],"capInsets":[4,10,4,10]}},{"__type__":"cc.SpriteFrame","content":{"name":"dadiban","texture":"5aKVC+CyBHLpKI0/M2qZ8/","rect":[1,1,327,459],"offset":[0,0],"originalSize":[329,461],"capInsets":[161,59,163,122]}},{"__type__":"cc.SpriteFrame","content":{"name":"diban11","texture":"8aQ6vdXPFNgZ1xAQAmlcZn","rect":[0,0,91,86],"offset":[0,0],"originalSize":[91,86],"capInsets":[20,17,19,18]}},{"__type__":"cc.SpriteFrame","content":{"name":"guanbi","texture":"efVL7RrcRKPa8GHGhR8tm3","rect":[1,1,84,87],"offset":[0,0],"originalSize":[86,89],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_panel","texture":"d8HsitJHxOYqo801xBk8ev","rect":[0,0,20,20],"offset":[0,0],"originalSize":[20,20],"capInsets":[6,6,6,6]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_sprite_splash","texture":"02delMVqdBD70a/HSD99FK","rect":[0,0,2,2],"offset":[0,0],"originalSize":[2,2],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_pressed","texture":"b4P/PCArtIdIH38t6mlw8Y","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_normal","texture":"e8Ueib+qJEhL6mXAHdnwbi","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"cangku","texture":"baUdLJSXVLNq0duXBQORq9","rect":[1,1,141,70],"offset":[0,0],"originalSize":[143,72],"capInsets":[0,0,0,0]}}]
\ No newline at end of file
{"__type__":"sp.SkeletonData","_name":"n_09","_native":"raw-skeleton.json","_skeletonJson":{"skeleton":{"hash":"sCB3ETS1Yn3PSpjAQEeA/RSH3M0","spine":"3.6.53","width":306.42,"height":196.87,"images":"./lanjing/"},"bones":[{"name":"root"},{"name":"huotui6","parent":"root","length":40,"rotation":91.66,"x":2.9,"y":12.35,"color":"ff00e5ff"},{"name":"bone4","parent":"huotui6","length":45,"rotation":0.3,"x":40.41,"y":0.66,"color":"ff00e5ff"},{"name":"huotui7","parent":"root","length":40,"rotation":91.66,"x":-77.71,"y":-18.03,"color":"ff00e5ff"},{"name":"bone5","parent":"huotui7","length":45,"rotation":0.3,"x":40.41,"y":0.66,"color":"ff00e5ff"},{"name":"huotui9","parent":"root","length":40,"rotation":91.66,"x":6.27,"y":-59.39,"color":"ff00e5ff"},{"name":"bone6","parent":"huotui9","length":45,"rotation":0.3,"x":40.41,"y":0.66,"color":"ff00e5ff"},{"name":"huotui10","parent":"root","length":40,"rotation":91.66,"x":79.7,"y":-25.21,"color":"ff00e5ff"},{"name":"bone7","parent":"huotui10","length":45,"rotation":0.3,"x":40.41,"y":0.66,"color":"ff00e5ff"},{"name":"huotui1","parent":"root","color":"ff0000ff"},{"name":"huotui3","parent":"huotui1","x":-4.32,"y":58.54,"color":"ff0000ff"},{"name":"huotui8","parent":"root","x":1.71,"y":-70.31}],"slots":[{"name":"huotui3","bone":"huotui3","attachment":"huotui3"},{"name":"huotui1","bone":"huotui1","attachment":"huotui1"},{"name":"huotui6","bone":"huotui6","attachment":"huotui4"},{"name":"huotui10","bone":"huotui10","attachment":"huotui4"},{"name":"huotui9","bone":"huotui9","attachment":"huotui4"},{"name":"huotui7","bone":"huotui7","attachment":"huotui4"},{"name":"huotui8","bone":"huotui8","attachment":"huotui8"}],"skins":{"default":{"huotui1":{"huotui1":{"x":1,"y":-13,"width":303,"height":160}},"huotui10":{"huotui4":{"type":"mesh","uvs":[0.95027,0.30351,0.95319,0.48689,1,0.66791,0.91133,0.82134,0.83295,0.9172,0.70197,0.96711,0.50962,1,0.08077,0.94925,0,0.80286,0,0.67271,0.02633,0.49227,0.04973,0.35098,0.13939,0.18496,0.2415,0.04274,0.49184,0,0.73931,0.0036,0.89193,0.15722,0.50677,0.65797,0.50254,0.79728,0.49827,0.18616,0.49704,0.32833,0.48821,0.49737],"triangles":[7,18,6,6,18,5,5,18,4,7,8,18,4,18,3,18,17,3,3,17,2,8,9,18,18,9,17,17,10,21,17,9,10,17,1,2,17,21,1,10,11,21,21,20,1,21,11,20,20,0,1,11,12,20,20,16,0,20,19,16,20,12,19,19,15,16,12,13,19,13,14,19,19,14,15],"vertices":[2,7,59.72,-42.33,0.53752,8,19.09,-43.09,0.46248,2,7,42.12,-41.82,0.84206,8,1.49,-42.49,0.15794,2,7,24.57,-45.45,0.9867,8,-16.08,-46.02,0.0133,1,7,10.22,-36.46,1,1,7,1.36,-28.69,1,1,7,-2.88,-16.18,1,2,7,-5.23,2.02,0.9981,8,-45.64,1.6,0.0019,2,7,1.43,42.08,0.75159,8,-38.77,41.62,0.24841,2,7,15.81,49.04,0.63766,8,-24.35,48.51,0.36234,2,7,28.29,48.48,0.50017,8,-11.87,47.89,0.49983,2,7,45.49,45.24,0.23875,8,5.3,44.55,0.76125,2,7,58.94,42.44,0.08748,8,18.74,41.68,0.91252,2,7,74.49,33.31,0.00671,8,34.24,32.47,0.99329,1,8,47.4,22.21,1,2,7,90.75,-0.58,0.00109,8,50.33,-1.5,0.99891,2,7,89.37,-23.8,0.09567,8,48.83,-24.72,0.90433,2,7,74,-37.48,0.3102,8,33.39,-38.31,0.6898,2,7,27.59,0.83,0.99128,8,-12.83,0.24,0.00872,2,7,14.24,1.82,0.99615,8,-26.16,1.3,0.00385,2,7,72.87,-0.39,0.00249,8,32.45,-1.21,0.99751,2,7,59.24,0.34,0.00197,8,18.82,-0.42,0.99803,1,8,2.66,1.21,1],"hull":17,"edges":[10,12,8,10,12,14,14,16,34,4,12,36,36,34,16,36,6,8,36,6,20,22,22,24,24,26,2,0,2,4,26,28,28,30,28,38,24,38,38,32,40,38,22,40,40,0,34,42,42,40,2,42,42,20,34,18,18,20,30,32,32,0,16,18,4,6],"width":94,"height":96}},"huotui3":{"huotui3":{"x":5.18,"y":-13.49,"width":297,"height":97}},"huotui6":{"huotui4":{"type":"mesh","uvs":[0.95027,0.30351,0.95319,0.48689,1,0.66791,0.91133,0.82134,0.83295,0.9172,0.70197,0.96711,0.50962,1,0.08077,0.94925,0,0.80286,0,0.67271,0.02633,0.49227,0.04973,0.35098,0.13939,0.18496,0.2415,0.04274,0.49184,0,0.73931,0.0036,0.89193,0.15722,0.50677,0.65797,0.50254,0.79728,0.49827,0.18616,0.49704,0.32833,0.48821,0.49737],"triangles":[7,18,6,6,18,5,5,18,4,7,8,18,4,18,3,18,17,3,3,17,2,8,9,18,18,9,17,17,10,21,17,9,10,17,1,2,17,21,1,10,11,21,21,20,1,21,11,20,20,0,1,11,12,20,20,16,0,20,19,16,20,12,19,19,15,16,12,13,19,13,14,19,19,14,15],"vertices":[2,1,59.72,-42.33,0.53752,2,19.09,-43.09,0.46248,2,1,42.12,-41.82,0.84206,2,1.49,-42.49,0.15794,2,1,24.57,-45.45,0.9867,2,-16.08,-46.02,0.0133,1,1,10.22,-36.46,1,1,1,1.36,-28.69,1,1,1,-2.88,-16.18,1,2,1,-5.23,2.02,0.9981,2,-45.64,1.6,0.0019,2,1,1.43,42.08,0.75159,2,-38.77,41.62,0.24841,2,1,15.81,49.04,0.63766,2,-24.35,48.51,0.36234,2,1,28.29,48.48,0.50017,2,-11.87,47.89,0.49983,2,1,45.49,45.24,0.23875,2,5.3,44.55,0.76125,2,1,58.94,42.44,0.08748,2,18.74,41.68,0.91252,2,1,74.49,33.31,0.00671,2,34.24,32.47,0.99329,1,2,47.4,22.21,1,2,1,90.75,-0.58,0.00109,2,50.33,-1.5,0.99891,2,1,89.37,-23.8,0.09567,2,48.83,-24.72,0.90433,2,1,74,-37.48,0.3102,2,33.39,-38.31,0.6898,2,1,27.59,0.83,0.99128,2,-12.83,0.24,0.00872,2,1,14.24,1.82,0.99615,2,-26.16,1.3,0.00385,2,1,72.87,-0.39,0.00249,2,32.45,-1.21,0.99751,2,1,59.24,0.34,0.00197,2,18.82,-0.42,0.99803,1,2,2.66,1.21,1],"hull":17,"edges":[10,12,8,10,12,14,14,16,34,4,12,36,36,34,16,36,6,8,36,6,20,22,22,24,24,26,2,0,2,4,26,28,28,30,28,38,24,38,38,32,40,38,22,40,40,0,34,42,42,40,2,42,42,20,34,18,18,20,30,32,32,0,16,18,4,6],"width":94,"height":96}},"huotui7":{"huotui4":{"type":"mesh","uvs":[0.95027,0.30351,0.95319,0.48689,1,0.66791,0.91133,0.82134,0.83295,0.9172,0.70197,0.96711,0.50962,1,0.08077,0.94925,0,0.80286,0,0.67271,0.02633,0.49227,0.04973,0.35098,0.13939,0.18496,0.2415,0.04274,0.49184,0,0.73931,0.0036,0.89193,0.15722,0.50677,0.65797,0.50254,0.79728,0.49827,0.18616,0.49704,0.32833,0.48821,0.49737],"triangles":[7,18,6,6,18,5,5,18,4,7,8,18,4,18,3,18,17,3,3,17,2,8,9,18,18,9,17,17,10,21,17,9,10,17,1,2,17,21,1,10,11,21,21,20,1,21,11,20,20,0,1,11,12,20,20,16,0,20,19,16,20,12,19,19,15,16,12,13,19,13,14,19,19,14,15],"vertices":[2,3,59.72,-42.33,0.53752,4,19.09,-43.09,0.46248,2,3,42.12,-41.82,0.84206,4,1.49,-42.49,0.15794,2,3,24.57,-45.45,0.9867,4,-16.08,-46.02,0.0133,1,3,10.22,-36.46,1,1,3,1.36,-28.69,1,1,3,-2.88,-16.18,1,2,3,-5.23,2.02,0.9981,4,-45.64,1.6,0.0019,2,3,1.43,42.08,0.75159,4,-38.77,41.62,0.24841,2,3,15.81,49.04,0.63766,4,-24.35,48.51,0.36234,2,3,28.29,48.48,0.50017,4,-11.87,47.89,0.49983,2,3,45.49,45.24,0.23875,4,5.3,44.55,0.76125,2,3,58.94,42.44,0.08748,4,18.74,41.68,0.91252,2,3,74.49,33.31,0.00671,4,34.24,32.47,0.99329,1,4,47.4,22.21,1,2,3,90.75,-0.58,0.00109,4,50.33,-1.5,0.99891,2,3,89.37,-23.8,0.09567,4,48.83,-24.72,0.90433,2,3,74,-37.48,0.3102,4,33.39,-38.31,0.6898,2,3,27.59,0.83,0.99128,4,-12.83,0.24,0.00872,2,3,14.24,1.82,0.99615,4,-26.16,1.3,0.00385,2,3,72.87,-0.39,0.00249,4,32.45,-1.21,0.99751,2,3,59.24,0.34,0.00197,4,18.82,-0.42,0.99803,1,4,2.66,1.21,1],"hull":17,"edges":[10,12,8,10,12,14,14,16,34,4,12,36,36,34,16,36,6,8,36,6,20,22,22,24,24,26,2,0,2,4,26,28,28,30,28,38,24,38,38,32,40,38,22,40,40,0,34,42,42,40,2,42,42,20,34,18,18,20,30,32,32,0,16,18,4,6],"width":94,"height":96}},"huotui8":{"huotui8":{"x":1.22,"y":28.02,"width":306,"height":103}},"huotui9":{"huotui4":{"type":"mesh","uvs":[0.95027,0.30351,0.95319,0.48689,1,0.66791,0.91133,0.82134,0.83295,0.9172,0.70197,0.96711,0.50962,1,0.08077,0.94925,0,0.80286,0,0.67271,0.02633,0.49227,0.04973,0.35098,0.13939,0.18496,0.2415,0.04274,0.49184,0,0.73931,0.0036,0.89193,0.15722,0.50677,0.65797,0.50254,0.79728,0.49827,0.18616,0.49704,0.32833,0.48821,0.49737],"triangles":[7,18,6,6,18,5,5,18,4,7,8,18,4,18,3,18,17,3,3,17,2,8,9,18,18,9,17,17,10,21,17,9,10,17,1,2,17,21,1,10,11,21,21,20,1,21,11,20,20,0,1,11,12,20,20,16,0,20,19,16,20,12,19,19,15,16,12,13,19,13,14,19,19,14,15],"vertices":[2,5,59.72,-42.33,0.53752,6,19.09,-43.09,0.46248,2,5,42.12,-41.82,0.84206,6,1.49,-42.49,0.15794,2,5,24.57,-45.45,0.9867,6,-16.08,-46.02,0.0133,1,5,10.22,-36.46,1,1,5,1.36,-28.69,1,1,5,-2.88,-16.18,1,2,5,-5.23,2.02,0.9981,6,-45.64,1.6,0.0019,2,5,1.43,42.08,0.75159,6,-38.77,41.62,0.24841,2,5,15.81,49.04,0.63766,6,-24.35,48.51,0.36234,2,5,28.29,48.48,0.50017,6,-11.87,47.89,0.49983,2,5,45.49,45.24,0.23875,6,5.3,44.55,0.76125,2,5,58.94,42.44,0.08748,6,18.74,41.68,0.91252,2,5,74.49,33.31,0.00671,6,34.24,32.47,0.99329,1,6,47.4,22.21,1,2,5,90.75,-0.58,0.00109,6,50.33,-1.5,0.99891,2,5,89.37,-23.8,0.09567,6,48.83,-24.72,0.90433,2,5,74,-37.48,0.3102,6,33.39,-38.31,0.6898,2,5,27.59,0.83,0.99128,6,-12.83,0.24,0.00872,2,5,14.24,1.82,0.99615,6,-26.16,1.3,0.00385,2,5,72.87,-0.39,0.00249,6,32.45,-1.21,0.99751,2,5,59.24,0.34,0.00197,6,18.82,-0.42,0.99803,1,6,2.66,1.21,1],"hull":17,"edges":[10,12,8,10,12,14,14,16,34,4,12,36,36,34,16,36,6,8,36,6,20,22,22,24,24,26,2,0,2,4,26,28,28,30,28,38,24,38,38,32,40,38,22,40,40,0,34,42,42,40,2,42,42,20,34,18,18,20,30,32,32,0,16,18,4,6],"width":94,"height":96}}}},"animations":{"await1":{"bones":{"huotui1":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"huotui3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.3667,"angle":-0.84,"curve":[0.25,0,0.75,1]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":1.111,"y":1.026,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":6.64,"y":0.12,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.3333,"angle":-0.84,"curve":[0.25,0,0.75,1]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":1.111,"y":1.026,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":6.64,"y":0.12,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui9":{"rotate":[{"time":0,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":-0.84,"curve":[0.25,0,0.75,1]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.111,"y":1.026,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone6":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":6.64,"y":0.12,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui10":{"rotate":[{"time":0,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":-0.84,"curve":[0.25,0,0.75,1]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.111,"y":1.026,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone7":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":6.64,"y":0.12,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]}},"deform":{"default":{"huotui6":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.3667,"offset":38,"vertices":[2.2063,0.29835,2.20782,0.28687,-0.00001,0,-0.00001,0,3.59603,-0.83352],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui7":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.3333,"offset":38,"vertices":[2.2063,0.29835,2.20782,0.28687,-0.00001,0,-0.00001,0,3.59603,-0.83352],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui9":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"offset":38,"vertices":[2.2063,0.29835,2.20782,0.28687,-0.00001,0,-0.00001,0,3.59603,-0.83352],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui10":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"offset":38,"vertices":[2.2063,0.29835,2.20782,0.28687,-0.00001,0,-0.00001,0,3.59603,-0.83352],"curve":[0.25,0,0.75,1]},{"time":1}]}}}},"await2":{"bones":{"huotui1":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"huotui3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.1,"angle":0,"curve":"stepped"},{"time":0.2,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.3333,"angle":-1.91,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":-1.9,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.1,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":0,"y":3.68,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":0,"y":18.15,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0,"y":7.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.87,"y":1.108,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":1.205,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":1.319,"y":1.079,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":0.824,"y":1.089,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":1.097,"y":1.105,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3333,"angle":0.73,"curve":[0.25,0,0.75,1]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":-5.85,"y":0.15,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":14.09,"y":-0.53,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":12.1,"y":-0.56,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":-6.24,"y":0.17,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":6.35,"y":0.02,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.1,"angle":0,"curve":"stepped"},{"time":0.1667,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.3,"angle":-1.91,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":-1.9,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.1,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.1667,"x":0,"y":3.68,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":0,"y":18.15,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0,"y":7.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.87,"y":1.108,"curve":[0.25,0,0.75,1]},{"time":0.1667,"x":1.205,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":1.319,"y":1.079,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0.824,"y":1.089,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":1.097,"y":1.105,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3,"angle":0.73,"curve":[0.25,0,0.75,1]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":-5.85,"y":0.15,"curve":[0.25,0,0.75,1]},{"time":0.1667,"x":14.09,"y":-0.53,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":12.1,"y":-0.56,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":-6.24,"y":0.17,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":6.35,"y":0.02,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.1667,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui9":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.1333,"angle":0,"curve":"stepped"},{"time":0.2333,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":-1.91,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.6667,"angle":-1.9,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.1333,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":0,"y":3.68,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0,"y":18.15,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":0,"y":7.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.87,"y":1.108,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.205,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.319,"y":1.079,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0.824,"y":1.089,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":1.097,"y":1.105,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone6":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4,"angle":0.73,"curve":[0.25,0,0.75,1]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-5.85,"y":0.15,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":14.09,"y":-0.53,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":12.1,"y":-0.56,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":-6.24,"y":0.17,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":6.35,"y":0.02,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui10":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.1333,"angle":0,"curve":"stepped"},{"time":0.2,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.3667,"angle":-1.91,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.6,"angle":-1.9,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.1333,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":0,"y":3.68,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":0,"y":18.15,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":0,"y":7.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.87,"y":1.108,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":1.205,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":1.319,"y":1.079,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0.824,"y":1.089,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":1.097,"y":1.105,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone7":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3667,"angle":0.73,"curve":[0.25,0,0.75,1]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-5.85,"y":0.15,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":14.09,"y":-0.53,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":12.1,"y":-0.56,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":-6.24,"y":0.17,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":6.35,"y":0.02,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]}},"deform":{"default":{"huotui6":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.2,"offset":38,"vertices":[2.2063,0.29835,2.20782,0.28687,-0.00001,0,-0.00001,0,3.59603,-0.83352],"curve":[0.25,0,0.75,1]},{"time":0.8333}]},"huotui7":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"offset":38,"vertices":[2.2063,0.29835,2.20782,0.28687,-0.00001,0,-0.00001,0,3.59603,-0.83352],"curve":[0.25,0,0.75,1]},{"time":0.8333}]},"huotui9":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.2333,"offset":38,"vertices":[2.2063,0.29835,2.20782,0.28687,-0.00001,0,-0.00001,0,3.59603,-0.83352],"curve":[0.25,0,0.75,1]},{"time":0.8333}]},"huotui10":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.2,"offset":38,"vertices":[2.2063,0.29835,2.20782,0.28687,-0.00001,0,-0.00001,0,3.59603,-0.83352],"curve":[0.25,0,0.75,1]},{"time":0.8333}]}}}}}},"_atlasText":"\nn_09.png\nsize: 926,326\nformat: RGBA8888\nfilter: Linear,Linear\nrepeat: none\nhuotui1\n rotate: false\n xy: 2, 2\n size: 303, 160\n orig: 303, 160\n offset: 0, 0\n index: -1\nhuotui3\n rotate: false\n xy: 310, 2\n size: 297, 97\n orig: 297, 97\n offset: 0, 0\n index: -1\nhuotui4\n rotate: false\n xy: 618, 2\n size: 94, 96\n orig: 94, 96\n offset: 0, 0\n index: -1\nhuotui8\n rotate: false\n xy: 2, 164\n size: 306, 103\n orig: 306, 103\n offset: 0, 0\n index: -1\n","textures":[{"__uuid__":"cdj5D244dBqLsezKowjzUK"}],"textureNames":["n_09.png"]}
\ No newline at end of file
[{"__type__":"cc.SpriteFrame","content":{"name":"weixuanzhong","texture":"2e3v8qmgxFhqiyn1JC1Kgv","rect":[1,1,32,32],"offset":[0,0],"originalSize":[34,34],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"pingguo","texture":"aeteZP/o5KnJuvgFXVoNnO","rect":[1,1,87,86],"offset":[0,0],"originalSize":[89,88],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"touying","texture":"40Jv0OSw1Oi6wg6VLf0cZt","rect":[1,1,85,31],"offset":[0,0],"originalSize":[87,33],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"diban5","texture":"79yujOGpJOyoZb93OKJFpY","rect":[1,1,554,39],"offset":[0,0],"originalSize":[556,41],"capInsets":[37,20,40,18]}},{"__type__":"cc.SpriteFrame","content":{"name":"diandian","texture":"eaqWNbouFJLqfz1d4+L2Y/","rect":[1,1,20,20],"offset":[0,0],"originalSize":[22,22],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_disabled","texture":"71VhFCTINJM6/Ky3oX9nBT","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"biaoti","texture":"fdLoCzzVhNr66i10hm1Xw0","rect":[1,1,535,138],"offset":[0,0],"originalSize":[537,140],"capInsets":[0,0,0,0]}},[{"__type__":"cc.Prefab","_name":"ordersDialogPt","data":{"__id__":1}},{"__type__":"cc.Node","_name":"ordersDialogPt","_children":[{"__id__":2},{"__id__":3}],"_level":1,"_components":[{"__type__":"7ba72QaVqVE17E9Yg00R6T5","node":{"__id__":1},"goodsArr":[{"__id__":17},{"__id__":23},{"__id__":29},{"__id__":35}],"awardsArr":[{"__id__":45}],"weixuanzhong":{"__id__":13},"xuanzhong":{"__id__":14},"closeBtn":{"__id__":8},"okBtn":{"__id__":51},"okBtn1":{"__id__":54}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"9d6lxBOCZPmYFYV6MSw4Om"},"_color":{"__type__":"cc.Color","r":211,"g":211,"b":211},"_contentSize":{"__type__":"cc.Size","width":625,"height":700},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"bg","_parent":{"__id__":1},"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":2},"_spriteFrame":{"__uuid__":"a2MjXRFdtLlYQ5ouAFv/+R"},"_sizeMode":0},{"__type__":"cc.BlockInputEvents","node":{"__id__":2}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"468KUUm2pDNYUkjdJlpAWw"},"_opacity":150,"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":750,"height":1334},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"content","_parent":{"__id__":1},"_children":[{"__id__":4},{"__id__":5},{"__id__":6},{"__id__":7},{"__id__":9},{"__id__":41},{"__id__":49},{"__id__":52}],"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":3},"_spriteFrame":{"__uuid__":"757nIdGSNLsqmAAJFA2JzX"},"_type":1,"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"76sarjnuNMpY1HuHeSGG1w"},"_contentSize":{"__type__":"cc.Size","width":710,"height":690},"_position":{"__type__":"cc.Vec3","y":-4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"biaoti","_parent":{"__id__":3},"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":4},"_spriteFrame":{"__uuid__":"3c/sEkUjpEQrEJz66SpgRP"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"da0Hz9UwdNOYGs+oEJBXd/"},"_contentSize":{"__type__":"cc.Size","width":535,"height":138},"_position":{"__type__":"cc.Vec3","x":30,"y":348},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"caishen","_parent":{"__id__":3},"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":5},"_spriteFrame":{"__uuid__":"51ae9jWYhKpKoGh/zkEUrn"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"41XvvMj1NA67QkxnYDLEAh"},"_contentSize":{"__type__":"cc.Size","width":120,"height":167},"_position":{"__type__":"cc.Vec3","x":-167,"y":361},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"titleSprite","_parent":{"__id__":3},"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":6},"_spriteFrame":{"__uuid__":"6551AM8CxPIKkEcBrDxpZd"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"d7Iu0FAi9JSoYzaLucUyWz"},"_contentSize":{"__type__":"cc.Size","width":219,"height":55},"_position":{"__type__":"cc.Vec3","x":7,"y":351},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"closeBtn","_parent":{"__id__":3},"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":7},"_spriteFrame":{"__uuid__":"89eJUe2dlPuZVpJFyxfSK7"},"_sizeMode":0},{"__id__":8}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"49l4PODflHAakc3KmBI2BV"},"_contentSize":{"__type__":"cc.Size","width":75.6,"height":78.3},"_position":{"__type__":"cc.Vec3","x":290,"y":312},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Button","node":{"__id__":7},"transition":3,"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"zoomScale":0.9,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"OrdersDialogPt","handler":"onCloseBtn"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":7}},{"__type__":"cc.Node","_name":"matter1","_parent":{"__id__":3},"_children":[{"__id__":10},{"__id__":11},{"__id__":12},{"__id__":13},{"__id__":14},{"__id__":15},{"__id__":16}],"_level":3,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"b7qI1/71lKmKIxcIgeS6PZ"},"_contentSize":{"__type__":"cc.Size","width":580,"height":50},"_position":{"__type__":"cc.Vec3","y":230},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diban5","_parent":{"__id__":9},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":10},"_spriteFrame":{"__uuid__":"20br33BY5AcL1/fs0WSU9p"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"fbrhSo1Q9KmKRf6RRpUJri"},"_contentSize":{"__type__":"cc.Size","width":554,"height":39},"_position":{"__type__":"cc.Vec3","y":0.8999999999999999},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diandian","_parent":{"__id__":9},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":11},"_spriteFrame":{"__uuid__":"23k8InBK1IDZAfxIWOodHI"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"6dcUulalxDJbpfPeXZ0UJN"},"_contentSize":{"__type__":"cc.Size","width":20,"height":20},"_position":{"__type__":"cc.Vec3","x":-258},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diaoban","_parent":{"__id__":9},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":12},"_spriteFrame":{"__uuid__":"6daBhqyU5NWolCSCBzP2x5"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"198aKoL71IuKDtH0OnqliZ"},"_contentSize":{"__type__":"cc.Size","width":497,"height":134},"_position":{"__type__":"cc.Vec3","x":2,"y":-119},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"weixuanzhong","_parent":{"__id__":9},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":13},"_spriteFrame":{"__uuid__":"0aVL9yk5NBMIqOmTBfViTq"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"e8qvIyvLhOwrgqAv9RKQC3"},"_contentSize":{"__type__":"cc.Size","width":32,"height":32},"_position":{"__type__":"cc.Vec3","x":256},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"xuanzhong","_parent":{"__id__":9},"_active":false,"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":14},"_spriteFrame":{"__uuid__":"8e/pnTRy9C3Ihd0emR560P"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"d9csBS/+tKYJX5nIJSWuwh"},"_contentSize":{"__type__":"cc.Size","width":32,"height":32},"_position":{"__type__":"cc.Vec3","x":256},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labDesc","_parent":{"__id__":9},"_level":4,"_components":[{"__type__":"cc.Label","node":{"__id__":15},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"完成下面订单:","_N$string":"完成下面订单:","_fontSize":25,"_lineHeight":25,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":15},"_color":{"__type__":"cc.Color","r":113},"_width":0.3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"6cPgw9yVZJbLz2+N8vQldx"},"_color":{"__type__":"cc.Color","r":113},"_contentSize":{"__type__":"cc.Size","width":175.6,"height":25},"_position":{"__type__":"cc.Vec3","x":-158},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"layoutNode","_parent":{"__id__":9},"_children":[{"__id__":17},{"__id__":23},{"__id__":29},{"__id__":35}],"_level":4,"_components":[{"__type__":"cc.Layout","node":{"__id__":16},"_layoutSize":{"__type__":"cc.Size","width":430,"height":110},"_resize":1,"_N$layoutType":1,"_N$spacingX":10}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"61jo8g6rFCAY+7w8X1iDDS"},"_contentSize":{"__type__":"cc.Size","width":430,"height":110},"_position":{"__type__":"cc.Vec3","y":-104},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"goods","_parent":{"__id__":16},"_children":[{"__id__":18},{"__id__":19},{"__id__":20},{"__id__":21},{"__id__":22}],"_level":5,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"940vw8HK9FDoiAuij4yMMW"},"_contentSize":{"__type__":"cc.Size","width":100,"height":110},"_position":{"__type__":"cc.Vec3","x":-165,"y":-2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"touying","_parent":{"__id__":17},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":18},"_spriteFrame":{"__uuid__":"1cfKbUfbBMJba67UvAqXrj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"95Utcn0x5IqYQCUQuQ4HEz"},"_contentSize":{"__type__":"cc.Size","width":85,"height":31},"_position":{"__type__":"cc.Vec3","x":1,"y":-11},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"pingguo","_parent":{"__id__":17},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":19},"_spriteFrame":{"__uuid__":"13OT1x+TBPPKE7V0rP0HpQ"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"79CXZWvGtBm5MEWuLIUHbK"},"_contentSize":{"__type__":"cc.Size","width":69.6,"height":68.8},"_position":{"__type__":"cc.Vec3","x":2,"y":19},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"biaoqian","_parent":{"__id__":17},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":20},"_spriteFrame":{"__uuid__":"f5nQwFoT1EUo0gSBGxWBwj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"6d05NjIMlFTpGLbPuWYbqS"},"_contentSize":{"__type__":"cc.Size","width":100,"height":32},"_position":{"__type__":"cc.Vec3","y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum1","_parent":{"__id__":17},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":21},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"0","_N$string":"0","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"1dovQOyYhEOo81fGSahZW6"},"_color":{"__type__":"cc.Color","r":135,"g":255,"b":133},"_contentSize":{"__type__":"cc.Size","width":11.12,"height":20},"_position":{"__type__":"cc.Vec3","y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum2","_parent":{"__id__":17},"_active":false,"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":22},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"/0","_N$string":"/0","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"2a9SLjfTBOpI+EQmW4jZFP"},"_contentSize":{"__type__":"cc.Size","width":16.68,"height":20},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-3,"y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"goods","_parent":{"__id__":16},"_children":[{"__id__":24},{"__id__":25},{"__id__":26},{"__id__":27},{"__id__":28}],"_level":5,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"01F/stj9JA8LsgcM8+cfUq"},"_contentSize":{"__type__":"cc.Size","width":100,"height":110},"_position":{"__type__":"cc.Vec3","x":-55,"y":-2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"touying","_parent":{"__id__":23},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":24},"_spriteFrame":{"__uuid__":"1cfKbUfbBMJba67UvAqXrj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"00CYoG6uZAqISCrT0stkmz"},"_contentSize":{"__type__":"cc.Size","width":85,"height":31},"_position":{"__type__":"cc.Vec3","x":1,"y":-11},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"pingguo","_parent":{"__id__":23},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":25},"_spriteFrame":{"__uuid__":"13OT1x+TBPPKE7V0rP0HpQ"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"8fmMhemu1CFKvB2C/OL0yl"},"_contentSize":{"__type__":"cc.Size","width":69.6,"height":68.8},"_position":{"__type__":"cc.Vec3","x":2,"y":19},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"biaoqian","_parent":{"__id__":23},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":26},"_spriteFrame":{"__uuid__":"f5nQwFoT1EUo0gSBGxWBwj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"6erepeCtVDMYnR8qZTjblt"},"_contentSize":{"__type__":"cc.Size","width":100,"height":32},"_position":{"__type__":"cc.Vec3","y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum1","_parent":{"__id__":23},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":27},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"0","_N$string":"0","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"e7Jf1iWf9OdLRpzFhMGVLN"},"_color":{"__type__":"cc.Color","r":135,"g":255,"b":133},"_contentSize":{"__type__":"cc.Size","width":11.12,"height":20},"_position":{"__type__":"cc.Vec3","y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum2","_parent":{"__id__":23},"_active":false,"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":28},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"/0","_N$string":"/0","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"4b5gUFJS5OA4q1z6Zzd981"},"_contentSize":{"__type__":"cc.Size","width":16.68,"height":20},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-3,"y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"goods","_parent":{"__id__":16},"_children":[{"__id__":30},{"__id__":31},{"__id__":32},{"__id__":33},{"__id__":34}],"_level":5,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"cd3zC6mb1Mtrrq1Lm6zs1n"},"_contentSize":{"__type__":"cc.Size","width":100,"height":110},"_position":{"__type__":"cc.Vec3","x":55,"y":-2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"touying","_parent":{"__id__":29},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":30},"_spriteFrame":{"__uuid__":"1cfKbUfbBMJba67UvAqXrj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"25LUevtilBp53ew3Jtiq8W"},"_contentSize":{"__type__":"cc.Size","width":85,"height":31},"_position":{"__type__":"cc.Vec3","x":1,"y":-11},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"pingguo","_parent":{"__id__":29},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":31},"_spriteFrame":{"__uuid__":"13OT1x+TBPPKE7V0rP0HpQ"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"c3NQgo2uxC+ZVlfuRR8J7Z"},"_contentSize":{"__type__":"cc.Size","width":69.6,"height":68.8},"_position":{"__type__":"cc.Vec3","x":2,"y":19},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"biaoqian","_parent":{"__id__":29},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":32},"_spriteFrame":{"__uuid__":"f5nQwFoT1EUo0gSBGxWBwj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"d9yExGiXBMBaNcdlm0Gt7N"},"_contentSize":{"__type__":"cc.Size","width":100,"height":32},"_position":{"__type__":"cc.Vec3","y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum1","_parent":{"__id__":29},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":33},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"0","_N$string":"0","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"94tKyPKAlCeZ8KX8wjBIfS"},"_color":{"__type__":"cc.Color","r":135,"g":255,"b":133},"_contentSize":{"__type__":"cc.Size","width":11.12,"height":20},"_position":{"__type__":"cc.Vec3","y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum2","_parent":{"__id__":29},"_active":false,"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":34},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"/0","_N$string":"/0","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"34KJqKCtlIHptKo4wfqla+"},"_contentSize":{"__type__":"cc.Size","width":16.68,"height":20},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-3,"y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"goods","_parent":{"__id__":16},"_children":[{"__id__":36},{"__id__":37},{"__id__":38},{"__id__":39},{"__id__":40}],"_level":5,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"51UL/3oPlKNZg7jzRBi3yS"},"_contentSize":{"__type__":"cc.Size","width":100,"height":110},"_position":{"__type__":"cc.Vec3","x":165,"y":-2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"touying","_parent":{"__id__":35},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":36},"_spriteFrame":{"__uuid__":"1cfKbUfbBMJba67UvAqXrj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"dcydOg9n9KrLwfKaCf/D4X"},"_contentSize":{"__type__":"cc.Size","width":85,"height":31},"_position":{"__type__":"cc.Vec3","x":1,"y":-11},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"pingguo","_parent":{"__id__":35},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":37},"_spriteFrame":{"__uuid__":"13OT1x+TBPPKE7V0rP0HpQ"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"96U4Qe4HVEGq9TSaIeEHKu"},"_contentSize":{"__type__":"cc.Size","width":69.6,"height":68.8},"_position":{"__type__":"cc.Vec3","x":2,"y":19},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"biaoqian","_parent":{"__id__":35},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":38},"_spriteFrame":{"__uuid__":"f5nQwFoT1EUo0gSBGxWBwj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"a68gxumU5F8ZjMKKZgqtkD"},"_contentSize":{"__type__":"cc.Size","width":100,"height":32},"_position":{"__type__":"cc.Vec3","y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum1","_parent":{"__id__":35},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":39},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"0","_N$string":"0","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"bcH8I0k/JEf5nPNlw57FJl"},"_color":{"__type__":"cc.Color","r":135,"g":255,"b":133},"_contentSize":{"__type__":"cc.Size","width":11.12,"height":20},"_position":{"__type__":"cc.Vec3","y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum2","_parent":{"__id__":35},"_active":false,"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":40},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"/0","_N$string":"/0","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"b4mWk01ahMW6t/qpyOTVtK"},"_contentSize":{"__type__":"cc.Size","width":16.68,"height":20},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-3,"y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"matter2","_parent":{"__id__":3},"_children":[{"__id__":42},{"__id__":43},{"__id__":44},{"__id__":45},{"__id__":48}],"_level":3,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"79/72WZEZLEYLMgM0yvbBl"},"_contentSize":{"__type__":"cc.Size","width":580,"height":200},"_position":{"__type__":"cc.Vec3","y":-64},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diban3","_parent":{"__id__":41},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":42},"_spriteFrame":{"__uuid__":"a2TYdtzAFNR6H+yuIFYh4y"},"_type":1,"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"c2kmE1821FEZZLZm8B3xYC"},"_contentSize":{"__type__":"cc.Size","width":550,"height":193},"_position":{"__type__":"cc.Vec3","x":-2,"y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diguang","_parent":{"__id__":41},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":43},"_spriteFrame":{"__uuid__":"dfsLO8DAtLGLUSj3gsAl3G"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"d6DpFLqDZL3LtNLP27XGoZ"},"_contentSize":{"__type__":"cc.Size","width":552,"height":193},"_position":{"__type__":"cc.Vec3","x":2,"y":4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"biaoqian1","_parent":{"__id__":41},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":44},"_spriteFrame":{"__uuid__":"84Co42Wu9BELJrl0EYps4G"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"fagCoKX+VO9oV2iBe4Rkxv"},"_contentSize":{"__type__":"cc.Size","width":129,"height":35},"_position":{"__type__":"cc.Vec3","x":-207,"y":59},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"kuang","_parent":{"__id__":41},"_children":[{"__id__":46},{"__id__":47}],"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":45},"_spriteFrame":{"__uuid__":"48qtt5FpNJw61v73KxEYd0"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"ffLNO4K/FCu5yMQY43wa3c"},"_contentSize":{"__type__":"cc.Size","width":114,"height":119},"_position":{"__type__":"cc.Vec3","x":11,"y":-7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"jinbi","_parent":{"__id__":45},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":46},"_spriteFrame":{"__uuid__":"e4IYERodFIB46xcrvFttJN"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"022kgn8thDJYHbBM369kpI"},"_contentSize":{"__type__":"cc.Size","width":75.933,"height":73.359},"_position":{"__type__":"cc.Vec3","x":2,"y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum","_parent":{"__id__":45},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":47},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"0","_N$string":"0","_fontSize":30,"_lineHeight":30,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"c0ae1XE2xETaT8YMgEVk3N"},"_color":{"__type__":"cc.Color","r":117,"g":48,"b":2},"_contentSize":{"__type__":"cc.Size","width":16.68,"height":30},"_anchorPoint":{"__type__":"cc.Vec2","x":1,"y":0.5},"_position":{"__type__":"cc.Vec3","x":52.8,"y":-38.8},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"Label","_parent":{"__id__":41},"_level":4,"_components":[{"__type__":"cc.Label","node":{"__id__":48},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"订单奖励","_N$string":"订单奖励","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"e9YLgHMuNAi7GasROar+GV"},"_contentSize":{"__type__":"cc.Size","width":80,"height":20},"_position":{"__type__":"cc.Vec3","x":-198,"y":59},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"okBtn","_parent":{"__id__":3},"_children":[{"__id__":50}],"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":49},"_spriteFrame":{"__uuid__":"cdZod374dKbY+0ASLPyCjV"}},{"__id__":51}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"e44o7zQiJNQYv+ldSTXzp0"},"_contentSize":{"__type__":"cc.Size","width":352,"height":102},"_position":{"__type__":"cc.Vec3","x":8,"y":-223},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"Label","_parent":{"__id__":49},"_components":[{"__type__":"cc.Label","node":{"__id__":50},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"完成要求后开启","_N$string":"完成要求后开启","_fontSize":32,"_lineHeight":35,"_enableWrapText":false,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":50},"_color":{"__type__":"cc.Color","r":171,"g":91,"b":23},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"celLOZ0aZB5bTl2ebUOnKp"},"_contentSize":{"__type__":"cc.Size","width":228,"height":35},"_position":{"__type__":"cc.Vec3","y":2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Button","node":{"__id__":49},"transition":3,"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"zoomScale":0.9,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"OrdersDialogPt","handler":"onOkBtn"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":49}},{"__type__":"cc.Node","_name":"okBtn1","_parent":{"__id__":3},"_children":[{"__id__":53}],"_active":false,"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":52},"_spriteFrame":{"__uuid__":"9dZNwraKtEq5SLTSVj93Ri"}},{"__id__":54}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"25v6ffjatGWoMlhLohHai5"},"_contentSize":{"__type__":"cc.Size","width":352,"height":102},"_position":{"__type__":"cc.Vec3","x":8,"y":-223},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"Label","_parent":{"__id__":52},"_components":[{"__type__":"cc.Label","node":{"__id__":53},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"完成并领取奖励","_N$string":"完成并领取奖励","_fontSize":32,"_lineHeight":35,"_enableWrapText":false,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":53},"_color":{"__type__":"cc.Color","r":48,"g":119,"b":65},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"3dD650RVRNi7UvCWrzjxPV"},"fileId":"f4qtIYuj5HkIcImX5XUDMU"},"_contentSize":{"__type__":"cc.Size","width":228,"height":35},"_position":{"__type__":"cc.Vec3","y":2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Button","node":{"__id__":52},"transition":3,"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"zoomScale":0.9,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"OrdersDialogPt","handler":"onOkBtn1"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":52}}],{"__type__":"cc.SpriteFrame","content":{"name":"kuang11","texture":"8fa3Cn1KRLcJa9hV8H3oCj","rect":[1,1,114,119],"offset":[0,0],"originalSize":[116,121],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"caishen","texture":"6bn6SDuPdI3bZuWlWnYSHi","rect":[1,1,120,167],"offset":[0,0.5],"originalSize":[122,170],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"putongdingdan","texture":"e0jKurGjNK+7hEcPvojV1Y","rect":[1,1,219,55],"offset":[0,0],"originalSize":[221,57],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"diaoban","texture":"a9QoHyJZZB9L+K2Ky5xYk/","rect":[1,1,497,134],"offset":[0,0],"originalSize":[499,136],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"dadiban","texture":"5aKVC+CyBHLpKI0/M2qZ8/","rect":[1,1,327,459],"offset":[0,0],"originalSize":[329,461],"capInsets":[161,59,163,122]}},{"__type__":"cc.SpriteFrame","content":{"name":"biaoqian1","texture":"9aKTgaD3tFHZD0UNZWn7CQ","rect":[1,1,129,35],"offset":[0,0],"originalSize":[131,37],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"guanbi","texture":"efVL7RrcRKPa8GHGhR8tm3","rect":[1,1,84,87],"offset":[0,0],"originalSize":[86,89],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"xuanzhong","texture":"c51q3B4/xLPbJrhpqxOydL","rect":[1,1,32,32],"offset":[0,0],"originalSize":[34,34],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"anniu1","texture":"e4tGlf4TVKtrlE0QAufoML","rect":[1,1,352,102],"offset":[0,0],"originalSize":[354,104],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_sprite_splash","texture":"02delMVqdBD70a/HSD99FK","rect":[0,0,2,2],"offset":[0,0],"originalSize":[2,2],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"diban3","texture":"770NpATzNMyY9pPhOCa+cR","rect":[1,1,124,123],"offset":[0,0],"originalSize":[126,125],"capInsets":[26,19,17,18]}},{"__type__":"cc.SpriteFrame","content":{"name":"anniu","texture":"b7Cow+rm9DwZ1lU4vRORJj","rect":[1,1,352,102],"offset":[0,0],"originalSize":[354,104],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"diguang","texture":"fe7LKB/MdFuK2UM6MvaZkf","rect":[1,1,552,203],"offset":[0,0],"originalSize":[554,205],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"jinbi2","texture":"55hts9dLRPs4Mzsv2gkIiU","rect":[0,0,59,57],"offset":[0,0],"originalSize":[59,57],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_pressed","texture":"b4P/PCArtIdIH38t6mlw8Y","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_normal","texture":"e8Ueib+qJEhL6mXAHdnwbi","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"biaoqian","texture":"a8rnVZMYdB1IKFsz0IP0FP","rect":[1,1,100,32],"offset":[0,0],"originalSize":[102,34],"capInsets":[0,0,0,0]}}]
\ No newline at end of file
[[{"__type__":"cc.Prefab","_name":"farmersItem","data":{"__id__":1}},{"__type__":"cc.Node","_name":"farmersItem","_level":1,"_components":[{"__type__":"cc.Sprite","node":{"__id__":1},"_spriteFrame":{"__uuid__":"a2MjXRFdtLlYQ5ouAFv/+R"},"_sizeMode":0},{"__type__":"cc.Button","node":{"__id__":1},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"FarmersItem","handler":"onClick"}],"_N$target":{"__id__":1}},{"__type__":"4414eYWcEFMxIXwILNoxAPr","node":{"__id__":1}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"7fwYFYPfBFKpN+Sc4fadF1"},"fileId":"23aYt6KXdGV4TMWc85RXW7"},"_color":{"__type__":"cc.Color","r":177,"g":177,"b":177},"_contentSize":{"__type__":"cc.Size","width":180,"height":250},"_position":{"__type__":"cc.Vec3","x":-200,"y":-125},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}}],{"__type__":"cc.SpriteFrame","content":{"name":"default_sprite_splash","texture":"02delMVqdBD70a/HSD99FK","rect":[0,0,2,2],"offset":[0,0],"originalSize":[2,2],"capInsets":[0,0,0,0]}}]
\ No newline at end of file
[{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_disabled","texture":"71VhFCTINJM6/Ky3oX9nBT","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},[{"__type__":"cc.Prefab","_name":"testUI","data":{"__id__":1}},{"__type__":"cc.Node","_name":"testUI","_children":[{"__id__":2},{"__id__":4},{"__id__":6}],"_level":1,"_components":[{"__type__":"cc.Sprite","node":{"__id__":1},"_spriteFrame":{"__uuid__":"a2MjXRFdtLlYQ5ouAFv/+R"},"_sizeMode":0},{"__type__":"373d9EOPrdIloSLRl/2bphT","node":{"__id__":1}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"85qv3pWYNIgp83ARl3hU0Y"},"fileId":"c5eyYmsBJF2LgJ1X6UHbxF"},"_color":{"__type__":"cc.Color","r":73,"g":73,"b":73},"_contentSize":{"__type__":"cc.Size","width":760,"height":300},"_position":{"__type__":"cc.Vec3","y":-517},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"showStart","_parent":{"__id__":1},"_children":[{"__id__":3}],"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":2},"_spriteFrame":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_type":1,"_sizeMode":0},{"__type__":"cc.Button","node":{"__id__":2},"transition":2,"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"TestUI","handler":"onShowStartUI"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":2}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"85qv3pWYNIgp83ARl3hU0Y"},"fileId":"daDkEfW99OP6gAY1vOiROs"},"_contentSize":{"__type__":"cc.Size","width":150,"height":40},"_position":{"__type__":"cc.Vec3","x":-247,"y":78},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"Label","_parent":{"__id__":2},"_components":[{"__type__":"cc.Label","node":{"__id__":3},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"creatrPool","_N$string":"creatrPool","_fontSize":20,"_enableWrapText":false,"_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$overflow":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"85qv3pWYNIgp83ARl3hU0Y"},"fileId":"ffGBuNWiRD46WUr+6JZjc/"},"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":150,"height":40},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"hideStart","_parent":{"__id__":1},"_children":[{"__id__":5}],"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":4},"_spriteFrame":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_type":1,"_sizeMode":0},{"__type__":"cc.Button","node":{"__id__":4},"transition":2,"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"TestUI","handler":"onHideStartUI"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":4}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"85qv3pWYNIgp83ARl3hU0Y"},"fileId":"c1nR28YqtNUKDOG7Y31jNe"},"_contentSize":{"__type__":"cc.Size","width":150,"height":40},"_position":{"__type__":"cc.Vec3","x":-247,"y":2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"Label","_parent":{"__id__":4},"_components":[{"__type__":"cc.Label","node":{"__id__":5},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"getObj","_N$string":"getObj","_fontSize":20,"_enableWrapText":false,"_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$overflow":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"85qv3pWYNIgp83ARl3hU0Y"},"fileId":"bfhQA1FF9JY7emdx2B84d0"},"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":150,"height":40},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"destroyStart","_parent":{"__id__":1},"_children":[{"__id__":7}],"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":6},"_spriteFrame":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_type":1,"_sizeMode":0},{"__type__":"cc.Button","node":{"__id__":6},"transition":2,"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"TestUI","handler":"onDestroyStartUI"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":6}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"85qv3pWYNIgp83ARl3hU0Y"},"fileId":"81vWBq/J5JQIqZlOjXK/cg"},"_contentSize":{"__type__":"cc.Size","width":150,"height":40},"_position":{"__type__":"cc.Vec3","x":-247,"y":-71},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"Label","_parent":{"__id__":6},"_components":[{"__type__":"cc.Label","node":{"__id__":7},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"recoverObj","_N$string":"recoverObj","_fontSize":20,"_enableWrapText":false,"_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$overflow":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"85qv3pWYNIgp83ARl3hU0Y"},"fileId":"e5sNlHLOBJxYCMiBalJwl/"},"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":150,"height":40},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}}],{"__type__":"cc.SpriteFrame","content":{"name":"default_sprite_splash","texture":"02delMVqdBD70a/HSD99FK","rect":[0,0,2,2],"offset":[0,0],"originalSize":[2,2],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_pressed","texture":"b4P/PCArtIdIH38t6mlw8Y","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_normal","texture":"e8Ueib+qJEhL6mXAHdnwbi","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}}]
\ No newline at end of file
{"type":"cc.Texture2D","data":"0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|1,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0|0,9729,9729,33071,33071,0"}
\ No newline at end of file
[{"__type__":"cc.SpriteFrame","content":{"name":"shangdian","texture":"184IYkhUNEYqxKjD4chi7G","rect":[0,0,92,89],"offset":[0,0],"originalSize":[92,89],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"anniu1","texture":"3dARtEOaNMbb6q7kgP0HaF","rect":[1,1,352,102],"offset":[0,0],"originalSize":[354,104],"capInsets":[168,0,170,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"dian","texture":"a2KVU2ShVGZ7b3jkf5Otnb","rect":[0,0,31,32],"offset":[0,0],"originalSize":[31,32],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"zuanshi2","texture":"95tgA+MEhHHZqRO7FLtECb","rect":[0,0,62,57],"offset":[0,0],"originalSize":[62,57],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_disabled","texture":"71VhFCTINJM6/Ky3oX9nBT","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"renwu","texture":"b3W18dQiFCJbnI/oUgOP1I","rect":[0,0,88,107],"offset":[0,0],"originalSize":[88,107],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"muban336","texture":"f6C/H9xjdPrp7KpyfUChlN","rect":[1,1,215,223],"offset":[0,0],"originalSize":[217,225],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"paiming","texture":"205mizwIJP4qpcqJVhCNlT","rect":[0,0,88,109],"offset":[0,0],"originalSize":[88,109],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"fupinshangdian","texture":"1bkqaRuwlPZZx8SiBGvDhP","rect":[0,0,103,109],"offset":[0,0],"originalSize":[103,109],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"caishen","texture":"70yEBliTlG0YrxNFj77neI","rect":[1,1,120,167],"offset":[0,0.5],"originalSize":[122,170],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"zhuanpan","texture":"afZvkqPD5JSKL1J+pqdcp5","rect":[0,0,95,103],"offset":[0,0],"originalSize":[95,103],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"dasuan","texture":"05hzoMOD9H1a9guZyVBs9Q","rect":[0,0,320,198],"offset":[0,0],"originalSize":[320,198],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"dikuang","texture":"0918ZfOMBJzIZxGZQ38Wod","rect":[0,0,192,53],"offset":[0,0],"originalSize":[192,53],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"zuocelashen","texture":"6fYb26Ko5FsZKbwQiJVb3M","rect":[0,0,63,69],"offset":[0,0],"originalSize":[63,69],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"jindutiao2 ","texture":"dcNSFOYidLSbkxXF6x8RAL","rect":[1,1,216,31],"offset":[0,0],"originalSize":[218,33],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"bg1","texture":"0favQxn7hBrLscAW/6G8Uf","rect":[0,0,1000,2000],"offset":[0,0],"originalSize":[1000,2000],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"qiandao","texture":"b0sXGKCTFIyaYSeW+fLK1j","rect":[0,0,88,109],"offset":[0,0],"originalSize":[88,109],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"mogu","texture":"f1s/Fanz5IJYqYNREZ5RBD","rect":[0,0,320,198],"offset":[0,0],"originalSize":[320,198],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"suo3","texture":"429tdM1iFCrZsQT/CJ+KTI","rect":[1,1,99,96],"offset":[0,0],"originalSize":[101,98],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"taitou","texture":"97PDsTquJLfbhNLJXIEGI0","rect":[0,0,749,107],"offset":[0,0],"originalSize":[749,107],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_sprite_splash","texture":"02delMVqdBD70a/HSD99FK","rect":[0,0,2,2],"offset":[0,0],"originalSize":[2,2],"capInsets":[0,0,0,0]}},[{"__type__":"cc.Prefab","_name":"startUI","data":{"__id__":1}},{"__type__":"cc.Node","_name":"startUI","_children":[{"__id__":2},{"__id__":4},{"__id__":6},{"__id__":8}],"_level":1,"_components":[{"__type__":"cc.Sprite","node":{"__id__":1},"_spriteFrame":{"__uuid__":"a2MjXRFdtLlYQ5ouAFv/+R"},"_sizeMode":0},{"__type__":"f04b6QXT75CH4H9uij9xeD3","node":{"__id__":1},"yanjiusuo_sk":{"__id__":11},"jinbiLab":{"__id__":24},"zuanshiLab":{"__id__":26},"sceneBG1":{"__id__":3},"sceneBG2":{"__id__":5},"sceneBG3":{"__id__":7},"landArr":[{"__id__":162},{"__id__":122},{"__id__":82},{"__id__":42}],"shangdian_node":{"__id__":33},"upbtn_node":{"__id__":35},"backbtn_node":{"__id__":203},"zpbtn_node":{"__id__":37},"menceng_node":{"__id__":202}},{"__type__":"1a124fk7BRCE77eze7xLQ2G","node":{"__id__":1},"playerArr":[{"__id__":14},{"__id__":15},{"__id__":16}]}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"9eYNTt4RJN3JedXbXvCZ26"},"_color":{"__type__":"cc.Color","r":143,"g":143,"b":143},"_contentSize":{"__type__":"cc.Size","width":760,"height":1334},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"bg1","_parent":{"__id__":1},"_level":2,"_components":[{"__id__":3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"f9TTkI9KdNCKIQeHDD1dTY"},"_contentSize":{"__type__":"cc.Size","width":1000,"height":2000},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":2},"_spriteFrame":{"__uuid__":"6bGqQI9X9BbbayASpcNiBH"}},{"__type__":"cc.Node","_name":"bg2","_parent":{"__id__":1},"_active":false,"_level":2,"_components":[{"__id__":5}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"53No8On1JIgYihZkC/uT09"},"_contentSize":{"__type__":"cc.Size","width":1000,"height":2000},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":4},"_spriteFrame":{"__uuid__":"6bGqQI9X9BbbayASpcNiBH"}},{"__type__":"cc.Node","_name":"bg3","_parent":{"__id__":1},"_active":false,"_level":2,"_components":[{"__id__":7}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"2coypaH59KLJ7hQOYcx2DE"},"_contentSize":{"__type__":"cc.Size","width":1000,"height":2000},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":6},"_spriteFrame":{"__uuid__":"6bGqQI9X9BbbayASpcNiBH"}},{"__type__":"cc.Node","_name":"content","_parent":{"__id__":1},"_children":[{"__id__":9}],"_level":2,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"96ZBBQ7pdGHJDh/Zg+Q3/g"},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"mapNode","_parent":{"__id__":8},"_children":[{"__id__":10},{"__id__":12},{"__id__":13},{"__id__":17},{"__id__":41},{"__id__":203}],"_level":3,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"f8L/4Mx3lN+pTwbrlDQQ0o"},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"yanjiusuo","_parent":{"__id__":9},"_level":4,"_components":[{"__id__":11},{"__type__":"cc.Button","node":{"__id__":10},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"StartUI","handler":"openyanjiusuo"}],"_N$target":{"__id__":10}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"20twacv35M06hWxV4IJ+CX"},"_contentSize":{"__type__":"cc.Size","width":362,"height":317},"_position":{"__type__":"cc.Vec3","x":-103,"y":322},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"sp.Skeleton","node":{"__id__":10},"defaultAnimation":"await1","_N$skeletonData":{"__uuid__":"1bbav4lz9HpJr5niR3oUJR"}},{"__type__":"cc.Node","_name":"caishenye","_parent":{"__id__":9},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":12},"_spriteFrame":{"__uuid__":"38+TrSLqlLh5tCtSUr0Duz"}},{"__type__":"cc.Button","node":{"__id__":12},"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":12},"component":"PlayerMove","handler":"onLookOrdersRich"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":12}},{"__type__":"70ec9wPyulPTbKPFXmeeWBg","node":{"__id__":12}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"84+kbFRYNJBbX1sUbbw7Yr"},"_contentSize":{"__type__":"cc.Size","width":120,"height":167},"_position":{"__type__":"cc.Vec3","x":-136,"y":106},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"otherNode","_parent":{"__id__":9},"_children":[{"__id__":14},{"__type__":"cc.Node","_name":"AITruck","_parent":{"__id__":13},"_level":4,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"92kUlFKdhH4o5o83DOZelQ"},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__id__":15},{"__id__":16}],"_level":4,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"f6dJCnP0FCwI0KsypjCnKt"},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"AIkuaidi","_parent":{"__id__":13},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":14},"_spriteFrame":{"__uuid__":"b2+l2glfpANI6FbzZUrDX3"}},{"__type__":"70ec9wPyulPTbKPFXmeeWBg","node":{"__id__":14}},{"__type__":"cc.Button","node":{"__id__":14},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":14},"component":"PlayerMove","handler":"onLookOrders","customEventData":"1"}],"_N$target":{"__id__":14}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"55KZCfTcNIQpBjCZdMcZtG"},"_contentSize":{"__type__":"cc.Size","width":76,"height":76},"_position":{"__type__":"cc.Vec3","x":-621,"y":283},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"AIkuaidi","_parent":{"__id__":13},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":15},"_spriteFrame":{"__uuid__":"b5Gp/G0mhK5Y2S+G/zLA/d"}},{"__type__":"70ec9wPyulPTbKPFXmeeWBg","node":{"__id__":15}},{"__type__":"cc.Button","node":{"__id__":15},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":15},"component":"PlayerMove","handler":"onLookOrders","customEventData":"2"}],"_N$target":{"__id__":15}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"3aMhQqxJBCR5S1MoQcrZT3"},"_contentSize":{"__type__":"cc.Size","width":80,"height":81},"_position":{"__type__":"cc.Vec3","x":-614,"y":447},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"AIkuaidi","_parent":{"__id__":13},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":16},"_spriteFrame":{"__uuid__":"d8p3A8l5ZCLZcz6kiD0R27"}},{"__type__":"70ec9wPyulPTbKPFXmeeWBg","node":{"__id__":16}},{"__type__":"cc.Button","node":{"__id__":16},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":16},"component":"PlayerMove","handler":"onLookOrders","customEventData":"3"}],"_N$target":{"__id__":16}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"3fpR6B+D1LSYm/USX+hH0L"},"_contentSize":{"__type__":"cc.Size","width":80,"height":79},"_position":{"__type__":"cc.Vec3","x":-634,"y":116},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"nomapNode","_parent":{"__id__":9},"_children":[{"__id__":18},{"__id__":27},{"__id__":28},{"__id__":29},{"__id__":30},{"__id__":31},{"__id__":33},{"__id__":35},{"__id__":37},{"__id__":39}],"_level":4,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"7fTxVe1e9NyqpQQ8w/ZS/O"},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"taitou","_parent":{"__id__":17},"_children":[{"__id__":19},{"__id__":20},{"__id__":21},{"__id__":22},{"__id__":23},{"__id__":25}],"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":18},"_spriteFrame":{"__uuid__":"94hfu9wahEP7d3xfh/xJ3M"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"08SJmf7hxOZIhHYa/kaOD8"},"_contentSize":{"__type__":"cc.Size","width":749,"height":107},"_position":{"__type__":"cc.Vec3","y":613.5},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"dikuang","_parent":{"__id__":18},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":19},"_spriteFrame":{"__uuid__":"4fJ1UTMCxDz5GiZVEW+jq+"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"39Q+6D7T1C7raXAQs+iEe9"},"_contentSize":{"__type__":"cc.Size","width":192,"height":53},"_position":{"__type__":"cc.Vec3","x":21,"y":2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"dikuang","_parent":{"__id__":18},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":20},"_spriteFrame":{"__uuid__":"4fJ1UTMCxDz5GiZVEW+jq+"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"21fO58yDRHIq9BDzjJ7Yq5"},"_contentSize":{"__type__":"cc.Size","width":192,"height":53},"_position":{"__type__":"cc.Vec3","x":-220,"y":2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"zuanshi","_parent":{"__id__":18},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":21},"_spriteFrame":{"__uuid__":"25dt/PtH1IGKEfe/72MI9D"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"39JygCN5lAzbY0YAwqEd0R"},"_contentSize":{"__type__":"cc.Size","width":62,"height":57},"_position":{"__type__":"cc.Vec3","x":-59.8,"y":2.5},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"jinbi","_parent":{"__id__":18},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":22},"_spriteFrame":{"__uuid__":"e4IYERodFIB46xcrvFttJN"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"33uIVGVuVNophvqG33Y6f2"},"_contentSize":{"__type__":"cc.Size","width":59,"height":57},"_position":{"__type__":"cc.Vec3","x":-299.8,"y":3.6},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"jinbiLab","_parent":{"__id__":18},"_level":5,"_components":[{"__id__":24}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"9fW39q1F1OTKqI2h7fpRln"},"_contentSize":{"__type__":"cc.Size","width":77.86,"height":28},"_position":{"__type__":"cc.Vec3","x":-208.3,"y":1.8},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":23},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"66666","_N$string":"66666","_fontSize":28,"_lineHeight":28,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"zuanshiLab","_parent":{"__id__":18},"_level":5,"_components":[{"__id__":26}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"2fCH/qDIZGF6EajSACaev9"},"_contentSize":{"__type__":"cc.Size","width":77.86,"height":28},"_position":{"__type__":"cc.Vec3","x":29.8,"y":2.8},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":25},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"66666","_N$string":"66666","_fontSize":28,"_lineHeight":28,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"qiangdao_btn","_parent":{"__id__":17},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":27},"_spriteFrame":{"__uuid__":"75yalR1/BAYZ8W0hTfazsu"},"_type":1},{"__type__":"cc.Button","node":{"__id__":27},"transition":3,"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"StartUI","handler":"openQiandao"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":27}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"7e2iOPTuRAQLMrAVd+WO/i"},"_contentSize":{"__type__":"cc.Size","width":88,"height":109},"_position":{"__type__":"cc.Vec3","x":-239,"y":490},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"renwu_btn","_parent":{"__id__":17},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":28},"_spriteFrame":{"__uuid__":"2bIWelWi9H9qXFgoSHgh4b"},"_type":1},{"__type__":"cc.Button","node":{"__id__":28},"transition":3,"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"StartUI","handler":"openTask"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":28}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"a4RA5zLj9OhbL/FhTcytoK"},"_contentSize":{"__type__":"cc.Size","width":88,"height":107},"_position":{"__type__":"cc.Vec3","x":-7,"y":491},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"paihang_btn","_parent":{"__id__":17},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":29},"_spriteFrame":{"__uuid__":"2clHWXHJZKgZtB2tXlQKKe"},"_type":2},{"__type__":"cc.Button","node":{"__id__":29},"transition":3,"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"StartUI","handler":"openPaihan"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":29}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"3fbDHAme9GaZb+XO1SmIP2"},"_contentSize":{"__type__":"cc.Size","width":88,"height":109},"_position":{"__type__":"cc.Vec3","x":-123,"y":490},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"shop_btn","_parent":{"__id__":17},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":30},"_spriteFrame":{"__uuid__":"2fJWxtnURDdr5IPZALT60q"},"_type":2},{"__type__":"cc.Button","node":{"__id__":30},"transition":3,"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"StartUI","handler":"openFPstop"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":30}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"7dpSgH7YBNn7ORz3v09z6/"},"_contentSize":{"__type__":"cc.Size","width":103,"height":109},"_position":{"__type__":"cc.Vec3","x":310,"y":488},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"lashen_btn","_parent":{"__id__":17},"_children":[{"__id__":32}],"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":31},"_spriteFrame":{"__uuid__":"66mxvSullGtLP7VPLVtnti"},"_type":2},{"__type__":"cc.Button","node":{"__id__":31},"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"StartUI","handler":"openLashen"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":31}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"8etnydUGhJPLZ8OkTMghwq"},"_contentSize":{"__type__":"cc.Size","width":63,"height":69},"_position":{"__type__":"cc.Vec3","x":-343.7,"y":468.5},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"dian","_parent":{"__id__":31},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":32},"_spriteFrame":{"__uuid__":"20raXdTc5KIbeyU7PcC9uO"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"bagrZEumRKwJYsnOmeuwWX"},"_contentSize":{"__type__":"cc.Size","width":31,"height":32},"_position":{"__type__":"cc.Vec3","x":19,"y":26.3},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"shangdian","_parent":{"__id__":17},"_children":[{"__id__":34}],"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":33},"_spriteFrame":{"__uuid__":"c3aEQodqZBX5Bna78fO36X"}},{"__type__":"cc.Button","node":{"__id__":33},"transition":3,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"StartUI","handler":"openGameStore"}],"_N$target":{"__id__":33}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"71BMcDAQJBV5rgHquWZZHm"},"_contentSize":{"__type__":"cc.Size","width":142,"height":147},"_position":{"__type__":"cc.Vec3","x":-200.7,"y":-579.6},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"shangdian","_parent":{"__id__":33},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":34},"_spriteFrame":{"__uuid__":"06fdXHuP1IgK1vtD7Sj8qg"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"d7l51qTZpCnactcZzrQbV/"},"_contentSize":{"__type__":"cc.Size","width":92,"height":89},"_position":{"__type__":"cc.Vec3","x":-0.7999999999999998,"y":0.7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"up_btn","_parent":{"__id__":17},"_children":[{"__id__":36}],"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":35},"_spriteFrame":{"__uuid__":"c3aEQodqZBX5Bna78fO36X"},"_sizeMode":0},{"__type__":"cc.Button","node":{"__id__":35},"transition":3,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"StartUI","handler":"changeUp"}],"_N$target":{"__id__":35}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"e1AOvYskpEh6x42Vbv9tsn"},"_contentSize":{"__type__":"cc.Size","width":142.6,"height":157.6},"_position":{"__type__":"cc.Vec3","x":2.4,"y":-572.3},"_scale":{"__type__":"cc.Vec3","x":1.24,"y":1.24,"z":1}},{"__type__":"cc.Node","_name":"shangdian","_parent":{"__id__":35},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":36},"_spriteFrame":{"__uuid__":"b6ovzv3FtKj4VCYp1uFZmQ"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"f9ROtSLyNDrIpWMMSrL4zB"},"_contentSize":{"__type__":"cc.Size","width":123,"height":121},"_position":{"__type__":"cc.Vec3","x":0.20000000000000018,"y":2.6999999999999993},"_scale":{"__type__":"cc.Vec3","x":0.8,"y":0.8,"z":1}},{"__type__":"cc.Node","_name":"zp_btn","_parent":{"__id__":17},"_children":[{"__id__":38}],"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":37},"_spriteFrame":{"__uuid__":"c3aEQodqZBX5Bna78fO36X"}},{"__type__":"cc.Button","node":{"__id__":37},"transition":3,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"StartUI","handler":"openQyzp"}],"_N$target":{"__id__":37}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"1c4uGsrfhDWq66F9bKLGRe"},"_contentSize":{"__type__":"cc.Size","width":142,"height":147},"_position":{"__type__":"cc.Vec3","x":204.9,"y":-579.6},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"shangdian","_parent":{"__id__":37},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":38},"_spriteFrame":{"__uuid__":"39mwTlS8BJzYjAp7RqDbYu"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"06uQ3Om/hGZ53vIJOnkkaI"},"_contentSize":{"__type__":"cc.Size","width":95,"height":103},"_position":{"__type__":"cc.Vec3","x":-0.7999999999999998,"y":0.7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"changeScene_btn","_parent":{"__id__":17},"_children":[{"__id__":40}],"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":39},"_spriteFrame":{"__uuid__":"c3aEQodqZBX5Bna78fO36X"}},{"__type__":"cc.Button","node":{"__id__":39},"transition":3,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"StartUI","handler":"changeScene"}],"_N$target":{"__id__":39}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"0e0ZAoRfNDVYWbZY65aA3t"},"_contentSize":{"__type__":"cc.Size","width":142,"height":147},"_position":{"__type__":"cc.Vec3","x":308,"y":342},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"shangdian","_parent":{"__id__":39},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":40},"_spriteFrame":{"__uuid__":"39mwTlS8BJzYjAp7RqDbYu"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"90qhJeE9BH4LXH4nhkcKXa"},"_contentSize":{"__type__":"cc.Size","width":95,"height":103},"_position":{"__type__":"cc.Vec3","x":-0.7999999999999998,"y":0.7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"landNode","_parent":{"__id__":9},"_children":[{"__id__":42},{"__id__":82},{"__id__":122},{"__id__":162},{"__id__":202},{"__id__":63},{"__id__":103},{"__id__":143},{"__id__":183}],"_level":4,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"deAtzbThZA/bquUO6GS/1L"},"_position":{"__type__":"cc.Vec3","x":-186,"y":-306},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"land","_parent":{"__id__":41},"_children":[{"__id__":43}],"_level":5,"_components":[{"__type__":"d3c19NFznJEc7EKy5DOp+8l","node":{"__id__":42},"up_page":{"__id__":63},"play_page":{"__id__":43},"lock_node":{"__id__":45},"unlock_node":{"__id__":53},"canlock_node":{"__id__":51},"up_product_img":{"__id__":67},"up_levellab":{"__id__":69},"up_cllab":{"__id__":72},"up_progress":{"__id__":76},"up_upbtn":{"__id__":81},"up_needCion":{"__id__":80},"lock_lab1":{"__id__":48},"lock_lab2":{"__id__":50},"un_progress":{"__id__":60},"un_cllab":{"__id__":62},"techan_sk":{"__id__":55},"index":4},{"__type__":"cc.Sprite","node":{"__id__":42},"_enabled":false,"_spriteFrame":{"__uuid__":"7bbEGd/dVDTocuYRvzmw/0"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"f9AN/v8tFLka+hhiPXrURH"},"_contentSize":{"__type__":"cc.Size","width":320,"height":198},"_position":{"__type__":"cc.Vec3","x":380,"y":375},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"play_page","_parent":{"__id__":42},"_children":[{"__id__":44},{"__id__":45},{"__id__":51},{"__id__":53}],"_level":5,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"26cuCriOVNvKnQL4XIBGJn"},"_position":{"__type__":"cc.Vec3","x":14,"y":-9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"dipiImg","_parent":{"__id__":43},"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":44},"_enabled":false,"_spriteFrame":{"__uuid__":"4ai8vFkTBMO42u/ttQqR2A"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"c7E1LmDqpHoJSqpRoBWH0V"},"_contentSize":{"__type__":"cc.Size","width":320,"height":198},"_position":{"__type__":"cc.Vec3","x":-17,"y":9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"lock","_parent":{"__id__":43},"_children":[{"__id__":46}],"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":45},"_enabled":false}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"4bMFeCBsRB7IVvz0sf2h3Z"},"_contentSize":{"__type__":"cc.Size","width":74,"height":95},"_position":{"__type__":"cc.Vec3","x":-17.4,"y":-12.7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"LabNode","_parent":{"__id__":45},"_children":[{"__id__":47},{"__id__":49}],"_level":7,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"21yyFKtOVFxZyZY+1RvUxa"},"_position":{"__type__":"cc.Vec3","x":-4,"y":2.7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":46},"_level":8,"_components":[{"__id__":48},{"__type__":"cc.LabelOutline","node":{"__id__":47},"_color":{"__type__":"cc.Color","r":140,"g":76,"b":16}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"c4lPD7ewlOjINGKRMMPB4+"},"_color":{"__type__":"cc.Color","r":140,"g":76,"b":16},"_contentSize":{"__type__":"cc.Size","width":92,"height":40},"_position":{"__type__":"cc.Vec3","x":8.1,"y":31},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":47},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"土地二","_N$string":"土地二","_fontSize":30,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":46},"_level":8,"_components":[{"__id__":50},{"__type__":"cc.LabelOutline","node":{"__id__":49},"_color":{"__type__":"cc.Color","r":140,"g":76,"b":16}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"f12amVavZGzYmIwHH0+kLp"},"_color":{"__type__":"cc.Color","r":140,"g":76,"b":16},"_contentSize":{"__type__":"cc.Size","width":185.37,"height":40},"_position":{"__type__":"cc.Vec3","x":3,"y":-21.4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":49},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"达到10级解锁","_N$string":"达到10级解锁","_fontSize":30,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"canunLock_btn","_parent":{"__id__":43},"_children":[{"__id__":52}],"_active":false,"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":51},"_spriteFrame":{"__uuid__":"7fWCxAEIxKKZ4ZTyzYk4FA"}},{"__type__":"cc.Button","node":{"__id__":51},"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":42},"component":"Land","handler":"unlockLandFunc"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"7fWCxAEIxKKZ4ZTyzYk4FA"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":51}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"090DAzT7ZD97MFUJk19wG9"},"_contentSize":{"__type__":"cc.Size","width":99,"height":96},"_position":{"__type__":"cc.Vec3","x":-15,"y":33},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":51},"_level":7,"_components":[{"__type__":"cc.Label","node":{"__id__":52},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"可解锁","_N$string":"可解锁","_fontSize":32,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":52},"_color":{"__type__":"cc.Color","r":33,"g":83,"b":16},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"6bCYoCL/hLerrEONSgs79M"},"_color":{"__type__":"cc.Color","r":131,"g":233,"b":18},"_contentSize":{"__type__":"cc.Size","width":100,"height":40},"_position":{"__type__":"cc.Vec3","x":-8,"y":-79},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"unlock","_parent":{"__id__":43},"_children":[{"__id__":54},{"__id__":56}],"_active":false,"_level":6,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"53QoZZUXFP67MxtCtTgDBV"},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"landAni","_parent":{"__id__":53},"_level":7,"_components":[{"__id__":55}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"b621asURlEm5BP9LV91NFD"},"_contentSize":{"__type__":"cc.Size","width":323.76,"height":206.02},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"sp.Skeleton","node":{"__id__":54}},{"__type__":"cc.Node","_name":"progress_bg","_parent":{"__id__":53},"_children":[{"__id__":57},{"__id__":61}],"_level":6,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"7cnFmXWpBMY7+diAAsu+/D"},"_position":{"__type__":"cc.Vec3","x":9.9,"y":-135.4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"progress","_parent":{"__id__":56},"_children":[{"__id__":58}],"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":57},"_spriteFrame":{"__uuid__":"6659eeWqtAdZsjMyUxM5Sm"}},{"__id__":60}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"44JMd8CZ5DCqf3QvldoDX0"},"_contentSize":{"__type__":"cc.Size","width":216,"height":31},"_position":{"__type__":"cc.Vec3","x":5.6,"y":20.9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"bar","_parent":{"__id__":57},"_components":[{"__id__":59}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"0by0ci94ZIHounvPFpWHIy"},"_contentSize":{"__type__":"cc.Size","width":103.5,"height":21},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-104,"y":1.1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":58},"_spriteFrame":{"__uuid__":"ea/RcVsVNE2LGuaHsE6aWO"},"_sizeMode":0},{"__type__":"cc.ProgressBar","node":{"__id__":57},"_N$totalLength":207,"_N$barSprite":{"__id__":59},"_N$progress":0.5},{"__type__":"cc.Node","_name":"lab","_parent":{"__id__":56},"_level":7,"_components":[{"__id__":62},{"__type__":"cc.LabelOutline","node":{"__id__":61},"_color":{"__type__":"cc.Color","r":55,"g":24,"b":1},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"13quBbl7hL86sHg5g4TBTF"},"_contentSize":{"__type__":"cc.Size","width":78.52,"height":30},"_position":{"__type__":"cc.Vec3","x":4.800000000000001,"y":-13.5},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":61},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"5.57ff","_N$string":"5.57ff","_fontSize":30,"_lineHeight":30,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"up_page","_parent":{"__id__":41},"_children":[{"__id__":64}],"_active":false,"_level":5,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"0cBTJJX/ZJm4ErfYW1jBll"},"_position":{"__type__":"cc.Vec3","x":382,"y":385},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"up_bg","_parent":{"__id__":63},"_children":[{"__id__":65},{"__id__":66},{"__id__":68},{"__id__":70},{"__id__":71},{"__id__":73},{"__id__":77}],"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":64},"_spriteFrame":{"__uuid__":"2bKMF0fhBP/qHnz0Xjkzyl"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"bd5fRO/aRJwJZscXCbGdRo"},"_contentSize":{"__type__":"cc.Size","width":215,"height":223},"_position":{"__type__":"cc.Vec3","x":-10.5,"y":68.1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"biaoqian","_parent":{"__id__":64},"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":65},"_spriteFrame":{"__uuid__":"f9VK5W23dORJxguHM8s4iP"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"6cx+kF5GxIW5OLL+yhtR0V"},"_contentSize":{"__type__":"cc.Size","width":156,"height":40.7},"_position":{"__type__":"cc.Vec3","x":11.2,"y":30.1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"product_img","_parent":{"__id__":64},"_level":7,"_components":[{"__id__":67}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"0eUVAQOwtPp4aGKKDwzW6z"},"_contentSize":{"__type__":"cc.Size","width":75,"height":80},"_position":{"__type__":"cc.Vec3","x":-64.3,"y":34.4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":66},"_spriteFrame":{"__uuid__":"df54KWEAFBBKkNtc4LmHwM"}},{"__type__":"cc.Node","_name":"levelLab","_parent":{"__id__":64},"_level":7,"_components":[{"__id__":69},{"__type__":"cc.LabelOutline","node":{"__id__":68},"_color":{"__type__":"cc.Color","g":14,"b":52},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"968toINF9G+oMbPzEIWrkp"},"_contentSize":{"__type__":"cc.Size","width":26.25,"height":40},"_position":{"__type__":"cc.Vec3","x":8.100000000000001,"y":29},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":68},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"7","_N$string":"7","_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"New Sprite","_parent":{"__id__":64},"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":70},"_spriteFrame":{"__uuid__":"e4IYERodFIB46xcrvFttJN"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"20ErGM2TFJfL644qIZe4AW"},"_contentSize":{"__type__":"cc.Size","width":59,"height":57},"_position":{"__type__":"cc.Vec3","x":-43.5,"y":-26.8},"_scale":{"__type__":"cc.Vec3","x":0.6,"y":0.6,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":64},"_level":7,"_components":[{"__id__":72},{"__type__":"cc.LabelOutline","node":{"__id__":71},"_color":{"__type__":"cc.Color","g":14,"b":52},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"3bUPTvFV5C9bD+jDPXjQgO"},"_contentSize":{"__type__":"cc.Size","width":74.71,"height":24},"_position":{"__type__":"cc.Vec3","x":19,"y":-26.7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":71},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"999/秒","_N$string":"999/秒","_fontSize":24,"_lineHeight":24,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"progressBar","_parent":{"__id__":64},"_children":[{"__id__":74}],"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":73},"_spriteFrame":{"__uuid__":"6659eeWqtAdZsjMyUxM5Sm"},"_type":1,"_sizeMode":0},{"__id__":76}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"27BVe5A09Cda7ptBugQ8HD"},"_contentSize":{"__type__":"cc.Size","width":173.1,"height":25.7},"_position":{"__type__":"cc.Vec3","x":9.6,"y":86.3},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"bar","_parent":{"__id__":73},"_components":[{"__id__":75}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"2fdGzD0BhPjp8svf0i6ixB"},"_contentSize":{"__type__":"cc.Size","width":83,"height":15},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-83.1,"y":0.6},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":74},"_spriteFrame":{"__uuid__":"ea/RcVsVNE2LGuaHsE6aWO"},"_type":1,"_sizeMode":0},{"__type__":"cc.ProgressBar","node":{"__id__":73},"_N$totalLength":166,"_N$barSprite":{"__id__":75},"_N$progress":0.5},{"__type__":"cc.Node","_name":"upgradebtn","_parent":{"__id__":64},"_children":[{"__id__":78},{"__id__":79}],"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":77},"_spriteFrame":{"__uuid__":"1dEUZugBRHYoCKgHpDH/Gj"},"_sizeMode":0},{"__id__":81},{"__type__":"cc.Layout","node":{"__id__":77},"_layoutSize":{"__type__":"cc.Size","width":421.525,"height":156},"_N$layoutType":1,"_N$paddingLeft":50,"_N$paddingRight":30,"_N$spacingX":10}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"bbjcUJEwBHUbIN132HIFUX"},"_contentSize":{"__type__":"cc.Size","width":421.525,"height":156},"_position":{"__type__":"cc.Vec3","x":11.3,"y":-144.6},"_scale":{"__type__":"cc.Vec3","x":0.39,"y":0.39,"z":1}},{"__type__":"cc.Node","_name":"needCoin","_parent":{"__id__":77},"_level":8,"_components":[{"__type__":"cc.Sprite","node":{"__id__":78},"_spriteFrame":{"__uuid__":"e4IYERodFIB46xcrvFttJN"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"d79pLwOaZEl4x+MG130Zga"},"_contentSize":{"__type__":"cc.Size","width":120.5,"height":116.3},"_position":{"__type__":"cc.Vec3","x":-112.56249999999999,"y":6.5},"_scale":{"__type__":"cc.Vec3","x":0.8,"y":0.8,"z":1}},{"__type__":"cc.Node","_name":"clLab","_parent":{"__id__":77},"_level":8,"_components":[{"__id__":80},{"__type__":"cc.LabelOutline","node":{"__id__":79},"_color":{"__type__":"cc.Color","r":40,"g":113,"b":14},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"5dkB7DdopAAYTDkuh0LJwd"},"_contentSize":{"__type__":"cc.Size","width":51.23,"height":34},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-54.36249999999998,"y":6.5},"_scale":{"__type__":"cc.Vec3","x":2.5,"y":2.5,"z":1}},{"__type__":"cc.Label","node":{"__id__":79},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"5m","_N$string":"5m","_fontSize":34,"_lineHeight":34,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Button","node":{"__id__":77},"transition":3,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":42},"component":"Land","handler":"levelUp"}],"_N$enableAutoGrayEffect":true,"_N$target":{"__id__":77}},{"__type__":"cc.Node","_name":"land","_parent":{"__id__":41},"_children":[{"__id__":83}],"_level":5,"_components":[{"__type__":"d3c19NFznJEc7EKy5DOp+8l","node":{"__id__":82},"up_page":{"__id__":103},"play_page":{"__id__":83},"lock_node":{"__id__":85},"unlock_node":{"__id__":93},"canlock_node":{"__id__":91},"up_product_img":{"__id__":107},"up_levellab":{"__id__":109},"up_cllab":{"__id__":112},"up_progress":{"__id__":116},"up_upbtn":{"__id__":121},"up_needCion":{"__id__":120},"lock_lab1":{"__id__":88},"lock_lab2":{"__id__":90},"un_progress":{"__id__":100},"un_cllab":{"__id__":102},"techan_sk":{"__id__":95},"index":3},{"__type__":"cc.Sprite","node":{"__id__":82},"_enabled":false,"_spriteFrame":{"__uuid__":"7bbEGd/dVDTocuYRvzmw/0"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"f7Ovk8u7BFmb1vBxdXYhss"},"_contentSize":{"__type__":"cc.Size","width":320,"height":198},"_position":{"__type__":"cc.Vec3","x":-23,"y":257},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"play_page","_parent":{"__id__":82},"_children":[{"__id__":84},{"__id__":85},{"__id__":91},{"__id__":93}],"_level":5,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"2d94Euo1FLSpKIaiYxQa+M"},"_position":{"__type__":"cc.Vec3","x":14,"y":-9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"dipiImg","_parent":{"__id__":83},"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":84},"_enabled":false,"_spriteFrame":{"__uuid__":"4ai8vFkTBMO42u/ttQqR2A"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"72xCOu6z5HhIG4tMPLDCaU"},"_contentSize":{"__type__":"cc.Size","width":320,"height":198},"_position":{"__type__":"cc.Vec3","x":-17,"y":9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"lock","_parent":{"__id__":83},"_children":[{"__id__":86}],"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":85},"_enabled":false}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"87zLrUxplALqlbLboVmhac"},"_contentSize":{"__type__":"cc.Size","width":74,"height":95},"_position":{"__type__":"cc.Vec3","x":-17.4,"y":-12.7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"LabNode","_parent":{"__id__":85},"_children":[{"__id__":87},{"__id__":89}],"_level":7,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"d0YonEbrRB+ojLwywnCtTZ"},"_position":{"__type__":"cc.Vec3","x":-4,"y":2.7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":86},"_level":8,"_components":[{"__id__":88},{"__type__":"cc.LabelOutline","node":{"__id__":87},"_color":{"__type__":"cc.Color","r":140,"g":76,"b":16}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"c1C24HfwdHP4bMgaEw06td"},"_color":{"__type__":"cc.Color","r":140,"g":76,"b":16},"_contentSize":{"__type__":"cc.Size","width":92,"height":40},"_position":{"__type__":"cc.Vec3","x":8.1,"y":31},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":87},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"土地二","_N$string":"土地二","_fontSize":30,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":86},"_level":8,"_components":[{"__id__":90},{"__type__":"cc.LabelOutline","node":{"__id__":89},"_color":{"__type__":"cc.Color","r":140,"g":76,"b":16}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"79ei/9GyBBnLIb7v2w9orQ"},"_color":{"__type__":"cc.Color","r":140,"g":76,"b":16},"_contentSize":{"__type__":"cc.Size","width":185.37,"height":40},"_position":{"__type__":"cc.Vec3","x":3,"y":-21.4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":89},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"达到10级解锁","_N$string":"达到10级解锁","_fontSize":30,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"canunLock_btn","_objFlags":512,"_parent":{"__id__":83},"_children":[{"__id__":92}],"_active":false,"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":91},"_spriteFrame":{"__uuid__":"7fWCxAEIxKKZ4ZTyzYk4FA"}},{"__type__":"cc.Button","node":{"__id__":91},"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":82},"component":"Land","handler":"unlockLandFunc"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"7fWCxAEIxKKZ4ZTyzYk4FA"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":91}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"9c8O52FL5KDYlN0K8RO377"},"_contentSize":{"__type__":"cc.Size","width":99,"height":96},"_position":{"__type__":"cc.Vec3","x":-15,"y":33},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":91},"_level":7,"_components":[{"__type__":"cc.Label","node":{"__id__":92},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"可解锁","_N$string":"可解锁","_fontSize":32,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":92},"_color":{"__type__":"cc.Color","r":33,"g":83,"b":16},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"77YvxPkKdMRJZq+1XagEPm"},"_color":{"__type__":"cc.Color","r":131,"g":233,"b":18},"_contentSize":{"__type__":"cc.Size","width":100,"height":40},"_position":{"__type__":"cc.Vec3","x":-8,"y":-79},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"unlock","_parent":{"__id__":83},"_children":[{"__id__":94},{"__id__":96}],"_active":false,"_level":6,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"594jJ9Fy5FoaSrEzH3Z1ln"},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"landAni","_parent":{"__id__":93},"_level":7,"_components":[{"__id__":95}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"263I6tMzxDWbKlu5ZnOQwp"},"_contentSize":{"__type__":"cc.Size","width":323.76,"height":206.02},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"sp.Skeleton","node":{"__id__":94}},{"__type__":"cc.Node","_name":"progress_bg","_parent":{"__id__":93},"_children":[{"__id__":97},{"__id__":101}],"_level":6,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"c8pPf7ZGFL1YWUedbfHeZz"},"_position":{"__type__":"cc.Vec3","x":9.9,"y":-135.4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"progress","_parent":{"__id__":96},"_children":[{"__id__":98}],"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":97},"_spriteFrame":{"__uuid__":"6659eeWqtAdZsjMyUxM5Sm"}},{"__id__":100}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"52odXcJKRFnKdjOEODPk0N"},"_contentSize":{"__type__":"cc.Size","width":216,"height":31},"_position":{"__type__":"cc.Vec3","x":5.6,"y":20.9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"bar","_parent":{"__id__":97},"_components":[{"__id__":99}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"22xitLO/BNrpMJs/2OT5mV"},"_contentSize":{"__type__":"cc.Size","width":103.5,"height":21},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-104,"y":1.1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":98},"_spriteFrame":{"__uuid__":"ea/RcVsVNE2LGuaHsE6aWO"},"_sizeMode":0},{"__type__":"cc.ProgressBar","node":{"__id__":97},"_N$totalLength":207,"_N$barSprite":{"__id__":99},"_N$progress":0.5},{"__type__":"cc.Node","_name":"lab","_parent":{"__id__":96},"_level":7,"_components":[{"__id__":102},{"__type__":"cc.LabelOutline","node":{"__id__":101},"_color":{"__type__":"cc.Color","r":55,"g":24,"b":1},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"e3xsEA1NdGHaO+LBz92q7e"},"_contentSize":{"__type__":"cc.Size","width":78.52,"height":30},"_position":{"__type__":"cc.Vec3","x":4.800000000000001,"y":-13.5},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":101},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"5.57ff","_N$string":"5.57ff","_fontSize":30,"_lineHeight":30,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"up_page","_parent":{"__id__":41},"_children":[{"__id__":104}],"_active":false,"_level":5,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"eaOaQhPEFLza+nTjjFjrFt"},"_position":{"__type__":"cc.Vec3","x":-21,"y":267},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"up_bg","_parent":{"__id__":103},"_children":[{"__id__":105},{"__id__":106},{"__id__":108},{"__id__":110},{"__id__":111},{"__id__":113},{"__id__":117}],"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":104},"_spriteFrame":{"__uuid__":"2bKMF0fhBP/qHnz0Xjkzyl"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"04TvrwdgtPhrkYtIH2/1o8"},"_contentSize":{"__type__":"cc.Size","width":215,"height":223},"_position":{"__type__":"cc.Vec3","x":-10.5,"y":68.1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"biaoqian","_parent":{"__id__":104},"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":105},"_spriteFrame":{"__uuid__":"f9VK5W23dORJxguHM8s4iP"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"359Sjlm6lBlrpOtxXzqO8p"},"_contentSize":{"__type__":"cc.Size","width":156,"height":40.7},"_position":{"__type__":"cc.Vec3","x":11.2,"y":30.1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"product_img","_parent":{"__id__":104},"_level":7,"_components":[{"__id__":107}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"d7vRyH8mBIE4RM58S8pC6a"},"_contentSize":{"__type__":"cc.Size","width":75,"height":80},"_position":{"__type__":"cc.Vec3","x":-64.3,"y":34.4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":106},"_spriteFrame":{"__uuid__":"df54KWEAFBBKkNtc4LmHwM"}},{"__type__":"cc.Node","_name":"levelLab","_parent":{"__id__":104},"_level":7,"_components":[{"__id__":109},{"__type__":"cc.LabelOutline","node":{"__id__":108},"_color":{"__type__":"cc.Color","g":14,"b":52},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"376kySrilB77smeIJgrrwD"},"_contentSize":{"__type__":"cc.Size","width":26.25,"height":40},"_position":{"__type__":"cc.Vec3","x":8.100000000000001,"y":29},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":108},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"7","_N$string":"7","_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"New Sprite","_parent":{"__id__":104},"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":110},"_spriteFrame":{"__uuid__":"e4IYERodFIB46xcrvFttJN"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"51xTDkp+9A/p/fHJkZlB/S"},"_contentSize":{"__type__":"cc.Size","width":59,"height":57},"_position":{"__type__":"cc.Vec3","x":-43.5,"y":-26.8},"_scale":{"__type__":"cc.Vec3","x":0.6,"y":0.6,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":104},"_level":7,"_components":[{"__id__":112},{"__type__":"cc.LabelOutline","node":{"__id__":111},"_color":{"__type__":"cc.Color","g":14,"b":52},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"17cMPd1z5AZKqCnZPl/Z3t"},"_contentSize":{"__type__":"cc.Size","width":74.71,"height":24},"_position":{"__type__":"cc.Vec3","x":19,"y":-26.7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":111},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"999/秒","_N$string":"999/秒","_fontSize":24,"_lineHeight":24,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"progressBar","_parent":{"__id__":104},"_children":[{"__id__":114}],"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":113},"_spriteFrame":{"__uuid__":"6659eeWqtAdZsjMyUxM5Sm"},"_type":1,"_sizeMode":0},{"__id__":116}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"bcAZt7HV5CKamAO+eenYJG"},"_contentSize":{"__type__":"cc.Size","width":173.1,"height":25.7},"_position":{"__type__":"cc.Vec3","x":9.6,"y":86.3},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"bar","_parent":{"__id__":113},"_components":[{"__id__":115}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"e5FyDKxp5H+pQHZPg2zDnA"},"_contentSize":{"__type__":"cc.Size","width":83,"height":15},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-83.1,"y":0.6},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":114},"_spriteFrame":{"__uuid__":"ea/RcVsVNE2LGuaHsE6aWO"},"_type":1,"_sizeMode":0},{"__type__":"cc.ProgressBar","node":{"__id__":113},"_N$totalLength":166,"_N$barSprite":{"__id__":115},"_N$progress":0.5},{"__type__":"cc.Node","_name":"upgradebtn","_parent":{"__id__":104},"_children":[{"__id__":118},{"__id__":119}],"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":117},"_spriteFrame":{"__uuid__":"1dEUZugBRHYoCKgHpDH/Gj"},"_sizeMode":0},{"__id__":121},{"__type__":"cc.Layout","node":{"__id__":117},"_N$layoutType":1,"_N$paddingLeft":50,"_N$paddingRight":30,"_N$spacingX":10}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"f6HEzzQ8tKhL7O6Crsa5Eq"},"_contentSize":{"__type__":"cc.Size","width":429,"height":156},"_position":{"__type__":"cc.Vec3","x":11.3,"y":-144.6},"_scale":{"__type__":"cc.Vec3","x":0.39,"y":0.39,"z":1}},{"__type__":"cc.Node","_name":"needCoin","_parent":{"__id__":117},"_level":8,"_components":[{"__type__":"cc.Sprite","node":{"__id__":118},"_spriteFrame":{"__uuid__":"e4IYERodFIB46xcrvFttJN"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"12JJwT/dxKRKc9bfgHbIjJ"},"_contentSize":{"__type__":"cc.Size","width":120.5,"height":116.3},"_position":{"__type__":"cc.Vec3","x":-116.3,"y":8.5},"_scale":{"__type__":"cc.Vec3","x":0.8,"y":0.8,"z":1}},{"__type__":"cc.Node","_name":"clLab","_parent":{"__id__":117},"_level":8,"_components":[{"__id__":120},{"__type__":"cc.LabelOutline","node":{"__id__":119},"_color":{"__type__":"cc.Color","r":40,"g":113,"b":14},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"80ceXUFYZOWo9FucjlSgsu"},"_contentSize":{"__type__":"cc.Size","width":39.91,"height":34},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-58.099999999999994,"y":10.5},"_scale":{"__type__":"cc.Vec3","x":2.5,"y":2.5,"z":1}},{"__type__":"cc.Label","node":{"__id__":119},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"5k","_N$string":"5k","_fontSize":34,"_lineHeight":34,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Button","node":{"__id__":117},"transition":3,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":82},"component":"Land","handler":"levelUp"}],"_N$enableAutoGrayEffect":true,"_N$target":{"__id__":117}},{"__type__":"cc.Node","_name":"land","_parent":{"__id__":41},"_children":[{"__id__":123}],"_level":5,"_components":[{"__type__":"d3c19NFznJEc7EKy5DOp+8l","node":{"__id__":122},"up_page":{"__id__":143},"play_page":{"__id__":123},"lock_node":{"__id__":125},"unlock_node":{"__id__":133},"canlock_node":{"__id__":131},"up_product_img":{"__id__":147},"up_levellab":{"__id__":149},"up_cllab":{"__id__":152},"up_progress":{"__id__":156},"up_upbtn":{"__id__":161},"up_needCion":{"__id__":160},"lock_lab1":{"__id__":128},"lock_lab2":{"__id__":130},"un_progress":{"__id__":140},"un_cllab":{"__id__":142},"techan_sk":{"__id__":135},"index":2},{"__type__":"cc.Sprite","node":{"__id__":122},"_enabled":false,"_spriteFrame":{"__uuid__":"7bbEGd/dVDTocuYRvzmw/0"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"cckGxsIQtLXoI0Q7CcHNbg"},"_contentSize":{"__type__":"cc.Size","width":320,"height":198},"_position":{"__type__":"cc.Vec3","x":421,"y":153},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"play_page","_parent":{"__id__":122},"_children":[{"__id__":124},{"__id__":125},{"__id__":131},{"__id__":133}],"_level":5,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"0aEe7mmEVHZJxeTYuMOVqZ"},"_position":{"__type__":"cc.Vec3","x":14,"y":-9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"dipiImg","_parent":{"__id__":123},"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":124},"_enabled":false,"_spriteFrame":{"__uuid__":"4ai8vFkTBMO42u/ttQqR2A"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"433hm9Z9hOmZ/wUE6Eh8UR"},"_contentSize":{"__type__":"cc.Size","width":320,"height":198},"_position":{"__type__":"cc.Vec3","x":-17,"y":9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"lock","_parent":{"__id__":123},"_children":[{"__id__":126}],"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":125},"_enabled":false}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"e74zZRU+hD9bpFP29lUQ43"},"_contentSize":{"__type__":"cc.Size","width":74,"height":95},"_position":{"__type__":"cc.Vec3","x":-17.4,"y":-12.7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"LabNode","_parent":{"__id__":125},"_children":[{"__id__":127},{"__id__":129}],"_level":7,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"e9xqwO+XFKn6QHeGphvv3S"},"_position":{"__type__":"cc.Vec3","x":-4,"y":2.7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":126},"_level":8,"_components":[{"__id__":128},{"__type__":"cc.LabelOutline","node":{"__id__":127},"_color":{"__type__":"cc.Color","r":140,"g":76,"b":16}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"b0l/Pn241BGLcKgYrRMFfR"},"_color":{"__type__":"cc.Color","r":140,"g":76,"b":16},"_contentSize":{"__type__":"cc.Size","width":92,"height":40},"_position":{"__type__":"cc.Vec3","x":8.1,"y":31},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":127},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"土地二","_N$string":"土地二","_fontSize":30,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":126},"_level":8,"_components":[{"__id__":130},{"__type__":"cc.LabelOutline","node":{"__id__":129},"_color":{"__type__":"cc.Color","r":140,"g":76,"b":16}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"cdEd0rAMFPvr1aZBFiWUnk"},"_color":{"__type__":"cc.Color","r":140,"g":76,"b":16},"_contentSize":{"__type__":"cc.Size","width":185.37,"height":40},"_position":{"__type__":"cc.Vec3","x":3,"y":-21.4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":129},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"达到10级解锁","_N$string":"达到10级解锁","_fontSize":30,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"canunLock_btn","_parent":{"__id__":123},"_children":[{"__id__":132}],"_active":false,"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":131},"_spriteFrame":{"__uuid__":"7fWCxAEIxKKZ4ZTyzYk4FA"}},{"__type__":"cc.Button","node":{"__id__":131},"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":122},"component":"Land","handler":"unlockLandFunc"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"7fWCxAEIxKKZ4ZTyzYk4FA"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":131}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"dazYVRYNlITLUWQOhBM3ql"},"_contentSize":{"__type__":"cc.Size","width":99,"height":96},"_position":{"__type__":"cc.Vec3","x":-15,"y":33},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":131},"_level":7,"_components":[{"__type__":"cc.Label","node":{"__id__":132},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"可解锁","_N$string":"可解锁","_fontSize":32,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":132},"_color":{"__type__":"cc.Color","r":33,"g":83,"b":16},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"f4JzuGp4dBm6ELt5TWZiCP"},"_color":{"__type__":"cc.Color","r":131,"g":233,"b":18},"_contentSize":{"__type__":"cc.Size","width":100,"height":40},"_position":{"__type__":"cc.Vec3","x":-8,"y":-79},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"unlock","_parent":{"__id__":123},"_children":[{"__id__":134},{"__id__":136}],"_active":false,"_level":6,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"f0VFfxvWBLvY3+NGTm0ALy"},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"landAni","_parent":{"__id__":133},"_level":7,"_components":[{"__id__":135}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"79rMLsKi5Prb4HEt8lQHqY"},"_contentSize":{"__type__":"cc.Size","width":323.76,"height":206.02},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"sp.Skeleton","node":{"__id__":134}},{"__type__":"cc.Node","_name":"progress_bg","_parent":{"__id__":133},"_children":[{"__id__":137},{"__id__":141}],"_level":6,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"b6LiLVVFtBg6dkeueyK1HR"},"_position":{"__type__":"cc.Vec3","x":9.9,"y":-135.4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"progress","_parent":{"__id__":136},"_children":[{"__id__":138}],"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":137},"_spriteFrame":{"__uuid__":"6659eeWqtAdZsjMyUxM5Sm"}},{"__id__":140}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"75O/ZIPqFIF4xGPeb7S55l"},"_contentSize":{"__type__":"cc.Size","width":216,"height":31},"_position":{"__type__":"cc.Vec3","x":5.6,"y":20.9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"bar","_parent":{"__id__":137},"_components":[{"__id__":139}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"ddTteokU9FfKDEWoeQTkk2"},"_contentSize":{"__type__":"cc.Size","width":103.5,"height":21},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-104,"y":1.1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":138},"_spriteFrame":{"__uuid__":"ea/RcVsVNE2LGuaHsE6aWO"},"_sizeMode":0},{"__type__":"cc.ProgressBar","node":{"__id__":137},"_N$totalLength":207,"_N$barSprite":{"__id__":139},"_N$progress":0.5},{"__type__":"cc.Node","_name":"lab","_parent":{"__id__":136},"_level":7,"_components":[{"__id__":142},{"__type__":"cc.LabelOutline","node":{"__id__":141},"_color":{"__type__":"cc.Color","r":55,"g":24,"b":1},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"07ipNIWNZI7KmIeevU/Gdx"},"_contentSize":{"__type__":"cc.Size","width":78.52,"height":30},"_position":{"__type__":"cc.Vec3","x":4.800000000000001,"y":-13.5},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":141},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"5.57ff","_N$string":"5.57ff","_fontSize":30,"_lineHeight":30,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"up_page","_parent":{"__id__":41},"_children":[{"__id__":144}],"_active":false,"_level":5,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"86qAXJZlFN8rxi+9phkYNy"},"_position":{"__type__":"cc.Vec3","x":423,"y":163},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"up_bg","_parent":{"__id__":143},"_children":[{"__id__":145},{"__id__":146},{"__id__":148},{"__id__":150},{"__id__":151},{"__id__":153},{"__id__":157}],"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":144},"_spriteFrame":{"__uuid__":"2bKMF0fhBP/qHnz0Xjkzyl"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"26ZqRLpndM45kocoI0tH6a"},"_contentSize":{"__type__":"cc.Size","width":215,"height":223},"_position":{"__type__":"cc.Vec3","x":-10.5,"y":68.1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"biaoqian","_parent":{"__id__":144},"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":145},"_spriteFrame":{"__uuid__":"f9VK5W23dORJxguHM8s4iP"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"aaVomZt5hD+LiF4Ab6BxCA"},"_contentSize":{"__type__":"cc.Size","width":156,"height":40.7},"_position":{"__type__":"cc.Vec3","x":11.2,"y":30.1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"product_img","_parent":{"__id__":144},"_level":7,"_components":[{"__id__":147}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"703FvpBL9N7oVbh40EYkA0"},"_contentSize":{"__type__":"cc.Size","width":75,"height":80},"_position":{"__type__":"cc.Vec3","x":-64.3,"y":34.4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":146},"_spriteFrame":{"__uuid__":"df54KWEAFBBKkNtc4LmHwM"}},{"__type__":"cc.Node","_name":"levelLab","_parent":{"__id__":144},"_level":7,"_components":[{"__id__":149},{"__type__":"cc.LabelOutline","node":{"__id__":148},"_color":{"__type__":"cc.Color","g":14,"b":52},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"bcY0NJ709CA5s5RmknfY2w"},"_contentSize":{"__type__":"cc.Size","width":26.25,"height":40},"_position":{"__type__":"cc.Vec3","x":8.100000000000001,"y":29},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":148},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"7","_N$string":"7","_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"New Sprite","_parent":{"__id__":144},"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":150},"_spriteFrame":{"__uuid__":"e4IYERodFIB46xcrvFttJN"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"4375EpqFVBDrW6diiERkoz"},"_contentSize":{"__type__":"cc.Size","width":59,"height":57},"_position":{"__type__":"cc.Vec3","x":-43.5,"y":-26.8},"_scale":{"__type__":"cc.Vec3","x":0.6,"y":0.6,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":144},"_level":7,"_components":[{"__id__":152},{"__type__":"cc.LabelOutline","node":{"__id__":151},"_color":{"__type__":"cc.Color","g":14,"b":52},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"07Bdrpm0pA86M5ih8aV0mb"},"_contentSize":{"__type__":"cc.Size","width":74.71,"height":24},"_position":{"__type__":"cc.Vec3","x":19,"y":-26.7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":151},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"999/秒","_N$string":"999/秒","_fontSize":24,"_lineHeight":24,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"progressBar","_parent":{"__id__":144},"_children":[{"__id__":154}],"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":153},"_spriteFrame":{"__uuid__":"6659eeWqtAdZsjMyUxM5Sm"},"_type":1,"_sizeMode":0},{"__id__":156}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"1dXvHopw1Nl7BYYlqym4UN"},"_contentSize":{"__type__":"cc.Size","width":173.1,"height":25.7},"_position":{"__type__":"cc.Vec3","x":9.6,"y":86.3},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"bar","_parent":{"__id__":153},"_components":[{"__id__":155}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"f1pTb9F6FAVrGndUQo2kmd"},"_contentSize":{"__type__":"cc.Size","width":83,"height":15},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-83.1,"y":0.6},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":154},"_spriteFrame":{"__uuid__":"ea/RcVsVNE2LGuaHsE6aWO"},"_type":1,"_sizeMode":0},{"__type__":"cc.ProgressBar","node":{"__id__":153},"_N$totalLength":166,"_N$barSprite":{"__id__":155},"_N$progress":0.5},{"__type__":"cc.Node","_name":"upgradebtn","_parent":{"__id__":144},"_children":[{"__id__":158},{"__id__":159}],"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":157},"_spriteFrame":{"__uuid__":"1dEUZugBRHYoCKgHpDH/Gj"},"_sizeMode":0},{"__id__":161},{"__type__":"cc.Layout","node":{"__id__":157},"_N$layoutType":1,"_N$paddingLeft":50,"_N$paddingRight":30,"_N$spacingX":10}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"84NYfx8xVKN62qdjMIhCMg"},"_contentSize":{"__type__":"cc.Size","width":429,"height":156},"_position":{"__type__":"cc.Vec3","x":11.3,"y":-144.6},"_scale":{"__type__":"cc.Vec3","x":0.39,"y":0.39,"z":1}},{"__type__":"cc.Node","_name":"needCoin","_parent":{"__id__":157},"_level":8,"_components":[{"__type__":"cc.Sprite","node":{"__id__":158},"_spriteFrame":{"__uuid__":"e4IYERodFIB46xcrvFttJN"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"ecwAAP3tpH6LnDL1TDpD1X"},"_contentSize":{"__type__":"cc.Size","width":120.5,"height":116.3},"_position":{"__type__":"cc.Vec3","x":-116.3,"y":6.5},"_scale":{"__type__":"cc.Vec3","x":0.8,"y":0.8,"z":1}},{"__type__":"cc.Node","_name":"clLab","_parent":{"__id__":157},"_level":8,"_components":[{"__id__":160},{"__type__":"cc.LabelOutline","node":{"__id__":159},"_color":{"__type__":"cc.Color","r":40,"g":113,"b":14},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"b11i259clIHrVNUL1NfgnR"},"_contentSize":{"__type__":"cc.Size","width":51.23,"height":34},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-58.099999999999994,"y":6.5},"_scale":{"__type__":"cc.Vec3","x":2.5,"y":2.5,"z":1}},{"__type__":"cc.Label","node":{"__id__":159},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"5m","_N$string":"5m","_fontSize":34,"_lineHeight":34,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Button","node":{"__id__":157},"transition":3,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":122},"component":"Land","handler":"levelUp"}],"_N$enableAutoGrayEffect":true,"_N$target":{"__id__":157}},{"__type__":"cc.Node","_name":"land","_parent":{"__id__":41},"_children":[{"__id__":163}],"_level":4,"_components":[{"__type__":"d3c19NFznJEc7EKy5DOp+8l","node":{"__id__":162},"up_page":{"__id__":183},"play_page":{"__id__":163},"lock_node":{"__id__":165},"unlock_node":{"__id__":173},"canlock_node":{"__id__":171},"up_product_img":{"__id__":187},"up_levellab":{"__id__":189},"up_cllab":{"__id__":192},"up_progress":{"__id__":196},"up_upbtn":{"__id__":201},"up_needCion":{"__id__":200},"lock_lab1":{"__id__":168},"lock_lab2":{"__id__":170},"un_progress":{"__id__":180},"un_cllab":{"__id__":182},"techan_sk":{"__id__":175}},{"__type__":"cc.Sprite","node":{"__id__":162},"_enabled":false,"_spriteFrame":{"__uuid__":"7bbEGd/dVDTocuYRvzmw/0"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"22vpiWlhFGKJHmLJ4r2cNA"},"_contentSize":{"__type__":"cc.Size","width":320,"height":198},"_position":{"__type__":"cc.Vec3","x":-2,"y":21.6},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"play_page","_parent":{"__id__":162},"_children":[{"__id__":164},{"__id__":165},{"__id__":171},{"__id__":173}],"_level":5,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"6b5vmP/3BO25ucw/P7Eqnl"},"_position":{"__type__":"cc.Vec3","x":14,"y":-9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"dipiImg","_parent":{"__id__":163},"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":164},"_enabled":false,"_spriteFrame":{"__uuid__":"4ai8vFkTBMO42u/ttQqR2A"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"fbfFVeGjdLbIiJI/CmhHPe"},"_contentSize":{"__type__":"cc.Size","width":320,"height":198},"_position":{"__type__":"cc.Vec3","x":-17,"y":9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"lock","_parent":{"__id__":163},"_children":[{"__id__":166}],"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":165},"_enabled":false}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"a5gm6G4O5OG5daIwKt6fJK"},"_contentSize":{"__type__":"cc.Size","width":74,"height":95},"_position":{"__type__":"cc.Vec3","x":-17.4,"y":-12.7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"LabNode","_parent":{"__id__":165},"_children":[{"__id__":167},{"__id__":169}],"_level":7,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"69QmbO/x5BUqxxVhDYaZOr"},"_position":{"__type__":"cc.Vec3","x":-4,"y":2.7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":166},"_level":8,"_components":[{"__id__":168},{"__type__":"cc.LabelOutline","node":{"__id__":167},"_color":{"__type__":"cc.Color","r":140,"g":76,"b":16}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"5eC+oTOcpCJLkWgfPC+Etc"},"_color":{"__type__":"cc.Color","r":140,"g":76,"b":16},"_contentSize":{"__type__":"cc.Size","width":92,"height":40},"_position":{"__type__":"cc.Vec3","x":8.1,"y":31},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":167},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"土地二","_N$string":"土地二","_fontSize":30,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":166},"_level":8,"_components":[{"__id__":170},{"__type__":"cc.LabelOutline","node":{"__id__":169},"_color":{"__type__":"cc.Color","r":140,"g":76,"b":16}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"332DX5KBRPxYwnh1ogpcnz"},"_color":{"__type__":"cc.Color","r":140,"g":76,"b":16},"_contentSize":{"__type__":"cc.Size","width":185.37,"height":40},"_position":{"__type__":"cc.Vec3","x":3,"y":-21.4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":169},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"达到10级解锁","_N$string":"达到10级解锁","_fontSize":30,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"canunLock_btn","_parent":{"__id__":163},"_children":[{"__id__":172}],"_active":false,"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":171},"_spriteFrame":{"__uuid__":"7fWCxAEIxKKZ4ZTyzYk4FA"}},{"__type__":"cc.Button","node":{"__id__":171},"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":162},"component":"Land","handler":"unlockLandFunc"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"7fWCxAEIxKKZ4ZTyzYk4FA"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":171}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"70ncwj11RMqZon3IZ18Z1A"},"_contentSize":{"__type__":"cc.Size","width":99,"height":96},"_position":{"__type__":"cc.Vec3","x":-15,"y":33},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":171},"_level":7,"_components":[{"__type__":"cc.Label","node":{"__id__":172},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"可解锁","_N$string":"可解锁","_fontSize":32,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":172},"_color":{"__type__":"cc.Color","r":33,"g":83,"b":16},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"63axVmnWxLWKOojpqpaGP2"},"_color":{"__type__":"cc.Color","r":131,"g":233,"b":18},"_contentSize":{"__type__":"cc.Size","width":100,"height":40},"_position":{"__type__":"cc.Vec3","x":-8,"y":-79},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"unlock","_parent":{"__id__":163},"_children":[{"__id__":174},{"__id__":176}],"_active":false,"_level":6,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"3bCfK5AfZOwKX9CmvuYlmX"},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"landAni","_parent":{"__id__":173},"_level":7,"_components":[{"__id__":175}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"22QKW9aRxNlIhkjxmaVmKK"},"_contentSize":{"__type__":"cc.Size","width":323.76,"height":206.02},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"sp.Skeleton","node":{"__id__":174}},{"__type__":"cc.Node","_name":"progress_bg","_parent":{"__id__":173},"_children":[{"__id__":177},{"__id__":181}],"_level":6,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"16ekUHyGxEgafzfkTJdoVo"},"_position":{"__type__":"cc.Vec3","x":9.9,"y":-135.4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"progress","_parent":{"__id__":176},"_children":[{"__id__":178}],"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":177},"_spriteFrame":{"__uuid__":"6659eeWqtAdZsjMyUxM5Sm"}},{"__id__":180}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"2fbzcei1lGSL8r33Q3vviF"},"_contentSize":{"__type__":"cc.Size","width":216,"height":31},"_position":{"__type__":"cc.Vec3","x":5.6,"y":20.9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"bar","_parent":{"__id__":177},"_components":[{"__id__":179}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"c9qHXKxxxEP4AO1ZFm449h"},"_contentSize":{"__type__":"cc.Size","width":103.5,"height":21},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-104,"y":1.1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":178},"_spriteFrame":{"__uuid__":"ea/RcVsVNE2LGuaHsE6aWO"},"_sizeMode":0},{"__type__":"cc.ProgressBar","node":{"__id__":177},"_N$totalLength":207,"_N$barSprite":{"__id__":179},"_N$progress":0.5},{"__type__":"cc.Node","_name":"lab","_parent":{"__id__":176},"_level":7,"_components":[{"__id__":182},{"__type__":"cc.LabelOutline","node":{"__id__":181},"_color":{"__type__":"cc.Color","r":55,"g":24,"b":1},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"05SH2WleFMyp6jZor+ZG3t"},"_contentSize":{"__type__":"cc.Size","width":78.52,"height":30},"_position":{"__type__":"cc.Vec3","x":4.800000000000001,"y":-13.5},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":181},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"5.57ff","_N$string":"5.57ff","_fontSize":30,"_lineHeight":30,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"up_page","_parent":{"__id__":41},"_children":[{"__id__":184}],"_active":false,"_level":5,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"6b5U6+RLFNwr7wN0CRN1N5"},"_position":{"__type__":"cc.Vec3","y":31.6},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"up_bg","_parent":{"__id__":183},"_children":[{"__id__":185},{"__id__":186},{"__id__":188},{"__id__":190},{"__id__":191},{"__id__":193},{"__id__":197}],"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":184},"_spriteFrame":{"__uuid__":"2bKMF0fhBP/qHnz0Xjkzyl"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"b7r+Fag/tBTIEnG2/0XXmS"},"_contentSize":{"__type__":"cc.Size","width":215,"height":223},"_position":{"__type__":"cc.Vec3","x":-10.5,"y":68.1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"biaoqian","_parent":{"__id__":184},"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":185},"_spriteFrame":{"__uuid__":"f9VK5W23dORJxguHM8s4iP"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"222Wkeo/JENqsY7SQ3Wpf+"},"_contentSize":{"__type__":"cc.Size","width":156,"height":40.7},"_position":{"__type__":"cc.Vec3","x":11.2,"y":30.1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"product_img","_parent":{"__id__":184},"_level":7,"_components":[{"__id__":187}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"73egcUTLtFsbKtS4QsX6m0"},"_contentSize":{"__type__":"cc.Size","width":75,"height":80},"_position":{"__type__":"cc.Vec3","x":-64.3,"y":34.4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":186},"_spriteFrame":{"__uuid__":"df54KWEAFBBKkNtc4LmHwM"}},{"__type__":"cc.Node","_name":"levelLab","_parent":{"__id__":184},"_level":7,"_components":[{"__id__":189},{"__type__":"cc.LabelOutline","node":{"__id__":188},"_color":{"__type__":"cc.Color","g":14,"b":52},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"c514E57SJG1rISdl5mxd+1"},"_contentSize":{"__type__":"cc.Size","width":26.25,"height":40},"_position":{"__type__":"cc.Vec3","x":8.100000000000001,"y":29},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":188},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"7","_N$string":"7","_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"New Sprite","_parent":{"__id__":184},"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":190},"_spriteFrame":{"__uuid__":"e4IYERodFIB46xcrvFttJN"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"f10UXdpLhJMbG7mWGjvQnG"},"_contentSize":{"__type__":"cc.Size","width":59,"height":57},"_position":{"__type__":"cc.Vec3","x":-43.5,"y":-26.8},"_scale":{"__type__":"cc.Vec3","x":0.6,"y":0.6,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":184},"_level":7,"_components":[{"__id__":192},{"__type__":"cc.LabelOutline","node":{"__id__":191},"_color":{"__type__":"cc.Color","g":14,"b":52},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"43ZQRDD+ZC67J4/anCE/mc"},"_contentSize":{"__type__":"cc.Size","width":74.71,"height":24},"_position":{"__type__":"cc.Vec3","x":19,"y":-26.7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":191},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"999/秒","_N$string":"999/秒","_fontSize":24,"_lineHeight":24,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"progressBar","_parent":{"__id__":184},"_children":[{"__id__":194}],"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":193},"_spriteFrame":{"__uuid__":"6659eeWqtAdZsjMyUxM5Sm"},"_type":1,"_sizeMode":0},{"__id__":196}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"0dY/eJsENDCoGoj599lriu"},"_contentSize":{"__type__":"cc.Size","width":173.1,"height":25.7},"_position":{"__type__":"cc.Vec3","x":9.6,"y":86.3},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"bar","_parent":{"__id__":193},"_components":[{"__id__":195}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"39Fne+sI5O6pViUNadCNyV"},"_contentSize":{"__type__":"cc.Size","width":83,"height":15},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-83.1,"y":0.6},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":194},"_spriteFrame":{"__uuid__":"ea/RcVsVNE2LGuaHsE6aWO"},"_type":1,"_sizeMode":0},{"__type__":"cc.ProgressBar","node":{"__id__":193},"_N$totalLength":166,"_N$barSprite":{"__id__":195},"_N$progress":0.5},{"__type__":"cc.Node","_name":"upgradebtn","_parent":{"__id__":184},"_children":[{"__id__":198},{"__id__":199}],"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":197},"_spriteFrame":{"__uuid__":"1dEUZugBRHYoCKgHpDH/Gj"},"_sizeMode":0},{"__id__":201},{"__type__":"cc.Layout","node":{"__id__":197},"_N$layoutType":1,"_N$paddingLeft":50,"_N$paddingRight":30,"_N$spacingX":10}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"4aZZkpqFFLbZCw9xbMI4CW"},"_contentSize":{"__type__":"cc.Size","width":429,"height":156},"_position":{"__type__":"cc.Vec3","x":11.3,"y":-144.6},"_scale":{"__type__":"cc.Vec3","x":0.39,"y":0.39,"z":1}},{"__type__":"cc.Node","_name":"needCoin","_parent":{"__id__":197},"_level":8,"_components":[{"__type__":"cc.Sprite","node":{"__id__":198},"_spriteFrame":{"__uuid__":"e4IYERodFIB46xcrvFttJN"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"bdRj6FL/ZA+qk06U/NGZ7S"},"_contentSize":{"__type__":"cc.Size","width":120.5,"height":116.3},"_position":{"__type__":"cc.Vec3","x":-116.3,"y":6.5},"_scale":{"__type__":"cc.Vec3","x":0.8,"y":0.8,"z":1}},{"__type__":"cc.Node","_name":"clLab","_parent":{"__id__":197},"_level":8,"_components":[{"__id__":200},{"__type__":"cc.LabelOutline","node":{"__id__":199},"_color":{"__type__":"cc.Color","r":40,"g":113,"b":14},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"05/nAI5CBP9ZVmfCrj7trC"},"_contentSize":{"__type__":"cc.Size","width":39.91,"height":34},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-58.099999999999994,"y":7.5},"_scale":{"__type__":"cc.Vec3","x":2.5,"y":2.5,"z":1}},{"__type__":"cc.Label","node":{"__id__":199},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"5k","_N$string":"5k","_fontSize":34,"_lineHeight":34,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Button","node":{"__id__":197},"transition":3,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":162},"component":"Land","handler":"levelUp"}],"_N$enableAutoGrayEffect":true,"_N$target":{"__id__":197}},{"__type__":"cc.Node","_name":"mengceng","_parent":{"__id__":41},"_active":false,"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":202},"_spriteFrame":{"__uuid__":"a2MjXRFdtLlYQ5ouAFv/+R"},"_sizeMode":0},{"__type__":"cc.BlockInputEvents","node":{"__id__":202}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"98sqOWA61Hzbi0tY0CrYK0"},"_opacity":150,"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":1000,"height":2000},"_position":{"__type__":"cc.Vec3","x":186,"y":306},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"back_btn","_parent":{"__id__":9},"_active":false,"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":203},"_spriteFrame":{"__uuid__":"ec7LH1ZpZOjLq36f4SRorI"},"_sizeMode":0},{"__type__":"cc.Button","node":{"__id__":203},"transition":3,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"StartUI","handler":"changeUp"}],"_N$target":{"__id__":203}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b0+u4cFppJwIFjnDGpZ5gM"},"fileId":"100zZTbp9BjqoKMB1iOsNB"},"_contentSize":{"__type__":"cc.Size","width":142.6,"height":157.6},"_position":{"__type__":"cc.Vec3","x":2.4,"y":-572.3},"_scale":{"__type__":"cc.Vec3","x":1.24,"y":1.24,"z":1}}],{"__type__":"cc.SpriteFrame","content":{"name":"1","texture":"bfQWZNXMBJlLOnHnk8Cipo","rect":[1,1,76,76],"offset":[0,0],"originalSize":[78,78],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"3","texture":"64/2rGXc9EOr1ai5bIhfy3","rect":[1,1,80,81],"offset":[0,0],"originalSize":[82,83],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"chan","texture":"b26uKGXyhKLKClwzSgbcmD","rect":[0,1,123,121],"offset":[0,-0.5],"originalSize":[123,122],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"kuang","texture":"7c0HEGsddB6bEM72hHR1N3","rect":[0,0,142,147],"offset":[0,0],"originalSize":[142,147],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"2","texture":"31rrXgFgZBOq5k/vrR/Ghf","rect":[1,1,80,79],"offset":[0,0],"originalSize":[82,81],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"xihongshi","texture":"95TDHFV4BPdJEClJo5Qg3H","rect":[1,1,75,80],"offset":[0,0],"originalSize":[77,82],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"jinbi2","texture":"55hts9dLRPs4Mzsv2gkIiU","rect":[0,0,59,57],"offset":[0,0],"originalSize":[59,57],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_pressed","texture":"b4P/PCArtIdIH38t6mlw8Y","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"jindutiao","texture":"a2XyoFoS5P4o5KjX9Viafi","rect":[1,1,210,21],"offset":[0,0],"originalSize":[212,23],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"fanhui55","texture":"49+19C9mND941CgoXQXUml","rect":[1,1,106,111],"offset":[0,0],"originalSize":[108,113],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_normal","texture":"e8Ueib+qJEhL6mXAHdnwbi","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"biaoqian","texture":"95EnwBtCdLPpIgALCEwZJn","rect":[1,1,100,32],"offset":[0,0],"originalSize":[102,34],"capInsets":[0,0,0,0]}}]
\ No newline at end of file
[{"__type__":"cc.SpriteFrame","content":{"name":"huluobo","texture":"14FzpwscRJ8bg1rMexmXlL","rect":[1,1,88,99],"offset":[0,0],"originalSize":[90,101],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"new","texture":"b9yzy3FvxKDr8I6VIY4bjZ","rect":[0,0,19,19],"offset":[-0.5,0.5],"originalSize":[20,20],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"dikang1","texture":"15z64+y65EU4Xt12rwH1IJ","rect":[1,1,100,32],"offset":[0,0],"originalSize":[102,34],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"diban11","texture":"8aQ6vdXPFNgZ1xAQAmlcZn","rect":[0,0,91,86],"offset":[0,0],"originalSize":[91,86],"capInsets":[20,17,19,18]}},{"__type__":"cc.SpriteFrame","content":{"name":"diban3","texture":"770NpATzNMyY9pPhOCa+cR","rect":[1,1,124,123],"offset":[0,0],"originalSize":[126,125],"capInsets":[26,19,17,18]}},[{"__type__":"cc.Prefab","_name":"item","data":{"__id__":1}},{"__type__":"cc.Node","_name":"item","_children":[{"__id__":2},{"__id__":3},{"__id__":4},{"__id__":6},{"__id__":7},{"__id__":8},{"__id__":10}],"_level":1,"_components":[{"__type__":"cc.Button","node":{"__id__":1},"transition":3,"zoomScale":0.9,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"Item","handler":"onClickProperty"}],"_N$target":{"__id__":1}},{"__type__":"cd87cqVLJlPI4HlEeThtTmB","node":{"__id__":1},"spIcon":{"__id__":5},"labNum":{"__id__":11},"labName":{"__id__":9},"selectSp":{"__id__":3},"sign":{"__id__":7}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5YJuB4z9G8p4jjBJJ+bHh"},"fileId":"81ftUg08ROobizPk8gq/Di"},"_contentSize":{"__type__":"cc.Size","width":110,"height":175},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"defaultSp","_parent":{"__id__":1},"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":2},"_spriteFrame":{"__uuid__":"a2TYdtzAFNR6H+yuIFYh4y"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5YJuB4z9G8p4jjBJJ+bHh"},"fileId":"16ZqRiAqZBOoswJEiF0QE0"},"_contentSize":{"__type__":"cc.Size","width":110,"height":110},"_position":{"__type__":"cc.Vec3","y":32},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"selectSp","_parent":{"__id__":1},"_active":false,"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":3},"_spriteFrame":{"__uuid__":"89IjhBi91BhZOsCO5nA3Ev"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5YJuB4z9G8p4jjBJJ+bHh"},"fileId":"16k7LY5DtFXacUUyesOAai"},"_contentSize":{"__type__":"cc.Size","width":110,"height":110},"_position":{"__type__":"cc.Vec3","y":32},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"icon","_parent":{"__id__":1},"_level":3,"_components":[{"__id__":5}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5YJuB4z9G8p4jjBJJ+bHh"},"fileId":"29ws1tR5ZMrboymzjvy7/B"},"_contentSize":{"__type__":"cc.Size","width":100,"height":100},"_position":{"__type__":"cc.Vec3","y":32},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":4},"_spriteFrame":{"__uuid__":"02id22Jn9KSbLtcqPsCofY"},"_sizeMode":0},{"__type__":"cc.Node","_name":"dikang","_parent":{"__id__":1},"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":6},"_spriteFrame":{"__uuid__":"51xpboqLlHApAT/cDhovBJ"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5YJuB4z9G8p4jjBJJ+bHh"},"fileId":"2faSN55kBCSor9QbQRnDLK"},"_contentSize":{"__type__":"cc.Size","width":90,"height":28.8},"_position":{"__type__":"cc.Vec3","y":-74},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"sign","_parent":{"__id__":1},"_active":false,"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":7},"_spriteFrame":{"__uuid__":"09TPsG8SxJIZ/PQ6qXDMKZ"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5YJuB4z9G8p4jjBJJ+bHh"},"fileId":"91u9N922xCdrxkQvzlZ8Ae"},"_contentSize":{"__type__":"cc.Size","width":19,"height":19},"_position":{"__type__":"cc.Vec3","x":50.1,"y":83.9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labName","_parent":{"__id__":1},"_level":2,"_components":[{"__id__":9}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5YJuB4z9G8p4jjBJJ+bHh"},"fileId":"d98k1yvRBAA7PO5Txh8XES"},"_color":{"__type__":"cc.Color","r":111,"g":97,"b":75},"_contentSize":{"__type__":"cc.Size","width":72,"height":25},"_position":{"__type__":"cc.Vec3","y":-42.3},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":8},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"胡萝卜","_N$string":"胡萝卜","_fontSize":24,"_lineHeight":25,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"labNum","_parent":{"__id__":1},"_level":3,"_components":[{"__id__":11}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5YJuB4z9G8p4jjBJJ+bHh"},"fileId":"b2BeBtgn9K9aff2s+s1e6l"},"_color":{"__type__":"cc.Color","r":33,"g":11},"_contentSize":{"__type__":"cc.Size","width":13.9,"height":28},"_position":{"__type__":"cc.Vec3","y":-74},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":10},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"0","_N$string":"0","_fontSize":25,"_lineHeight":28,"_N$horizontalAlign":1,"_N$verticalAlign":1}]]
\ No newline at end of file
{"__type__":"cc.SpriteFrame","content":{"name":"0","texture":"77fDZ05KZIK53P4qMH5nGY","rect":[1,1,74,74],"offset":[0,0],"originalSize":[76,76],"capInsets":[0,0,0,0]}}
\ No newline at end of file
[[{"__type__":"cc.Prefab","_name":"deathUI","data":{"__id__":1}},{"__type__":"cc.Node","_name":"deathUI","_children":[{"__id__":2}],"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":1},"_spriteFrame":{"__uuid__":"a2MjXRFdtLlYQ5ouAFv/+R"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__id__":0},"fileId":"0fcsGITkRObLB2Y3orwBjT"},"_contentSize":{"__type__":"cc.Size","width":760,"height":1334},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":1},"_level":4,"_components":[{"__type__":"cc.Label","node":{"__id__":2},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"结束界面","_N$string":"结束界面","_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__id__":0},"fileId":"22KtgX44RJyodoYSb7lDUQ"},"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":160,"height":40},"_position":{"__type__":"cc.Vec3","y":410},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}}],{"__type__":"cc.SpriteFrame","content":{"name":"default_sprite_splash","texture":"02delMVqdBD70a/HSD99FK","rect":[0,0,2,2],"offset":[0,0],"originalSize":[2,2],"capInsets":[0,0,0,0]}}]
\ No newline at end of file
{"__type__":"sp.SkeletonData","_name":"n_010","_native":"raw-skeleton.json","_skeletonJson":{"skeleton":{"hash":"c4nCFLUPaBQFxmnlnFFsNRmhzOw","spine":"3.6.53","width":321.26,"height":235.18,"images":"./lanjing/"},"bones":[{"name":"root"},{"name":"huotui4","parent":"root","length":30.41,"rotation":91.37,"x":3.59,"y":25.78,"color":"ff00e5ff"},{"name":"bone2","parent":"huotui4","length":44.73,"rotation":-0.61,"x":30.52,"y":-0.39,"color":"ff00e5ff"},{"name":"huotui5","parent":"root","length":30.41,"rotation":91.37,"x":-92.32,"y":-9.41,"color":"ff00e5ff"},{"name":"bone3","parent":"huotui5","length":44.73,"rotation":-0.61,"x":30.52,"y":-0.39,"color":"ff00e5ff"},{"name":"huotui6","parent":"root","length":30.41,"rotation":91.37,"x":9.11,"y":-57.71,"color":"ff00e5ff"},{"name":"bone4","parent":"huotui6","length":44.73,"rotation":-0.61,"x":30.52,"y":-0.39,"color":"ff00e5ff"},{"name":"huotui7","parent":"root","length":30.41,"rotation":91.37,"x":95.7,"y":-17.69,"color":"ff00e5ff"},{"name":"bone5","parent":"huotui7","length":44.73,"rotation":-0.61,"x":30.52,"y":-0.39,"color":"ff00e5ff"},{"name":"huotui1","parent":"root","color":"ff0000ff"},{"name":"huotui3","parent":"huotui1","x":-7.34,"y":55.37,"color":"ff0000ff"},{"name":"suantou3","parent":"root","x":-13.23,"y":-81.15}],"slots":[{"name":"huotui3","bone":"huotui3","attachment":"huotui3"},{"name":"huotui1","bone":"huotui1","attachment":"huotui1"},{"name":"huotui4","bone":"huotui4","attachment":"huotui4"},{"name":"huotui7","bone":"huotui7","attachment":"huotui4"},{"name":"huotui6","bone":"huotui6","attachment":"huotui4"},{"name":"huotui5","bone":"huotui5","attachment":"huotui4"},{"name":"suantou3","bone":"suantou3","attachment":"suantou3"}],"skins":{"default":{"huotui1":{"huotui1":{"x":1,"y":-13,"width":312,"height":166}},"huotui3":{"huotui3":{"x":5.18,"y":-13.49,"width":288,"height":86}},"huotui4":{"huotui4":{"type":"mesh","uvs":[1,0.38895,0.99968,0.58996,0.80639,0.75124,0.72797,0.93507,0.61529,0.99091,0.4953,1,0.36861,0.97417,0.26533,0.91679,0.06793,0.7505,0,0.57281,0,0.39731,0,0.2273,0.07085,0.0031,0.45533,0,0.58791,0.03288,0.86908,0.19854,0.49147,0.57472,0.49621,0.74689,0.47805,0.35023,0.47085,0.22819],"triangles":[4,5,17,3,4,17,17,5,6,6,7,17,3,17,2,7,8,17,1,2,16,8,16,17,8,9,16,2,17,16,1,16,0,16,10,18,16,18,0,16,9,10,18,11,19,18,10,11,18,15,0,18,19,15,19,14,15,11,12,19,12,13,19,19,13,14],"vertices":[1,2,29.89,-54.83,1,1,2,7.98,-54.5,1,2,1,20.85,-33.3,0.12449,2,-9.32,-33.01,0.87551,2,1,1.03,-24.2,0.6618,2,-29.24,-24.11,0.3382,2,1,-4.76,-11.66,0.89506,2,-35.16,-11.64,0.10494,2,1,-5.44,1.56,0.99953,2,-35.97,1.57,0.00047,1,1,-2.29,15.42,1,1,1,4.24,26.63,1,2,1,22.88,47.91,0.91725,2,-8.16,48.22,0.08275,2,1,42.42,54.91,0.71915,2,11.31,55.43,0.28085,2,1,61.54,54.45,0.45006,2,30.44,55.18,0.54994,2,1,80.07,54.01,0.20716,2,48.97,54.93,0.79284,2,1,104.31,45.64,0.06322,2,73.3,46.81,0.93678,2,1,103.64,3.35,0.00037,2,73.07,4.52,0.99963,1,2,69.3,-10.01,1,1,2,50.83,-40.7,1,2,1,40.92,0.87,0.03417,2,10.38,1.38,0.96583,1,1,22.14,0.8,1,2,1,65.41,1.76,0.0055,2,34.87,2.53,0.9945,2,1,78.73,2.23,0.00331,2,48.18,3.14,0.99669],"hull":16,"edges":[2,4,6,8,28,30,12,14,8,10,10,12,24,26,18,32,32,2,10,34,34,32,16,34,34,4,18,20,36,32,20,36,2,0,36,0,16,18,4,6,20,22,22,24,26,38,38,36,22,38,38,30,14,16,30,0,26,28],"width":110,"height":109}},"huotui5":{"huotui4":{"type":"mesh","uvs":[1,0.38895,0.99968,0.58996,0.80639,0.75124,0.72797,0.93507,0.61529,0.99091,0.4953,1,0.36861,0.97417,0.26533,0.91679,0.06793,0.7505,0,0.57281,0,0.39731,0,0.2273,0.07085,0.0031,0.45533,0,0.58791,0.03288,0.86908,0.19854,0.49147,0.57472,0.49621,0.74689,0.47805,0.35023,0.47085,0.22819],"triangles":[4,5,17,3,4,17,17,5,6,6,7,17,3,17,2,7,8,17,1,2,16,8,16,17,8,9,16,2,17,16,1,16,0,16,10,18,16,18,0,16,9,10,18,11,19,18,10,11,18,15,0,18,19,15,19,14,15,11,12,19,12,13,19,19,13,14],"vertices":[1,4,29.89,-54.83,1,1,4,7.98,-54.5,1,2,3,20.85,-33.3,0.12449,4,-9.32,-33.01,0.87551,2,3,1.03,-24.2,0.6618,4,-29.24,-24.11,0.3382,2,3,-4.76,-11.66,0.89506,4,-35.16,-11.64,0.10494,2,3,-5.44,1.56,0.99953,4,-35.97,1.57,0.00047,1,3,-2.29,15.42,1,1,3,4.24,26.63,1,2,3,22.88,47.91,0.91725,4,-8.16,48.22,0.08275,2,3,42.42,54.91,0.71915,4,11.31,55.43,0.28085,2,3,61.54,54.45,0.45006,4,30.44,55.18,0.54994,2,3,80.07,54.01,0.20716,4,48.97,54.93,0.79284,2,3,104.31,45.64,0.06322,4,73.3,46.81,0.93678,2,3,103.64,3.35,0.00037,4,73.07,4.52,0.99963,1,4,69.3,-10.01,1,1,4,50.83,-40.7,1,2,3,40.92,0.87,0.03417,4,10.38,1.38,0.96583,1,3,22.14,0.8,1,2,3,65.41,1.76,0.0055,4,34.87,2.53,0.9945,2,3,78.73,2.23,0.00331,4,48.18,3.14,0.99669],"hull":16,"edges":[2,4,6,8,28,30,12,14,8,10,10,12,24,26,18,32,32,2,10,34,34,32,16,34,34,4,18,20,36,32,20,36,2,0,36,0,16,18,4,6,20,22,22,24,26,38,38,36,22,38,38,30,14,16,30,0,26,28],"width":110,"height":109}},"huotui6":{"huotui4":{"type":"mesh","uvs":[1,0.38895,0.99968,0.58996,0.80639,0.75124,0.72797,0.93507,0.61529,0.99091,0.4953,1,0.36861,0.97417,0.26533,0.91679,0.06793,0.7505,0,0.57281,0,0.39731,0,0.2273,0.07085,0.0031,0.45533,0,0.58791,0.03288,0.86908,0.19854,0.49147,0.57472,0.49621,0.74689,0.47805,0.35023,0.47085,0.22819],"triangles":[4,5,17,3,4,17,17,5,6,6,7,17,3,17,2,7,8,17,1,2,16,8,16,17,8,9,16,2,17,16,1,16,0,16,10,18,16,18,0,16,9,10,18,11,19,18,10,11,18,15,0,18,19,15,19,14,15,11,12,19,12,13,19,19,13,14],"vertices":[1,6,29.89,-54.83,1,1,6,7.98,-54.5,1,2,5,20.85,-33.3,0.12449,6,-9.32,-33.01,0.87551,2,5,1.03,-24.2,0.6618,6,-29.24,-24.11,0.3382,2,5,-4.76,-11.66,0.89506,6,-35.16,-11.64,0.10494,2,5,-5.44,1.56,0.99953,6,-35.97,1.57,0.00047,1,5,-2.29,15.42,1,1,5,4.24,26.63,1,2,5,22.88,47.91,0.91725,6,-8.16,48.22,0.08275,2,5,42.42,54.91,0.71915,6,11.31,55.43,0.28085,2,5,61.54,54.45,0.45006,6,30.44,55.18,0.54994,2,5,80.07,54.01,0.20716,6,48.97,54.93,0.79284,2,5,104.31,45.64,0.06322,6,73.3,46.81,0.93678,2,5,103.64,3.35,0.00037,6,73.07,4.52,0.99963,1,6,69.3,-10.01,1,1,6,50.83,-40.7,1,2,5,40.92,0.87,0.03417,6,10.38,1.38,0.96583,1,5,22.14,0.8,1,2,5,65.41,1.76,0.0055,6,34.87,2.53,0.9945,2,5,78.73,2.23,0.00331,6,48.18,3.14,0.99669],"hull":16,"edges":[2,4,6,8,28,30,12,14,8,10,10,12,24,26,18,32,32,2,10,34,34,32,16,34,34,4,18,20,36,32,20,36,2,0,36,0,16,18,4,6,20,22,22,24,26,38,38,36,22,38,38,30,14,16,30,0,26,28],"width":110,"height":109}},"huotui7":{"huotui4":{"type":"mesh","uvs":[1,0.38895,0.99968,0.58996,0.80639,0.75124,0.72797,0.93507,0.61529,0.99091,0.4953,1,0.36861,0.97417,0.26533,0.91679,0.06793,0.7505,0,0.57281,0,0.39731,0,0.2273,0.07085,0.0031,0.45533,0,0.58791,0.03288,0.86908,0.19854,0.49147,0.57472,0.49621,0.74689,0.47805,0.35023,0.47085,0.22819],"triangles":[4,5,17,3,4,17,17,5,6,6,7,17,3,17,2,7,8,17,1,2,16,8,16,17,8,9,16,2,17,16,1,16,0,16,10,18,16,18,0,16,9,10,18,11,19,18,10,11,18,15,0,18,19,15,19,14,15,11,12,19,12,13,19,19,13,14],"vertices":[1,8,29.89,-54.83,1,1,8,7.98,-54.5,1,2,7,20.85,-33.3,0.12449,8,-9.32,-33.01,0.87551,2,7,1.03,-24.2,0.6618,8,-29.24,-24.11,0.3382,2,7,-4.76,-11.66,0.89506,8,-35.16,-11.64,0.10494,2,7,-5.44,1.56,0.99953,8,-35.97,1.57,0.00047,1,7,-2.29,15.42,1,1,7,4.24,26.63,1,2,7,22.88,47.91,0.91725,8,-8.16,48.22,0.08275,2,7,42.42,54.91,0.71915,8,11.31,55.43,0.28085,2,7,61.54,54.45,0.45006,8,30.44,55.18,0.54994,2,7,80.07,54.01,0.20716,8,48.97,54.93,0.79284,2,7,104.31,45.64,0.06322,8,73.3,46.81,0.93678,2,7,103.64,3.35,0.00037,8,73.07,4.52,0.99963,1,8,69.3,-10.01,1,1,8,50.83,-40.7,1,2,7,40.92,0.87,0.03417,8,10.38,1.38,0.96583,1,7,22.14,0.8,1,2,7,65.41,1.76,0.0055,8,34.87,2.53,0.9945,2,7,78.73,2.23,0.00331,8,48.18,3.14,0.99669],"hull":16,"edges":[2,4,6,8,28,30,12,14,8,10,10,12,24,26,18,32,32,2,10,34,34,32,16,34,34,4,18,20,36,32,20,36,2,0,36,0,16,18,4,6,20,22,22,24,26,38,38,36,22,38,38,30,14,16,30,0,26,28],"width":110,"height":109}},"suantou3":{"suantou3":{"x":-0.53,"y":37.27,"width":301,"height":124}}}},"animations":{"await1":{"bones":{"huotui4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0,"y":1.25,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":1.117,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui1":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"huotui3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone2":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":12.62,"y":0.22,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0,"y":1.25,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.117,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":12.62,"y":0.22,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":0,"y":1.25,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":1.117,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":12.62,"y":0.22,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":0,"y":1.25,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":1.117,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":12.62,"y":0.22,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]}},"deform":{"default":{"huotui4":{"huotui4":[{"time":0,"curve":"stepped"},{"time":1}]},"huotui5":{"huotui4":[{"time":0,"curve":"stepped"},{"time":1}]},"huotui6":{"huotui4":[{"time":0,"curve":"stepped"},{"time":1}]},"huotui7":{"huotui4":[{"time":0,"curve":"stepped"},{"time":1}]}}}},"await2":{"bones":{"huotui4":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":0.6,"curve":[0.25,0,0.75,1]},{"time":0.2333,"angle":-0.34,"curve":[0.25,0,0.75,1]},{"time":0.3667,"angle":-0.88,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":0.94,"curve":[0.25,0,0.75,1]},{"time":0.5667,"angle":0.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0,"y":-0.62,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":0,"y":8.17,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":0,"y":18.53,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":0.31,"y":1.9,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":0.22,"y":8.67,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.204,0.19,0.549,0.54]},{"time":0.1333,"x":0.983,"y":0.933,"curve":[0.295,0.3,0.631,0.63]},{"time":0.2333,"x":1.319,"y":0.861,"curve":[0.285,0.29,0.63,0.64]},{"time":0.3667,"x":1.53,"y":0.735,"curve":[0.323,0.34,0.661,0.68]},{"time":0.4333,"x":1.023,"y":0.957,"curve":[0.336,0.36,0.673,0.69]},{"time":0.5667,"x":1.193,"y":0.922,"curve":[0.394,0.59,0.757,1]},{"time":0.8333,"x":1,"y":1}]},"huotui1":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"huotui3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"bone2":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":2.05,"curve":[0.25,0,0.75,1]},{"time":0.2333,"angle":-0.4,"curve":[0.25,0,0.75,1]},{"time":0.3667,"angle":-0.47,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":2.93,"curve":[0.25,0,0.75,1]},{"time":0.5667,"angle":0.34,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-4.24,"y":0.01,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":6.21,"y":0.37,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":18.51,"y":0.25,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":-1.14,"y":0.48,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":10.06,"y":0.83,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui5":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":0.6,"curve":[0.25,0,0.75,1]},{"time":0.2,"angle":-0.34,"curve":[0.25,0,0.75,1]},{"time":0.3,"angle":-0.88,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":0.94,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":0.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0,"y":-0.62,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":0,"y":8.17,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":0,"y":18.53,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0.31,"y":1.9,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0.22,"y":8.67,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.204,0.19,0.549,0.54]},{"time":0.1333,"x":0.983,"y":0.933,"curve":[0.295,0.3,0.631,0.63]},{"time":0.2,"x":1.319,"y":0.861,"curve":[0.285,0.29,0.63,0.64]},{"time":0.3,"x":1.53,"y":0.735,"curve":[0.323,0.34,0.661,0.68]},{"time":0.4,"x":1.023,"y":0.957,"curve":[0.336,0.36,0.673,0.69]},{"time":0.5,"x":1.193,"y":0.922,"curve":[0.394,0.59,0.757,1]},{"time":0.8333,"x":1,"y":1}]},"bone3":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":2.05,"curve":[0.25,0,0.75,1]},{"time":0.2,"angle":-0.4,"curve":[0.25,0,0.75,1]},{"time":0.3,"angle":-0.47,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":2.93,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":0.34,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-4.24,"y":0.01,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":6.21,"y":0.37,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":18.51,"y":0.25,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":-1.14,"y":0.48,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":10.06,"y":0.83,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"angle":0.6,"curve":[0.25,0,0.75,1]},{"time":0.2667,"angle":-0.34,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":-0.88,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":0.94,"curve":[0.25,0,0.75,1]},{"time":0.6667,"angle":0.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":0,"y":-0.62,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":0,"y":8.17,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":0,"y":18.53,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0.31,"y":1.9,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":0.22,"y":8.67,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.204,0.19,0.549,0.54]},{"time":0.1667,"x":0.983,"y":0.933,"curve":[0.295,0.3,0.631,0.63]},{"time":0.2667,"x":1.319,"y":0.861,"curve":[0.285,0.29,0.63,0.64]},{"time":0.4333,"x":1.53,"y":0.735,"curve":[0.323,0.34,0.661,0.68]},{"time":0.5333,"x":1.023,"y":0.957,"curve":[0.336,0.36,0.673,0.69]},{"time":0.6667,"x":1.193,"y":0.922,"curve":[0.394,0.59,0.757,1]},{"time":0.8333,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"angle":2.05,"curve":[0.25,0,0.75,1]},{"time":0.2667,"angle":-0.4,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":-0.47,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":2.93,"curve":[0.25,0,0.75,1]},{"time":0.6667,"angle":0.34,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":-4.24,"y":0.01,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":6.21,"y":0.37,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":18.51,"y":0.25,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":-1.14,"y":0.48,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":10.06,"y":0.83,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"angle":0.6,"curve":[0.25,0,0.75,1]},{"time":0.2333,"angle":-0.34,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":-0.88,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":0.94,"curve":[0.25,0,0.75,1]},{"time":0.6,"angle":0.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":0,"y":-0.62,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":0,"y":8.17,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0,"y":31.75,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0.31,"y":1.9,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":0.22,"y":8.67,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.204,0.19,0.549,0.54]},{"time":0.1667,"x":0.983,"y":0.933,"curve":[0.295,0.3,0.631,0.63]},{"time":0.2333,"x":1.319,"y":0.861,"curve":[0.285,0.29,0.63,0.64]},{"time":0.4,"x":1.53,"y":0.735,"curve":[0.323,0.34,0.661,0.68]},{"time":0.5,"x":1.023,"y":0.957,"curve":[0.336,0.36,0.673,0.69]},{"time":0.6,"x":1.193,"y":0.922,"curve":[0.394,0.59,0.757,1]},{"time":0.8333,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"angle":2.05,"curve":[0.25,0,0.75,1]},{"time":0.2333,"angle":-0.4,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":-0.47,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":2.93,"curve":[0.25,0,0.75,1]},{"time":0.6,"angle":0.34,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":-4.24,"y":0.01,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":6.21,"y":0.37,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":18.51,"y":0.25,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":-1.14,"y":0.48,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":10.06,"y":0.83,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]}},"deform":{"default":{"huotui4":{"huotui4":[{"time":0,"curve":"stepped"},{"time":0.8333}]},"huotui5":{"huotui4":[{"time":0,"curve":"stepped"},{"time":0.8333}]},"huotui6":{"huotui4":[{"time":0,"curve":"stepped"},{"time":0.8333}]},"huotui7":{"huotui4":[{"time":0,"curve":"stepped"},{"time":0.8333}]}}}}}},"_atlasText":"\nn_010.png\nsize: 944,338\nformat: RGBA8888\nfilter: Linear,Linear\nrepeat: none\nhuotui1\n rotate: false\n xy: 2, 2\n size: 312, 166\n orig: 312, 166\n offset: 0, 0\n index: -1\nhuotui3\n rotate: false\n xy: 316, 2\n size: 288, 86\n orig: 288, 86\n offset: 0, 0\n index: -1\nhuotui4\n rotate: false\n xy: 630, 2\n size: 110, 109\n orig: 110, 109\n offset: 0, 0\n index: -1\nsuantou3\n rotate: false\n xy: 2, 170\n size: 301, 124\n orig: 301, 124\n offset: 0, 0\n index: -1\n","textures":[{"__uuid__":"804Ig2R89P9IcKYIWqW3u7"}],"textureNames":["n_010.png"]}
\ No newline at end of file
[{"__type__":"cc.SpriteFrame","content":{"name":"gongxianzhi","texture":"97/TZe7phDG7XGM5A8Szyt","rect":[1,1,71,76],"offset":[0,0],"originalSize":[73,78],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"weixuanzhong","texture":"2e3v8qmgxFhqiyn1JC1Kgv","rect":[1,1,32,32],"offset":[0,0],"originalSize":[34,34],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"zhifudingdan","texture":"d9MoJxtLlAbbph+Hx6qw7L","rect":[1,1,220,56],"offset":[0,0],"originalSize":[222,58],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"pingguo","texture":"aeteZP/o5KnJuvgFXVoNnO","rect":[1,1,87,86],"offset":[0,0],"originalSize":[89,88],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"touying","texture":"40Jv0OSw1Oi6wg6VLf0cZt","rect":[1,1,85,31],"offset":[0,0],"originalSize":[87,33],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"diban5","texture":"79yujOGpJOyoZb93OKJFpY","rect":[1,1,554,39],"offset":[0,0],"originalSize":[556,41],"capInsets":[37,20,40,18]}},{"__type__":"cc.SpriteFrame","content":{"name":"diandian","texture":"eaqWNbouFJLqfz1d4+L2Y/","rect":[1,1,20,20],"offset":[0,0],"originalSize":[22,22],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"zuanshi2","texture":"95tgA+MEhHHZqRO7FLtECb","rect":[0,0,62,57],"offset":[0,0],"originalSize":[62,57],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_disabled","texture":"71VhFCTINJM6/Ky3oX9nBT","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"biaoti","texture":"fdLoCzzVhNr66i10hm1Xw0","rect":[1,1,535,138],"offset":[0,0],"originalSize":[537,140],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"kuang11","texture":"8fa3Cn1KRLcJa9hV8H3oCj","rect":[1,1,114,119],"offset":[0,0],"originalSize":[116,121],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"caishen","texture":"6bn6SDuPdI3bZuWlWnYSHi","rect":[1,1,120,167],"offset":[0,0.5],"originalSize":[122,170],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"xingxing","texture":"2ccIZnqNpH8ZyqKm6Nfbzc","rect":[1,1,482,105],"offset":[0,0],"originalSize":[484,107],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"diaoban","texture":"a9QoHyJZZB9L+K2Ky5xYk/","rect":[1,1,497,134],"offset":[0,0],"originalSize":[499,136],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"dadiban","texture":"5aKVC+CyBHLpKI0/M2qZ8/","rect":[1,1,327,459],"offset":[0,0],"originalSize":[329,461],"capInsets":[161,59,163,122]}},{"__type__":"cc.SpriteFrame","content":{"name":"biaoqian1","texture":"9aKTgaD3tFHZD0UNZWn7CQ","rect":[1,1,129,35],"offset":[0,0],"originalSize":[131,37],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"guanbi","texture":"efVL7RrcRKPa8GHGhR8tm3","rect":[1,1,84,87],"offset":[0,0],"originalSize":[86,89],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"xuanzhong","texture":"c51q3B4/xLPbJrhpqxOydL","rect":[1,1,32,32],"offset":[0,0],"originalSize":[34,34],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"anniu1","texture":"e4tGlf4TVKtrlE0QAufoML","rect":[1,1,352,102],"offset":[0,0],"originalSize":[354,104],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_sprite_splash","texture":"02delMVqdBD70a/HSD99FK","rect":[0,0,2,2],"offset":[0,0],"originalSize":[2,2],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"diban3","texture":"770NpATzNMyY9pPhOCa+cR","rect":[1,1,124,123],"offset":[0,0],"originalSize":[126,125],"capInsets":[26,19,17,18]}},{"__type__":"cc.SpriteFrame","content":{"name":"anniu","texture":"b7Cow+rm9DwZ1lU4vRORJj","rect":[1,1,352,102],"offset":[0,0],"originalSize":[354,104],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"diguang","texture":"fe7LKB/MdFuK2UM6MvaZkf","rect":[1,1,552,203],"offset":[0,0],"originalSize":[554,205],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"jinbi2","texture":"55hts9dLRPs4Mzsv2gkIiU","rect":[0,0,59,57],"offset":[0,0],"originalSize":[59,57],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"faguang","texture":"edDzdkfBFKGbFZPxWRtFVs","rect":[1,1,550,178],"offset":[0,0],"originalSize":[552,180],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_pressed","texture":"b4P/PCArtIdIH38t6mlw8Y","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},[{"__type__":"cc.Prefab","_name":"ordersDialogZf","data":{"__id__":1}},{"__type__":"cc.Node","_name":"ordersDialogZf","_children":[{"__id__":2},{"__id__":3}],"_level":1,"_components":[{"__type__":"e15c0K+NXJDV4zrSo+wMeVE","node":{"__id__":1},"goodsArr":[{"__id__":47},{"__id__":53},{"__id__":59},{"__id__":65}],"awardsArr":[{"__id__":77},{"__id__":80},{"__id__":83}],"labNum":{"__id__":20},"labDesc1":{"__id__":33},"labOrderNum":{"__id__":31},"labGoodsNum":{"__id__":44},"wxzSign1":{"__id__":14},"xzSign1":{"__id__":15},"wxzSign2":{"__id__":25},"xzSign2":{"__id__":26},"wxzSign3":{"__id__":38},"xzSign3":{"__id__":39},"closeBtn":{"__id__":10},"okBtn":{"__id__":88},"okBtn1":{"__id__":91}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"25JHQlHRhB6K/8gOvR7ZNQ"},"_color":{"__type__":"cc.Color","r":211,"g":211,"b":211},"_contentSize":{"__type__":"cc.Size","width":625,"height":700},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"bg","_parent":{"__id__":1},"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":2},"_spriteFrame":{"__uuid__":"a2MjXRFdtLlYQ5ouAFv/+R"},"_sizeMode":0},{"__type__":"cc.BlockInputEvents","node":{"__id__":2}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"2cSe0fZYRDB7lcR9Sm1/Mw"},"_opacity":150,"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":750,"height":1334},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"content","_parent":{"__id__":1},"_children":[{"__id__":4},{"__id__":5},{"__id__":6},{"__id__":7},{"__id__":8},{"__id__":9},{"__id__":11},{"__id__":22},{"__id__":34},{"__id__":71},{"__id__":86},{"__id__":89}],"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":3},"_spriteFrame":{"__uuid__":"757nIdGSNLsqmAAJFA2JzX"},"_type":1,"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"c5szo/kfJHTIniXDVJs/4J"},"_contentSize":{"__type__":"cc.Size","width":710,"height":770},"_position":{"__type__":"cc.Vec3","y":-38},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"faguang","_parent":{"__id__":3},"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":4},"_spriteFrame":{"__uuid__":"e6bdVThHNGuZ+OvYbEXq0S"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"86JeJ+V5FMAK3Un1pq/02E"},"_contentSize":{"__type__":"cc.Size","width":550,"height":178},"_position":{"__type__":"cc.Vec3","y":508},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"xingxing","_parent":{"__id__":3},"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":5},"_spriteFrame":{"__uuid__":"5d4XNTx3BFvqK56MzxWFFB"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"07ShlH6C1HyLMsBNKaJRrt"},"_contentSize":{"__type__":"cc.Size","width":482,"height":105},"_position":{"__type__":"cc.Vec3","x":16,"y":482},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"biaoti","_parent":{"__id__":3},"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":6},"_spriteFrame":{"__uuid__":"3c/sEkUjpEQrEJz66SpgRP"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"44O+d8E1JPyrb2Zi5+PYI2"},"_contentSize":{"__type__":"cc.Size","width":535,"height":138},"_position":{"__type__":"cc.Vec3","x":23,"y":410},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"caishen","_parent":{"__id__":3},"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":7},"_spriteFrame":{"__uuid__":"51ae9jWYhKpKoGh/zkEUrn"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"79J14HzNdJ9KJqGdYTd5+/"},"_contentSize":{"__type__":"cc.Size","width":120,"height":167},"_position":{"__type__":"cc.Vec3","x":-174,"y":423},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"titleSprite","_parent":{"__id__":3},"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":8},"_spriteFrame":{"__uuid__":"0eYgWNoNBK949UIG5/iDN9"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"06d2HfTGBIspU9ZVLUGiP1"},"_contentSize":{"__type__":"cc.Size","width":220,"height":56},"_position":{"__type__":"cc.Vec3","y":413},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"closeBtn","_parent":{"__id__":3},"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":9},"_spriteFrame":{"__uuid__":"89eJUe2dlPuZVpJFyxfSK7"}},{"__id__":10}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"62OyPyBdFFVJzwQ7pgQ1yw"},"_contentSize":{"__type__":"cc.Size","width":84,"height":87},"_position":{"__type__":"cc.Vec3","x":289,"y":371},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Button","node":{"__id__":9},"transition":3,"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"zoomScale":0.9,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"OrdersDialogZf","handler":"onCloseBtn"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":9}},{"__type__":"cc.Node","_name":"matter1","_parent":{"__id__":3},"_children":[{"__id__":12},{"__id__":13},{"__id__":14},{"__id__":15},{"__id__":16},{"__id__":17}],"_active":false,"_level":3,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"3atKSNG7ZEu4pLEi0cQxDi"},"_contentSize":{"__type__":"cc.Size","width":580,"height":50},"_position":{"__type__":"cc.Vec3","x":4,"y":294},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diban5","_parent":{"__id__":11},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":12},"_spriteFrame":{"__uuid__":"20br33BY5AcL1/fs0WSU9p"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"6abkwL7SxMt7OCQpPkDJZO"},"_contentSize":{"__type__":"cc.Size","width":554,"height":39},"_position":{"__type__":"cc.Vec3","y":0.8999999999999999},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diandian","_parent":{"__id__":11},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":13},"_spriteFrame":{"__uuid__":"23k8InBK1IDZAfxIWOodHI"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"1ahiGgH69BkqwNqo6RZjuT"},"_contentSize":{"__type__":"cc.Size","width":20,"height":20},"_position":{"__type__":"cc.Vec3","x":-258},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"weixuanzhong","_parent":{"__id__":11},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":14},"_spriteFrame":{"__uuid__":"0aVL9yk5NBMIqOmTBfViTq"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"ca+cjg5U5FVZ8lmgTYmAbu"},"_contentSize":{"__type__":"cc.Size","width":32,"height":32},"_position":{"__type__":"cc.Vec3","x":255},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"xuanzhong","_parent":{"__id__":11},"_active":false,"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":15},"_spriteFrame":{"__uuid__":"8e/pnTRy9C3Ihd0emR560P"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"a83X9/eoVJ1IhVXh21AQcb"},"_contentSize":{"__type__":"cc.Size","width":32,"height":32},"_position":{"__type__":"cc.Vec3","x":255,"y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labDesc","_parent":{"__id__":11},"_level":4,"_components":[{"__type__":"cc.Label","node":{"__id__":16},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"邀请好友","_N$string":"邀请好友","_fontSize":25,"_lineHeight":25,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":16},"_color":{"__type__":"cc.Color","r":113},"_width":0.3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"9ekqek4mJCG5aFzWqlW1c0"},"_color":{"__type__":"cc.Color","r":113},"_contentSize":{"__type__":"cc.Size","width":100.6,"height":25},"_position":{"__type__":"cc.Vec3","x":-172},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"layout","_parent":{"__id__":11},"_children":[{"__id__":18},{"__id__":19},{"__id__":21}],"_level":4,"_components":[{"__type__":"cc.Layout","node":{"__id__":17},"_layoutSize":{"__type__":"cc.Size","width":63.9,"height":25},"_resize":1,"_N$layoutType":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"19St3PQpxH7ZkeW009ptKr"},"_contentSize":{"__type__":"cc.Size","width":63.9,"height":25},"_position":{"__type__":"cc.Vec3","x":196.7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labDesc2","_parent":{"__id__":17},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":18},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"(","_N$string":"(","_fontSize":24,"_lineHeight":24,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":18},"_color":{"__type__":"cc.Color","r":113},"_width":0.3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"47lsdbOmRMEqRGAyzW1gAI"},"_color":{"__type__":"cc.Color","r":113},"_contentSize":{"__type__":"cc.Size","width":8.59,"height":24},"_position":{"__type__":"cc.Vec3","x":-27.655,"y":-1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum","_parent":{"__id__":17},"_level":5,"_components":[{"__id__":20}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"04xEWVAaVJP7ARfvGSEjYZ"},"_color":{"__type__":"cc.Color","r":255},"_contentSize":{"__type__":"cc.Size","width":13.35,"height":24},"_position":{"__type__":"cc.Vec3","x":-16.685,"y":-1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":19},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"0","_N$string":"0","_fontSize":24,"_lineHeight":24,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"labDesc1","_parent":{"__id__":17},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":21},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"/10)","_N$string":"/10)","_fontSize":24,"_lineHeight":24,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":21},"_color":{"__type__":"cc.Color","r":113},"_width":0.3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"f2s/SJ+PtJy5hfeWz9LmMI"},"_color":{"__type__":"cc.Color","r":113},"_contentSize":{"__type__":"cc.Size","width":41.96,"height":24},"_position":{"__type__":"cc.Vec3","x":10.970000000000002,"y":-1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"matter2","_parent":{"__id__":3},"_children":[{"__id__":23},{"__id__":24},{"__id__":25},{"__id__":26},{"__id__":27},{"__id__":28}],"_level":3,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"fa0Fkjk/9Jh6TaKxrHBqKg"},"_contentSize":{"__type__":"cc.Size","width":580,"height":50},"_position":{"__type__":"cc.Vec3","x":4,"y":286},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diban5","_parent":{"__id__":22},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":23},"_spriteFrame":{"__uuid__":"20br33BY5AcL1/fs0WSU9p"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"bfN3LdQxZCMbcwO19B2KnE"},"_contentSize":{"__type__":"cc.Size","width":554,"height":39},"_position":{"__type__":"cc.Vec3","y":0.8999999999999999},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diandian","_parent":{"__id__":22},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":24},"_spriteFrame":{"__uuid__":"23k8InBK1IDZAfxIWOodHI"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"f6GO1IRCxLW5Smg33T7HuV"},"_contentSize":{"__type__":"cc.Size","width":20,"height":20},"_position":{"__type__":"cc.Vec3","x":-258},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"weixuanzhong","_parent":{"__id__":22},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":25},"_spriteFrame":{"__uuid__":"0aVL9yk5NBMIqOmTBfViTq"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"91npoLKFhOzaWdC7Q7cvO2"},"_contentSize":{"__type__":"cc.Size","width":32,"height":32},"_position":{"__type__":"cc.Vec3","x":255},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"xuanzhong","_parent":{"__id__":22},"_active":false,"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":26},"_spriteFrame":{"__uuid__":"8e/pnTRy9C3Ihd0emR560P"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"96zH6blElKZqSSoTVE6J/J"},"_contentSize":{"__type__":"cc.Size","width":32,"height":32},"_position":{"__type__":"cc.Vec3","x":255,"y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labDesc","_parent":{"__id__":22},"_level":4,"_components":[{"__type__":"cc.Label","node":{"__id__":27},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"完成致富订单","_N$string":"完成致富订单","_fontSize":25,"_lineHeight":25,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":27},"_color":{"__type__":"cc.Color","r":113},"_width":0.3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"07n38rH7dCT6maV4mUbkfF"},"_color":{"__type__":"cc.Color","r":113},"_contentSize":{"__type__":"cc.Size","width":150.6,"height":25},"_position":{"__type__":"cc.Vec3","x":-149,"y":2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"layout","_parent":{"__id__":22},"_children":[{"__id__":29},{"__id__":30},{"__id__":32}],"_level":4,"_components":[{"__type__":"cc.Layout","node":{"__id__":28},"_layoutSize":{"__type__":"cc.Size","width":50.55,"height":25},"_resize":1,"_N$layoutType":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"91Lcz0jalJs5B6ik0Yo2cw"},"_contentSize":{"__type__":"cc.Size","width":50.55,"height":25},"_position":{"__type__":"cc.Vec3","x":196.7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labDesc2","_parent":{"__id__":28},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":29},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"(","_N$string":"(","_fontSize":24,"_lineHeight":24,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":29},"_color":{"__type__":"cc.Color","r":113},"_width":0.3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"36P9WGNnVB16GQ+bOxolTX"},"_color":{"__type__":"cc.Color","r":113},"_contentSize":{"__type__":"cc.Size","width":8.59,"height":24},"_position":{"__type__":"cc.Vec3","x":-20.979999999999997,"y":-1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labOrderNum","_parent":{"__id__":28},"_level":5,"_components":[{"__id__":31}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"4dIAsPLXVIeJIGtKIj4Mtn"},"_color":{"__type__":"cc.Color","r":255},"_contentSize":{"__type__":"cc.Size","width":13.35,"height":24},"_position":{"__type__":"cc.Vec3","x":-10.009999999999994,"y":-1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":30},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"0","_N$string":"0","_fontSize":24,"_lineHeight":24,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"labDesc1","_parent":{"__id__":28},"_level":5,"_components":[{"__id__":33},{"__type__":"cc.LabelOutline","node":{"__id__":32},"_color":{"__type__":"cc.Color","r":113},"_width":0.3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"99DUGjuqdFHqv8nlo95XGZ"},"_color":{"__type__":"cc.Color","r":113},"_contentSize":{"__type__":"cc.Size","width":28.610000000000003,"height":24},"_position":{"__type__":"cc.Vec3","x":10.970000000000006,"y":-1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":32},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"/3)","_N$string":"/3)","_fontSize":24,"_lineHeight":24,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"matter3","_parent":{"__id__":3},"_children":[{"__id__":35},{"__id__":36},{"__id__":37},{"__id__":38},{"__id__":39},{"__id__":40},{"__id__":41},{"__id__":46}],"_level":3,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"48bR5gLTtEWp2ahHxOcpUa"},"_contentSize":{"__type__":"cc.Size","width":580,"height":50},"_position":{"__type__":"cc.Vec3","x":4,"y":230},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diban5","_parent":{"__id__":34},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":35},"_spriteFrame":{"__uuid__":"20br33BY5AcL1/fs0WSU9p"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"b80hwzBSFCCaF/jd9gUihT"},"_contentSize":{"__type__":"cc.Size","width":554,"height":39},"_position":{"__type__":"cc.Vec3","y":0.8999999999999999},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diandian","_parent":{"__id__":34},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":36},"_spriteFrame":{"__uuid__":"23k8InBK1IDZAfxIWOodHI"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"96cs5SJytBpo5RoOFwGo+U"},"_contentSize":{"__type__":"cc.Size","width":20,"height":20},"_position":{"__type__":"cc.Vec3","x":-258},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diaoban","_parent":{"__id__":34},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":37},"_spriteFrame":{"__uuid__":"6daBhqyU5NWolCSCBzP2x5"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"5a33+Qi8xJlqxXQ4SeaF7b"},"_contentSize":{"__type__":"cc.Size","width":497,"height":134},"_position":{"__type__":"cc.Vec3","x":2,"y":-119},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"weixuanzhong","_parent":{"__id__":34},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":38},"_spriteFrame":{"__uuid__":"0aVL9yk5NBMIqOmTBfViTq"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"593xyfYBNBbI4CdhWPQ/C7"},"_contentSize":{"__type__":"cc.Size","width":32,"height":32},"_position":{"__type__":"cc.Vec3","x":255},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"xuanzhong","_parent":{"__id__":34},"_active":false,"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":39},"_spriteFrame":{"__uuid__":"8e/pnTRy9C3Ihd0emR560P"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"cdyrtiHY9NoaoDBM9nxqFd"},"_contentSize":{"__type__":"cc.Size","width":32,"height":32},"_position":{"__type__":"cc.Vec3","x":255,"y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labDesc","_parent":{"__id__":34},"_level":4,"_components":[{"__type__":"cc.Label","node":{"__id__":40},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"购买电商订单","_N$string":"购买电商订单","_fontSize":25,"_lineHeight":25,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":40},"_color":{"__type__":"cc.Color","r":113},"_width":0.3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"555NeACHRP3YhP2Mi/NzDL"},"_color":{"__type__":"cc.Color","r":113},"_contentSize":{"__type__":"cc.Size","width":150.6,"height":25},"_position":{"__type__":"cc.Vec3","x":-149,"y":-1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"layout","_parent":{"__id__":34},"_children":[{"__id__":42},{"__id__":43},{"__id__":45}],"_level":4,"_components":[{"__type__":"cc.Layout","node":{"__id__":41},"_layoutSize":{"__type__":"cc.Size","width":50.55,"height":25},"_resize":1,"_N$layoutType":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"57fnhe7ZxFRJ9fEG5rHNOB"},"_contentSize":{"__type__":"cc.Size","width":50.55,"height":25},"_position":{"__type__":"cc.Vec3","x":197},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labDesc2","_parent":{"__id__":41},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":42},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"(","_N$string":"(","_fontSize":24,"_lineHeight":24,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":42},"_color":{"__type__":"cc.Color","r":113},"_width":0.3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"41+T2bCjxEpJX8fmDVmpvL"},"_color":{"__type__":"cc.Color","r":113},"_contentSize":{"__type__":"cc.Size","width":8.59,"height":24},"_position":{"__type__":"cc.Vec3","x":-20.979999999999997,"y":-1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labGoodsNum","_parent":{"__id__":41},"_level":5,"_components":[{"__id__":44}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"24g3xC2bxHTpzxxp5cIsUY"},"_color":{"__type__":"cc.Color","r":255},"_contentSize":{"__type__":"cc.Size","width":13.35,"height":24},"_position":{"__type__":"cc.Vec3","x":-10.009999999999994,"y":-1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":43},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"0","_N$string":"0","_fontSize":24,"_lineHeight":24,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"labDesc1","_parent":{"__id__":41},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":45},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"/1)","_N$string":"/1)","_fontSize":24,"_lineHeight":24,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":45},"_color":{"__type__":"cc.Color","r":113},"_width":0.3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"c80vw9NoZIfr5nCLxmr70H"},"_color":{"__type__":"cc.Color","r":113},"_contentSize":{"__type__":"cc.Size","width":28.610000000000003,"height":24},"_position":{"__type__":"cc.Vec3","x":10.970000000000006,"y":-1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"layoutNode","_parent":{"__id__":34},"_children":[{"__id__":47},{"__id__":53},{"__id__":59},{"__id__":65}],"_level":4,"_components":[{"__type__":"cc.Layout","node":{"__id__":46},"_layoutSize":{"__type__":"cc.Size","width":430,"height":110},"_resize":1,"_N$layoutType":1,"_N$spacingX":10}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"53T8jj63JKoYnrMWKVKciG"},"_contentSize":{"__type__":"cc.Size","width":430,"height":110},"_position":{"__type__":"cc.Vec3","y":-102},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"goods","_parent":{"__id__":46},"_children":[{"__id__":48},{"__id__":49},{"__id__":50},{"__id__":51},{"__id__":52}],"_level":5,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"f47ZflstRGpbxrOUlVB+7H"},"_contentSize":{"__type__":"cc.Size","width":100,"height":110},"_position":{"__type__":"cc.Vec3","x":-165,"y":-4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"touying","_parent":{"__id__":47},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":48},"_spriteFrame":{"__uuid__":"1cfKbUfbBMJba67UvAqXrj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"6cp9mfAxRDjIif4BTYPHFs"},"_contentSize":{"__type__":"cc.Size","width":85,"height":31},"_position":{"__type__":"cc.Vec3","x":1,"y":-11},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"pingguo","_parent":{"__id__":47},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":49},"_spriteFrame":{"__uuid__":"13OT1x+TBPPKE7V0rP0HpQ"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"85TPruO01KxazrOcgUxSZp"},"_contentSize":{"__type__":"cc.Size","width":69.6,"height":68.8},"_position":{"__type__":"cc.Vec3","x":2,"y":19},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"biaoqian","_parent":{"__id__":47},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":50},"_spriteFrame":{"__uuid__":"f5nQwFoT1EUo0gSBGxWBwj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"8cLNtj1StGgZ2hWRxXBU3A"},"_contentSize":{"__type__":"cc.Size","width":100,"height":32},"_position":{"__type__":"cc.Vec3","y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum1","_parent":{"__id__":47},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":51},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"150","_N$string":"150","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"d6GY4COCZKKJFY7G+eTF3U"},"_color":{"__type__":"cc.Color","r":135,"g":255,"b":133},"_contentSize":{"__type__":"cc.Size","width":33.37,"height":20},"_position":{"__type__":"cc.Vec3","y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum2","_parent":{"__id__":47},"_active":false,"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":52},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"/125","_N$string":"/125","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"45kjATuTVBWb+MTFRLqqq+"},"_contentSize":{"__type__":"cc.Size","width":38.93,"height":20},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-3,"y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"goods","_parent":{"__id__":46},"_children":[{"__id__":54},{"__id__":55},{"__id__":56},{"__id__":57},{"__id__":58}],"_level":5,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"812Zm/ASZAD4p5daCiJItK"},"_contentSize":{"__type__":"cc.Size","width":100,"height":110},"_position":{"__type__":"cc.Vec3","x":-55,"y":-4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"touying","_parent":{"__id__":53},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":54},"_spriteFrame":{"__uuid__":"1cfKbUfbBMJba67UvAqXrj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"a4GQXydNZIxaGes8IqOslm"},"_contentSize":{"__type__":"cc.Size","width":85,"height":31},"_position":{"__type__":"cc.Vec3","x":1,"y":-11},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"pingguo","_parent":{"__id__":53},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":55},"_spriteFrame":{"__uuid__":"13OT1x+TBPPKE7V0rP0HpQ"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"6ebnNi1RdLPaLxxf1E95eG"},"_contentSize":{"__type__":"cc.Size","width":69.6,"height":68.8},"_position":{"__type__":"cc.Vec3","x":2,"y":19},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"biaoqian","_parent":{"__id__":53},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":56},"_spriteFrame":{"__uuid__":"f5nQwFoT1EUo0gSBGxWBwj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"5bFqd/oWFPGJnqcJeIELL8"},"_contentSize":{"__type__":"cc.Size","width":100,"height":32},"_position":{"__type__":"cc.Vec3","y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum1","_parent":{"__id__":53},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":57},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"150","_N$string":"150","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"54qUt0wR1GZblD6c9Z15dW"},"_color":{"__type__":"cc.Color","r":135,"g":255,"b":133},"_contentSize":{"__type__":"cc.Size","width":33.37,"height":20},"_position":{"__type__":"cc.Vec3","y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum2","_parent":{"__id__":53},"_active":false,"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":58},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"/125","_N$string":"/125","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"33B24m+0BFQKrCNpfbwh1w"},"_contentSize":{"__type__":"cc.Size","width":38.93,"height":20},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-3,"y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"goods","_parent":{"__id__":46},"_children":[{"__id__":60},{"__id__":61},{"__id__":62},{"__id__":63},{"__id__":64}],"_level":5,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"a8sVM59UxM7ohwU7iJWpT1"},"_contentSize":{"__type__":"cc.Size","width":100,"height":110},"_position":{"__type__":"cc.Vec3","x":55,"y":-4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"touying","_parent":{"__id__":59},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":60},"_spriteFrame":{"__uuid__":"1cfKbUfbBMJba67UvAqXrj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"d1CGT825dG/JRGj2DeY1Ab"},"_contentSize":{"__type__":"cc.Size","width":85,"height":31},"_position":{"__type__":"cc.Vec3","x":1,"y":-11},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"pingguo","_parent":{"__id__":59},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":61},"_spriteFrame":{"__uuid__":"13OT1x+TBPPKE7V0rP0HpQ"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"18/kWw+W1KOouSyX1Mo+/p"},"_contentSize":{"__type__":"cc.Size","width":69.6,"height":68.8},"_position":{"__type__":"cc.Vec3","x":2,"y":19},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"biaoqian","_parent":{"__id__":59},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":62},"_spriteFrame":{"__uuid__":"f5nQwFoT1EUo0gSBGxWBwj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"bb6XgLW/pA9pb/RE1TmBx+"},"_contentSize":{"__type__":"cc.Size","width":100,"height":32},"_position":{"__type__":"cc.Vec3","y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum1","_parent":{"__id__":59},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":63},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"150","_N$string":"150","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"93vr1JK+tNlolMlHUwR6en"},"_color":{"__type__":"cc.Color","r":135,"g":255,"b":133},"_contentSize":{"__type__":"cc.Size","width":33.37,"height":20},"_position":{"__type__":"cc.Vec3","y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum2","_parent":{"__id__":59},"_active":false,"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":64},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"/125","_N$string":"/125","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"79qYlvphREDIXohGkQMT9T"},"_contentSize":{"__type__":"cc.Size","width":38.93,"height":20},"_position":{"__type__":"cc.Vec3","y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"goods","_parent":{"__id__":46},"_children":[{"__id__":66},{"__id__":67},{"__id__":68},{"__id__":69},{"__id__":70}],"_level":5,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"d9z/zPSGRMPKTU6FrrTcEb"},"_contentSize":{"__type__":"cc.Size","width":100,"height":110},"_position":{"__type__":"cc.Vec3","x":165,"y":-4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"touying","_parent":{"__id__":65},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":66},"_spriteFrame":{"__uuid__":"1cfKbUfbBMJba67UvAqXrj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"ceJUIy0OBKoLJWS3mjSvL2"},"_contentSize":{"__type__":"cc.Size","width":85,"height":31},"_position":{"__type__":"cc.Vec3","x":1,"y":-11},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"pingguo","_parent":{"__id__":65},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":67},"_spriteFrame":{"__uuid__":"13OT1x+TBPPKE7V0rP0HpQ"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"21O4+WxL9N8K7KczVceEf0"},"_contentSize":{"__type__":"cc.Size","width":69.6,"height":68.8},"_position":{"__type__":"cc.Vec3","x":2,"y":19},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"biaoqian","_parent":{"__id__":65},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":68},"_spriteFrame":{"__uuid__":"f5nQwFoT1EUo0gSBGxWBwj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"59DyxAdclONqPv6njKytuI"},"_contentSize":{"__type__":"cc.Size","width":100,"height":32},"_position":{"__type__":"cc.Vec3","y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum1","_parent":{"__id__":65},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":69},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"150","_N$string":"150","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"70C5cCEIFIoodsLZBDA60X"},"_color":{"__type__":"cc.Color","r":135,"g":255,"b":133},"_contentSize":{"__type__":"cc.Size","width":33.37,"height":20},"_position":{"__type__":"cc.Vec3","y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum2","_parent":{"__id__":65},"_active":false,"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":70},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"/125","_N$string":"/125","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"69KX8Vhj9B7oxMXntWDcmB"},"_contentSize":{"__type__":"cc.Size","width":38.93,"height":20},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-3,"y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"matter4","_parent":{"__id__":3},"_children":[{"__id__":72},{"__id__":73},{"__id__":74},{"__id__":75},{"__id__":76}],"_level":3,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"7anSxIFg5KyqwPJ1silTuK"},"_contentSize":{"__type__":"cc.Size","width":580,"height":200},"_position":{"__type__":"cc.Vec3","x":3,"y":-72},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diban3","_parent":{"__id__":71},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":72},"_spriteFrame":{"__uuid__":"a2TYdtzAFNR6H+yuIFYh4y"},"_type":1,"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"84Cbba2yxHlrhxfP8rqfkj"},"_contentSize":{"__type__":"cc.Size","width":550,"height":193},"_position":{"__type__":"cc.Vec3","x":-2,"y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diguang","_parent":{"__id__":71},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":73},"_spriteFrame":{"__uuid__":"dfsLO8DAtLGLUSj3gsAl3G"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"bd2y3kXCVE+pT3GbFNDBxy"},"_contentSize":{"__type__":"cc.Size","width":552,"height":193},"_position":{"__type__":"cc.Vec3","x":2,"y":4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"biaoqian1","_parent":{"__id__":71},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":74},"_spriteFrame":{"__uuid__":"84Co42Wu9BELJrl0EYps4G"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"8ejVmH8XZN8oz12KwBsBa+"},"_contentSize":{"__type__":"cc.Size","width":129,"height":35},"_position":{"__type__":"cc.Vec3","x":-207,"y":74},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"Label","_parent":{"__id__":71},"_level":4,"_components":[{"__type__":"cc.Label","node":{"__id__":75},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"订单奖励","_N$string":"订单奖励","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"65CDOZBn1Dbb3CMTICZA3W"},"_contentSize":{"__type__":"cc.Size","width":80,"height":20},"_position":{"__type__":"cc.Vec3","x":-198,"y":74},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"layoutNode","_parent":{"__id__":71},"_children":[{"__id__":77},{"__id__":80},{"__id__":83}],"_level":4,"_components":[{"__type__":"cc.Layout","node":{"__id__":76},"_layoutSize":{"__type__":"cc.Size","width":-30,"height":120},"_resize":1,"_N$layoutType":1,"_N$spacingX":30}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"91XQir45pG3ZSA1MI9xg+X"},"_contentSize":{"__type__":"cc.Size","width":-30,"height":120},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"kuang","_parent":{"__id__":76},"_children":[{"__id__":78},{"__id__":79}],"_active":false,"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":77},"_spriteFrame":{"__uuid__":"48qtt5FpNJw61v73KxEYd0"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"eeKJziihBAJayOnOEedRMw"},"_contentSize":{"__type__":"cc.Size","width":114,"height":119},"_position":{"__type__":"cc.Vec3","x":-72,"y":-17},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"jinbi","_parent":{"__id__":77},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":78},"_spriteFrame":{"__uuid__":"e4IYERodFIB46xcrvFttJN"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"bcuad9gTZOr7QRIIchtkrI"},"_contentSize":{"__type__":"cc.Size","width":75.933,"height":73.359},"_position":{"__type__":"cc.Vec3","x":2,"y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum","_parent":{"__id__":77},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":79},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"50","_N$string":"50","_fontSize":30,"_lineHeight":30,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"f3cF3nr19PuJhEVmr4o1EN"},"_color":{"__type__":"cc.Color","r":117,"g":48,"b":2},"_contentSize":{"__type__":"cc.Size","width":33.37,"height":30},"_anchorPoint":{"__type__":"cc.Vec2","x":1,"y":0.5},"_position":{"__type__":"cc.Vec3","x":52.8,"y":-38.8},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"kuang","_parent":{"__id__":76},"_children":[{"__id__":81},{"__id__":82}],"_active":false,"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":80},"_spriteFrame":{"__uuid__":"48qtt5FpNJw61v73KxEYd0"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"97NA25HjdD+6fSzzkCkYCL"},"_contentSize":{"__type__":"cc.Size","width":114,"height":119},"_position":{"__type__":"cc.Vec3","y":-17},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"jinbi","_parent":{"__id__":80},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":81},"_spriteFrame":{"__uuid__":"25dt/PtH1IGKEfe/72MI9D"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"38Y2tAJ/pFY6SzGVAvs/iG"},"_contentSize":{"__type__":"cc.Size","width":75.933,"height":73.359},"_position":{"__type__":"cc.Vec3","x":2,"y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum","_parent":{"__id__":80},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":82},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"50","_N$string":"50","_fontSize":30,"_lineHeight":30,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"0dFtgu4mtN0IXQ7D/5nlIJ"},"_color":{"__type__":"cc.Color","r":117,"g":48,"b":2},"_contentSize":{"__type__":"cc.Size","width":33.37,"height":30},"_anchorPoint":{"__type__":"cc.Vec2","x":1,"y":0.5},"_position":{"__type__":"cc.Vec3","x":52.8,"y":-38.8},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"kuang","_parent":{"__id__":76},"_children":[{"__id__":84},{"__id__":85}],"_active":false,"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":83},"_spriteFrame":{"__uuid__":"48qtt5FpNJw61v73KxEYd0"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"caZ/C1Rw9NYaD694ga8qhV"},"_contentSize":{"__type__":"cc.Size","width":114,"height":119},"_position":{"__type__":"cc.Vec3","y":-17},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"jinbi","_parent":{"__id__":83},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":84},"_spriteFrame":{"__uuid__":"05wr3+zh5Oza/Utq5jYf9z"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"3dqyYez1xKwqOhLH16jdts"},"_contentSize":{"__type__":"cc.Size","width":75.933,"height":73.359},"_position":{"__type__":"cc.Vec3","x":2,"y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum","_parent":{"__id__":83},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":85},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"50","_N$string":"50","_fontSize":30,"_lineHeight":30,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"b7F+VjbjlH0oJte8gBqrVt"},"_color":{"__type__":"cc.Color","r":117,"g":48,"b":2},"_contentSize":{"__type__":"cc.Size","width":33.37,"height":30},"_anchorPoint":{"__type__":"cc.Vec2","x":1,"y":0.5},"_position":{"__type__":"cc.Vec3","x":52.8,"y":-38.8},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"okBtn","_parent":{"__id__":3},"_children":[{"__id__":87}],"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":86},"_spriteFrame":{"__uuid__":"cdZod374dKbY+0ASLPyCjV"}},{"__id__":88}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"76GOEyDslNXaUjEVg3kyqK"},"_contentSize":{"__type__":"cc.Size","width":352,"height":102},"_position":{"__type__":"cc.Vec3","x":8,"y":-255},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"Label","_parent":{"__id__":86},"_components":[{"__type__":"cc.Label","node":{"__id__":87},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"完成要求后开启","_N$string":"完成要求后开启","_fontSize":32,"_lineHeight":35,"_enableWrapText":false,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":87},"_color":{"__type__":"cc.Color","r":171,"g":91,"b":23},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"07ghXgUZdFlbz5XhBB2go9"},"_contentSize":{"__type__":"cc.Size","width":228,"height":35},"_position":{"__type__":"cc.Vec3","y":2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Button","node":{"__id__":86},"transition":3,"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"zoomScale":0.9,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"OrdersDialogZf","handler":"onOkBtn"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":86}},{"__type__":"cc.Node","_name":"okBtn1","_parent":{"__id__":3},"_children":[{"__id__":90}],"_active":false,"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":89},"_spriteFrame":{"__uuid__":"9dZNwraKtEq5SLTSVj93Ri"}},{"__id__":91}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"37nX/AVqhJNplrkn32Lgye"},"_contentSize":{"__type__":"cc.Size","width":352,"height":102},"_position":{"__type__":"cc.Vec3","x":8,"y":-254},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"Label","_parent":{"__id__":89},"_components":[{"__type__":"cc.Label","node":{"__id__":90},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"完成并领取奖励","_N$string":"完成并领取奖励","_fontSize":32,"_lineHeight":35,"_enableWrapText":false,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":90},"_color":{"__type__":"cc.Color","r":48,"g":119,"b":65},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eaCsqIwyNBlYV5Q4w5HpX+"},"fileId":"9fHi2LkFJOJYrxk33Twg7b"},"_contentSize":{"__type__":"cc.Size","width":228,"height":35},"_position":{"__type__":"cc.Vec3","y":2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Button","node":{"__id__":89},"transition":3,"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"zoomScale":0.9,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"OrdersDialogZf","handler":"onOkBtn1"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":89}}],{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_normal","texture":"e8Ueib+qJEhL6mXAHdnwbi","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"biaoqian","texture":"a8rnVZMYdB1IKFsz0IP0FP","rect":[1,1,100,32],"offset":[0,0],"originalSize":[102,34],"capInsets":[0,0,0,0]}}]
\ No newline at end of file
[{"__type__":"cc.SpriteFrame","content":{"name":"audio_off","texture":"2e4g4B9ZtNX54SJElBFCdA","rect":[0,0,128,128],"offset":[0,0],"originalSize":[128,128],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"audio_on","texture":"7cacegOSFMkoZPIfMOzC0n","rect":[0,0,128,128],"offset":[0,0],"originalSize":[128,128],"capInsets":[0,0,0,0]}},[{"__type__":"cc.Prefab","_name":"audioSwitchView","data":{"__id__":1}},{"__type__":"cc.Node","_name":"audioSwitchView","_children":[{"__id__":2}],"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":1}},{"__type__":"cc.Button","node":{"__id__":1},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"AudioSwitchView","handler":"switchAudio"}],"_N$target":{"__id__":1}},{"__type__":"f3b08RVga5Hi4eVVtLfd+bp","node":{"__id__":1},"audioSprite":{"__id__":3},"onSprite":{"__uuid__":"40SiQOx2lHo6EiSTTkVr10"},"offSprite":{"__uuid__":"33xcnfMYdJs4WRlCZZFZkc"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"aavF51oQFE44OKzwM6quqF"},"fileId":"91lzBd0SlLibenwIW7NAr5"},"_contentSize":{"__type__":"cc.Size","width":128,"height":128},"_position":{"__type__":"cc.Vec3","y":286},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"audioSprite","_parent":{"__id__":1},"_level":4,"_components":[{"__id__":3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"aavF51oQFE44OKzwM6quqF"},"fileId":"ff8ZK7MZ1Dsq6IQJ7yTVBq"},"_contentSize":{"__type__":"cc.Size","width":128,"height":128},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":2},"_spriteFrame":{"__uuid__":"40SiQOx2lHo6EiSTTkVr10"}}]]
\ No newline at end of file
{"__type__":"sp.SkeletonData","_name":"n_01","_native":"raw-skeleton.json","_skeletonJson":{"skeleton":{"hash":"0suTUBjYvaRSRejxdv2Zy9biI58","spine":"3.6.53","width":310,"height":196.9,"images":"./lanjing/"},"bones":[{"name":"root"},{"name":"huotui4","parent":"root","length":30.41,"rotation":59.04,"x":-17.7,"y":-42.25,"color":"ff00e5ff"},{"name":"bone2","parent":"huotui4","length":44.73,"rotation":0.29,"x":30.41,"color":"ff00e5ff"},{"name":"huotui5","parent":"root","length":30.41,"rotation":59.04,"x":-102.18,"y":-2.56,"color":"ff00e5ff"},{"name":"bone3","parent":"huotui5","length":44.73,"rotation":0.29,"x":30.41,"color":"ff00e5ff"},{"name":"huotui6","parent":"root","length":30.41,"rotation":59.04,"x":53.18,"y":0.85,"color":"ff00e5ff"},{"name":"bone4","parent":"huotui6","length":44.73,"rotation":0.29,"x":30.41,"color":"ff00e5ff"},{"name":"huotui7","parent":"root","length":30.41,"rotation":59.04,"x":-29.13,"y":31.54,"color":"ff00e5ff"},{"name":"bone5","parent":"huotui7","length":44.73,"rotation":0.29,"x":30.41,"color":"ff00e5ff"},{"name":"huotui1","parent":"root","color":"ff0000ff"},{"name":"huotui2","parent":"root","x":94.75,"y":-51.97,"color":"0017ffff"},{"name":"huotui3","parent":"huotui1","x":-4.32,"y":61.7,"color":"ff0000ff"}],"slots":[{"name":"huotui3","bone":"huotui3","attachment":"huotui3"},{"name":"huotui1","bone":"huotui1","attachment":"huotui1"},{"name":"huotui2","bone":"huotui2","attachment":"huotui2"},{"name":"huotui6","bone":"huotui6","attachment":"huotui4"},{"name":"huotui7","bone":"huotui7","attachment":"huotui4"},{"name":"huotui4","bone":"huotui4","attachment":"huotui4"},{"name":"huotui5","bone":"huotui5","attachment":"huotui4"}],"skins":{"default":{"huotui1":{"huotui1":{"x":1,"y":-13,"width":310,"height":164}},"huotui2":{"huotui2":{"type":"mesh","uvs":[0.81953,0.0301,1,0.16793,1,0.4357,0.68163,0.69679,0.44486,0.89762,0.26517,1,0,0.80055,0,0.68674,0.00487,0.50617,0.66893,0.02929,0.76739,0,0.15718,0.61729,0.28075,0.71092,0.86998,0.25852,0.72125,0.14728,0.21077,0.64948,0.7768,0.18755,0.6396,0.20284,0.68816,0.28049,0.74072,0.34807,0.47501,0.31079,0.53403,0.37474,0.57686,0.46938,0.31056,0.45181,0.3561,0.5331,0.41351,0.60707],"triangles":[14,9,10,14,10,0,16,14,0,16,0,1,17,9,14,13,16,1,18,17,14,18,14,16,17,20,9,21,20,17,19,18,16,19,16,13,18,21,17,13,1,2,9,20,8,19,22,21,19,21,18,8,20,23,21,24,23,21,23,20,24,21,22,25,24,22,11,8,23,15,11,23,24,15,23,12,15,24,7,8,11,3,22,19,25,22,3,2,3,19,2,19,13,25,12,24,15,6,7,4,25,3,12,25,4,12,6,15,5,12,4,15,7,11,12,5,6],"vertices":[1,10,38.38,28.39,1,1,10,58.96,18.46,1,1,10,58.96,-0.82,1,1,10,22.66,-19.61,1,1,10,-4.33,-34.07,1,1,10,-24.81,-41.45,1,1,10,-55.04,-27.08,1,1,10,-55.04,-18.89,1,1,10,-54.49,-5.89,1,1,10,21.21,28.45,1,1,10,32.44,30.55,1,1,10,-37.13,-13.89,1,1,10,-23.04,-20.63,1,1,10,44.13,11.94,1,1,10,27.18,19.95,1,1,10,-31.02,-16.21,1,1,10,33.51,17.05,1,1,10,17.87,15.95,1,1,10,23.41,10.36,1,1,10,29.4,5.49,1,1,10,-0.89,8.18,1,1,10,5.84,3.57,1,1,10,10.72,-3.24,1,1,10,-19.64,-1.98,1,1,10,-14.45,-7.83,1,1,10,-7.9,-13.15,1],"hull":11,"edges":[12,10,10,8,8,6,6,4,16,18,12,14,14,16,14,22,28,18,4,2,26,2,26,4,18,20,0,28,20,0,0,2,16,22,24,10,22,30,30,24,26,32,32,28,34,28,36,32,34,36,38,26,36,38,40,34,42,36,40,42,44,38,42,44,22,46,46,40,30,48,48,42,46,48,24,50,50,44,48,50],"width":114,"height":72}},"huotui3":{"huotui3":{"x":5.18,"y":-13.49,"width":303,"height":102}},"huotui4":{"huotui4":{"type":"mesh","uvs":[1,0.50877,1,0.69089,0.89427,0.81503,0.70505,0.9391,0.52602,1,0.32654,0.94699,0.14939,0.89991,0.05689,0.78075,0.00001,0.70746,0.05283,0.49048,0.12289,0.25578,0.17439,0,0.60053,0,0.80726,0.09448,0.96895,0.16837,0.50031,0.16689,0.38394,0.41101,0.28606,0.64224,0.73973,0.3307,0.66313,0.53785,0.40494,0.81949,0.15527,0.55714],"triangles":[15,11,12,10,11,15,13,15,12,16,10,15,16,15,18,16,21,10,19,16,18,2,19,1,21,9,10,17,21,16,8,9,21,7,8,21,7,21,17,20,17,19,3,20,19,6,7,17,6,17,20,5,6,20,4,20,3,5,20,4,2,3,19,1,19,0,18,14,0,18,13,14,19,18,0,18,15,13,17,16,19],"vertices":[1,1,63.19,-58.54,1,1,1,48.98,-67.07,1,1,1,33.58,-63.36,1,1,1,13.67,-52.13,1,1,1,-0.75,-38.86,1,1,1,-7.39,-18.42,1,1,1,-13.29,-0.27,1,1,1,-8.98,13.64,1,1,1,-6.34,22.19,1,1,1,13.45,27.6,1,2,1,35.54,32.28,0.2391,2,5.29,32.25,0.7609,2,1,58.29,39.61,0.00977,2,28.07,39.47,0.99023,1,2,50.9,0.99,1,1,1,85.1,-21.79,1,1,1,88.07,-39.81,1,1,2,32.47,2.29,1,2,1,37.53,1.5,0.00968,2,7.13,1.47,0.99032,1,1,14.2,-0.51,1,2,1,63.02,-26.77,0.97,2,32.47,-26.93,0.03,2,1,42.72,-29.57,0.97,2,12.16,-29.63,0.03,2,1,6.79,-19.51,0.96,2,-23.72,-19.39,0.04,2,1,13.78,15.25,0.98,2,-16.56,15.33,0.02],"hull":15,"edges":[20,22,22,24,30,24,22,30,0,28,0,2,32,30,32,20,18,20,12,34,34,32,6,8,16,18,2,4,4,6,24,26,26,28,0,36,36,30,26,36,2,38,38,32,36,38,8,40,40,34,38,40,8,10,10,12,40,10,18,42,42,34,12,14,14,16,42,14,42,20],"width":105,"height":91}},"huotui5":{"huotui4":{"type":"mesh","uvs":[1,0.50877,1,0.69089,0.89427,0.81503,0.70505,0.9391,0.52602,1,0.32654,0.94699,0.14939,0.89991,0.05689,0.78075,0.00001,0.70746,0.05283,0.49048,0.12289,0.25578,0.17439,0,0.60053,0,0.80726,0.09448,0.96895,0.16837,0.50031,0.16689,0.38394,0.41101,0.28606,0.64224,0.73973,0.3307,0.66313,0.53785,0.40494,0.81949,0.15527,0.55714],"triangles":[15,11,12,10,11,15,13,15,12,16,10,15,16,15,18,16,21,10,19,16,18,2,19,1,21,9,10,17,21,16,8,9,21,7,8,21,7,21,17,20,17,19,3,20,19,6,7,17,6,17,20,5,6,20,4,20,3,5,20,4,2,3,19,1,19,0,18,14,0,18,13,14,19,18,0,18,15,13,17,16,19],"vertices":[1,3,63.19,-58.54,1,1,3,48.98,-67.07,1,1,3,33.58,-63.36,1,1,3,13.67,-52.13,1,1,3,-0.75,-38.86,1,1,3,-7.39,-18.42,1,1,3,-13.29,-0.27,1,1,3,-8.98,13.64,1,1,3,-6.34,22.19,1,1,3,13.45,27.6,1,2,3,35.54,32.28,0.2391,4,5.29,32.25,0.7609,2,3,58.29,39.61,0.00977,4,28.07,39.47,0.99023,1,4,50.9,0.99,1,1,3,85.1,-21.79,1,1,3,88.07,-39.81,1,1,4,32.47,2.29,1,2,3,37.53,1.5,0.00968,4,7.13,1.47,0.99032,1,3,14.2,-0.51,1,2,3,63.02,-26.77,0.97,4,32.47,-26.93,0.03,2,3,42.72,-29.57,0.97,4,12.16,-29.63,0.03,2,3,6.79,-19.51,0.96,4,-23.72,-19.39,0.04,2,3,13.78,15.25,0.98,4,-16.56,15.33,0.02],"hull":15,"edges":[20,22,22,24,30,24,22,30,0,28,0,2,32,30,32,20,18,20,12,34,34,32,6,8,16,18,2,4,4,6,24,26,26,28,0,36,36,30,26,36,2,38,38,32,36,38,8,40,40,34,38,40,8,10,10,12,40,10,18,42,42,34,12,14,14,16,42,14,42,20],"width":105,"height":91}},"huotui6":{"huotui4":{"type":"mesh","uvs":[1,0.50877,1,0.69089,0.89427,0.81503,0.70505,0.9391,0.52602,1,0.32654,0.94699,0.14939,0.89991,0.05689,0.78075,0.00001,0.70746,0.05283,0.49048,0.12289,0.25578,0.17439,0,0.60053,0,0.80726,0.09448,0.96895,0.16837,0.50031,0.16689,0.38394,0.41101,0.28606,0.64224,0.73973,0.3307,0.66313,0.53785,0.40494,0.81949,0.15527,0.55714],"triangles":[15,11,12,10,11,15,13,15,12,16,10,15,16,15,18,16,21,10,19,16,18,2,19,1,21,9,10,17,21,16,8,9,21,7,8,21,7,21,17,20,17,19,3,20,19,6,7,17,6,17,20,5,6,20,4,20,3,5,20,4,2,3,19,1,19,0,18,14,0,18,13,14,19,18,0,18,15,13,17,16,19],"vertices":[1,5,63.19,-58.54,1,1,5,48.98,-67.07,1,1,5,33.58,-63.36,1,1,5,13.67,-52.13,1,1,5,-0.75,-38.86,1,1,5,-7.39,-18.42,1,1,5,-13.29,-0.27,1,1,5,-8.98,13.64,1,1,5,-6.34,22.19,1,1,5,13.45,27.6,1,2,5,35.54,32.28,0.2391,6,5.29,32.25,0.7609,2,5,58.29,39.61,0.00977,6,28.07,39.47,0.99023,1,6,50.9,0.99,1,1,5,85.1,-21.79,1,1,5,88.07,-39.81,1,1,6,32.47,2.29,1,2,5,37.53,1.5,0.00968,6,7.13,1.47,0.99032,1,5,14.2,-0.51,1,2,5,63.02,-26.77,0.97,6,32.47,-26.93,0.03,2,5,42.72,-29.57,0.97,6,12.16,-29.63,0.03,2,5,6.79,-19.51,0.96,6,-23.72,-19.39,0.04,2,5,13.78,15.25,0.98,6,-16.56,15.33,0.02],"hull":15,"edges":[20,22,22,24,30,24,22,30,0,28,0,2,32,30,32,20,18,20,12,34,34,32,6,8,16,18,2,4,4,6,24,26,26,28,0,36,36,30,26,36,2,38,38,32,36,38,8,40,40,34,38,40,8,10,10,12,40,10,18,42,42,34,12,14,14,16,42,14,42,20],"width":105,"height":91}},"huotui7":{"huotui4":{"type":"mesh","uvs":[1,0.50877,1,0.69089,0.89427,0.81503,0.70505,0.9391,0.52602,1,0.32654,0.94699,0.14939,0.89991,0.05689,0.78075,0.00001,0.70746,0.05283,0.49048,0.12289,0.25578,0.17439,0,0.60053,0,0.80726,0.09448,0.96895,0.16837,0.50031,0.16689,0.38394,0.41101,0.28606,0.64224,0.73973,0.3307,0.66313,0.53785,0.40494,0.81949,0.15527,0.55714],"triangles":[15,11,12,10,11,15,13,15,12,16,10,15,16,15,18,16,21,10,19,16,18,2,19,1,21,9,10,17,21,16,8,9,21,7,8,21,7,21,17,20,17,19,3,20,19,6,7,17,6,17,20,5,6,20,4,20,3,5,20,4,2,3,19,1,19,0,18,14,0,18,13,14,19,18,0,18,15,13,17,16,19],"vertices":[1,7,63.19,-58.54,1,1,7,48.98,-67.07,1,1,7,33.58,-63.36,1,1,7,13.67,-52.13,1,1,7,-0.75,-38.86,1,1,7,-7.39,-18.42,1,1,7,-13.29,-0.27,1,1,7,-8.98,13.64,1,1,7,-6.34,22.19,1,1,7,13.45,27.6,1,2,7,35.54,32.28,0.2391,8,5.29,32.25,0.7609,2,7,58.29,39.61,0.00977,8,28.07,39.47,0.99023,1,8,50.9,0.99,1,1,7,85.1,-21.79,1,1,7,88.07,-39.81,1,1,8,32.47,2.29,1,2,7,37.53,1.5,0.00968,8,7.13,1.47,0.99032,1,7,14.2,-0.51,1,2,7,63.02,-26.77,0.97,8,32.47,-26.93,0.03,2,7,42.72,-29.57,0.97,8,12.16,-29.63,0.03,2,7,6.79,-19.51,0.96,8,-23.72,-19.39,0.04,2,7,13.78,15.25,0.98,8,-16.56,15.33,0.02],"hull":15,"edges":[20,22,22,24,30,24,22,30,0,28,0,2,32,30,32,20,18,20,12,34,34,32,6,8,16,18,2,4,4,6,24,26,26,28,0,36,36,30,26,36,2,38,38,32,36,38,8,40,40,34,38,40,8,10,10,12,40,10,18,42,42,34,12,14,14,16,42,14,42,20],"width":105,"height":91}}}},"animations":{"await1":{"bones":{"huotui4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"huotui1":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"huotui3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone2":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":6,"y":-0.09,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui2":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"huotui5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":6,"y":-0.09,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":6,"y":-0.09,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":6,"y":-0.09,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]}},"deform":{"default":{"huotui2":{"huotui2":[{"time":0,"offset":49,"vertices":[0.77],"curve":[0.25,0,0.75,1]},{"time":0.5,"offset":36,"vertices":[5.85198,4.00399,0,0,0,0,7.63398,5.23599,0,0,0,0,4.92798,-2.30999],"curve":[0.25,0,0.75,1]},{"time":1,"offset":49,"vertices":[0.77]}]},"huotui4":{"huotui4":[{"time":0,"offset":40,"vertices":[-0.24355,-0.14612],"curve":[0.25,0,0.75,1]},{"time":0.5,"offset":20,"vertices":[2.2063,0.29833,2.20776,0.2873,3.60032,-0.81483,3.5962,-0.83282,0,0,0,0,0,0,0,0,0,0,0,0,-0.24355,-0.14612],"curve":[0.25,0,0.75,1]},{"time":1,"offset":40,"vertices":[-0.24355,-0.14612]}]},"huotui5":{"huotui4":[{"time":0,"offset":40,"vertices":[-0.24355,-0.14612],"curve":[0.25,0,0.75,1]},{"time":0.4333,"offset":20,"vertices":[2.2063,0.29833,2.20776,0.2873,3.60032,-0.81483,3.5962,-0.83282,0,0,0,0,0,0,0,0,0,0,0,0,-0.24355,-0.14612],"curve":[0.25,0,0.75,1]},{"time":1,"offset":40,"vertices":[-0.24355,-0.14612]}]},"huotui6":{"huotui4":[{"time":0,"offset":40,"vertices":[-0.24355,-0.14612],"curve":[0.25,0,0.75,1]},{"time":0.4,"offset":20,"vertices":[2.2063,0.29833,2.20776,0.2873,3.60032,-0.81483,3.5962,-0.83282,0,0,0,0,0,0,0,0,0,0,0,0,-0.24355,-0.14612],"curve":[0.25,0,0.75,1]},{"time":1,"offset":40,"vertices":[-0.24355,-0.14612]}]},"huotui7":{"huotui4":[{"time":0,"offset":40,"vertices":[-0.24355,-0.14612],"curve":[0.25,0,0.75,1]},{"time":0.3667,"offset":20,"vertices":[2.2063,0.29833,2.20776,0.2873,3.60032,-0.81483,3.5962,-0.83282,0,0,0,0,0,0,0,0,0,0,0,0,-0.24355,-0.14612],"curve":[0.25,0,0.75,1]},{"time":1,"offset":40,"vertices":[-0.24355,-0.14612]}]}}}},"await2":{"bones":{"huotui4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"huotui1":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"huotui3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"bone2":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":1.58,"curve":[0.25,0,0.75,1]},{"time":0.2667,"angle":-0.6,"curve":"stepped"},{"time":0.4,"angle":-0.6,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":0.87,"curve":[0.25,0,0.75,1]},{"time":0.6667,"angle":-0.55,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-4.82,"y":-0.03,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":6,"y":0.23,"curve":"stepped"},{"time":0.4,"x":6,"y":0.23,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":-5.05,"y":0.6,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":6.91,"y":0.37,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.825,"y":1.171,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":1.32,"y":0.807,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.453,"y":0.82,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0.934,"y":1.112,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":1.076,"y":0.874,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui2":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"huotui5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"bone3":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"angle":1.58,"curve":[0.25,0,0.75,1]},{"time":0.2333,"angle":-0.6,"curve":"stepped"},{"time":0.3333,"angle":-0.6,"curve":[0.25,0,0.75,1]},{"time":0.4667,"angle":0.87,"curve":[0.25,0,0.75,1]},{"time":0.5667,"angle":-0.55,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":-4.82,"y":-0.03,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":6,"y":0.23,"curve":"stepped"},{"time":0.3333,"x":6,"y":0.23,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":-5.05,"y":0.6,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":6.91,"y":0.37,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.825,"y":1.171,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.32,"y":0.807,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":1.453,"y":0.82,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":0.934,"y":1.112,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":1.076,"y":0.874,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"angle":1.58,"curve":[0.25,0,0.75,1]},{"time":0.2,"angle":-0.6,"curve":"stepped"},{"time":0.3333,"angle":-0.6,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":0.87,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":-0.55,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":-4.82,"y":-0.03,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":6,"y":0.23,"curve":"stepped"},{"time":0.3333,"x":6,"y":0.23,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":-5.05,"y":0.6,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":6.91,"y":0.37,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.825,"y":1.171,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":1.32,"y":0.807,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":1.453,"y":0.82,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":0.934,"y":1.112,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":1.076,"y":0.874,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"angle":1.58,"curve":[0.25,0,0.75,1]},{"time":0.2,"angle":-0.6,"curve":"stepped"},{"time":0.3,"angle":-0.6,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":0.87,"curve":[0.25,0,0.75,1]},{"time":0.4667,"angle":-0.55,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":-4.82,"y":-0.03,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":6,"y":0.23,"curve":"stepped"},{"time":0.3,"x":6,"y":0.23,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":-5.05,"y":0.6,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":6.91,"y":0.37,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.825,"y":1.171,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":1.32,"y":0.807,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":1.453,"y":0.82,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0.934,"y":1.112,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":1.076,"y":0.874,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]}},"deform":{"default":{"huotui2":{"huotui2":[{"time":0,"offset":49,"vertices":[0.77],"curve":[0.25,0,0.75,1]},{"time":0.4333,"offset":36,"vertices":[5.85198,4.00399,0,0,0,0,7.63398,5.23599,0,0,0,0,4.92798,-2.30999],"curve":[0.25,0,0.75,1]},{"time":0.8333,"offset":49,"vertices":[0.77]}]},"huotui4":{"huotui4":[{"time":0,"offset":40,"vertices":[-0.24355,-0.14612],"curve":[0.11,0.13,0.75,1]},{"time":0.4,"offset":20,"vertices":[2.2063,0.29833,2.20776,0.2873,3.60032,-0.81483,3.5962,-0.83282,0,0,0,0,0,0,0,0,0,0,0,0,-0.24355,-0.14612],"curve":[0.25,0,0.75,1]},{"time":0.8333,"offset":40,"vertices":[-0.24355,-0.14612]}]},"huotui5":{"huotui4":[{"time":0,"offset":40,"vertices":[-0.24355,-0.14612],"curve":[0.11,0.13,0.75,1]},{"time":0.3333,"offset":20,"vertices":[2.2063,0.29833,2.20776,0.2873,3.60032,-0.81483,3.5962,-0.83282,0,0,0,0,0,0,0,0,0,0,0,0,-0.24355,-0.14612],"curve":[0.25,0,0.75,1]},{"time":0.8333,"offset":40,"vertices":[-0.24355,-0.14612]}]},"huotui6":{"huotui4":[{"time":0,"offset":40,"vertices":[-0.24355,-0.14612],"curve":[0.11,0.13,0.75,1]},{"time":0.3333,"offset":20,"vertices":[2.2063,0.29833,2.20776,0.2873,3.60032,-0.81483,3.5962,-0.83282,0,0,0,0,0,0,0,0,0,0,0,0,-0.24355,-0.14612],"curve":[0.25,0,0.75,1]},{"time":0.8333,"offset":40,"vertices":[-0.24355,-0.14612]}]},"huotui7":{"huotui4":[{"time":0,"offset":40,"vertices":[-0.24355,-0.14612],"curve":[0.11,0.13,0.75,1]},{"time":0.3,"offset":20,"vertices":[2.2063,0.29833,2.20776,0.2873,3.60032,-0.81483,3.5962,-0.83282,0,0,0,0,0,0,0,0,0,0,0,0,-0.24355,-0.14612],"curve":[0.25,0,0.75,1]},{"time":0.8333,"offset":40,"vertices":[-0.24355,-0.14612]}]}}}}}},"_atlasText":"\nn_01.png\nsize: 938,334\nformat: RGBA8888\nfilter: Linear,Linear\nrepeat: none\nhuotui1\n rotate: false\n xy: 2, 2\n size: 310, 164\n orig: 310, 164\n offset: 0, 0\n index: -1\nhuotui2\n rotate: false\n xy: 314, 2\n size: 114, 72\n orig: 114, 72\n offset: 0, 0\n index: -1\nhuotui3\n rotate: false\n xy: 626, 2\n size: 303, 102\n orig: 303, 102\n offset: 0, 0\n index: -1\nhuotui4\n rotate: false\n xy: 2, 168\n size: 105, 91\n orig: 105, 91\n offset: 0, 0\n index: -1\n","textures":[{"__uuid__":"3eXvvR3qJBFaYhOQSnO3tU"}],"textureNames":["n_01.png"]}
\ No newline at end of file
[[{"__type__":"cc.Prefab","_name":"orderFinishDialog","data":{"__id__":1}},{"__type__":"cc.Node","_name":"orderFinishDialog","_children":[{"__id__":2},{"__id__":3},{"__id__":35},{"__id__":36}],"_level":1,"_components":[{"__type__":"f972dFA+FhNx6h2nffTJcSh","node":{"__id__":1},"contentNode":{"__id__":14},"sp":{"__uuid__":"e4IYERodFIB46xcrvFttJN"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"32v5YBZwFKFIR8hqY81+2F"},"_color":{"__type__":"cc.Color","r":211,"g":211,"b":211},"_contentSize":{"__type__":"cc.Size","width":650,"height":700},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"bg","_parent":{"__id__":1},"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":2},"_spriteFrame":{"__uuid__":"a2MjXRFdtLlYQ5ouAFv/+R"},"_sizeMode":0},{"__type__":"cc.BlockInputEvents","node":{"__id__":2}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"99FhnzvJNAUqtOIb/ssj/E"},"_opacity":150,"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":750,"height":1334},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"content","_parent":{"__id__":1},"_children":[{"__id__":4},{"__id__":5},{"__id__":6},{"__id__":7},{"__id__":8},{"__id__":9},{"__id__":10},{"__id__":11}],"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":3},"_spriteFrame":{"__uuid__":"3aXSv7WLRE2p3ngltKHL/1"},"_type":1,"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"faY4W3lXdJOYpCzGZSNlUj"},"_contentSize":{"__type__":"cc.Size","width":650,"height":700},"_position":{"__type__":"cc.Vec3","y":-9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"duandai","_parent":{"__id__":3},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":4},"_spriteFrame":{"__uuid__":"4eVH0OkqlNwrziMJUO4HgW"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"64cMdwT/FB5rDxJgtBt5he"},"_contentSize":{"__type__":"cc.Size","width":880,"height":363},"_position":{"__type__":"cc.Vec3","x":-1,"y":320},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"gongxiwancheng","_parent":{"__id__":3},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":5},"_spriteFrame":{"__uuid__":"f2J8bCFrFB2osgTae51C/C"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"b2oFtXkgNCo6UFbyv9VJZl"},"_contentSize":{"__type__":"cc.Size","width":324,"height":114},"_position":{"__type__":"cc.Vec3","x":-1,"y":367},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"gongxi","_parent":{"__id__":3},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":6},"_spriteFrame":{"__uuid__":"14wPRrPtNGlq/xpYaBhvS6"},"_type":1,"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"d1TWkjB0RDv5LZ8MZo8LhU"},"_contentSize":{"__type__":"cc.Size","width":230,"height":50},"_position":{"__type__":"cc.Vec3","x":-1,"y":227},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labDesc","_parent":{"__id__":3},"_level":4,"_components":[{"__type__":"cc.Label","node":{"__id__":7},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"恭喜你获得","_N$string":"恭喜你获得","_fontSize":34,"_lineHeight":35,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"5c+Y4+CYlJ36WVA+EcrUAX"},"_color":{"__type__":"cc.Color","r":113},"_contentSize":{"__type__":"cc.Size","width":170,"height":35},"_position":{"__type__":"cc.Vec3","x":14,"y":226},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"weigouxuan","_parent":{"__id__":3},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":8},"_spriteFrame":{"__uuid__":"ad2F8CLOpGfKcq9mZpDtI2"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"649fAlhjRJE4pYgtmJcQwW"},"_contentSize":{"__type__":"cc.Size","width":31,"height":31},"_position":{"__type__":"cc.Vec3","x":-47,"y":-278},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"fenxiangyixia","_parent":{"__id__":3},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":9},"_spriteFrame":{"__uuid__":"20HM4LDJpJYoA2IaSuUWO7"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"4da4IPM+RKJ5zFWyLhAyC4"},"_contentSize":{"__type__":"cc.Size","width":40,"height":33},"_position":{"__type__":"cc.Vec3","x":-45,"y":-278},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labFengxiang","_parent":{"__id__":3},"_level":4,"_components":[{"__type__":"cc.Label","node":{"__id__":10},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"分享一下","_N$string":"分享一下","_fontSize":26,"_lineHeight":26,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"4ehiKxwZZBoqVHivh2aUiT"},"_color":{"__type__":"cc.Color","r":113},"_contentSize":{"__type__":"cc.Size","width":104,"height":26},"_position":{"__type__":"cc.Vec3","x":33,"y":-278},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"matter2","_parent":{"__id__":3},"_children":[{"__id__":12},{"__id__":13},{"__id__":14}],"_level":4,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"08lSQZIBpFeKFcWTR1vvoV"},"_contentSize":{"__type__":"cc.Size","width":630,"height":283},"_position":{"__type__":"cc.Vec3","y":32},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diban3","_parent":{"__id__":11},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":12},"_spriteFrame":{"__uuid__":"a2TYdtzAFNR6H+yuIFYh4y"},"_type":1,"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"0b1svmZfNEq62gEwTjzWZv"},"_contentSize":{"__type__":"cc.Size","width":590,"height":283},"_position":{"__type__":"cc.Vec3","x":-2,"y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diguang","_parent":{"__id__":11},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":13},"_spriteFrame":{"__uuid__":"dfsLO8DAtLGLUSj3gsAl3G"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"02eWwAR+tC87NvfcfGpG8H"},"_contentSize":{"__type__":"cc.Size","width":590,"height":283},"_position":{"__type__":"cc.Vec3","x":2,"y":4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"layoutNode","_parent":{"__id__":11},"_children":[{"__id__":15},{"__id__":20},{"__id__":25},{"__id__":30}],"_level":5,"_components":[{"__type__":"cc.Layout","node":{"__id__":14},"_layoutSize":{"__type__":"cc.Size","width":-30,"height":150},"_resize":1,"_N$layoutType":1,"_N$spacingX":30}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"746Xa4vzBJs51dla/EsIDs"},"_contentSize":{"__type__":"cc.Size","width":-30,"height":150},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"awardGoodPre","_parent":{"__id__":14},"_children":[{"__id__":16},{"__id__":17},{"__id__":18},{"__id__":19}],"_active":false,"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":15},"_spriteFrame":{"__uuid__":"48qtt5FpNJw61v73KxEYd0"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"fc5OUhN61Bd5331TYontM6"},"_contentSize":{"__type__":"cc.Size","width":114,"height":119},"_position":{"__type__":"cc.Vec3","x":-216,"y":19},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"jinbi","_parent":{"__id__":15},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":16},"_spriteFrame":{"__uuid__":"e4IYERodFIB46xcrvFttJN"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"b35wGG7c1OhalIRD9141Nq"},"_contentSize":{"__type__":"cc.Size","width":75.933,"height":73.359},"_position":{"__type__":"cc.Vec3","x":2,"y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"dikang","_parent":{"__id__":15},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":17},"_spriteFrame":{"__uuid__":"51xpboqLlHApAT/cDhovBJ"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"d92rajZgdIAKXnrUnVaILu"},"_contentSize":{"__type__":"cc.Size","width":100,"height":32},"_position":{"__type__":"cc.Vec3","y":-121},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum","_parent":{"__id__":15},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":18},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"0","_N$string":"0","_fontSize":24,"_lineHeight":25,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"88gYy6o7pOjKvRYMoRuHGI"},"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":13.35,"height":25},"_position":{"__type__":"cc.Vec3","x":-1.4000000000000004,"y":-121.2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labName","_parent":{"__id__":15},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":19},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"西红柿","_N$string":"西红柿","_fontSize":25,"_lineHeight":25,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":19},"_color":{"__type__":"cc.Color","r":111,"g":97,"b":75},"_width":0.2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"91xGtMvzlGV4YVbxkxVMlw"},"_color":{"__type__":"cc.Color","r":111,"g":97,"b":75},"_contentSize":{"__type__":"cc.Size","width":75.4,"height":25},"_position":{"__type__":"cc.Vec3","y":-78},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"awardGoodPre","_parent":{"__id__":14},"_children":[{"__id__":21},{"__id__":22},{"__id__":23},{"__id__":24}],"_active":false,"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":20},"_spriteFrame":{"__uuid__":"48qtt5FpNJw61v73KxEYd0"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"e8Ia9odStOhIYlzeOCIpP2"},"_contentSize":{"__type__":"cc.Size","width":114,"height":119},"_position":{"__type__":"cc.Vec3","x":-144,"y":19},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"jinbi","_parent":{"__id__":20},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":21},"_spriteFrame":{"__uuid__":"e4IYERodFIB46xcrvFttJN"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"d0mh6kPwBN9b20Gho1dTcR"},"_contentSize":{"__type__":"cc.Size","width":75.933,"height":73.359},"_position":{"__type__":"cc.Vec3","x":2,"y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"dikang","_parent":{"__id__":20},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":22},"_spriteFrame":{"__uuid__":"51xpboqLlHApAT/cDhovBJ"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"74Rykbr5BGUpb2efuoLPLH"},"_contentSize":{"__type__":"cc.Size","width":100,"height":32},"_position":{"__type__":"cc.Vec3","y":-121},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum","_parent":{"__id__":20},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":23},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"0","_N$string":"0","_fontSize":24,"_lineHeight":25,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"fbEaELvHlIcKcIxTp9BOuU"},"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":13.35,"height":25},"_position":{"__type__":"cc.Vec3","x":-1.4000000000000004,"y":-121.2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labName","_parent":{"__id__":20},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":24},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"西红柿","_N$string":"西红柿","_fontSize":25,"_lineHeight":25,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":24},"_color":{"__type__":"cc.Color","r":111,"g":97,"b":75},"_width":0.2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"02jtFgXaBCCLz/aVPfBNKR"},"_color":{"__type__":"cc.Color","r":111,"g":97,"b":75},"_contentSize":{"__type__":"cc.Size","width":75.4,"height":25},"_position":{"__type__":"cc.Vec3","y":-78},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"awardGoodPre","_parent":{"__id__":14},"_children":[{"__id__":26},{"__id__":27},{"__id__":28},{"__id__":29}],"_active":false,"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":25},"_spriteFrame":{"__uuid__":"48qtt5FpNJw61v73KxEYd0"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"7dnmccTOBId7VquxyV1x4h"},"_contentSize":{"__type__":"cc.Size","width":114,"height":119},"_position":{"__type__":"cc.Vec3","x":-72,"y":19},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"jinbi","_parent":{"__id__":25},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":26},"_spriteFrame":{"__uuid__":"e4IYERodFIB46xcrvFttJN"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"a3WsQT0YdOoIROMCArFxJC"},"_contentSize":{"__type__":"cc.Size","width":75.933,"height":73.359},"_position":{"__type__":"cc.Vec3","x":2,"y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"dikang","_parent":{"__id__":25},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":27},"_spriteFrame":{"__uuid__":"51xpboqLlHApAT/cDhovBJ"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"990c5uWZ5CBrPMdNbFn5xY"},"_contentSize":{"__type__":"cc.Size","width":100,"height":32},"_position":{"__type__":"cc.Vec3","y":-121},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum","_parent":{"__id__":25},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":28},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"0","_N$string":"0","_fontSize":24,"_lineHeight":25,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"e4QaeIdhJNlaJXjDS0473s"},"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":13.35,"height":25},"_position":{"__type__":"cc.Vec3","x":-1.4000000000000004,"y":-121.2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labName","_parent":{"__id__":25},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":29},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"西红柿","_N$string":"西红柿","_fontSize":25,"_lineHeight":25,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":29},"_color":{"__type__":"cc.Color","r":111,"g":97,"b":75},"_width":0.2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"e7mnIZZ6VFmZbocSY3f8pd"},"_color":{"__type__":"cc.Color","r":111,"g":97,"b":75},"_contentSize":{"__type__":"cc.Size","width":75.4,"height":25},"_position":{"__type__":"cc.Vec3","y":-78},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"awardGoodPre","_parent":{"__id__":14},"_children":[{"__id__":31},{"__id__":32},{"__id__":33},{"__id__":34}],"_active":false,"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":30},"_spriteFrame":{"__uuid__":"48qtt5FpNJw61v73KxEYd0"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"9bq+vgJltPTplAOEjs8CUl"},"_contentSize":{"__type__":"cc.Size","width":114,"height":119},"_position":{"__type__":"cc.Vec3","y":19},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"jinbi","_parent":{"__id__":30},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":31},"_spriteFrame":{"__uuid__":"e4IYERodFIB46xcrvFttJN"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"98m2ANZY9JeoWuMXV0dMEg"},"_contentSize":{"__type__":"cc.Size","width":75.933,"height":73.359},"_position":{"__type__":"cc.Vec3","x":2,"y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"dikang","_parent":{"__id__":30},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":32},"_spriteFrame":{"__uuid__":"51xpboqLlHApAT/cDhovBJ"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"f2fAmyfdJICbopsnXqvuLt"},"_contentSize":{"__type__":"cc.Size","width":100,"height":32},"_position":{"__type__":"cc.Vec3","y":-121},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum","_parent":{"__id__":30},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":33},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"0","_N$string":"0","_fontSize":24,"_lineHeight":25,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"dcUG4OOYJCDpnopNBhN9Tl"},"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":13.35,"height":25},"_position":{"__type__":"cc.Vec3","x":-1.4000000000000004,"y":-121.2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labName","_parent":{"__id__":30},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":34},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"西红柿","_N$string":"西红柿","_fontSize":25,"_lineHeight":25,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":34},"_color":{"__type__":"cc.Color","r":111,"g":97,"b":75},"_width":0.2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"1ayqcVRwtLSoTeqzSOQ0aw"},"_color":{"__type__":"cc.Color","r":111,"g":97,"b":75},"_contentSize":{"__type__":"cc.Size","width":75.4,"height":25},"_position":{"__type__":"cc.Vec3","y":-78},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"closeBtn","_parent":{"__id__":1},"_active":false,"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":35},"_spriteFrame":{"__uuid__":"e4EVEYwi9CHoISbXmQO7mE"}},{"__type__":"cc.Button","node":{"__id__":35},"transition":3,"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"OrderFinishDialog","handler":"onCloseBtn"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":35}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"01iML8fHFG96ftn8/Ia+8a"},"_contentSize":{"__type__":"cc.Size","width":37,"height":37},"_position":{"__type__":"cc.Vec3","x":312,"y":291},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"okBtn","_parent":{"__id__":1},"_children":[{"__id__":37}],"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":36},"_spriteFrame":{"__uuid__":"cdZod374dKbY+0ASLPyCjV"}},{"__type__":"cc.Button","node":{"__id__":36},"transition":3,"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"OrderFinishDialog","handler":"onOkBtn"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":36}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"36MXXMxWNILIBuQeuqMbBO"},"_contentSize":{"__type__":"cc.Size","width":352,"height":102},"_position":{"__type__":"cc.Vec3","y":-205},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"Label","_parent":{"__id__":36},"_components":[{"__type__":"cc.Label","node":{"__id__":37},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"领取","_N$string":"领取","_fontSize":50,"_lineHeight":50,"_enableWrapText":false,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":37},"_color":{"__type__":"cc.Color","r":171,"g":91,"b":23},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"0cm8y33E5FFZ4iTF3okflE"},"fileId":"6d05NrK7VNb5J4bEp4fZj+"},"_contentSize":{"__type__":"cc.Size","width":104,"height":50},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}}],{"__type__":"cc.SpriteFrame","content":{"name":"yjy_yanjiuyuan_dikuang","texture":"1fbSYyThdHf5WTbSCwZ8TB","rect":[1,1,77,40],"offset":[0,0],"originalSize":[79,42],"capInsets":[25,17,21,20]}},{"__type__":"cc.SpriteFrame","content":{"name":"fenxiangyixia","texture":"3eAxuMr1BFAbWu5uY12lLA","rect":[1,1,40,33],"offset":[0,0],"originalSize":[42,35],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_disabled","texture":"71VhFCTINJM6/Ky3oX9nBT","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"lixianshouyidiban","texture":"f9svfgeK9FwaaFDW6iSZqe","rect":[0,0,160,390],"offset":[0,0],"originalSize":[160,390],"capInsets":[77,50,68,77]}},{"__type__":"cc.SpriteFrame","content":{"name":"kuang11","texture":"8fa3Cn1KRLcJa9hV8H3oCj","rect":[1,1,114,119],"offset":[0,0],"originalSize":[116,121],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"duandai","texture":"c2ORbro1VCzL/uHM7fCnqr","rect":[1,1,880,363],"offset":[0,0],"originalSize":[882,365],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"dikang1","texture":"15z64+y65EU4Xt12rwH1IJ","rect":[1,1,100,32],"offset":[0,0],"originalSize":[102,34],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_sprite_splash","texture":"02delMVqdBD70a/HSD99FK","rect":[0,0,2,2],"offset":[0,0],"originalSize":[2,2],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"diban3","texture":"770NpATzNMyY9pPhOCa+cR","rect":[1,1,124,123],"offset":[0,0],"originalSize":[126,125],"capInsets":[26,19,17,18]}},{"__type__":"cc.SpriteFrame","content":{"name":"weigouxuan","texture":"02Bdszvk5DNLHaTw/+DKDL","rect":[1,1,31,31],"offset":[0,0],"originalSize":[33,33],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"anniu","texture":"b7Cow+rm9DwZ1lU4vRORJj","rect":[1,1,352,102],"offset":[0,0],"originalSize":[354,104],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"diguang","texture":"fe7LKB/MdFuK2UM6MvaZkf","rect":[1,1,552,203],"offset":[0,0],"originalSize":[554,205],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"gongxihuodeguanbi","texture":"5bFxbAHkJGVYxUrjIrgA7J","rect":[1,1,37,37],"offset":[0,0],"originalSize":[39,39],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"jinbi2","texture":"55hts9dLRPs4Mzsv2gkIiU","rect":[0,0,59,57],"offset":[0,0],"originalSize":[59,57],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_pressed","texture":"b4P/PCArtIdIH38t6mlw8Y","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_normal","texture":"e8Ueib+qJEhL6mXAHdnwbi","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"gongxiwancheng","texture":"6cn3qW4VFJDKAk50r406dh","rect":[1,1,324,114],"offset":[0,0],"originalSize":[326,116],"capInsets":[0,0,0,0]}}]
\ No newline at end of file
[{"__type__":"cc.SpriteFrame","content":{"name":"anniu1","texture":"3dARtEOaNMbb6q7kgP0HaF","rect":[1,1,352,102],"offset":[0,0],"originalSize":[354,104],"capInsets":[168,0,170,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_disabled","texture":"71VhFCTINJM6/Ky3oX9nBT","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"yjy_dikuang1","texture":"5dmR8lPHlC9ZY6/84LODt6","rect":[1,1,254,358],"offset":[0,0],"originalSize":[256,360],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"singleColor32","texture":"e3sh7xARVArJ+EZKvY0Hgz","rect":[0,0,32,32],"offset":[0,0],"originalSize":[32,32],"capInsets":[13,13,13,13]}},[{"__type__":"cc.Prefab","_name":"researchItem","data":{"__id__":1}},{"__type__":"cc.Node","_name":"researchItem","_children":[{"__id__":2},{"__id__":3},{"__id__":5},{"__id__":7},{"__id__":11}],"_level":1,"_components":[{"__type__":"f70a2QfRXtP6qvtgWEepKIw","node":{"__id__":1},"titleLabel":{"__id__":4},"levelLabel":{"__id__":6},"levelUpBtn":{"__id__":10},"consumeLabel":{"__id__":9},"maskNode":{"__id__":11}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"e2sYM7TcRH1o0UXl67ihsY"},"fileId":"51QW2MnkZJeYYszJYLL/8D"},"_color":{"__type__":"cc.Color","r":182,"g":182,"b":182},"_contentSize":{"__type__":"cc.Size","width":254,"height":400},"_anchorPoint":{"__type__":"cc.Vec2","y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"bg","_parent":{"__id__":1},"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":2},"_spriteFrame":{"__uuid__":"49ZnH1wRxPbZi/pjZaCrDm"},"_type":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"e2sYM7TcRH1o0UXl67ihsY"},"fileId":"c01IA29h1DIYuTBYcHo9RM"},"_contentSize":{"__type__":"cc.Size","width":254,"height":358},"_position":{"__type__":"cc.Vec3","x":127,"y":-176},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"titleLabel","_parent":{"__id__":1},"_level":2,"_components":[{"__id__":4}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"e2sYM7TcRH1o0UXl67ihsY"},"fileId":"34T6fXrVtFCYMc6Stsh8lC"},"_color":{"__type__":"cc.Color","r":113},"_contentSize":{"__type__":"cc.Size","width":217,"height":33},"_position":{"__type__":"cc.Vec3","x":121,"y":-265},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":3},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"1111111111111111111111","_N$string":"1111111111111111111111","_fontSize":26,"_enableWrapText":false,"_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$fontFamily":"黑体","_N$overflow":1},{"__type__":"cc.Node","_name":"levelLabel","_parent":{"__id__":1},"_level":2,"_components":[{"__id__":6},{"__type__":"cc.LabelOutline","node":{"__id__":5},"_width":3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"e2sYM7TcRH1o0UXl67ihsY"},"fileId":"62472aZE5GbpRf2ehVdSrC"},"_color":{"__type__":"cc.Color","r":219,"g":57},"_contentSize":{"__type__":"cc.Size","width":61,"height":33},"_position":{"__type__":"cc.Vec3","x":56,"y":-75},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":5},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"LV","_N$string":"LV","_fontSize":26,"_enableWrapText":false,"_N$verticalAlign":1,"_N$fontFamily":"黑体","_N$overflow":1},{"__type__":"cc.Node","_name":"levelUpBtn","_parent":{"__id__":1},"_children":[{"__id__":8}],"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":7},"_spriteFrame":{"__uuid__":"1dEUZugBRHYoCKgHpDH/Gj"},"_type":1,"_sizeMode":0},{"__id__":10}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"e2sYM7TcRH1o0UXl67ihsY"},"fileId":"87D1ge32ZOEbo/etvsW+Q6"},"_contentSize":{"__type__":"cc.Size","width":230,"height":102},"_position":{"__type__":"cc.Vec3","x":127,"y":-343},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"consumeLabel","_parent":{"__id__":7},"_components":[{"__id__":9},{"__type__":"cc.LabelOutline","node":{"__id__":8},"_color":{"__type__":"cc.Color","r":40,"g":113,"b":14},"_width":3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"e2sYM7TcRH1o0UXl67ihsY"},"fileId":"0276VXcMdBhqVdQ1qtzMRB"},"_contentSize":{"__type__":"cc.Size","width":250,"height":80},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":8},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"button","_N$string":"button","_fontSize":28,"_enableWrapText":false,"_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$fontFamily":"黑体","_N$overflow":1},{"__type__":"cc.Button","node":{"__id__":7},"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"ResearchItem","handler":"onLevelUpBtn"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":7}},{"__type__":"cc.Node","_name":"mask","_parent":{"__id__":1},"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":11},"_spriteFrame":{"__uuid__":"c0aU+sxJBFxaH0oprk/bgn"},"_type":1,"_sizeMode":0},{"__type__":"cc.Button","node":{"__id__":11},"_N$target":{"__id__":11}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"e2sYM7TcRH1o0UXl67ihsY"},"fileId":"55ydduhl5FIr8IbrlWVmns"},"_opacity":136,"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":254,"height":400},"_anchorPoint":{"__type__":"cc.Vec2","y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}}],{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_pressed","texture":"b4P/PCArtIdIH38t6mlw8Y","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_normal","texture":"e8Ueib+qJEhL6mXAHdnwbi","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}}]
\ No newline at end of file
[{"__type__":"cc.AudioClip","_name":"bgm","_native":".mp3"},{"__type__":"cc.AudioClip","_name":"audio_button","_native":".mp3"},[{"__type__":"cc.SceneAsset","_name":"main","scene":{"__id__":1},"asyncLoadAssets":null},{"__type__":"cc.Scene","_name":"New Node","_children":[{"__id__":2},{"__id__":3},{"__id__":4},{"__id__":5},{"__id__":13}],"_anchorPoint":{"__type__":"cc.Vec2"},"_scale":{"__type__":"cc.Vec3","x":0.40629685157421286,"y":0.40629685157421286,"z":1},"autoReleaseAssets":false},{"__type__":"cc.Node","_name":"Audio","_parent":{"__id__":1},"_active":false,"_level":1,"_components":[{"__type__":"bd59bxbSHFE14KCIWNFpfg2","node":{"__id__":2},"audio_bgm":{"__uuid__":"05/CttEvVKRpdOABgLQH8I"},"audio_button":{"__uuid__":"924WpApvRIrIfhbZeRwx4R"}}],"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1},"_id":"47xWMtWmhOfbqEUHOTTlih"},{"__type__":"cc.Node","_name":"Pools","_parent":{"__id__":1},"_level":1,"_components":[{"__type__":"624194BvFpFrI+rj+kb7sIV","node":{"__id__":3}}],"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1},"_id":"bffDYfVUVF4oVyy9YERIYk"},{"__type__":"cc.Node","_name":"Store","_parent":{"__id__":1},"_level":1,"_components":[{"__type__":"0961dWcEgFMKrE0PpB1ZIky","node":{"__id__":4}}],"_position":{"__type__":"cc.Vec3","x":380,"y":667},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1},"_id":"cdDEh32x9KeIdAXo0cq3bi"},{"__type__":"cc.Node","_name":"Root","_parent":{"__id__":1},"_children":[{"__id__":6},{"__id__":7},{"__id__":8},{"__id__":9},{"__id__":10},{"__id__":11},{"__id__":12}],"_level":1,"_components":[{"__type__":"cc.Canvas","node":{"__id__":5},"_designResolution":{"__type__":"cc.Size","width":750,"height":1334}},{"__type__":"85435i96hpJHY6QjfiNR98t","node":{"__id__":5},"UINode":{"__id__":7},"SpecialNode":{"__id__":8},"ActivityNode":{"__id__":9},"MaskNode":{"__id__":10},"DialogNode":{"__id__":11},"ToastNode":{"__id__":12}}],"_contentSize":{"__type__":"cc.Size","width":750,"height":1334},"_position":{"__type__":"cc.Vec3","x":375,"y":667},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1},"_id":"39EteIBx1PzaW3P8Obz0z2"},{"__type__":"cc.Node","_name":"Main Camera","_parent":{"__id__":5},"_level":2,"_components":[{"__type__":"cc.Camera","node":{"__id__":6},"_clearFlags":7,"_depth":-1}],"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"UINode","_parent":{"__id__":5},"_level":2,"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"SpecialNode","_parent":{"__id__":5},"_level":2,"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"ActivityNode","_parent":{"__id__":5},"_level":2,"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"MaskNode","_parent":{"__id__":5},"_level":2,"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"DialogNode","_parent":{"__id__":5},"_level":2,"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"ToastNode","_parent":{"__id__":5},"_level":2,"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"Entrance","_parent":{"__id__":1},"_level":1,"_components":[{"__type__":"08dc2cCAgtCv4C9OBjKgqbJ","node":{"__id__":13}}],"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1},"_id":"674wVlEQhKma8G8h6Hxtbd"}]]
\ No newline at end of file
[{"__type__":"cc.SpriteFrame","content":{"name":"yjy_gzgw_touxiang","texture":"6fSeXHvGVKF5wEASY6xhSX","rect":[1,1,99,99],"offset":[0,0],"originalSize":[101,101],"capInsets":[0,0,0,0]}},[{"__type__":"cc.Prefab","_name":"postItem","data":{"__id__":1}},{"__type__":"cc.Node","_name":"postItem","_children":[{"__id__":2},{"__id__":4},{"__id__":6},{"__id__":8},{"__id__":9},{"__id__":11},{"__id__":14}],"_level":1,"_components":[{"__type__":"cc.Sprite","node":{"__id__":1},"_spriteFrame":{"__uuid__":"91d5qp5DlImLdEyutO9MKh"},"_type":1,"_sizeMode":0},{"__type__":"e1adfhtNahDbrHSGPcPpgh/","node":{"__id__":1},"iconImg":{"__id__":3},"nameLabel":{"__id__":5},"effectLabel":{"__id__":7},"effectValueLabel":{"__id__":10},"oneStation":{"__id__":11},"twoStation":{"__id__":14},"oneStationValue":{"__id__":13},"twoStationValue":{"__id__":16}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"84K5VJcFpKS4NR09igMC+B"},"fileId":"5fwFkY1aVJcKTySMEFva6x"},"_contentSize":{"__type__":"cc.Size","width":550,"height":120},"_position":{"__type__":"cc.Vec3","y":370},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"iconImg","_parent":{"__id__":1},"_level":6,"_components":[{"__id__":3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"84K5VJcFpKS4NR09igMC+B"},"fileId":"01xx70thRD/p+0caZlYu/c"},"_contentSize":{"__type__":"cc.Size","width":99,"height":99},"_position":{"__type__":"cc.Vec3","x":-193},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":2},"_spriteFrame":{"__uuid__":"1bzypsv0ZB6oZMkkl48fOU"}},{"__type__":"cc.Node","_name":"nameLabel","_parent":{"__id__":1},"_level":6,"_components":[{"__id__":5},{"__type__":"cc.LabelOutline","node":{"__id__":4},"_color":{"__type__":"cc.Color","r":150,"g":92,"b":50},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"84K5VJcFpKS4NR09igMC+B"},"fileId":"c9Of3tIuZBPpr6dXivBLfk"},"_color":{"__type__":"cc.Color","r":252,"g":241,"b":145},"_contentSize":{"__type__":"cc.Size","width":253,"height":40},"_position":{"__type__":"cc.Vec3","x":14,"y":30},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":4},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"农业指导员","_N$string":"农业指导员","_fontSize":26,"_N$verticalAlign":1,"_N$fontFamily":"黑体","_N$overflow":1},{"__type__":"cc.Node","_name":"effectLabel","_parent":{"__id__":1},"_level":6,"_components":[{"__id__":7}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"84K5VJcFpKS4NR09igMC+B"},"fileId":"e5iUgE5QNE9IZxjUQuyLp9"},"_color":{"__type__":"cc.Color","r":113},"_contentSize":{"__type__":"cc.Size","width":253,"height":40},"_position":{"__type__":"cc.Vec3","x":14,"y":-2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":6},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"效果效果效果效果","_N$string":"效果效果效果效果","_fontSize":22,"_N$verticalAlign":1,"_N$fontFamily":"黑体","_N$overflow":1},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":1},"_level":6,"_components":[{"__type__":"cc.Label","node":{"__id__":8},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"收益加","_N$string":"收益加","_fontSize":22,"_N$verticalAlign":1,"_N$fontFamily":"黑体","_N$overflow":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"84K5VJcFpKS4NR09igMC+B"},"fileId":"d0MfM1qt1K2bfpvdCJxKV0"},"_color":{"__type__":"cc.Color","r":113},"_contentSize":{"__type__":"cc.Size","width":96,"height":40},"_position":{"__type__":"cc.Vec3","x":-65,"y":-28},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"effcetValueLabel","_parent":{"__id__":1},"_level":6,"_components":[{"__id__":10},{"__type__":"cc.LabelOutline","node":{"__id__":9},"_color":{"__type__":"cc.Color","r":33,"g":83,"b":16},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"84K5VJcFpKS4NR09igMC+B"},"fileId":"cf8SuHNUJKrpN7Y3/vEvE+"},"_color":{"__type__":"cc.Color","r":131,"g":233,"b":18},"_contentSize":{"__type__":"cc.Size","width":96,"height":40},"_position":{"__type__":"cc.Vec3","x":6,"y":-28},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":9},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"+50%","_N$string":"+50%","_fontSize":22,"_N$verticalAlign":1,"_N$fontFamily":"黑体","_N$overflow":1},{"__type__":"cc.Node","_name":"oneStation","_parent":{"__id__":1},"_children":[{"__id__":12}],"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":11},"_spriteFrame":{"__uuid__":"cclK01detBC7ZBlq44kQMI"}},{"__type__":"cc.Button","node":{"__id__":11},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"PostItem","handler":"onStationValue","customEventData":"1"}],"_N$target":{"__id__":11}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"84K5VJcFpKS4NR09igMC+B"},"fileId":"1bdxjUSi5Ce4XPWEHUKqUD"},"_contentSize":{"__type__":"cc.Size","width":74,"height":74},"_position":{"__type__":"cc.Vec3","x":127},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"oneStationContext","_parent":{"__id__":11},"_level":7,"_components":[{"__id__":13}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"84K5VJcFpKS4NR09igMC+B"},"fileId":"54oniaPSRNdIGFXZooEJ3+"},"_contentSize":{"__type__":"cc.Size","width":74,"height":74},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":12},"_sizeMode":0},{"__type__":"cc.Node","_name":"twoStation","_parent":{"__id__":1},"_children":[{"__id__":15}],"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":14},"_spriteFrame":{"__uuid__":"cclK01detBC7ZBlq44kQMI"}},{"__type__":"cc.Button","node":{"__id__":14},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"PostItem","handler":"onStationValue","customEventData":"2"}],"_N$target":{"__id__":14}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"84K5VJcFpKS4NR09igMC+B"},"fileId":"3c8zZBCWZG45PQ0gehEZkw"},"_contentSize":{"__type__":"cc.Size","width":74,"height":74},"_position":{"__type__":"cc.Vec3","x":210},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"twoStationContext","_parent":{"__id__":14},"_level":7,"_components":[{"__id__":16}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"84K5VJcFpKS4NR09igMC+B"},"fileId":"4dSHPoPK5LrrS5LeQmhxNJ"},"_contentSize":{"__type__":"cc.Size","width":74,"height":74},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":15},"_sizeMode":0}],{"__type__":"cc.SpriteFrame","content":{"name":"yjy_gzgw_kuang","texture":"bcdOAaoy1J3ZyHWcBC179d","rect":[1,1,89,122],"offset":[0,0],"originalSize":[91,124],"capInsets":[39,0,37,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"yjy_gzgw_jiahao_button","texture":"0flATc+a1P7IM+xWtZLkPa","rect":[1,1,74,74],"offset":[0,0],"originalSize":[76,76],"capInsets":[0,0,0,0]}}]
\ No newline at end of file
{"__type__":"cc.SpriteFrame","content":{"name":"n_02","texture":"c7eWZKPJNBZrkzZYnL+7Eh","rect":[3,3,720,160],"offset":[-107.5,0],"originalSize":[941,166],"capInsets":[0,0,0,0]}}
\ No newline at end of file
[{"__type__":"cc.SpriteFrame","content":{"name":"yjy_1wanmei_icon","texture":"769WgeZctFkaG0V0K1nxjb","rect":[1,1,48,45],"offset":[0,0],"originalSize":[50,47],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"anniu1","texture":"3dARtEOaNMbb6q7kgP0HaF","rect":[1,1,352,102],"offset":[0,0],"originalSize":[354,104],"capInsets":[168,0,170,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"yjy_3lianghao_icon","texture":"64sdw9hWRJI4C6oOwPm/GX","rect":[1,1,48,45],"offset":[0,0],"originalSize":[50,47],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_disabled","texture":"71VhFCTINJM6/Ky3oX9nBT","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"lixianshouyidiban","texture":"f9svfgeK9FwaaFDW6iSZqe","rect":[0,0,160,390],"offset":[0,0],"originalSize":[160,390],"capInsets":[77,50,68,77]}},{"__type__":"cc.SpriteFrame","content":{"name":"guanbi","texture":"a3cofYOOxJ5YnG5JX3h3ce","rect":[1,1,84,87],"offset":[0,0],"originalSize":[86,89],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"anniu","texture":"c0strDbdxCwK/4cR03o8ul","rect":[1,1,352,102],"offset":[0,0],"originalSize":[354,104],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"yjy_yeqian1_button","texture":"0aSbThNLFHka+TrC94ypNd","rect":[1,1,168,96],"offset":[0,0],"originalSize":[170,98],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"yjy_5xianyu_icon","texture":"7aA5fKsylDt741V0Et4cnV","rect":[1,1,48,45],"offset":[0,0],"originalSize":[50,47],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"yjy_yeqian_button","texture":"c3zrt5evNIrIdL7ZoYALXe","rect":[1,1,186,121],"offset":[0,0],"originalSize":[188,123],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"yjy_2jijia_icon","texture":"7dYYPbBQlMyodWniFhwnOT","rect":[1,1,48,45],"offset":[0,0],"originalSize":[50,47],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"yjy_pingzhidikuang","texture":"c4P/+ZLpdMT7vmmUl1W1CK","rect":[1,1,112,43],"offset":[0,0],"originalSize":[114,45],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"yjy_4putong_icon","texture":"c1/MiHkYtEeJ5uhXgSchw2","rect":[1,1,48,45],"offset":[0,0],"originalSize":[50,47],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"yjy_dikuangzhedang","texture":"53mSrcFehA4qIa4n4hLGAA","rect":[1,1,730,202],"offset":[0,0],"originalSize":[732,204],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"pt_biaoti_dikuang","texture":"fdj9U5MftDVInpIZVruSTW","rect":[1,1,351,127],"offset":[0,0],"originalSize":[353,129],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_pressed","texture":"b4P/PCArtIdIH38t6mlw8Y","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"yjy_dikuang","texture":"7bO1xMF0BOO4v4lrnouws1","rect":[1,1,759,771],"offset":[0,0],"originalSize":[761,773],"capInsets":[375,366,358,366]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_normal","texture":"e8Ueib+qJEhL6mXAHdnwbi","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},[{"__type__":"cc.Prefab","_name":"researchInstituteUI","data":{"__id__":1}},{"__type__":"cc.Node","_name":"researchInstituteUI","_children":[{"__id__":2},{"__id__":3},{"__id__":16},{"__id__":19},{"__id__":20},{"__id__":21},{"__id__":47},{"__id__":58}],"_level":1,"_components":[{"__type__":"bf4c6EQoodA46FC8z20zbfw","node":{"__id__":1},"selectExperDialog":{"__id__":47}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"a9js8pBoxD1r3asQZWjZiW"},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"bg","_parent":{"__id__":1},"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":2},"_spriteFrame":{"__uuid__":"edfLo/MpVEir9D0AwWPxs3"},"_type":1,"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"01BX/7moBBb7lFMBUJZBLx"},"_contentSize":{"__type__":"cc.Size","width":759,"height":1319},"_position":{"__type__":"cc.Vec3","y":-68},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"Top","_parent":{"__id__":1},"_children":[{"__id__":4},{"__id__":8},{"__id__":12}],"_level":4,"_components":[{"__type__":"cc.Layout","node":{"__id__":3},"_N$layoutType":1,"_N$paddingLeft":80,"_N$spacingX":50},{"__type__":"5647e9MoP9P8ZfD2TLhH4UF","node":{"__id__":3},"onePage":{"__id__":16},"twoPage":{"__id__":19},"threePage":{"__id__":20},"oneCurr":{"__id__":6},"twoCurr":{"__id__":10},"threeCurr":{"__id__":14}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"a8FQNl60JNeqoozCeEkOe+"},"_contentSize":{"__type__":"cc.Size","width":750,"height":120},"_position":{"__type__":"cc.Vec3","y":508},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"oneTopItem","_parent":{"__id__":3},"_children":[{"__id__":5},{"__id__":6}],"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":4},"_spriteFrame":{"__uuid__":"6cYb6oLmBLhojewKXz+d1a"}},{"__type__":"cc.Button","node":{"__id__":4},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":3},"component":"ResearchInstituteTop","handler":"onClickTopItem","customEventData":"1"}],"_N$target":{"__id__":4}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"d3ZlJW0AVGK7wHbJ9ssCJ/"},"_contentSize":{"__type__":"cc.Size","width":168,"height":96},"_position":{"__type__":"cc.Vec3","x":-211},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":4},"_level":6,"_components":[{"__type__":"cc.Label","node":{"__id__":5},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"科技研究","_N$string":"科技研究","_fontSize":34,"_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$fontFamily":"黑体"},{"__type__":"cc.LabelOutline","node":{"__id__":5},"_color":{"__type__":"cc.Color","r":179,"g":89,"b":26},"_width":3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"21JN7qHgBCpI4aPqYvGxSE"},"_color":{"__type__":"cc.Color","r":245,"g":254,"b":213},"_contentSize":{"__type__":"cc.Size","width":142,"height":40},"_position":{"__type__":"cc.Vec3","y":4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"currSelect","_parent":{"__id__":4},"_children":[{"__id__":7}],"_active":false,"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":6},"_spriteFrame":{"__uuid__":"9cim+voplGn5px5CwguZ7/"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"c1amnr9xpPs6MMQ3SevroL"},"_contentSize":{"__type__":"cc.Size","width":186,"height":121},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":6},"_level":7,"_components":[{"__type__":"cc.Label","node":{"__id__":7},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"科技研究","_N$string":"科技研究","_fontSize":34,"_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$fontFamily":"黑体"},{"__type__":"cc.LabelOutline","node":{"__id__":7},"_color":{"__type__":"cc.Color","r":41,"g":116,"b":15},"_width":3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"04M76g4xpB+ZySg91oTyGI"},"_color":{"__type__":"cc.Color","r":245,"g":254,"b":213},"_contentSize":{"__type__":"cc.Size","width":142,"height":40},"_position":{"__type__":"cc.Vec3","y":26},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"twoTopItem","_parent":{"__id__":3},"_children":[{"__id__":9},{"__id__":10}],"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":8},"_spriteFrame":{"__uuid__":"6cYb6oLmBLhojewKXz+d1a"}},{"__type__":"cc.Button","node":{"__id__":8},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":3},"component":"ResearchInstituteTop","handler":"onClickTopItem","customEventData":"2"}],"_N$target":{"__id__":8}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"3eOlVu8f1JiLwFOPvNYi4z"},"_contentSize":{"__type__":"cc.Size","width":168,"height":96},"_position":{"__type__":"cc.Vec3","x":7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":8},"_level":6,"_components":[{"__type__":"cc.Label","node":{"__id__":9},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"工作岗位","_N$string":"工作岗位","_fontSize":34,"_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$fontFamily":"黑体"},{"__type__":"cc.LabelOutline","node":{"__id__":9},"_color":{"__type__":"cc.Color","r":179,"g":89,"b":26},"_width":3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"21mezkLNdJtIW4UqY4vFjZ"},"_color":{"__type__":"cc.Color","r":245,"g":254,"b":213},"_contentSize":{"__type__":"cc.Size","width":142,"height":40},"_position":{"__type__":"cc.Vec3","y":4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"currSelect","_parent":{"__id__":8},"_children":[{"__id__":11}],"_active":false,"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":10},"_spriteFrame":{"__uuid__":"9cim+voplGn5px5CwguZ7/"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"94ZuH0ffJOv72u/EnjlDa2"},"_contentSize":{"__type__":"cc.Size","width":186,"height":121},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":10},"_level":7,"_components":[{"__type__":"cc.Label","node":{"__id__":11},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"工作岗位","_N$string":"工作岗位","_fontSize":34,"_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$fontFamily":"黑体"},{"__type__":"cc.LabelOutline","node":{"__id__":11},"_color":{"__type__":"cc.Color","r":41,"g":116,"b":15},"_width":3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"adhcC/JOpLubM/J42EwyDe"},"_color":{"__type__":"cc.Color","r":245,"g":254,"b":213},"_contentSize":{"__type__":"cc.Size","width":142,"height":40},"_position":{"__type__":"cc.Vec3","y":26},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"threeTopItem","_parent":{"__id__":3},"_children":[{"__id__":13},{"__id__":14}],"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":12},"_spriteFrame":{"__uuid__":"6cYb6oLmBLhojewKXz+d1a"}},{"__type__":"cc.Button","node":{"__id__":12},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":3},"component":"ResearchInstituteTop","handler":"onClickTopItem","customEventData":"3"}],"_N$target":{"__id__":12}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"c25YTnCBtNhYvjXeG1sZdz"},"_contentSize":{"__type__":"cc.Size","width":168,"height":96},"_position":{"__type__":"cc.Vec3","x":225},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":12},"_level":6,"_components":[{"__type__":"cc.Label","node":{"__id__":13},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"专家管理","_N$string":"专家管理","_fontSize":34,"_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$fontFamily":"黑体"},{"__type__":"cc.LabelOutline","node":{"__id__":13},"_color":{"__type__":"cc.Color","r":179,"g":89,"b":26},"_width":3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"f5USu69SRCN6q6p8IrXjUX"},"_color":{"__type__":"cc.Color","r":245,"g":254,"b":213},"_contentSize":{"__type__":"cc.Size","width":142,"height":40},"_position":{"__type__":"cc.Vec3","y":4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"currSelect","_parent":{"__id__":12},"_children":[{"__id__":15}],"_active":false,"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":14},"_spriteFrame":{"__uuid__":"9cim+voplGn5px5CwguZ7/"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"951InotmpP4LnnhS1ZQIs7"},"_contentSize":{"__type__":"cc.Size","width":186,"height":121},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":14},"_level":7,"_components":[{"__type__":"cc.Label","node":{"__id__":15},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"专家管理","_N$string":"专家管理","_fontSize":34,"_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$fontFamily":"黑体"},{"__type__":"cc.LabelOutline","node":{"__id__":15},"_color":{"__type__":"cc.Color","r":41,"g":116,"b":15},"_width":3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"66bK7TeFxMnr02Cb4Gv9bo"},"_color":{"__type__":"cc.Color","r":245,"g":254,"b":213},"_contentSize":{"__type__":"cc.Size","width":142,"height":40},"_position":{"__type__":"cc.Vec3","y":26},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"onePage","_parent":{"__id__":1},"_children":[{"__id__":17}],"_level":4,"_components":[{"__type__":"cc.ScrollView","node":{"__id__":16},"horizontal":false,"brake":0.75,"bounceDuration":0.23,"_N$content":{"__id__":18},"content":{"__id__":18},"_N$horizontalScrollBar":null,"_N$verticalScrollBar":null},{"__type__":"094e62JiTxHvZdLmyDvHg7/","node":{"__id__":16},"researchItem":{"__uuid__":"e2sYM7TcRH1o0UXl67ihsY"},"researchItemContext":{"__id__":18}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"e1tGedMMNH8Yk3mZcDsVn5"},"_contentSize":{"__type__":"cc.Size","width":759,"height":938},"_position":{"__type__":"cc.Vec3","y":-24},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"view","_parent":{"__id__":16},"_children":[{"__id__":18}],"_components":[{"__type__":"cc.Mask","node":{"__id__":17}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"71rWO/+iBAtpWZepNg1rLO"},"_contentSize":{"__type__":"cc.Size","width":750,"height":925},"_position":{"__type__":"cc.Vec3","y":9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"content","_parent":{"__id__":17},"_components":[{"__type__":"cc.Layout","node":{"__id__":18},"_layoutSize":{"__type__":"cc.Size","width":750},"_resize":1,"_N$layoutType":3,"_N$paddingLeft":100,"_N$paddingTop":-390,"_N$spacingX":50,"_N$spacingY":30}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"fdVrzaV+FC9pWh9UvcOCvQ"},"_contentSize":{"__type__":"cc.Size","width":750},"_anchorPoint":{"__type__":"cc.Vec2","x":0.5,"y":1},"_position":{"__type__":"cc.Vec3","y":448},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"twoPage","_parent":{"__id__":1},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":19},"_type":1,"_sizeMode":0},{"__type__":"cc.Layout","node":{"__id__":19},"_layoutSize":{"__type__":"cc.Size","width":750,"height":960},"_N$layoutType":2,"_N$paddingTop":50,"_N$spacingY":10},{"__type__":"a886fcUQDVKjJq6SnYVrMcZ","node":{"__id__":19},"postItem":{"__uuid__":"84K5VJcFpKS4NR09igMC+B"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"aa5IsuXKVMkrGt7dFrrwl0"},"_color":{"__type__":"cc.Color","r":48,"g":48,"b":48},"_contentSize":{"__type__":"cc.Size","width":750,"height":960},"_position":{"__type__":"cc.Vec3","y":-31},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"threePage","_parent":{"__id__":1},"_active":false,"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":20},"_type":1,"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"e47jUlBaVI6Z+nMb2G76IU"},"_color":{"__type__":"cc.Color","r":255,"g":126,"b":126},"_contentSize":{"__type__":"cc.Size","width":750,"height":1200},"_position":{"__type__":"cc.Vec3","y":-66},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"Bottom","_parent":{"__id__":1},"_children":[{"__id__":22},{"__id__":43}],"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":21},"_spriteFrame":{"__uuid__":"d6NHx7ZJJG9KWr/Play5Wi"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"ea8khEJkxGAbVAg/q8h0i1"},"_contentSize":{"__type__":"cc.Size","width":730,"height":202},"_position":{"__type__":"cc.Vec3","y":-580},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"qualitys","_parent":{"__id__":21},"_children":[{"__id__":23},{"__id__":27},{"__id__":31},{"__id__":35},{"__id__":39}],"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":22},"_sizeMode":0},{"__type__":"cc.Layout","node":{"__id__":22},"_N$layoutType":1,"_N$paddingLeft":20,"_N$spacingX":30}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"05ASMh3A1K/YNyNgoMTET5"},"_contentSize":{"__type__":"cc.Size","width":700,"height":100},"_position":{"__type__":"cc.Vec3","y":42},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"qualityItem","_parent":{"__id__":22},"_children":[{"__id__":24},{"__id__":25},{"__id__":26}],"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":23},"_spriteFrame":{"__uuid__":"9fkYaZfqdCm5tOMcZgwJiN"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"8fcTcM2RdKo4knxNdb2kbr"},"_contentSize":{"__type__":"cc.Size","width":112,"height":43},"_position":{"__type__":"cc.Vec3","x":-274},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"icon","_parent":{"__id__":23},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":24},"_spriteFrame":{"__uuid__":"03z5UrFmdI/KmAQrJVRAG+"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"f55HEqAG5L7ooWQqtnU6/s"},"_contentSize":{"__type__":"cc.Size","width":48,"height":45},"_position":{"__type__":"cc.Vec3","x":-58.9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"title","_parent":{"__id__":23},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":25},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"完美","_N$string":"完美","_fontSize":20,"_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$fontFamily":"黑体"}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"0ftx4HozRAp5A5n+RKUM+9"},"_contentSize":{"__type__":"cc.Size","width":40,"height":40},"_position":{"__type__":"cc.Vec3","x":-15.3,"y":8.2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"value","_parent":{"__id__":23},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":26},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"收益+30%","_N$string":"收益+30%","_fontSize":14,"_N$verticalAlign":1,"_N$fontFamily":"黑体","_N$overflow":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"6d1ifmCw5IO5lgrqYTm7ZI"},"_color":{"__type__":"cc.Color","r":250,"g":216,"b":148},"_contentSize":{"__type__":"cc.Size","width":82.8,"height":40},"_position":{"__type__":"cc.Vec3","x":6.4,"y":-8.2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"qualityItem","_parent":{"__id__":22},"_children":[{"__id__":28},{"__id__":29},{"__id__":30}],"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":27},"_spriteFrame":{"__uuid__":"9fkYaZfqdCm5tOMcZgwJiN"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"129/YyHFhMDb2i0xVaRxGR"},"_contentSize":{"__type__":"cc.Size","width":112,"height":43},"_position":{"__type__":"cc.Vec3","x":-132},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"icon","_parent":{"__id__":27},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":28},"_spriteFrame":{"__uuid__":"9czMBNS1FHF73ZbHDJd/eM"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"f16gsEgGxASJYzv9WwTobm"},"_contentSize":{"__type__":"cc.Size","width":48,"height":45},"_position":{"__type__":"cc.Vec3","x":-58.9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"title","_parent":{"__id__":27},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":29},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"完美","_N$string":"完美","_fontSize":20,"_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$fontFamily":"黑体"}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"b5tymbpQJHbKU76J7dS2AM"},"_contentSize":{"__type__":"cc.Size","width":40,"height":40},"_position":{"__type__":"cc.Vec3","x":-15.3,"y":8.2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"value","_parent":{"__id__":27},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":30},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"收益+30%","_N$string":"收益+30%","_fontSize":14,"_N$verticalAlign":1,"_N$fontFamily":"黑体","_N$overflow":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"35AWWjBIxF4JBzI87+cgt9"},"_color":{"__type__":"cc.Color","r":250,"g":216,"b":148},"_contentSize":{"__type__":"cc.Size","width":82.8,"height":40},"_position":{"__type__":"cc.Vec3","x":6.4,"y":-8.2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"qualityItem","_parent":{"__id__":22},"_children":[{"__id__":32},{"__id__":33},{"__id__":34}],"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":31},"_spriteFrame":{"__uuid__":"9fkYaZfqdCm5tOMcZgwJiN"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"ceZJmZCXtAN506rDdpawL6"},"_contentSize":{"__type__":"cc.Size","width":112,"height":43},"_position":{"__type__":"cc.Vec3","x":10},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"icon","_parent":{"__id__":31},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":32},"_spriteFrame":{"__uuid__":"237gZJ4K9Ll4nXd9ABJdCl"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"37cB5hB+JMOaSbzWSKLW4B"},"_contentSize":{"__type__":"cc.Size","width":48,"height":45},"_position":{"__type__":"cc.Vec3","x":-58.9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"title","_parent":{"__id__":31},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":33},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"完美","_N$string":"完美","_fontSize":20,"_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$fontFamily":"黑体"}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"e8oK54sipKLK0nEjrD9CV0"},"_contentSize":{"__type__":"cc.Size","width":40,"height":40},"_position":{"__type__":"cc.Vec3","x":-15.3,"y":8.2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"value","_parent":{"__id__":31},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":34},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"收益+30%","_N$string":"收益+30%","_fontSize":14,"_N$verticalAlign":1,"_N$fontFamily":"黑体","_N$overflow":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"9edXskH5xEgJwufvyiVU4N"},"_color":{"__type__":"cc.Color","r":250,"g":216,"b":148},"_contentSize":{"__type__":"cc.Size","width":82.8,"height":40},"_position":{"__type__":"cc.Vec3","x":6.4,"y":-8.2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"qualityItem","_parent":{"__id__":22},"_children":[{"__id__":36},{"__id__":37},{"__id__":38}],"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":35},"_spriteFrame":{"__uuid__":"9fkYaZfqdCm5tOMcZgwJiN"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"03gf/GxaZN17cVbsnEnLg8"},"_contentSize":{"__type__":"cc.Size","width":112,"height":43},"_position":{"__type__":"cc.Vec3","x":152},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"icon","_parent":{"__id__":35},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":36},"_spriteFrame":{"__uuid__":"a1KZhSS5tJh7qxsCmWtTmB"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"56z11oF8FPUp1pXZ/maHem"},"_contentSize":{"__type__":"cc.Size","width":48,"height":45},"_position":{"__type__":"cc.Vec3","x":-58.9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"title","_parent":{"__id__":35},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":37},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"完美","_N$string":"完美","_fontSize":20,"_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$fontFamily":"黑体"}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"fd48AaQNlA/5f49KfvRLPZ"},"_contentSize":{"__type__":"cc.Size","width":40,"height":40},"_position":{"__type__":"cc.Vec3","x":-15.3,"y":8.2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"value","_parent":{"__id__":35},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":38},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"收益+30%","_N$string":"收益+30%","_fontSize":14,"_N$verticalAlign":1,"_N$fontFamily":"黑体","_N$overflow":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"45HQfkzRdAg62RBh9wrGNI"},"_color":{"__type__":"cc.Color","r":250,"g":216,"b":148},"_contentSize":{"__type__":"cc.Size","width":82.8,"height":40},"_position":{"__type__":"cc.Vec3","x":6.4,"y":-8.2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"qualityItem","_parent":{"__id__":22},"_children":[{"__id__":40},{"__id__":41},{"__id__":42}],"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":39},"_spriteFrame":{"__uuid__":"9fkYaZfqdCm5tOMcZgwJiN"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"30wlpBVZtCDYMZnsQgQ8cd"},"_contentSize":{"__type__":"cc.Size","width":112,"height":43},"_position":{"__type__":"cc.Vec3","x":294},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"icon","_parent":{"__id__":39},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":40},"_spriteFrame":{"__uuid__":"737aqnuvRGE7dflH0TbSol"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"9eQdE0d2lDarRa6UGe9SEq"},"_contentSize":{"__type__":"cc.Size","width":48,"height":45},"_position":{"__type__":"cc.Vec3","x":-58.9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"title","_parent":{"__id__":39},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":41},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"完美","_N$string":"完美","_fontSize":20,"_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$fontFamily":"黑体"}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"3duh/OVHFKPKVfV8U4oVPn"},"_contentSize":{"__type__":"cc.Size","width":40,"height":40},"_position":{"__type__":"cc.Vec3","x":-15.3,"y":8.2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"value","_parent":{"__id__":39},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":42},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"收益+30%","_N$string":"收益+30%","_fontSize":14,"_N$verticalAlign":1,"_N$fontFamily":"黑体","_N$overflow":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"04xo27e4pOGJFdzYg82n/3"},"_color":{"__type__":"cc.Color","r":250,"g":216,"b":148},"_contentSize":{"__type__":"cc.Size","width":82.8,"height":40},"_position":{"__type__":"cc.Vec3","x":6.4,"y":-8.2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"buttons","_parent":{"__id__":21},"_children":[{"__id__":44},{"__id__":45},{"__id__":46}],"_level":3,"_components":[{"__type__":"cc.Layout","node":{"__id__":43},"_layoutSize":{"__type__":"cc.Size","width":700,"height":100},"_N$layoutType":1,"_N$paddingLeft":40}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"f7bDLZC6FCLqBuTN9wziat"},"_contentSize":{"__type__":"cc.Size","width":700,"height":100},"_position":{"__type__":"cc.Vec3","y":-39},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"New Sprite(Splash)","_parent":{"__id__":43},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":44},"_spriteFrame":{"__uuid__":"1dEUZugBRHYoCKgHpDH/Gj"},"_type":1,"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"bcfO3xnlZDUKfjrWn/Plpj"},"_contentSize":{"__type__":"cc.Size","width":210,"height":80},"_position":{"__type__":"cc.Vec3","x":-205},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"New Sprite(Splash)","_parent":{"__id__":43},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":45},"_spriteFrame":{"__uuid__":"6b4FBe4MpDHat1ymZbAbq2"},"_type":1,"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"37Z/7LjddBJ40xG2akKIAQ"},"_contentSize":{"__type__":"cc.Size","width":210,"height":80},"_position":{"__type__":"cc.Vec3","x":5},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"New Sprite(Splash)","_parent":{"__id__":43},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":46},"_spriteFrame":{"__uuid__":"6b4FBe4MpDHat1ymZbAbq2"},"_type":1,"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"b5ixtzTuxBGK4KZvy3GWFd"},"_contentSize":{"__type__":"cc.Size","width":210,"height":80},"_position":{"__type__":"cc.Vec3","x":215},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"selectExpertDialog","_parent":{"__id__":1},"_children":[{"__id__":48},{"__id__":49},{"__id__":56},{"__id__":57}],"_active":false,"_level":2,"_components":[{"__type__":"b0f48+DrvVLIq8sB4bRr6vT","node":{"__id__":47},"farmersItem":{"__uuid__":"7fwYFYPfBFKpN+Sc4fadF1"},"idleFarmers":{"__id__":53},"busyFarmers":{"__id__":55}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"dd4/6SO9NO6JGlqjofaJea"},"_contentSize":{"__type__":"cc.Size","width":160,"height":390},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"bg","_parent":{"__id__":47},"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":48},"_spriteFrame":{"__uuid__":"3aXSv7WLRE2p3ngltKHL/1"},"_type":1,"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"00RXnzuX5J+6mTrQEhrKh+"},"_contentSize":{"__type__":"cc.Size","width":675,"height":852},"_position":{"__type__":"cc.Vec3","x":5,"y":-18},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"scrollView","_parent":{"__id__":47},"_children":[{"__id__":50}],"_level":3,"_components":[{"__type__":"cc.ScrollView","node":{"__id__":49},"horizontal":false,"brake":0.75,"bounceDuration":0.23,"_N$content":{"__id__":51},"content":{"__id__":51},"_N$horizontalScrollBar":null,"_N$verticalScrollBar":null}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"7c1V7F3qdOpo9s2CpPakH1"},"_contentSize":{"__type__":"cc.Size","width":590,"height":740},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"view","_parent":{"__id__":49},"_children":[{"__id__":51}],"_components":[{"__type__":"cc.Mask","node":{"__id__":50}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"7dzNWsuItPtbJFgBjPEqNx"},"_contentSize":{"__type__":"cc.Size","width":585,"height":734},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"content","_parent":{"__id__":50},"_children":[{"__id__":52},{"__id__":53},{"__id__":54},{"__id__":55}],"_components":[{"__type__":"cc.Layout","node":{"__id__":51},"_layoutSize":{"__type__":"cc.Size","width":580,"height":80},"_resize":1,"_N$layoutType":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"68ZeRJ7WJLRpVdgkaCEP03"},"_contentSize":{"__type__":"cc.Size","width":580,"height":80},"_anchorPoint":{"__type__":"cc.Vec2","x":0.5,"y":1},"_position":{"__type__":"cc.Vec3","y":362},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":51},"_level":1,"_components":[{"__type__":"cc.Label","node":{"__id__":52},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"Label","_N$string":"Label","_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"3f2oILPtxLW77mtyTJc2UB"},"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":97.87,"height":40},"_position":{"__type__":"cc.Vec3","y":-20},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"idleFarmers","_parent":{"__id__":51},"_components":[{"__type__":"cc.Layout","node":{"__id__":53},"_layoutSize":{"__type__":"cc.Size","width":580},"_resize":1,"_N$layoutType":3,"_N$spacingX":15,"_N$spacingY":15}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"9c1X6s2j5MI58LgfcTp3Du"},"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":580},"_anchorPoint":{"__type__":"cc.Vec2","x":0.5,"y":1},"_position":{"__type__":"cc.Vec3","y":-40},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":51},"_level":1,"_components":[{"__type__":"cc.Label","node":{"__id__":54},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"Label","_N$string":"Label","_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"f0+E757/1OApBcw7YR7YyK"},"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":97.87,"height":40},"_position":{"__type__":"cc.Vec3","y":-60},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"busyFarmers","_parent":{"__id__":51},"_level":1,"_components":[{"__type__":"cc.Layout","node":{"__id__":55},"_layoutSize":{"__type__":"cc.Size","width":580},"_resize":1,"_N$layoutType":3,"_N$spacingX":15,"_N$spacingY":15}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"e5LDM3jPtBMJVRo9bW7aU/"},"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":580},"_anchorPoint":{"__type__":"cc.Vec2","x":0.5,"y":1},"_position":{"__type__":"cc.Vec3","y":-80},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"closeBtn","_parent":{"__id__":47},"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":56},"_spriteFrame":{"__uuid__":"58xRTNsCBLioGNzjHJcgDn"}},{"__type__":"cc.Button","node":{"__id__":56},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":47},"component":"SelectExpertDialog","handler":"onCloseBtn"}],"_N$target":{"__id__":56}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"7aBCKGLUxMxIjzma+WXJEp"},"_contentSize":{"__type__":"cc.Size","width":84,"height":87},"_position":{"__type__":"cc.Vec3","x":275,"y":403},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"New Sprite","_parent":{"__id__":47},"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":57},"_spriteFrame":{"__uuid__":"e6apdqKO5GqqsWrIqt4DHw"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"c7TLhFaDpPFbs/Vx4aDJhb"},"_contentSize":{"__type__":"cc.Size","width":351,"height":127},"_position":{"__type__":"cc.Vec3","y":408},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"closeBtn","_parent":{"__id__":1},"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":58},"_spriteFrame":{"__uuid__":"58xRTNsCBLioGNzjHJcgDn"}},{"__type__":"cc.Button","node":{"__id__":58},"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"ResearchInstituteUI","handler":"onCloseBtn"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"58xRTNsCBLioGNzjHJcgDn"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":58}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"f8PAsP08JBx4l9aFzOawpg"},"fileId":"4dQEzCPKRMPrIEsMO9TaTl"},"_contentSize":{"__type__":"cc.Size","width":84,"height":87},"_position":{"__type__":"cc.Vec3","x":351,"y":523},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}}]]
\ No newline at end of file
[{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_disabled","texture":"71VhFCTINJM6/Ky3oX9nBT","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"muban336","texture":"f6C/H9xjdPrp7KpyfUChlN","rect":[1,1,215,223],"offset":[0,0],"originalSize":[217,225],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"dasuan","texture":"05hzoMOD9H1a9guZyVBs9Q","rect":[0,0,320,198],"offset":[0,0],"originalSize":[320,198],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"jindutiao2 ","texture":"dcNSFOYidLSbkxXF6x8RAL","rect":[1,1,216,31],"offset":[0,0],"originalSize":[218,33],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"mogu","texture":"f1s/Fanz5IJYqYNREZ5RBD","rect":[0,0,320,198],"offset":[0,0],"originalSize":[320,198],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"suo3","texture":"429tdM1iFCrZsQT/CJ+KTI","rect":[1,1,99,96],"offset":[0,0],"originalSize":[101,98],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_pressed","texture":"b4P/PCArtIdIH38t6mlw8Y","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"jindutiao","texture":"a2XyoFoS5P4o5KjX9Viafi","rect":[1,1,210,21],"offset":[0,0],"originalSize":[212,23],"capInsets":[0,0,0,0]}},[{"__type__":"cc.Prefab","_name":"land","data":{"__id__":1}},{"__type__":"cc.Node","_name":"land","_children":[{"__id__":2},{"__id__":21}],"_level":4,"_components":[{"__type__":"d3c19NFznJEc7EKy5DOp+8l","node":{"__id__":1},"up_page":{"__id__":2},"play_page":{"__id__":21},"lock_node":{"__id__":23},"unlock_node":{"__id__":31},"canlock_node":{"__id__":29},"up_product_img":{"__id__":6},"up_levellab":{"__id__":8},"up_cllab":{"__id__":11},"up_progress":{"__id__":15},"up_upbtn":{"__id__":20},"up_needCion":{"__id__":19},"lock_lab1":{"__id__":26},"lock_lab2":{"__id__":28},"un_progress":{"__id__":38},"un_cllab":{"__id__":40},"techan_sk":{"__id__":33}},{"__type__":"cc.Sprite","node":{"__id__":1},"_enabled":false,"_spriteFrame":{"__uuid__":"7bbEGd/dVDTocuYRvzmw/0"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"22vpiWlhFGKJHmLJ4r2cNA"},"_contentSize":{"__type__":"cc.Size","width":320,"height":198},"_position":{"__type__":"cc.Vec3","x":12,"y":31.5},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"up_page","_parent":{"__id__":1},"_children":[{"__id__":3}],"_active":false,"_level":5,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"a6/XAK0dpOYZLiz4mItiTc"},"_position":{"__type__":"cc.Vec3","x":2,"y":10},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"up_bg","_parent":{"__id__":2},"_children":[{"__id__":4},{"__id__":5},{"__id__":7},{"__id__":9},{"__id__":10},{"__id__":12},{"__id__":16}],"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":3},"_spriteFrame":{"__uuid__":"2bKMF0fhBP/qHnz0Xjkzyl"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"efefJHPuNLcYL7qdcd5a49"},"_contentSize":{"__type__":"cc.Size","width":215,"height":223},"_position":{"__type__":"cc.Vec3","x":-10.5,"y":68.1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"xihongshi 334 ","_parent":{"__id__":3},"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":4},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"f91yanj/1CD6rkFDOHngnP"},"_contentSize":{"__type__":"cc.Size","width":156,"height":40.7},"_position":{"__type__":"cc.Vec3","x":11.2,"y":30.1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"product_img","_parent":{"__id__":3},"_level":7,"_components":[{"__id__":6}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"c2dpvRQq1FKqclN0zaSpqP"},"_contentSize":{"__type__":"cc.Size","width":75,"height":80},"_position":{"__type__":"cc.Vec3","x":-64.3,"y":34.4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":5}},{"__type__":"cc.Node","_name":"levelLab","_parent":{"__id__":3},"_level":7,"_components":[{"__id__":8},{"__type__":"cc.LabelOutline","node":{"__id__":7},"_color":{"__type__":"cc.Color","g":14,"b":52},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"8dCuVRP5VK9KmJoOj7hQLp"},"_contentSize":{"__type__":"cc.Size","width":26.25,"height":40},"_position":{"__type__":"cc.Vec3","x":8.100000000000001,"y":29},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":7},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"7","_N$string":"7","_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"New Sprite","_parent":{"__id__":3},"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":9}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"76D+cSFA1IJ54TUMnPyKp7"},"_contentSize":{"__type__":"cc.Size","width":50,"height":50},"_position":{"__type__":"cc.Vec3","x":-43.5,"y":-26.8},"_scale":{"__type__":"cc.Vec3","x":0.6,"y":0.6,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":3},"_level":7,"_components":[{"__id__":11},{"__type__":"cc.LabelOutline","node":{"__id__":10},"_color":{"__type__":"cc.Color","g":14,"b":52},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"78CIFhns5P8ZDO1l6B9aPF"},"_contentSize":{"__type__":"cc.Size","width":74.71,"height":24},"_position":{"__type__":"cc.Vec3","x":19,"y":-26.7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":10},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"999/秒","_N$string":"999/秒","_fontSize":24,"_lineHeight":24,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"progressBar","_parent":{"__id__":3},"_children":[{"__id__":13}],"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":12},"_spriteFrame":{"__uuid__":"6659eeWqtAdZsjMyUxM5Sm"},"_type":1,"_sizeMode":0},{"__id__":15}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"7cbaDDu7xN0aHgfeiIOgrJ"},"_contentSize":{"__type__":"cc.Size","width":173.1,"height":25.7},"_position":{"__type__":"cc.Vec3","x":9.6,"y":86.3},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"bar","_parent":{"__id__":12},"_components":[{"__id__":14}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"d9GW0Hn29MrKdPub3k7mvu"},"_contentSize":{"__type__":"cc.Size","width":83,"height":15},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-83.1,"y":0.6},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":13},"_spriteFrame":{"__uuid__":"ea/RcVsVNE2LGuaHsE6aWO"},"_type":1,"_sizeMode":0},{"__type__":"cc.ProgressBar","node":{"__id__":12},"_N$totalLength":166,"_N$barSprite":{"__id__":14},"_N$progress":0.5},{"__type__":"cc.Node","_name":"clNode","_parent":{"__id__":3},"_children":[{"__id__":17},{"__id__":18}],"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":16},"_sizeMode":0},{"__id__":20}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"574CMrP8NDT5gk+d0Fr5pY"},"_contentSize":{"__type__":"cc.Size","width":429,"height":156},"_position":{"__type__":"cc.Vec3","x":11.3,"y":-144.6},"_scale":{"__type__":"cc.Vec3","x":0.39,"y":0.39,"z":1}},{"__type__":"cc.Node","_name":"needCoin","_parent":{"__id__":16},"_level":8,"_components":[{"__type__":"cc.Sprite","node":{"__id__":17},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"14HrHrDKFBY4ZNayvz0oMc"},"_contentSize":{"__type__":"cc.Size","width":120.5,"height":116.3},"_position":{"__type__":"cc.Vec3","x":-50.8,"y":6.5},"_scale":{"__type__":"cc.Vec3","x":0.8,"y":0.8,"z":1}},{"__type__":"cc.Node","_name":"clLab","_parent":{"__id__":16},"_level":8,"_components":[{"__id__":19},{"__type__":"cc.LabelOutline","node":{"__id__":18},"_color":{"__type__":"cc.Color","r":40,"g":113,"b":14},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"944tw4ltdE37/npfRyIDr4"},"_contentSize":{"__type__":"cc.Size","width":22.91,"height":34},"_position":{"__type__":"cc.Vec3","x":38.8,"y":1.5},"_scale":{"__type__":"cc.Vec3","x":2.5,"y":2.5,"z":1}},{"__type__":"cc.Label","node":{"__id__":18},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"5","_N$string":"5","_fontSize":34,"_lineHeight":34,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Button","node":{"__id__":16},"_N$enableAutoGrayEffect":true,"_N$target":{"__id__":16}},{"__type__":"cc.Node","_name":"play_page","_parent":{"__id__":1},"_children":[{"__id__":22},{"__id__":23},{"__id__":29},{"__id__":31}],"_level":5,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"6b5vmP/3BO25ucw/P7Eqnl"},"_position":{"__type__":"cc.Vec3","x":14,"y":-9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"dipiImg","_parent":{"__id__":21},"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":22},"_enabled":false,"_spriteFrame":{"__uuid__":"4ai8vFkTBMO42u/ttQqR2A"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"fbfFVeGjdLbIiJI/CmhHPe"},"_contentSize":{"__type__":"cc.Size","width":320,"height":198},"_position":{"__type__":"cc.Vec3","x":-17,"y":9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"lock","_parent":{"__id__":21},"_children":[{"__id__":24}],"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":23},"_enabled":false}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"a5gm6G4O5OG5daIwKt6fJK"},"_contentSize":{"__type__":"cc.Size","width":74,"height":95},"_position":{"__type__":"cc.Vec3","x":-17.4,"y":-12.7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"LabNode","_parent":{"__id__":23},"_children":[{"__id__":25},{"__id__":27}],"_level":7,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"69QmbO/x5BUqxxVhDYaZOr"},"_position":{"__type__":"cc.Vec3","x":-4,"y":2.7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":24},"_level":8,"_components":[{"__id__":26},{"__type__":"cc.LabelOutline","node":{"__id__":25},"_color":{"__type__":"cc.Color","r":140,"g":76,"b":16}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"5eC+oTOcpCJLkWgfPC+Etc"},"_color":{"__type__":"cc.Color","r":140,"g":76,"b":16},"_contentSize":{"__type__":"cc.Size","width":92,"height":30},"_position":{"__type__":"cc.Vec3","x":8.1,"y":31},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":25},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"土地二","_N$string":"土地二","_fontSize":30,"_lineHeight":30,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":24},"_level":8,"_components":[{"__id__":28},{"__type__":"cc.LabelOutline","node":{"__id__":27},"_color":{"__type__":"cc.Color","r":140,"g":76,"b":16}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"332DX5KBRPxYwnh1ogpcnz"},"_color":{"__type__":"cc.Color","r":140,"g":76,"b":16},"_contentSize":{"__type__":"cc.Size","width":185.37,"height":30},"_position":{"__type__":"cc.Vec3","x":3,"y":-21.4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":27},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"达到10级解锁","_N$string":"达到10级解锁","_fontSize":30,"_lineHeight":30,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"canunLock_btn","_parent":{"__id__":21},"_children":[{"__id__":30}],"_active":false,"_level":6,"_components":[{"__type__":"cc.Sprite","node":{"__id__":29},"_spriteFrame":{"__uuid__":"7fWCxAEIxKKZ4ZTyzYk4FA"}},{"__type__":"cc.Button","node":{"__id__":29},"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"Land","handler":"unlockLandFunc"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"7fWCxAEIxKKZ4ZTyzYk4FA"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":29}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"70ncwj11RMqZon3IZ18Z1A"},"_contentSize":{"__type__":"cc.Size","width":99,"height":96},"_position":{"__type__":"cc.Vec3","x":-15,"y":33},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"New Label","_parent":{"__id__":29},"_level":7,"_components":[{"__type__":"cc.Label","node":{"__id__":30},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"可解锁","_N$string":"可解锁","_fontSize":32,"_lineHeight":32,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":30},"_color":{"__type__":"cc.Color","r":33,"g":83,"b":16},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"63axVmnWxLWKOojpqpaGP2"},"_color":{"__type__":"cc.Color","r":131,"g":233,"b":18},"_contentSize":{"__type__":"cc.Size","width":100,"height":32},"_position":{"__type__":"cc.Vec3","x":-8,"y":-79},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"unlock","_parent":{"__id__":21},"_children":[{"__id__":32},{"__id__":34}],"_active":false,"_level":6,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"3bCfK5AfZOwKX9CmvuYlmX"},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"landAni","_parent":{"__id__":31},"_level":7,"_components":[{"__id__":33}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"22QKW9aRxNlIhkjxmaVmKK"},"_contentSize":{"__type__":"cc.Size","width":323.76,"height":206.02},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"sp.Skeleton","node":{"__id__":32},"defaultAnimation":"await1","_N$skeletonData":{"__uuid__":"49RLEMModFYKTmtwO4oEdx"}},{"__type__":"cc.Node","_name":"progress_bg","_parent":{"__id__":31},"_children":[{"__id__":35},{"__id__":39}],"_level":6,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"16ekUHyGxEgafzfkTJdoVo"},"_position":{"__type__":"cc.Vec3","x":-23.1,"y":-132.9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"progress","_parent":{"__id__":34},"_children":[{"__id__":36}],"_level":7,"_components":[{"__type__":"cc.Sprite","node":{"__id__":35},"_spriteFrame":{"__uuid__":"6659eeWqtAdZsjMyUxM5Sm"}},{"__id__":38}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"2fbzcei1lGSL8r33Q3vviF"},"_contentSize":{"__type__":"cc.Size","width":216,"height":31},"_position":{"__type__":"cc.Vec3","x":5.6,"y":20.9},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"bar","_parent":{"__id__":35},"_components":[{"__id__":37}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"c9qHXKxxxEP4AO1ZFm449h"},"_contentSize":{"__type__":"cc.Size","width":103.5,"height":21},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-104,"y":1.1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Sprite","node":{"__id__":36},"_spriteFrame":{"__uuid__":"ea/RcVsVNE2LGuaHsE6aWO"},"_sizeMode":0},{"__type__":"cc.ProgressBar","node":{"__id__":35},"_N$totalLength":207,"_N$barSprite":{"__id__":37},"_N$progress":0.5},{"__type__":"cc.Node","_name":"lab","_parent":{"__id__":34},"_level":7,"_components":[{"__id__":40},{"__type__":"cc.LabelOutline","node":{"__id__":39},"_color":{"__type__":"cc.Color","r":55,"g":24,"b":1},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"efB7QckU1Nl4RlH/MJrj7C"},"fileId":"05SH2WleFMyp6jZor+ZG3t"},"_contentSize":{"__type__":"cc.Size","width":78.52,"height":30},"_position":{"__type__":"cc.Vec3","x":-11.2,"y":-13.5},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":39},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"5.57ff","_N$string":"5.57ff","_fontSize":30,"_lineHeight":30,"_N$horizontalAlign":1,"_N$verticalAlign":1}],{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_normal","texture":"e8Ueib+qJEhL6mXAHdnwbi","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}}]
\ No newline at end of file
{"__type__":"cc.Asset","_name":"n_04","_native":".atlas"}
\ No newline at end of file
[{"__type__":"cc.SpriteFrame","content":{"name":"gongxianzhi","texture":"97/TZe7phDG7XGM5A8Szyt","rect":[1,1,71,76],"offset":[0,0],"originalSize":[73,78],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"weixuanzhong","texture":"2e3v8qmgxFhqiyn1JC1Kgv","rect":[1,1,32,32],"offset":[0,0],"originalSize":[34,34],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"pingguo","texture":"aeteZP/o5KnJuvgFXVoNnO","rect":[1,1,87,86],"offset":[0,0],"originalSize":[89,88],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"touying","texture":"40Jv0OSw1Oi6wg6VLf0cZt","rect":[1,1,85,31],"offset":[0,0],"originalSize":[87,33],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"diban5","texture":"79yujOGpJOyoZb93OKJFpY","rect":[1,1,554,39],"offset":[0,0],"originalSize":[556,41],"capInsets":[37,20,40,18]}},{"__type__":"cc.SpriteFrame","content":{"name":"diandian","texture":"eaqWNbouFJLqfz1d4+L2Y/","rect":[1,1,20,20],"offset":[0,0],"originalSize":[22,22],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"zuanshi2","texture":"95tgA+MEhHHZqRO7FLtECb","rect":[0,0,62,57],"offset":[0,0],"originalSize":[62,57],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_disabled","texture":"71VhFCTINJM6/Ky3oX9nBT","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"biaoti","texture":"fdLoCzzVhNr66i10hm1Xw0","rect":[1,1,535,138],"offset":[0,0],"originalSize":[537,140],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"kuang11","texture":"8fa3Cn1KRLcJa9hV8H3oCj","rect":[1,1,114,119],"offset":[0,0],"originalSize":[116,121],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"caishen","texture":"6bn6SDuPdI3bZuWlWnYSHi","rect":[1,1,120,167],"offset":[0,0.5],"originalSize":[122,170],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"touxiang","texture":"35xT7FjfdParePqgzySFB5","rect":[1,1,82,82],"offset":[0,0],"originalSize":[84,84],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"xingxing","texture":"2ccIZnqNpH8ZyqKm6Nfbzc","rect":[1,1,482,105],"offset":[0,0],"originalSize":[484,107],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"diaoban","texture":"a9QoHyJZZB9L+K2Ky5xYk/","rect":[1,1,497,134],"offset":[0,0],"originalSize":[499,136],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"dadiban","texture":"5aKVC+CyBHLpKI0/M2qZ8/","rect":[1,1,327,459],"offset":[0,0],"originalSize":[329,461],"capInsets":[161,59,163,122]}},{"__type__":"cc.SpriteFrame","content":{"name":"biaoqian1","texture":"9aKTgaD3tFHZD0UNZWn7CQ","rect":[1,1,129,35],"offset":[0,0],"originalSize":[131,37],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"guanbi","texture":"efVL7RrcRKPa8GHGhR8tm3","rect":[1,1,84,87],"offset":[0,0],"originalSize":[86,89],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"xuanzhong","texture":"c51q3B4/xLPbJrhpqxOydL","rect":[1,1,32,32],"offset":[0,0],"originalSize":[34,34],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"anniu1","texture":"e4tGlf4TVKtrlE0QAufoML","rect":[1,1,352,102],"offset":[0,0],"originalSize":[354,104],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_sprite_splash","texture":"02delMVqdBD70a/HSD99FK","rect":[0,0,2,2],"offset":[0,0],"originalSize":[2,2],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"diban3","texture":"770NpATzNMyY9pPhOCa+cR","rect":[1,1,124,123],"offset":[0,0],"originalSize":[126,125],"capInsets":[26,19,17,18]}},[{"__type__":"cc.Prefab","_name":"ordersDialogCj","data":{"__id__":1}},{"__type__":"cc.Node","_name":"ordersDialogCj","_children":[{"__id__":2},{"__id__":3}],"_level":1,"_components":[{"__type__":"923b0Kp1N5A44HmQbzi0xyd","node":{"__id__":1},"goodsArr":[{"__id__":19},{"__id__":25},{"__id__":31},{"__id__":37}],"awardsArr":[{"__id__":75},{"__id__":78},{"__id__":81}],"labOrderNum":{"__id__":52},"labFriendsNum":{"__id__":68},"wxzSign1":{"__id__":15},"xzSign1":{"__id__":16},"wxzSign2":{"__id__":46},"xzSign2":{"__id__":47},"wxzSign3":{"__id__":57},"xzSign3":{"__id__":58},"closeBtn":{"__id__":10},"okBtn":{"__id__":86},"okBtn1":{"__id__":89}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"beYNPEMq5OZ4yhYCaztOtk"},"_color":{"__type__":"cc.Color","r":211,"g":211,"b":211},"_contentSize":{"__type__":"cc.Size","width":625,"height":700},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"bg","_parent":{"__id__":1},"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":2},"_spriteFrame":{"__uuid__":"a2MjXRFdtLlYQ5ouAFv/+R"},"_sizeMode":0},{"__type__":"cc.BlockInputEvents","node":{"__id__":2}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"41a8ZWsrNN+Jc/u/j1LOJ8"},"_opacity":150,"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":750,"height":1334},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"content","_parent":{"__id__":1},"_children":[{"__id__":4},{"__id__":5},{"__id__":6},{"__id__":7},{"__id__":8},{"__id__":9},{"__id__":11},{"__id__":43},{"__id__":54},{"__id__":70},{"__id__":84},{"__id__":87}],"_level":2,"_components":[{"__type__":"cc.Sprite","node":{"__id__":3},"_spriteFrame":{"__uuid__":"757nIdGSNLsqmAAJFA2JzX"},"_type":1,"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"1ePUzZs2JA57aqRqcU6zlw"},"_contentSize":{"__type__":"cc.Size","width":710,"height":900},"_position":{"__type__":"cc.Vec3","y":-43},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"faguang","_parent":{"__id__":3},"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":4},"_spriteFrame":{"__uuid__":"e6bdVThHNGuZ+OvYbEXq0S"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"6eIloz/PNBdoZ2YfUUMygo"},"_contentSize":{"__type__":"cc.Size","width":550,"height":178},"_position":{"__type__":"cc.Vec3","x":-10,"y":592},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"xingxing","_parent":{"__id__":3},"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":5},"_spriteFrame":{"__uuid__":"5d4XNTx3BFvqK56MzxWFFB"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"c7GODauDBK/aeYjbTQvq17"},"_contentSize":{"__type__":"cc.Size","width":482,"height":105},"_position":{"__type__":"cc.Vec3","x":6,"y":566},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"biaoti","_parent":{"__id__":3},"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":6},"_spriteFrame":{"__uuid__":"3c/sEkUjpEQrEJz66SpgRP"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"90TtbYVHtA3ah3u56lWmD+"},"_contentSize":{"__type__":"cc.Size","width":535,"height":138},"_position":{"__type__":"cc.Vec3","x":13,"y":494},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"caishen","_parent":{"__id__":3},"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":7},"_spriteFrame":{"__uuid__":"51ae9jWYhKpKoGh/zkEUrn"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"deFlBV34xKA6tHZheYFxul"},"_contentSize":{"__type__":"cc.Size","width":120,"height":167},"_position":{"__type__":"cc.Vec3","x":-184,"y":507},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"titleSprite","_parent":{"__id__":3},"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":8},"_spriteFrame":{"__uuid__":"baO8h5JP5MKb20UFGbsfBd"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"85NMPb8/BDGqjSF2hPoyNz"},"_contentSize":{"__type__":"cc.Size","width":219,"height":55},"_position":{"__type__":"cc.Vec3","x":-10,"y":497},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"closeBtn","_parent":{"__id__":3},"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":9},"_spriteFrame":{"__uuid__":"89eJUe2dlPuZVpJFyxfSK7"}},{"__id__":10}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"e6faGtGThBLYZT82ic1wZN"},"_contentSize":{"__type__":"cc.Size","width":84,"height":87},"_position":{"__type__":"cc.Vec3","x":284,"y":455},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Button","node":{"__id__":9},"transition":3,"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"zoomScale":0.9,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"OrdersDialogCj","handler":"onCloseBtn"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":9}},{"__type__":"cc.Node","_name":"matter1","_parent":{"__id__":3},"_children":[{"__id__":12},{"__id__":13},{"__id__":14},{"__id__":15},{"__id__":16},{"__id__":17},{"__id__":18}],"_level":3,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"11Up4+VVFCT59RnL2PbYTm"},"_contentSize":{"__type__":"cc.Size","width":580,"height":50},"_position":{"__type__":"cc.Vec3","y":376},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diban5","_parent":{"__id__":11},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":12},"_spriteFrame":{"__uuid__":"20br33BY5AcL1/fs0WSU9p"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"34eMoJ+X1FmLsAHFiHXnIQ"},"_contentSize":{"__type__":"cc.Size","width":554,"height":39},"_position":{"__type__":"cc.Vec3","y":0.8999999999999999},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diandian","_parent":{"__id__":11},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":13},"_spriteFrame":{"__uuid__":"23k8InBK1IDZAfxIWOodHI"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"d498koG81AuIYZ47psTf04"},"_contentSize":{"__type__":"cc.Size","width":20,"height":20},"_position":{"__type__":"cc.Vec3","x":-254,"y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diaoban","_parent":{"__id__":11},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":14},"_spriteFrame":{"__uuid__":"6daBhqyU5NWolCSCBzP2x5"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"4fbqe9fR5Bqa796l7hAayZ"},"_contentSize":{"__type__":"cc.Size","width":497,"height":134},"_position":{"__type__":"cc.Vec3","x":-4,"y":-126},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"weixuanzhong","_parent":{"__id__":11},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":15},"_spriteFrame":{"__uuid__":"0aVL9yk5NBMIqOmTBfViTq"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"12csgSFRxD4LydVnsKLvHR"},"_contentSize":{"__type__":"cc.Size","width":32,"height":32},"_position":{"__type__":"cc.Vec3","x":252,"y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"xuanzhong","_parent":{"__id__":11},"_active":false,"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":16},"_spriteFrame":{"__uuid__":"8e/pnTRy9C3Ihd0emR560P"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"82u754gTpHfY0zCsfU63ha"},"_contentSize":{"__type__":"cc.Size","width":32,"height":32},"_position":{"__type__":"cc.Vec3","x":252,"y":2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labDesc","_parent":{"__id__":11},"_level":4,"_components":[{"__type__":"cc.Label","node":{"__id__":17},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"补充货物","_N$string":"补充货物","_fontSize":25,"_lineHeight":25,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":17},"_color":{"__type__":"cc.Color","r":113},"_width":0.3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"48TM5e2S5JGZ7A0kTqWowp"},"_color":{"__type__":"cc.Color","r":113},"_contentSize":{"__type__":"cc.Size","width":100.6,"height":25},"_position":{"__type__":"cc.Vec3","x":-181,"y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"layoutNode","_parent":{"__id__":11},"_children":[{"__id__":19},{"__id__":25},{"__id__":31},{"__id__":37}],"_level":4,"_components":[{"__type__":"cc.Layout","node":{"__id__":18},"_layoutSize":{"__type__":"cc.Size","width":430,"height":110},"_resize":1,"_N$layoutType":1,"_N$spacingX":10}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"3d/CWuRSpIPKN3C/IbI3+6"},"_contentSize":{"__type__":"cc.Size","width":430,"height":110},"_position":{"__type__":"cc.Vec3","x":-2,"y":-110},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"goods","_parent":{"__id__":18},"_children":[{"__id__":20},{"__id__":21},{"__id__":22},{"__id__":23},{"__id__":24}],"_level":5,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"eb9Qe1yZ9LT6ZEjUGJERwh"},"_contentSize":{"__type__":"cc.Size","width":100,"height":110},"_position":{"__type__":"cc.Vec3","x":-165,"y":-3},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"touying","_parent":{"__id__":19},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":20},"_spriteFrame":{"__uuid__":"1cfKbUfbBMJba67UvAqXrj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"38ZFc6X5BI5IlrgDel1rLQ"},"_contentSize":{"__type__":"cc.Size","width":85,"height":31},"_position":{"__type__":"cc.Vec3","x":1,"y":-11},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"pingguo","_parent":{"__id__":19},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":21},"_spriteFrame":{"__uuid__":"13OT1x+TBPPKE7V0rP0HpQ"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"5cXTLbQnhDuKvzLWJvLHSm"},"_contentSize":{"__type__":"cc.Size","width":69.6,"height":68.8},"_position":{"__type__":"cc.Vec3","x":2,"y":19},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"biaoqian","_parent":{"__id__":19},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":22},"_spriteFrame":{"__uuid__":"f5nQwFoT1EUo0gSBGxWBwj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"03tLW/R79OU4owsOONG4Lr"},"_contentSize":{"__type__":"cc.Size","width":100,"height":32},"_position":{"__type__":"cc.Vec3","y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum1","_parent":{"__id__":19},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":23},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"150","_N$string":"150","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"d3PoPpLq5CVpqhCEmwp/6P"},"_color":{"__type__":"cc.Color","r":135,"g":255,"b":133},"_contentSize":{"__type__":"cc.Size","width":33.37,"height":20},"_anchorPoint":{"__type__":"cc.Vec2","x":1,"y":0.5},"_position":{"__type__":"cc.Vec3","x":-5,"y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum2","_parent":{"__id__":19},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":24},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"/125","_N$string":"/125","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"b3JOqnSjtFTbVONu6GGn1H"},"_contentSize":{"__type__":"cc.Size","width":38.93,"height":20},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-3,"y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"goods","_parent":{"__id__":18},"_children":[{"__id__":26},{"__id__":27},{"__id__":28},{"__id__":29},{"__id__":30}],"_level":5,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"5cuOy5BY5Hv5f4Xmvvzlx6"},"_contentSize":{"__type__":"cc.Size","width":100,"height":110},"_position":{"__type__":"cc.Vec3","x":-55,"y":-3},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"touying","_parent":{"__id__":25},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":26},"_spriteFrame":{"__uuid__":"1cfKbUfbBMJba67UvAqXrj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"acgo0JVeJGPIVihcNtFSSa"},"_contentSize":{"__type__":"cc.Size","width":85,"height":31},"_position":{"__type__":"cc.Vec3","x":1,"y":-11},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"pingguo","_parent":{"__id__":25},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":27},"_spriteFrame":{"__uuid__":"13OT1x+TBPPKE7V0rP0HpQ"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"49Yyh9T89LX794cHaKOJZm"},"_contentSize":{"__type__":"cc.Size","width":69.6,"height":68.8},"_position":{"__type__":"cc.Vec3","x":2,"y":19},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"biaoqian","_parent":{"__id__":25},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":28},"_spriteFrame":{"__uuid__":"f5nQwFoT1EUo0gSBGxWBwj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"d5Xgr22HhMdLcNqx5TGS9C"},"_contentSize":{"__type__":"cc.Size","width":100,"height":32},"_position":{"__type__":"cc.Vec3","y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum1","_parent":{"__id__":25},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":29},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"150","_N$string":"150","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"26FWZrbRBAn5NPJA/e2HMX"},"_color":{"__type__":"cc.Color","r":135,"g":255,"b":133},"_contentSize":{"__type__":"cc.Size","width":33.37,"height":20},"_anchorPoint":{"__type__":"cc.Vec2","x":1,"y":0.5},"_position":{"__type__":"cc.Vec3","x":-5,"y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum2","_parent":{"__id__":25},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":30},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"/125","_N$string":"/125","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"a5YE13x6NDG57lK1WXawmY"},"_contentSize":{"__type__":"cc.Size","width":38.93,"height":20},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-3,"y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"goods","_parent":{"__id__":18},"_children":[{"__id__":32},{"__id__":33},{"__id__":34},{"__id__":35},{"__id__":36}],"_level":5,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"aaMK59FN1NhJ7PmnOrr8KC"},"_contentSize":{"__type__":"cc.Size","width":100,"height":110},"_position":{"__type__":"cc.Vec3","x":55,"y":-3},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"touying","_parent":{"__id__":31},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":32},"_spriteFrame":{"__uuid__":"1cfKbUfbBMJba67UvAqXrj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"92EUaaoOhEf7brr1SNSQ6N"},"_contentSize":{"__type__":"cc.Size","width":85,"height":31},"_position":{"__type__":"cc.Vec3","x":1,"y":-11},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"pingguo","_parent":{"__id__":31},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":33},"_spriteFrame":{"__uuid__":"13OT1x+TBPPKE7V0rP0HpQ"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"90j/IrcwlMtrnZ4Z0iiNf/"},"_contentSize":{"__type__":"cc.Size","width":69.6,"height":68.8},"_position":{"__type__":"cc.Vec3","x":2,"y":19},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"biaoqian","_parent":{"__id__":31},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":34},"_spriteFrame":{"__uuid__":"f5nQwFoT1EUo0gSBGxWBwj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"9fZzxHrH5En7ZlVIsOOPK/"},"_contentSize":{"__type__":"cc.Size","width":100,"height":32},"_position":{"__type__":"cc.Vec3","y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum1","_parent":{"__id__":31},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":35},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"150","_N$string":"150","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"b4YuXlTFxO9Jm1VJXmiQjs"},"_color":{"__type__":"cc.Color","r":135,"g":255,"b":133},"_contentSize":{"__type__":"cc.Size","width":33.37,"height":20},"_anchorPoint":{"__type__":"cc.Vec2","x":1,"y":0.5},"_position":{"__type__":"cc.Vec3","x":-5,"y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum2","_parent":{"__id__":31},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":36},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"/125","_N$string":"/125","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"21/ydrvKZATYkcd9OA994W"},"_contentSize":{"__type__":"cc.Size","width":38.93,"height":20},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-3,"y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"goods","_parent":{"__id__":18},"_children":[{"__id__":38},{"__id__":39},{"__id__":40},{"__id__":41},{"__id__":42}],"_level":5,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"bbdhMkCX9JVpEOLgJhYftX"},"_contentSize":{"__type__":"cc.Size","width":100,"height":110},"_position":{"__type__":"cc.Vec3","x":165,"y":-3},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"touying","_parent":{"__id__":37},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":38},"_spriteFrame":{"__uuid__":"1cfKbUfbBMJba67UvAqXrj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"6fdOJd9YNMxZz8Q3t6YYjC"},"_contentSize":{"__type__":"cc.Size","width":85,"height":31},"_position":{"__type__":"cc.Vec3","x":1,"y":-11},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"pingguo","_parent":{"__id__":37},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":39},"_spriteFrame":{"__uuid__":"13OT1x+TBPPKE7V0rP0HpQ"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"b2njS3XAtH34+ehtcGsMS7"},"_contentSize":{"__type__":"cc.Size","width":69.6,"height":68.8},"_position":{"__type__":"cc.Vec3","x":2,"y":19},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"biaoqian","_parent":{"__id__":37},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":40},"_spriteFrame":{"__uuid__":"f5nQwFoT1EUo0gSBGxWBwj"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"11bwhMlS5FLpgZN7udoXL7"},"_contentSize":{"__type__":"cc.Size","width":100,"height":32},"_position":{"__type__":"cc.Vec3","y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum1","_parent":{"__id__":37},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":41},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"150","_N$string":"150","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"6fVFcQQq5MuowfFXas4jJJ"},"_color":{"__type__":"cc.Color","r":135,"g":255,"b":133},"_contentSize":{"__type__":"cc.Size","width":33.37,"height":20},"_anchorPoint":{"__type__":"cc.Vec2","x":1,"y":0.5},"_position":{"__type__":"cc.Vec3","x":-5,"y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum2","_parent":{"__id__":37},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":42},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"/125","_N$string":"/125","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"e5jfRrChtHla2LNyYCWcBJ"},"_contentSize":{"__type__":"cc.Size","width":38.93,"height":20},"_anchorPoint":{"__type__":"cc.Vec2","y":0.5},"_position":{"__type__":"cc.Vec3","x":-3,"y":-35},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"matter2","_parent":{"__id__":3},"_children":[{"__id__":44},{"__id__":45},{"__id__":46},{"__id__":47},{"__id__":48},{"__id__":49}],"_level":3,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"5426k6HIJA94Up/HxDWqe3"},"_contentSize":{"__type__":"cc.Size","width":580,"height":50},"_position":{"__type__":"cc.Vec3","y":146},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diban5","_parent":{"__id__":43},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":44},"_spriteFrame":{"__uuid__":"20br33BY5AcL1/fs0WSU9p"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"ecn7dNA4ZDOLcE/YpO4hf6"},"_contentSize":{"__type__":"cc.Size","width":554,"height":39},"_position":{"__type__":"cc.Vec3","y":0.8999999999999999},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diandian","_parent":{"__id__":43},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":45},"_spriteFrame":{"__uuid__":"23k8InBK1IDZAfxIWOodHI"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"1cd2ZiXPdKnJstjQkWchBZ"},"_contentSize":{"__type__":"cc.Size","width":20,"height":20},"_position":{"__type__":"cc.Vec3","x":-246,"y":2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"weixuanzhong","_parent":{"__id__":43},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":46},"_spriteFrame":{"__uuid__":"0aVL9yk5NBMIqOmTBfViTq"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"6cHg3GMcpAXJWwPJLFWvcs"},"_contentSize":{"__type__":"cc.Size","width":32,"height":32},"_position":{"__type__":"cc.Vec3","x":251,"y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"xuanzhong","_parent":{"__id__":43},"_active":false,"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":47},"_spriteFrame":{"__uuid__":"8e/pnTRy9C3Ihd0emR560P"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"77kyjKs41CF6QYYNYOb1o0"},"_contentSize":{"__type__":"cc.Size","width":32,"height":32},"_position":{"__type__":"cc.Vec3","x":251,"y":2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labDesc","_parent":{"__id__":43},"_level":4,"_components":[{"__type__":"cc.Label","node":{"__id__":48},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"需要完成10次致富订单","_N$string":"需要完成10次致富订单","_fontSize":25,"_lineHeight":25,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":48},"_color":{"__type__":"cc.Color","r":113},"_width":0.3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"b10URvWLBAjL+fl6DI82pd"},"_color":{"__type__":"cc.Color","r":113},"_contentSize":{"__type__":"cc.Size","width":253.41,"height":25},"_position":{"__type__":"cc.Vec3","x":-97,"y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"layout","_parent":{"__id__":43},"_children":[{"__id__":50},{"__id__":51},{"__id__":53}],"_level":4,"_components":[{"__type__":"cc.Layout","node":{"__id__":49},"_layoutSize":{"__type__":"cc.Size","width":63.9,"height":25},"_resize":1,"_N$layoutType":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"e595HjtHFG7KSytDZV9BuL"},"_contentSize":{"__type__":"cc.Size","width":63.9,"height":25},"_position":{"__type__":"cc.Vec3","x":139},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labDesc2","_parent":{"__id__":49},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":50},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"(","_N$string":"(","_fontSize":24,"_lineHeight":24,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":50},"_color":{"__type__":"cc.Color","r":113},"_width":0.3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"b6577XeS9GZYlxhB6xVfgk"},"_color":{"__type__":"cc.Color","r":113},"_contentSize":{"__type__":"cc.Size","width":8.59,"height":24},"_position":{"__type__":"cc.Vec3","x":-27.655,"y":2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labOrderNum","_parent":{"__id__":49},"_level":5,"_components":[{"__id__":52}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"0e+g+HjLdGyq+AnUgMXPFs"},"_color":{"__type__":"cc.Color","r":255},"_contentSize":{"__type__":"cc.Size","width":13.35,"height":24},"_position":{"__type__":"cc.Vec3","x":-16.685,"y":2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":51},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"0","_N$string":"0","_fontSize":24,"_lineHeight":24,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"labDesc1","_parent":{"__id__":49},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":53},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"/10)","_N$string":"/10)","_fontSize":24,"_lineHeight":24,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":53},"_color":{"__type__":"cc.Color","r":113},"_width":0.3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"e9o9IwEOxJjqnr/p4JL+DV"},"_color":{"__type__":"cc.Color","r":113},"_contentSize":{"__type__":"cc.Size","width":41.96,"height":24},"_position":{"__type__":"cc.Vec3","x":10.970000000000002,"y":2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"matter3","_parent":{"__id__":3},"_children":[{"__id__":55},{"__id__":56},{"__id__":57},{"__id__":58},{"__id__":59},{"__id__":60},{"__id__":61},{"__id__":62},{"__id__":63},{"__id__":64},{"__id__":65}],"_level":3,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"7b8emfL4lNW6LQWhNZHBPk"},"_contentSize":{"__type__":"cc.Size","width":580,"height":140},"_position":{"__type__":"cc.Vec3","y":48},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diban5","_parent":{"__id__":54},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":55},"_spriteFrame":{"__uuid__":"20br33BY5AcL1/fs0WSU9p"},"_type":1,"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"858lhjZ8NOYIdm75Wuh8pt"},"_contentSize":{"__type__":"cc.Size","width":554,"height":140},"_position":{"__type__":"cc.Vec3","y":-2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diandian","_parent":{"__id__":54},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":56},"_spriteFrame":{"__uuid__":"23k8InBK1IDZAfxIWOodHI"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"1dd83btNFFBYm5YysTLm5o"},"_contentSize":{"__type__":"cc.Size","width":20,"height":20},"_position":{"__type__":"cc.Vec3","x":-246.6,"y":49.7},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"weixuanzhong","_parent":{"__id__":54},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":57},"_spriteFrame":{"__uuid__":"0aVL9yk5NBMIqOmTBfViTq"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"b5rCrrPAhH56t1bsFKbNKt"},"_contentSize":{"__type__":"cc.Size","width":32,"height":32},"_position":{"__type__":"cc.Vec3","x":250,"y":49},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"xuanzhong","_parent":{"__id__":54},"_active":false,"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":58},"_spriteFrame":{"__uuid__":"8e/pnTRy9C3Ihd0emR560P"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"aanq0Y0L1PLazNIrBUyVC9"},"_contentSize":{"__type__":"cc.Size","width":32,"height":32},"_position":{"__type__":"cc.Vec3","x":250,"y":50},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labDesc","_parent":{"__id__":54},"_level":4,"_components":[{"__type__":"cc.Label","node":{"__id__":59},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"邀请5个好友来助力","_N$string":"邀请5个好友来助力","_fontSize":25,"_lineHeight":25,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":59},"_color":{"__type__":"cc.Color","r":113},"_width":0.3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"06FDoWZSJI6b1BJjSVGn4q"},"_color":{"__type__":"cc.Color","r":113},"_contentSize":{"__type__":"cc.Size","width":214.5,"height":25},"_position":{"__type__":"cc.Vec3","x":-115,"y":49},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"touxiang","_parent":{"__id__":54},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":60},"_spriteFrame":{"__uuid__":"55ASWCwgxPQptc0cJw6VJE"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"adb80UBU1LHJpxXOSljOKK"},"_contentSize":{"__type__":"cc.Size","width":82,"height":82},"_position":{"__type__":"cc.Vec3","x":-216,"y":-22},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"touxiang","_parent":{"__id__":54},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":61},"_spriteFrame":{"__uuid__":"55ASWCwgxPQptc0cJw6VJE"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"596+35VN1B6brmR1gfWGUK"},"_contentSize":{"__type__":"cc.Size","width":82,"height":82},"_position":{"__type__":"cc.Vec3","x":-109,"y":-22},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"touxiang","_parent":{"__id__":54},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":62},"_spriteFrame":{"__uuid__":"55ASWCwgxPQptc0cJw6VJE"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"e8t+/9OEdLT5Oxva0AwgnY"},"_contentSize":{"__type__":"cc.Size","width":82,"height":82},"_position":{"__type__":"cc.Vec3","x":-3.7,"y":-22},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"touxiang","_parent":{"__id__":54},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":63},"_spriteFrame":{"__uuid__":"55ASWCwgxPQptc0cJw6VJE"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"424uIKoAdHgauk/iiBRjw9"},"_contentSize":{"__type__":"cc.Size","width":82,"height":82},"_position":{"__type__":"cc.Vec3","x":104,"y":-22},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"touxiang","_parent":{"__id__":54},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":64},"_spriteFrame":{"__uuid__":"55ASWCwgxPQptc0cJw6VJE"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"472CkQKopLsoYHAue5Xnwl"},"_contentSize":{"__type__":"cc.Size","width":82,"height":82},"_position":{"__type__":"cc.Vec3","x":210,"y":-22},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"layout","_parent":{"__id__":54},"_children":[{"__id__":66},{"__id__":67},{"__id__":69}],"_level":4,"_components":[{"__type__":"cc.Layout","node":{"__id__":65},"_layoutSize":{"__type__":"cc.Size","width":50.55,"height":25},"_resize":1,"_N$layoutType":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"dcT0UhAjZBuq09iZw+gXfa"},"_contentSize":{"__type__":"cc.Size","width":50.55,"height":25},"_position":{"__type__":"cc.Vec3","x":139,"y":48.3},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labDesc2","_parent":{"__id__":65},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":66},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"(","_N$string":"(","_fontSize":24,"_lineHeight":24,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":66},"_color":{"__type__":"cc.Color","r":113},"_width":0.3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"20/zHLS9lMOYJicy6Xo8wI"},"_color":{"__type__":"cc.Color","r":113},"_contentSize":{"__type__":"cc.Size","width":8.59,"height":24},"_position":{"__type__":"cc.Vec3","x":-20.979999999999997,"y":2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labFriendsNum","_parent":{"__id__":65},"_level":5,"_components":[{"__id__":68}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"58kmv36DNGCYEvs8uMnHr0"},"_color":{"__type__":"cc.Color","r":255},"_contentSize":{"__type__":"cc.Size","width":13.35,"height":24},"_position":{"__type__":"cc.Vec3","x":-10.009999999999994,"y":2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":67},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"0","_N$string":"0","_fontSize":24,"_lineHeight":24,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"labDesc1","_parent":{"__id__":65},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":69},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"/5)","_N$string":"/5)","_fontSize":24,"_lineHeight":24,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":69},"_color":{"__type__":"cc.Color","r":113},"_width":0.3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"e7oK7Pir1BbKeGe7tMN0QT"},"_color":{"__type__":"cc.Color","r":113},"_contentSize":{"__type__":"cc.Size","width":28.610000000000003,"height":24},"_position":{"__type__":"cc.Vec3","x":10.970000000000006,"y":2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"matter4","_parent":{"__id__":3},"_children":[{"__id__":71},{"__id__":72},{"__id__":73},{"__id__":74},{"__id__":75},{"__id__":78},{"__id__":81}],"_level":3,"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"ed2B9r3ctFf4mdGjGu27NS"},"_contentSize":{"__type__":"cc.Size","width":580,"height":200},"_position":{"__type__":"cc.Vec3","x":3,"y":-138},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diban3","_parent":{"__id__":70},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":71},"_spriteFrame":{"__uuid__":"a2TYdtzAFNR6H+yuIFYh4y"},"_type":1,"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"cb0zsc32tKEaEIL8gXAESg"},"_contentSize":{"__type__":"cc.Size","width":550,"height":193},"_position":{"__type__":"cc.Vec3","x":-2,"y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"diguang","_parent":{"__id__":70},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":72},"_spriteFrame":{"__uuid__":"dfsLO8DAtLGLUSj3gsAl3G"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"e8gMrJ+HpNiZFHae8Lypoz"},"_contentSize":{"__type__":"cc.Size","width":552,"height":193},"_position":{"__type__":"cc.Vec3","x":2,"y":4},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"biaoqian1","_parent":{"__id__":70},"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":73},"_spriteFrame":{"__uuid__":"84Co42Wu9BELJrl0EYps4G"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"bdbQF9ySZOd60cz8HakVaU"},"_contentSize":{"__type__":"cc.Size","width":129,"height":35},"_position":{"__type__":"cc.Vec3","x":-207,"y":74},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"Label","_parent":{"__id__":70},"_level":4,"_components":[{"__type__":"cc.Label","node":{"__id__":74},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"订单奖励","_N$string":"订单奖励","_fontSize":20,"_lineHeight":20,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"33mEJsWUhAk41ENasiLC5c"},"_contentSize":{"__type__":"cc.Size","width":80,"height":20},"_position":{"__type__":"cc.Vec3","x":-198,"y":74},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"kuang","_parent":{"__id__":70},"_children":[{"__id__":76},{"__id__":77}],"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":75},"_spriteFrame":{"__uuid__":"48qtt5FpNJw61v73KxEYd0"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"349UeXxX5DmqYs2KgGS0Er"},"_contentSize":{"__type__":"cc.Size","width":114,"height":119},"_position":{"__type__":"cc.Vec3","x":-120,"y":-17},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"jinbi","_parent":{"__id__":75},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":76},"_spriteFrame":{"__uuid__":"e4IYERodFIB46xcrvFttJN"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"3eKyYwmadExLopEfpOCV3H"},"_contentSize":{"__type__":"cc.Size","width":75.933,"height":73.359},"_position":{"__type__":"cc.Vec3","x":2,"y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum","_parent":{"__id__":75},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":77},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"50","_N$string":"50","_fontSize":30,"_lineHeight":30,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"a7cb7qDbtPna9rlaGBxGB3"},"_color":{"__type__":"cc.Color","r":117,"g":48,"b":2},"_contentSize":{"__type__":"cc.Size","width":33.37,"height":30},"_anchorPoint":{"__type__":"cc.Vec2","x":1,"y":0.5},"_position":{"__type__":"cc.Vec3","x":52.8,"y":-38.8},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"kuang","_parent":{"__id__":70},"_children":[{"__id__":79},{"__id__":80}],"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":78},"_spriteFrame":{"__uuid__":"48qtt5FpNJw61v73KxEYd0"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"35/5NuEp5M3Z1eyjNk45ND"},"_contentSize":{"__type__":"cc.Size","width":114,"height":119},"_position":{"__type__":"cc.Vec3","x":11,"y":-17},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"zuanshi","_parent":{"__id__":78},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":79},"_spriteFrame":{"__uuid__":"25dt/PtH1IGKEfe/72MI9D"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"3dgU3hraRHXo0EW4w+RphH"},"_contentSize":{"__type__":"cc.Size","width":75.933,"height":73.359},"_position":{"__type__":"cc.Vec3","x":2,"y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum","_parent":{"__id__":78},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":80},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"50","_N$string":"50","_fontSize":30,"_lineHeight":30,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"c0tz5Pto9Jc46fdRJQA4W8"},"_color":{"__type__":"cc.Color","r":117,"g":48,"b":2},"_contentSize":{"__type__":"cc.Size","width":33.37,"height":30},"_anchorPoint":{"__type__":"cc.Vec2","x":1,"y":0.5},"_position":{"__type__":"cc.Vec3","x":52.8,"y":-38.8},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"kuang","_parent":{"__id__":70},"_children":[{"__id__":82},{"__id__":83}],"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":81},"_spriteFrame":{"__uuid__":"48qtt5FpNJw61v73KxEYd0"}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"70kmo01stLgIOtLZALHicg"},"_contentSize":{"__type__":"cc.Size","width":114,"height":119},"_position":{"__type__":"cc.Vec3","x":137,"y":-17},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"xianzhi","_parent":{"__id__":81},"_level":5,"_components":[{"__type__":"cc.Sprite","node":{"__id__":82},"_spriteFrame":{"__uuid__":"05wr3+zh5Oza/Utq5jYf9z"},"_sizeMode":0}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"e5EO+rqadOcZk4TRnYXXlL"},"_contentSize":{"__type__":"cc.Size","width":75.933,"height":73.359},"_position":{"__type__":"cc.Vec3","x":2,"y":1},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"labNum","_parent":{"__id__":81},"_level":5,"_components":[{"__type__":"cc.Label","node":{"__id__":83},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"50","_N$string":"50","_fontSize":30,"_lineHeight":30,"_N$horizontalAlign":1,"_N$verticalAlign":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"d6E/r0syFGK7hGYIuR+qhz"},"_color":{"__type__":"cc.Color","r":117,"g":48,"b":2},"_contentSize":{"__type__":"cc.Size","width":33.37,"height":30},"_anchorPoint":{"__type__":"cc.Vec2","x":1,"y":0.5},"_position":{"__type__":"cc.Vec3","x":52.8,"y":-38.8},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"okBtn","_parent":{"__id__":3},"_children":[{"__id__":85}],"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":84},"_spriteFrame":{"__uuid__":"cdZod374dKbY+0ASLPyCjV"}},{"__id__":86}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"25Pni9frRNB7/2xjGgKVgu"},"_contentSize":{"__type__":"cc.Size","width":352,"height":102},"_position":{"__type__":"cc.Vec3","x":6,"y":-316},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"Label","_parent":{"__id__":84},"_components":[{"__type__":"cc.Label","node":{"__id__":85},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"完成要求后开启","_N$string":"完成要求后开启","_fontSize":32,"_lineHeight":35,"_enableWrapText":false,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":85},"_color":{"__type__":"cc.Color","r":171,"g":91,"b":23},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"93nHsv17VEZ4yKG4IO7WqA"},"_contentSize":{"__type__":"cc.Size","width":228,"height":35},"_position":{"__type__":"cc.Vec3","y":2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Button","node":{"__id__":84},"transition":3,"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"zoomScale":0.9,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"OrdersDialogCj","handler":"onOkBtn"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":84}},{"__type__":"cc.Node","_name":"okBtn1","_parent":{"__id__":3},"_children":[{"__id__":88}],"_active":false,"_level":3,"_components":[{"__type__":"cc.Sprite","node":{"__id__":87},"_spriteFrame":{"__uuid__":"9dZNwraKtEq5SLTSVj93Ri"}},{"__id__":89}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"f5ofnrtuBEoZqcrAwt7tbP"},"_contentSize":{"__type__":"cc.Size","width":352,"height":102},"_position":{"__type__":"cc.Vec3","x":6,"y":-315},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"Label","_parent":{"__id__":87},"_components":[{"__type__":"cc.Label","node":{"__id__":88},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"完成并领取奖励","_N$string":"完成并领取奖励","_fontSize":32,"_lineHeight":35,"_enableWrapText":false,"_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.LabelOutline","node":{"__id__":88},"_color":{"__type__":"cc.Color","r":48,"g":119,"b":65},"_width":2}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"b5E/Dh3EpKZayiREdF+6ko"},"fileId":"f7geXM77xNVozZvX1/3Dcu"},"_contentSize":{"__type__":"cc.Size","width":228,"height":35},"_position":{"__type__":"cc.Vec3","y":2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Button","node":{"__id__":87},"transition":3,"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"zoomScale":0.9,"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"OrdersDialog","handler":"onOkBtn"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":87}}],{"__type__":"cc.SpriteFrame","content":{"name":"chaojidingdan","texture":"21PHAE7rlJrKa6GgGqfjjo","rect":[1,1,219,55],"offset":[0,0],"originalSize":[221,57],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"anniu","texture":"b7Cow+rm9DwZ1lU4vRORJj","rect":[1,1,352,102],"offset":[0,0],"originalSize":[354,104],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"diguang","texture":"fe7LKB/MdFuK2UM6MvaZkf","rect":[1,1,552,203],"offset":[0,0],"originalSize":[554,205],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"jinbi2","texture":"55hts9dLRPs4Mzsv2gkIiU","rect":[0,0,59,57],"offset":[0,0],"originalSize":[59,57],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"faguang","texture":"edDzdkfBFKGbFZPxWRtFVs","rect":[1,1,550,178],"offset":[0,0],"originalSize":[552,180],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_pressed","texture":"b4P/PCArtIdIH38t6mlw8Y","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_normal","texture":"e8Ueib+qJEhL6mXAHdnwbi","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"biaoqian","texture":"a8rnVZMYdB1IKFsz0IP0FP","rect":[1,1,100,32],"offset":[0,0],"originalSize":[102,34],"capInsets":[0,0,0,0]}}]
\ No newline at end of file
[{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_disabled","texture":"71VhFCTINJM6/Ky3oX9nBT","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_sprite_splash","texture":"02delMVqdBD70a/HSD99FK","rect":[0,0,2,2],"offset":[0,0],"originalSize":[2,2],"capInsets":[0,0,0,0]}},{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_pressed","texture":"b4P/PCArtIdIH38t6mlw8Y","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}},[{"__type__":"cc.Prefab","_name":"commonDialog","data":{"__id__":1}},{"__type__":"cc.Node","_name":"commonDialog","_children":[{"__id__":2},{"__id__":4},{"__id__":6},{"__id__":9}],"_level":1,"_components":[{"__type__":"cc.Sprite","node":{"__id__":1},"_spriteFrame":{"__uuid__":"a2MjXRFdtLlYQ5ouAFv/+R"},"_sizeMode":0},{"__type__":"7e4aafNr9FAQIyRIJR1r5KJ","node":{"__id__":1},"titleLable":{"__id__":3},"valueLable":{"__id__":5},"closeBtn":{"__id__":8},"okBtn":{"__id__":11}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eceiRZciNIWLneWe/inUCY"},"fileId":"4bhRtQCMFD+avtga8elPlE"},"_color":{"__type__":"cc.Color","r":211,"g":211,"b":211},"_contentSize":{"__type__":"cc.Size","width":600,"height":700},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"titleLabel","_parent":{"__id__":1},"_level":4,"_components":[{"__id__":3}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eceiRZciNIWLneWe/inUCY"},"fileId":"e4ylxW3cdNpYA/35fIBsO/"},"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":62.25,"height":40},"_position":{"__type__":"cc.Vec3","y":235},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":2},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"title","_N$string":"title","_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"valueLabel","_parent":{"__id__":1},"_level":4,"_components":[{"__id__":5}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eceiRZciNIWLneWe/inUCY"},"fileId":"9eVnaftSBN15Xn5A4wT7lB"},"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":95.63,"height":40},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Label","node":{"__id__":4},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"value","_N$string":"value","_N$horizontalAlign":1,"_N$verticalAlign":1},{"__type__":"cc.Node","_name":"closeBtn","_parent":{"__id__":1},"_children":[{"__id__":7}],"_active":false,"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":6},"_spriteFrame":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_type":1,"_sizeMode":0},{"__id__":8}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eceiRZciNIWLneWe/inUCY"},"fileId":"ebiCMiXjREtJHt7Nn7tjdn"},"_contentSize":{"__type__":"cc.Size","width":100,"height":40},"_position":{"__type__":"cc.Vec3","x":229,"y":310},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"Label","_parent":{"__id__":6},"_components":[{"__type__":"cc.Label","node":{"__id__":7},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"close","_N$string":"close","_fontSize":20,"_enableWrapText":false,"_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$overflow":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eceiRZciNIWLneWe/inUCY"},"fileId":"30f7sZ+hRDdbn8sL2Touls"},"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":100,"height":40},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Button","node":{"__id__":6},"transition":3,"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"CommonDialog","handler":"onCloseBtn"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":6}},{"__type__":"cc.Node","_name":"okBtn","_parent":{"__id__":1},"_children":[{"__id__":10}],"_active":false,"_level":4,"_components":[{"__type__":"cc.Sprite","node":{"__id__":9},"_spriteFrame":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_type":1,"_sizeMode":0},{"__id__":11}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eceiRZciNIWLneWe/inUCY"},"fileId":"d10ICLw41PZIl7CnUhWtzR"},"_contentSize":{"__type__":"cc.Size","width":100,"height":40},"_position":{"__type__":"cc.Vec3","y":-257},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"Label","_parent":{"__id__":9},"_components":[{"__type__":"cc.Label","node":{"__id__":10},"_srcBlendFactor":1,"_useOriginalSize":false,"_string":"ok","_N$string":"ok","_fontSize":20,"_enableWrapText":false,"_N$horizontalAlign":1,"_N$verticalAlign":1,"_N$overflow":1}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"eceiRZciNIWLneWe/inUCY"},"fileId":"c1q9VUdi9A+5k+v6e1PI2j"},"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":100,"height":40},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Button","node":{"__id__":9},"transition":3,"pressedColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"clickEvents":[{"__type__":"cc.ClickEvent","target":{"__id__":1},"component":"CommonDialog","handler":"onOkBtn"}],"_N$normalColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$disabledColor":{"__type__":"cc.Color","r":255,"g":255,"b":255},"_N$normalSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"pressedSprite":{"__uuid__":"e97GVMl6JHh5Ml5qEDdSGa"},"_N$hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"hoverSprite":{"__uuid__":"f0BIwQ8D5Ml7nTNQbh1YlS"},"_N$disabledSprite":{"__uuid__":"29FYIk+N1GYaeWH/q1NxQO"},"_N$target":{"__id__":9}}],{"__type__":"cc.SpriteFrame","content":{"name":"default_btn_normal","texture":"e8Ueib+qJEhL6mXAHdnwbi","rect":[0,0,40,40],"offset":[0,0],"originalSize":[40,40],"capInsets":[12,12,12,12]}}]
\ No newline at end of file
[[{"__type__":"cc.Prefab","_name":"toast","data":{"__id__":1}},{"__type__":"cc.Node","_name":"Toast","_children":[{"__id__":2}],"_level":1,"_components":[{"__type__":"cc.Sprite","node":{"__id__":1},"_spriteFrame":{"__uuid__":"c0aU+sxJBFxaH0oprk/bgn"},"_type":1,"_sizeMode":0,"_isTrimmedMode":false},{"__type__":"cc.Layout","node":{"__id__":1},"_layoutSize":{"__type__":"cc.Size","width":60,"height":65},"_resize":1,"_N$paddingLeft":30,"_N$paddingRight":30,"_N$paddingTop":15,"_N$paddingBottom":15},{"__type__":"cc.Widget","node":{"__id__":1},"alignMode":0,"_alignFlags":18,"_verticalCenter":268},{"__type__":"6ce36IIpwBEXJjWzE5jwXSx","node":{"__id__":1},"label":{"__id__":3}}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"638TInu+xO2b60JiAxqQa8"},"fileId":"0cM3fUO0BEyZe43GwElgab"},"_opacity":0,"_color":{"__type__":"cc.Color"},"_contentSize":{"__type__":"cc.Size","width":60,"height":65},"_anchorPoint":{"__type__":"cc.Vec2","x":0.34,"y":0.38},"_position":{"__type__":"cc.Vec3","x":370.4,"y":927.2},"_scale":{"__type__":"cc.Vec3","x":1,"y":1,"z":1}},{"__type__":"cc.Node","_name":"Label","_parent":{"__id__":1},"_components":[{"__id__":3},{"__type__":"cc.Widget","node":{"__id__":2},"alignMode":0,"_alignFlags":18}],"_prefab":{"__type__":"cc.PrefabInfo","root":{"__id__":1},"asset":{"__uuid__":"638TInu+xO2b60JiAxqQa8"},"fileId":"0aFHjaALhIZ6NumU2/6/Hy"},"_contentSize":{"__type__":"cc.Size","height":70},"_position":{"__type__":"cc.Vec3","x":9.599999999999998,"y":7.8},"_scale":{"__type__":"cc.Vec3","x":0.5,"y":0.5,"z":1}},{"__type__":"cc.Label","node":{"__id__":2},"_srcBlendFactor":1,"_useOriginalSize":false,"_fontSize":50,"_lineHeight":70,"_N$horizontalAlign":1,"_N$verticalAlign":1}],{"__type__":"cc.SpriteFrame","content":{"name":"singleColor32","texture":"e3sh7xARVArJ+EZKvY0Hgz","rect":[0,0,32,32],"offset":[0,0],"originalSize":[32,32],"capInsets":[13,13,13,13]}}]
\ No newline at end of file
{"__type__":"cc.Asset","_name":"n_012","_native":".atlas"}
\ No newline at end of file
{"__type__":"cc.SpriteFrame","content":{"name":"n_03","texture":"16GEm8+9RP65UVhFHU39uk","rect":[3,3,358,165],"offset":[-109,0.5],"originalSize":[582,172],"capInsets":[0,0,0,0]}}
\ No newline at end of file
{"__type__":"sp.SkeletonData","_name":"n_05","_native":"raw-skeleton.json","_skeletonJson":{"skeleton":{"hash":"XCafvp93lr1CLcuMPvolkTbpgKc","spine":"3.6.53","width":362,"height":317,"images":"./lanjing/"},"bones":[{"name":"root"},{"name":"yan","parent":"root","x":-55.63,"y":109.09,"scaleX":0.5,"scaleY":0.5,"color":"ff0000ff"},{"name":"yan2","parent":"root","x":-55.63,"y":109.09,"scaleX":0.5,"scaleY":0.5,"color":"ff0000ff"},{"name":"yan3","parent":"root","x":-55.63,"y":93.21,"scaleX":0.5,"scaleY":0.5,"color":"ff0000ff"},{"name":"yanjiuyuan","parent":"root"}],"slots":[{"name":"yan","bone":"yan","color":"ffffff00","attachment":"yan"},{"name":"yan2","bone":"yan2","color":"ffffff00","attachment":"yan"},{"name":"yan3","bone":"yan3","color":"ffffff00","attachment":"yan"},{"name":"yanjiuyuan","bone":"yanjiuyuan","attachment":"yanjiuyuan"}],"skins":{"default":{"yan":{"yan":{"x":4.62,"y":-26.25,"rotation":90,"width":200,"height":143},"yan1":{"x":4.62,"y":-26.23,"rotation":90,"width":200,"height":143},"yan2":{"x":4.62,"y":-26.23,"rotation":90,"width":200,"height":143},"yan3":{"x":4.62,"y":-26.23,"rotation":90,"width":200,"height":143},"yan4":{"x":4.62,"y":-26.23,"rotation":90,"width":200,"height":143},"yan5":{"x":4.62,"y":-26.23,"rotation":90,"width":200,"height":143}},"yan2":{"yan":{"x":4.62,"y":-26.25,"rotation":90,"width":200,"height":143},"yan1":{"x":4.62,"y":-26.23,"rotation":90,"width":200,"height":143},"yan2":{"x":4.62,"y":-26.23,"rotation":90,"width":200,"height":143},"yan3":{"x":4.62,"y":-26.23,"rotation":90,"width":200,"height":143},"yan4":{"x":4.62,"y":-26.23,"rotation":90,"width":200,"height":143},"yan5":{"x":4.62,"y":-26.23,"rotation":90,"width":200,"height":143}},"yan3":{"yan":{"x":4.62,"y":-26.25,"rotation":90,"width":200,"height":143},"yan1":{"x":4.62,"y":-26.23,"rotation":90,"width":200,"height":143},"yan2":{"x":4.62,"y":-26.23,"rotation":90,"width":200,"height":143},"yan3":{"x":4.62,"y":-26.23,"rotation":90,"width":200,"height":143},"yan4":{"x":4.62,"y":-26.23,"rotation":90,"width":200,"height":143},"yan5":{"x":4.62,"y":-26.23,"rotation":90,"width":200,"height":143}},"yanjiuyuan":{"yanjiuyuan":{"x":25.27,"y":24.25,"width":362,"height":317}}}},"animations":{"await1":{"bones":{"yanjiuyuan":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0,"y":1.76,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":1,"y":1.01,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]}}},"await2":{"slots":{"yan":{"color":[{"time":0,"color":"ffffff00"},{"time":0.1667,"color":"ffffffff"},{"time":0.7667,"color":"ffffff00"},{"time":1,"color":"ffffff00"}],"attachment":[{"time":0,"name":"yan"},{"time":0.1667,"name":"yan"},{"time":0.2667,"name":"yan1"},{"time":0.3667,"name":"yan2"},{"time":0.4667,"name":"yan3"},{"time":0.5667,"name":"yan4"},{"time":0.6667,"name":"yan5"},{"time":0.7667,"name":null}]},"yan2":{"color":[{"time":0,"color":"ffffff00"},{"time":0.3,"color":"ffffffff"},{"time":0.9,"color":"ffffff00"},{"time":1,"color":"ffffff00"}],"attachment":[{"time":0,"name":"yan"},{"time":0.3,"name":"yan"},{"time":0.4,"name":"yan1"},{"time":0.5,"name":"yan2"},{"time":0.6,"name":"yan3"},{"time":0.7,"name":"yan4"},{"time":0.8,"name":"yan5"},{"time":0.9,"name":null}]},"yan3":{"color":[{"time":0,"color":"ffffff00"},{"time":0.4,"color":"ffffffff"},{"time":1,"color":"ffffff00"}],"attachment":[{"time":0,"name":"yan"},{"time":0.4,"name":"yan"},{"time":0.5,"name":"yan1"},{"time":0.6,"name":"yan2"},{"time":0.7,"name":"yan3"},{"time":0.8,"name":"yan4"},{"time":0.9,"name":"yan5"},{"time":1,"name":null}]}},"bones":{"yan":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.1667,"angle":0,"curve":"stepped"},{"time":0.7667,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0},{"time":0.1667,"x":0,"y":94.38},{"time":0.7667,"x":0,"y":223.79},{"time":1,"x":0,"y":235.8}],"scale":[{"time":0,"x":0,"y":0},{"time":0.1667,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.7667,"x":2.533,"y":2.533},{"time":1,"x":3,"y":3}]},"yan2":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.3,"angle":0,"curve":"stepped"},{"time":0.9,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0},{"time":0.3,"x":0,"y":61.67},{"time":0.9,"x":0,"y":223.79},{"time":1,"x":0,"y":235.8}],"scale":[{"time":0,"x":0,"y":0},{"time":0.3,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.9,"x":2.533,"y":2.533},{"time":1,"x":3,"y":3}]},"yan3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.4,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0},{"time":0.4,"x":0,"y":50.36},{"time":1,"x":0,"y":200.15}],"scale":[{"time":0,"x":0,"y":0},{"time":0.4,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":1,"x":2.533,"y":2.533}]},"yanjiuyuan":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0,"y":1.76,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":1,"y":1.01,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]}}}}},"_atlasText":"\nn_05.png\nsize: 1822,640\nformat: RGBA8888\nfilter: Linear,Linear\nrepeat: none\nyan\n rotate: false\n xy: 2, 2\n size: 200, 143\n orig: 200, 143\n offset: 0, 0\n index: -1\nyan1\n rotate: false\n xy: 366, 2\n size: 200, 143\n orig: 200, 143\n offset: 0, 0\n index: -1\nyan2\n rotate: false\n xy: 730, 2\n size: 200, 143\n orig: 200, 143\n offset: 0, 0\n index: -1\nyan3\n rotate: false\n xy: 1094, 2\n size: 200, 143\n orig: 200, 143\n offset: 0, 0\n index: -1\nyan4\n rotate: false\n xy: 1458, 2\n size: 200, 143\n orig: 200, 143\n offset: 0, 0\n index: -1\nyan5\n rotate: false\n xy: 2, 321\n size: 200, 143\n orig: 200, 143\n offset: 0, 0\n index: -1\nyanjiuyuan\n rotate: false\n xy: 366, 321\n size: 362, 317\n orig: 362, 317\n offset: 0, 0\n index: -1\n","textures":[{"__uuid__":"b1ZulTbBlB76E4Qu8UXemZ"}],"textureNames":["n_05.png"]}
\ No newline at end of file
{"__type__":"cc.SpriteFrame","content":{"name":"n_06","texture":"ddR12uH6xKBaQ/WeGV18fQ","rect":[3,3,721,290],"offset":[-108.5,21],"originalSize":[944,338],"capInsets":[0,0,0,0]}}
\ No newline at end of file
{"__type__":"sp.SkeletonData","_name":"n_02","_native":"raw-skeleton.json","_skeletonJson":{"skeleton":{"hash":"LAm1PkM9rgVdqZgEHda5+DGj1Do","spine":"3.6.53","width":311,"height":225.08,"images":"./lanjing/"},"bones":[{"name":"root"},{"name":"huotui4","parent":"root","length":40,"rotation":94.94,"x":4.58,"y":-47.91,"color":"ff00e5ff"},{"name":"bone2","parent":"huotui4","length":44.73,"rotation":1.15,"x":40.54,"y":-0.52,"color":"ff00e5ff"},{"name":"bone3","parent":"bone2","x":17.48,"y":32.16,"color":"ff00e5ff"},{"name":"bone4","parent":"bone2","x":30.88,"y":-26.23,"color":"ff00e5ff"},{"name":"huotui5","parent":"root","length":40,"rotation":94.94,"x":-79.92,"y":-7.96,"color":"ff00e5ff"},{"name":"bone5","parent":"huotui5","length":44.73,"rotation":1.15,"x":40.54,"y":-0.52,"color":"ff00e5ff"},{"name":"bone6","parent":"bone5","x":17.48,"y":32.16,"color":"ff00e5ff"},{"name":"bone7","parent":"bone5","x":30.88,"y":-26.23,"color":"ff00e5ff"},{"name":"huotui6","parent":"root","length":40,"rotation":94.94,"x":76.75,"y":-10.52,"color":"ff00e5ff"},{"name":"bone8","parent":"huotui6","length":44.73,"rotation":1.15,"x":40.54,"y":-0.52,"color":"ff00e5ff"},{"name":"bone9","parent":"bone8","x":17.48,"y":32.16,"color":"ff00e5ff"},{"name":"bone10","parent":"bone8","x":30.88,"y":-26.23,"color":"ff00e5ff"},{"name":"huotui7","parent":"root","length":40,"rotation":94.94,"x":3.54,"y":26.35,"color":"ff00e5ff"},{"name":"bone11","parent":"huotui7","length":44.73,"rotation":1.15,"x":40.54,"y":-0.52,"color":"ff00e5ff"},{"name":"bone12","parent":"bone11","x":17.48,"y":32.16,"color":"ff00e5ff"},{"name":"bone13","parent":"bone11","x":30.88,"y":-26.23,"color":"ff00e5ff"},{"name":"huotui1","parent":"root","color":"ff0000ff"},{"name":"huotui3","parent":"huotui1","x":-4.32,"y":61.7,"color":"ff0000ff"}],"slots":[{"name":"huotui3","bone":"huotui3","attachment":"huotui3"},{"name":"huotui1","bone":"huotui1","attachment":"huotui1"},{"name":"huotui7","bone":"huotui7","attachment":"huotui4"},{"name":"huotui6","bone":"huotui6","attachment":"huotui4"},{"name":"huotui5","bone":"huotui5","attachment":"huotui4"},{"name":"huotui4","bone":"huotui4","attachment":"huotui4"}],"skins":{"default":{"huotui1":{"huotui1":{"x":1,"y":-13,"width":311,"height":162}},"huotui3":{"huotui3":{"x":5.18,"y":-13.49,"width":299,"height":99}},"huotui4":{"huotui4":{"type":"mesh","uvs":[1,0.27046,1,0.39904,0.97717,0.53415,0.93435,0.65358,0.89148,0.75472,0.91505,0.85979,0.84051,0.96154,0.66581,1,0.37679,0.97761,0.32769,0.78892,0.37913,0.70523,0.17374,0.66324,0.02481,0.52072,0.01378,0.42588,0,0.30741,0.0939,0.19621,0.17439,0.10088,0.5501,0,0.87451,0.06539,0.9413,0.12064,1,0.16921,0.64084,0.54588,0.5928,0.26906,0.65957,0.778,0.65175,0.38777,0.39601,0.18581,0.42044,0.39988,0.50111,0.64854,0.16501,0.41621,0.57411,0.15127,0.77773,0.13105,0.84338,0.42067,0.61322,0.31017,0.8106,0.27605],"triangles":[31,33,0,33,19,0,33,30,19,19,20,0,10,11,26,12,28,11,11,28,26,12,13,28,13,14,28,14,15,28,25,28,15,28,25,26,24,33,31,30,18,19,30,17,18,22,30,33,21,24,31,21,26,24,25,15,16,26,32,24,26,22,32,26,25,22,24,32,33,32,22,33,25,29,22,22,29,30,29,25,17,25,16,17,29,17,30,2,31,1,1,31,0,27,26,21,3,21,2,8,23,7,7,23,6,8,9,23,5,23,4,5,6,23,23,10,27,23,9,10,27,21,23,23,21,4,27,10,26,4,21,3,21,31,2],"vertices":[1,4,-1.54,-14.25,1,1,2,14.76,-38.93,1,2,1,40.92,-35.63,0.85,2,-0.32,-35.12,0.15,1,1,27.71,-30.37,1,1,1,16.58,-25.27,1,1,1,4.45,-26.49,1,1,1,-6.49,-18.37,1,1,1,-9.41,-1.28,1,1,1,-4.48,26.14,1,1,1,17.36,28.99,1,1,1,26.44,23.24,1,1,3,-24.26,10.98,1,1,3,-6.58,23.47,1,1,3,4.28,23.38,1,1,3,17.85,23.26,1,1,3,29.5,12.95,1,1,2,56.97,36.28,1,1,2,64.58,-0.81,1,1,2,53.86,-30.98,1,1,4,16.04,-10.46,1,1,4,9.93,-15.47,1,2,1,42.37,-3.35,0.78,2,1.77,-2.87,0.22,1,2,33.64,-1.63,1,1,1,15.85,-2.86,1,1,2,19.59,-5.82,1,1,2,45.08,16.15,1,1,3,3.09,-15.76,1,1,1,31.87,11.02,1,1,3,3.84,8.83,1,1,2,47.18,-1.27,1,1,2,47.4,-20.95,1,2,2,13.9,-23.72,0.94,4,-16.98,2.52,0.06,1,2,28.77,-3.08,1,1,4,-0.25,3.9,1],"hull":21,"edges":[32,34,12,14,22,24,10,12,34,36,14,16,16,18,18,20,20,22,4,6,42,4,14,46,46,42,18,46,6,8,8,10,46,8,24,26,26,28,42,48,32,50,50,44,52,48,50,52,20,54,54,42,52,54,28,30,30,32,26,56,56,52,30,56,56,22,34,58,58,44,50,58,58,60,36,38,38,40,60,38,48,62,62,2,44,64,64,48,60,66,66,62,64,66,2,0,0,40,66,0,2,4],"width":96,"height":114}},"huotui5":{"huotui4":{"type":"mesh","uvs":[1,0.27046,1,0.39904,0.97717,0.53415,0.93435,0.65358,0.89148,0.75472,0.91505,0.85979,0.84051,0.96154,0.66581,1,0.37679,0.97761,0.32769,0.78892,0.37913,0.70523,0.17374,0.66324,0.02481,0.52072,0.01378,0.42588,0,0.30741,0.0939,0.19621,0.17439,0.10088,0.5501,0,0.87451,0.06539,0.9413,0.12064,1,0.16921,0.64084,0.54588,0.5928,0.26906,0.65957,0.778,0.65175,0.38777,0.39601,0.18581,0.42044,0.39988,0.50111,0.64854,0.16501,0.41621,0.57411,0.15127,0.77773,0.13105,0.84338,0.42067,0.61322,0.31017,0.8106,0.27605],"triangles":[31,33,0,33,19,0,33,30,19,19,20,0,10,11,26,12,28,11,11,28,26,12,13,28,13,14,28,14,15,28,25,28,15,28,25,26,24,33,31,30,18,19,30,17,18,22,30,33,21,24,31,21,26,24,25,15,16,26,32,24,26,22,32,26,25,22,24,32,33,32,22,33,25,29,22,22,29,30,29,25,17,25,16,17,29,17,30,2,31,1,1,31,0,27,26,21,3,21,2,8,23,7,7,23,6,8,9,23,5,23,4,5,6,23,23,10,27,23,9,10,27,21,23,23,21,4,27,10,26,4,21,3,21,31,2],"vertices":[1,8,-1.54,-14.25,1,1,6,14.76,-38.93,1,2,5,40.92,-35.63,0.85,6,-0.32,-35.12,0.15,1,5,27.71,-30.37,1,1,5,16.58,-25.27,1,1,5,4.45,-26.49,1,1,5,-6.49,-18.37,1,1,5,-9.41,-1.28,1,1,5,-4.48,26.14,1,1,5,17.36,28.99,1,1,5,26.44,23.24,1,1,7,-24.26,10.98,1,1,7,-6.58,23.47,1,1,7,4.28,23.38,1,1,7,17.85,23.26,1,1,7,29.5,12.95,1,1,6,56.97,36.28,1,1,6,64.58,-0.81,1,1,6,53.86,-30.98,1,1,8,16.04,-10.46,1,1,8,9.93,-15.47,1,2,5,42.37,-3.35,0.78,6,1.77,-2.87,0.22,1,6,33.64,-1.63,1,1,5,15.85,-2.86,1,1,6,19.59,-5.82,1,1,6,45.08,16.15,1,1,7,3.09,-15.76,1,1,5,31.87,11.02,1,1,7,3.84,8.83,1,1,6,47.18,-1.27,1,1,6,47.4,-20.95,1,2,6,13.9,-23.72,0.94,8,-16.98,2.52,0.06,1,6,28.77,-3.08,1,1,8,-0.25,3.9,1],"hull":21,"edges":[32,34,12,14,22,24,10,12,34,36,14,16,16,18,18,20,20,22,4,6,42,4,14,46,46,42,18,46,6,8,8,10,46,8,24,26,26,28,42,48,32,50,50,44,52,48,50,52,20,54,54,42,52,54,28,30,30,32,26,56,56,52,30,56,56,22,34,58,58,44,50,58,58,60,36,38,38,40,60,38,48,62,62,2,44,64,64,48,60,66,66,62,64,66,2,0,0,40,66,0,2,4],"width":96,"height":114}},"huotui6":{"huotui4":{"type":"mesh","uvs":[1,0.27046,1,0.39904,0.97717,0.53415,0.93435,0.65358,0.89148,0.75472,0.91505,0.85979,0.84051,0.96154,0.66581,1,0.37679,0.97761,0.32769,0.78892,0.37913,0.70523,0.17374,0.66324,0.02481,0.52072,0.01378,0.42588,0,0.30741,0.0939,0.19621,0.17439,0.10088,0.5501,0,0.87451,0.06539,0.9413,0.12064,1,0.16921,0.64084,0.54588,0.5928,0.26906,0.65957,0.778,0.65175,0.38777,0.39601,0.18581,0.42044,0.39988,0.50111,0.64854,0.16501,0.41621,0.57411,0.15127,0.77773,0.13105,0.84338,0.42067,0.61322,0.31017,0.8106,0.27605],"triangles":[31,33,0,33,19,0,33,30,19,19,20,0,10,11,26,12,28,11,11,28,26,12,13,28,13,14,28,14,15,28,25,28,15,28,25,26,24,33,31,30,18,19,30,17,18,22,30,33,21,24,31,21,26,24,25,15,16,26,32,24,26,22,32,26,25,22,24,32,33,32,22,33,25,29,22,22,29,30,29,25,17,25,16,17,29,17,30,2,31,1,1,31,0,27,26,21,3,21,2,8,23,7,7,23,6,8,9,23,5,23,4,5,6,23,23,10,27,23,9,10,27,21,23,23,21,4,27,10,26,4,21,3,21,31,2],"vertices":[1,12,-1.54,-14.25,1,1,10,14.76,-38.93,1,2,9,40.92,-35.63,0.85,10,-0.32,-35.12,0.15,1,9,27.71,-30.37,1,1,9,16.58,-25.27,1,1,9,4.45,-26.49,1,1,9,-6.49,-18.37,1,1,9,-9.41,-1.28,1,1,9,-4.48,26.14,1,1,9,17.36,28.99,1,1,9,26.44,23.24,1,1,11,-24.26,10.98,1,1,11,-6.58,23.47,1,1,11,4.28,23.38,1,1,11,17.85,23.26,1,1,11,29.5,12.95,1,1,10,56.97,36.28,1,1,10,64.58,-0.81,1,1,10,53.86,-30.98,1,1,12,16.04,-10.46,1,1,12,9.93,-15.47,1,2,9,42.37,-3.35,0.78,10,1.77,-2.87,0.22,1,10,33.64,-1.63,1,1,9,15.85,-2.86,1,1,10,19.59,-5.82,1,1,10,45.08,16.15,1,1,11,3.09,-15.76,1,1,9,31.87,11.02,1,1,11,3.84,8.83,1,1,10,47.18,-1.27,1,1,10,47.4,-20.95,1,2,10,13.9,-23.72,0.94,12,-16.98,2.52,0.06,1,10,28.77,-3.08,1,1,12,-0.25,3.9,1],"hull":21,"edges":[32,34,12,14,22,24,10,12,34,36,14,16,16,18,18,20,20,22,4,6,42,4,14,46,46,42,18,46,6,8,8,10,46,8,24,26,26,28,42,48,32,50,50,44,52,48,50,52,20,54,54,42,52,54,28,30,30,32,26,56,56,52,30,56,56,22,34,58,58,44,50,58,58,60,36,38,38,40,60,38,48,62,62,2,44,64,64,48,60,66,66,62,64,66,2,0,0,40,66,0,2,4],"width":96,"height":114}},"huotui7":{"huotui4":{"type":"mesh","uvs":[1,0.27046,1,0.39904,0.97717,0.53415,0.93435,0.65358,0.89148,0.75472,0.91505,0.85979,0.84051,0.96154,0.66581,1,0.37679,0.97761,0.32769,0.78892,0.37913,0.70523,0.17374,0.66324,0.02481,0.52072,0.01378,0.42588,0,0.30741,0.0939,0.19621,0.17439,0.10088,0.5501,0,0.87451,0.06539,0.9413,0.12064,1,0.16921,0.64084,0.54588,0.5928,0.26906,0.65957,0.778,0.65175,0.38777,0.39601,0.18581,0.42044,0.39988,0.50111,0.64854,0.16501,0.41621,0.57411,0.15127,0.77773,0.13105,0.84338,0.42067,0.61322,0.31017,0.8106,0.27605],"triangles":[31,33,0,33,19,0,33,30,19,19,20,0,10,11,26,12,28,11,11,28,26,12,13,28,13,14,28,14,15,28,25,28,15,28,25,26,24,33,31,30,18,19,30,17,18,22,30,33,21,24,31,21,26,24,25,15,16,26,32,24,26,22,32,26,25,22,24,32,33,32,22,33,25,29,22,22,29,30,29,25,17,25,16,17,29,17,30,2,31,1,1,31,0,27,26,21,3,21,2,8,23,7,7,23,6,8,9,23,5,23,4,5,6,23,23,10,27,23,9,10,27,21,23,23,21,4,27,10,26,4,21,3,21,31,2],"vertices":[1,16,-1.54,-14.25,1,1,14,14.76,-38.93,1,2,13,40.92,-35.63,0.85,14,-0.32,-35.12,0.15,1,13,27.71,-30.37,1,1,13,16.58,-25.27,1,1,13,4.45,-26.49,1,1,13,-6.49,-18.37,1,1,13,-9.41,-1.28,1,1,13,-4.48,26.14,1,1,13,17.36,28.99,1,1,13,26.44,23.24,1,1,15,-24.26,10.98,1,1,15,-6.58,23.47,1,1,15,4.28,23.38,1,1,15,17.85,23.26,1,1,15,29.5,12.95,1,1,14,56.97,36.28,1,1,14,64.58,-0.81,1,1,14,53.86,-30.98,1,1,16,16.04,-10.46,1,1,16,9.93,-15.47,1,2,13,42.37,-3.35,0.78,14,1.77,-2.87,0.22,1,14,33.64,-1.63,1,1,13,15.85,-2.86,1,1,14,19.59,-5.82,1,1,14,45.08,16.15,1,1,15,3.09,-15.76,1,1,13,31.87,11.02,1,1,15,3.84,8.83,1,1,14,47.18,-1.27,1,1,14,47.4,-20.95,1,2,14,13.9,-23.72,0.94,16,-16.98,2.52,0.06,1,14,28.77,-3.08,1,1,16,-0.25,3.9,1],"hull":21,"edges":[32,34,12,14,22,24,10,12,34,36,14,16,16,18,18,20,20,22,4,6,42,4,14,46,46,42,18,46,6,8,8,10,46,8,24,26,26,28,42,48,32,50,50,44,52,48,50,52,20,54,54,42,52,54,28,30,30,32,26,56,56,52,30,56,56,22,34,58,58,44,50,58,58,60,36,38,38,40,60,38,48,62,62,2,44,64,64,48,60,66,66,62,64,66,2,0,0,40,66,0,2,4],"width":96,"height":114}}}},"animations":{"await1":{"bones":{"huotui4":{"rotate":[{"time":0,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":-0.84,"curve":[0.25,0,0.75,1]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":1.111,"y":1.026,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui1":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"huotui3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone2":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":6.64,"y":0.12,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.5,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.245,0,0.712,0.84]},{"time":0.5,"x":-0.42,"y":1.07,"curve":[0.359,0.64,0.694,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.5,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.5,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":-0.54,"y":0.06,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.5,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"huotui5":{"rotate":[{"time":0,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":-0.84,"curve":[0.25,0,0.75,1]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.111,"y":1.026,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone6":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.4333,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.245,0,0.712,0.84]},{"time":0.4333,"x":-0.42,"y":1.07,"curve":[0.359,0.64,0.694,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.4333,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone7":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.4333,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":-0.54,"y":0.06,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.4333,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":6.64,"y":0.12,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.3333,"angle":-0.84,"curve":[0.25,0,0.75,1]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":1.111,"y":1.026,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone9":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.3333,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.245,0,0.712,0.84]},{"time":0.3333,"x":-0.42,"y":1.07,"curve":[0.359,0.64,0.694,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.3333,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone10":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.3333,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":-0.54,"y":0.06,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.3333,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone8":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":6.64,"y":0.12,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.5667,"angle":-0.84,"curve":[0.25,0,0.75,1]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":1.111,"y":1.026,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone12":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.5667,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.245,0,0.712,0.84]},{"time":0.5667,"x":-0.42,"y":1.07,"curve":[0.359,0.64,0.694,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.5667,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone13":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.5667,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":-0.54,"y":0.06,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.5667,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone11":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":6.64,"y":0.12,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]}},"deform":{"default":{"huotui4":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"offset":30,"vertices":[2.21181,0.25418,0,0,3.58331,-0.88663],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui5":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"offset":30,"vertices":[2.21181,0.25418,0,0,3.58331,-0.88663],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui6":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.3333,"offset":30,"vertices":[2.21181,0.25418,0,0,3.58331,-0.88663],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui7":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.5667,"offset":30,"vertices":[2.21181,0.25418,0,0,3.58331,-0.88663],"curve":[0.25,0,0.75,1]},{"time":1}]}}}},"await2":{"bones":{"huotui4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.1333,"angle":0,"curve":"stepped"},{"time":0.2667,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":-1.91,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.6667,"angle":-1.9,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.1333,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":0,"y":3.68,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0,"y":18.15,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":0,"y":7.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.87,"y":1.108,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":1.205,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.319,"y":1.079,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0.824,"y":1.089,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":1.097,"y":1.105,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui1":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"huotui3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"bone2":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4,"angle":0.73,"curve":[0.25,0,0.75,1]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-5.85,"y":0.15,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":14.09,"y":-0.53,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":12.1,"y":-0.56,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":-6.24,"y":0.17,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":6.35,"y":0.02,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-0.85,"y":-1.44,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":-2.53,"y":0.41,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":-2.55,"y":2.92,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":-4.16,"y":-5.57,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":1.44,"y":-2.52,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-3.73,"y":0.38,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":3.82,"y":-0.17,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":4.03,"y":-0.27,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":-4.38,"y":0.62,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":-0.35,"y":0.11,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"huotui5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.1,"angle":0,"curve":"stepped"},{"time":0.2333,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.3333,"angle":-1.91,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":-1.9,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.1,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":0,"y":3.68,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":0,"y":18.15,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0,"y":7.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.87,"y":1.108,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.205,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":1.319,"y":1.079,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":0.824,"y":1.089,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":1.097,"y":1.105,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone6":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":-0.85,"y":-1.44,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":-2.53,"y":0.41,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":-2.55,"y":2.92,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":-4.16,"y":-5.57,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":1.44,"y":-2.52,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"bone7":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":-3.73,"y":0.38,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":3.82,"y":-0.17,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":4.03,"y":-0.27,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":-4.38,"y":0.62,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":-0.35,"y":0.11,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3333,"angle":0.73,"curve":[0.25,0,0.75,1]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":-5.85,"y":0.15,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":14.09,"y":-0.53,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":12.1,"y":-0.56,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":-6.24,"y":0.17,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":6.35,"y":0.02,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.1,"angle":0,"curve":"stepped"},{"time":0.2,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.2667,"angle":-1.91,"curve":[0.25,0,0.75,1]},{"time":0.3667,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.4667,"angle":-1.9,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.1,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":0,"y":3.68,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":0,"y":18.15,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":0,"y":7.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.87,"y":1.108,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":1.205,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":1.319,"y":1.079,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":0.824,"y":1.089,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":1.097,"y":1.105,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone9":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":-0.85,"y":-1.44,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":-2.53,"y":0.41,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":-2.55,"y":2.92,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":-4.16,"y":-5.57,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":1.44,"y":-2.52,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"bone10":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":-3.73,"y":0.38,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":3.82,"y":-0.17,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":4.03,"y":-0.27,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":-4.38,"y":0.62,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":-0.35,"y":0.11,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"bone8":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.2667,"angle":0.73,"curve":[0.25,0,0.75,1]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":-5.85,"y":0.15,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":14.09,"y":-0.53,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":12.1,"y":-0.56,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":-6.24,"y":0.17,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":6.35,"y":0.02,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.1333,"angle":0,"curve":"stepped"},{"time":0.3,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":-1.91,"curve":[0.25,0,0.75,1]},{"time":0.6,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.7333,"angle":-1.9,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.1333,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":0,"y":3.68,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":0,"y":18.15,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.7333,"x":0,"y":7.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.87,"y":1.108,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":1.205,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.319,"y":1.079,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":0.824,"y":1.089,"curve":[0.25,0,0.75,1]},{"time":0.7333,"x":1.097,"y":1.105,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone12":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-0.85,"y":-1.44,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":-2.53,"y":0.41,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":-2.55,"y":2.92,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":-4.16,"y":-5.57,"curve":[0.25,0,0.75,1]},{"time":0.7333,"x":1.44,"y":-2.52,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"bone13":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-3.73,"y":0.38,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":3.82,"y":-0.17,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":4.03,"y":-0.27,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":-4.38,"y":0.62,"curve":[0.25,0,0.75,1]},{"time":0.7333,"x":-0.35,"y":0.11,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"bone11":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"angle":0.73,"curve":[0.25,0,0.75,1]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-5.85,"y":0.15,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":14.09,"y":-0.53,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":12.1,"y":-0.56,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":-6.24,"y":0.17,"curve":[0.25,0,0.75,1]},{"time":0.7333,"x":6.35,"y":0.02,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.7333,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]}},"deform":{"default":{"huotui4":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.2667,"offset":30,"vertices":[2.21181,0.25418,0,0,3.58331,-0.88663],"curve":[0.25,0,0.75,1]},{"time":0.8333}]},"huotui5":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.2333,"offset":30,"vertices":[2.21181,0.25418,0,0,3.58331,-0.88663],"curve":[0.25,0,0.75,1]},{"time":0.8333}]},"huotui6":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.2,"offset":30,"vertices":[2.21181,0.25418,0,0,3.58331,-0.88663],"curve":[0.25,0,0.75,1]},{"time":0.8333}]},"huotui7":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3,"offset":30,"vertices":[2.21181,0.25418,0,0,3.58331,-0.88663],"curve":[0.25,0,0.75,1]},{"time":0.8333}]}}}}}},"_atlasText":"\nn_02.png\nsize: 941,166\nformat: RGBA8888\nfilter: Linear,Linear\nrepeat: none\nhuotui1\n rotate: false\n xy: 2, 2\n size: 311, 162\n orig: 311, 162\n offset: 0, 0\n index: -1\nhuotui3\n rotate: false\n xy: 315, 2\n size: 299, 99\n orig: 299, 99\n offset: 0, 0\n index: -1\nhuotui4\n rotate: false\n xy: 628, 2\n size: 96, 114\n orig: 96, 114\n offset: 0, 0\n index: -1\n","textures":[{"__uuid__":"c7eWZKPJNBZrkzZYnL+7Eh"}],"textureNames":["n_02.png"]}
\ No newline at end of file
{"__type__":"cc.SpriteFrame","content":{"name":"n_04","texture":"15zyiJLxBDKYjJd2qeVQsz","rect":[3,3,725,294],"offset":[-111,21],"originalSize":[953,342],"capInsets":[0,0,0,0]}}
\ No newline at end of file
{"__type__":"cc.Asset","_name":"n_011","_native":".atlas"}
\ No newline at end of file
{"__type__":"cc.Asset","_name":"n_07","_native":".atlas"}
\ No newline at end of file
{"__type__":"cc.Asset","_name":"n_03","_native":".atlas"}
\ No newline at end of file
{"__type__":"sp.SkeletonData","_name":"n_011","_native":"raw-skeleton.json","_skeletonJson":{"skeleton":{"hash":"t+fPnNsr4VhXIyNM06Y69xWzMm8","spine":"3.6.53","width":306.64,"height":228.05,"images":"./lanjing/"},"bones":[{"name":"root"},{"name":"huotui4","parent":"root","length":40,"rotation":91.49,"x":83.86,"y":-11.2,"color":"ff00e5ff"},{"name":"bone2","parent":"huotui4","length":44.73,"rotation":-0.06,"x":40.42,"y":0.12,"color":"ff00e5ff"},{"name":"huotui5","parent":"root","length":40,"rotation":91.49,"x":-89.73,"y":-2.67,"color":"ff00e5ff"},{"name":"bone3","parent":"huotui5","length":44.73,"rotation":-0.06,"x":40.42,"y":0.12,"color":"ff00e5ff"},{"name":"huotui6","parent":"root","length":40,"rotation":91.49,"x":-0.72,"y":-51.17,"color":"ff00e5ff"},{"name":"bone4","parent":"huotui6","length":44.73,"rotation":-0.06,"x":40.42,"y":0.12,"color":"ff00e5ff"},{"name":"huotui7","parent":"root","length":40,"rotation":91.49,"x":-8.18,"y":32.51,"color":"ff00e5ff"},{"name":"bone5","parent":"huotui7","length":44.73,"rotation":-0.06,"x":40.42,"y":0.12,"color":"ff00e5ff"},{"name":"huotui1","parent":"root","color":"ff0000ff"},{"name":"huotui2","parent":"root","x":94.75,"y":-51.97,"color":"0017ffff"},{"name":"huotui3","parent":"huotui1","x":-4.32,"y":61.7,"color":"ff0000ff"},{"name":"huotui8","parent":"root","x":-0.98,"y":-68.91}],"slots":[{"name":"huotui3","bone":"huotui3","attachment":"huotui3"},{"name":"huotui1","bone":"huotui1","attachment":"huotui1"},{"name":"huotui4","bone":"huotui4","attachment":"huotui4"},{"name":"huotui7","bone":"huotui7","attachment":"huotui4"},{"name":"huotui6","bone":"huotui6","attachment":"huotui4"},{"name":"huotui5","bone":"huotui5","attachment":"huotui4"},{"name":"huotui8","bone":"huotui8","attachment":"huotui5"},{"name":"huotui2","bone":"huotui2","attachment":"huotui2"}],"skins":{"default":{"huotui1":{"huotui1":{"x":1,"y":-13,"width":304,"height":161}},"huotui2":{"huotui2":{"type":"mesh","uvs":[0.81953,0.0301,1,0.16793,1,0.4357,0.68163,0.69679,0.44486,0.89762,0.26517,1,0,0.80055,0,0.68674,0.00487,0.50617,0.66893,0.02929,0.76739,0,0.15718,0.61729,0.28075,0.71092,0.86998,0.25852,0.72125,0.14728,0.21077,0.64948,0.7768,0.18755,0.6396,0.20284,0.68816,0.28049,0.74072,0.34807,0.47501,0.31079,0.53403,0.37474,0.57686,0.46938,0.31056,0.45181,0.3561,0.5331,0.41351,0.60707],"triangles":[14,9,10,14,10,0,16,14,0,16,0,1,17,9,14,13,16,1,18,17,14,18,14,16,17,20,9,21,20,17,19,18,16,19,16,13,18,21,17,13,1,2,9,20,8,19,22,21,19,21,18,8,20,23,21,24,23,21,23,20,24,21,22,25,24,22,11,8,23,15,11,23,24,15,23,12,15,24,7,8,11,3,22,19,25,22,3,2,3,19,2,19,13,25,12,24,15,6,7,4,25,3,12,25,4,12,6,15,5,12,4,15,7,11,12,5,6],"vertices":[1,10,38.38,28.39,1,1,10,58.96,18.46,1,1,10,58.96,-0.82,1,1,10,22.66,-19.61,1,1,10,-4.33,-34.07,1,1,10,-24.81,-41.45,1,1,10,-55.04,-27.08,1,1,10,-55.04,-18.89,1,1,10,-54.49,-5.89,1,1,10,21.21,28.45,1,1,10,32.44,30.55,1,1,10,-37.13,-13.89,1,1,10,-23.04,-20.63,1,1,10,44.13,11.94,1,1,10,27.18,19.95,1,1,10,-31.02,-16.21,1,1,10,33.51,17.05,1,1,10,17.87,15.95,1,1,10,23.41,10.36,1,1,10,29.4,5.49,1,1,10,-0.89,8.18,1,1,10,5.84,3.57,1,1,10,10.72,-3.24,1,1,10,-19.64,-1.98,1,1,10,-14.45,-7.83,1,1,10,-7.9,-13.15,1],"hull":11,"edges":[12,10,10,8,8,6,6,4,16,18,12,14,14,16,14,22,28,18,4,2,26,2,26,4,18,20,0,28,20,0,0,2,16,22,24,10,22,30,30,24,26,32,32,28,34,28,36,32,34,36,38,26,36,38,40,34,42,36,40,42,44,38,42,44,22,46,46,40,30,48,48,42,46,48,24,50,50,44,48,50],"width":112,"height":70}},"huotui3":{"huotui3":{"x":5.18,"y":-13.49,"width":301,"height":100}},"huotui4":{"huotui4":{"type":"mesh","uvs":[1,0.39477,1,0.56679,1,0.76248,0.84762,0.97899,0.51664,1,0.22682,1,0,0.7652,0,0.57383,0,0.3771,0.06237,0.20973,0.15791,0.03629,0.5202,0,0.87906,0.00955,0.94764,0.21495,0.51148,0.20877,0.50764,0.39536,0.50814,0.58036,0.51452,0.76232],"triangles":[5,17,4,4,17,3,5,6,17,3,17,2,6,16,17,6,7,16,2,17,1,17,16,1,7,15,16,16,15,1,7,8,15,15,0,1,15,13,0,15,14,13,8,9,15,15,9,14,13,14,12,14,11,12,9,10,14,14,10,11],"vertices":[2,1,61.15,-49.06,0.1445,2,20.79,-49.16,0.8555,2,1,42.09,-47.95,0.41196,2,1.73,-48.07,0.58804,2,1,20.41,-46.68,0.74628,2,-19.96,-46.83,0.25372,2,1,-2.76,-31.13,0.9649,2,-43.14,-31.31,0.0351,2,1,-3.29,-0.27,0.99969,2,-43.71,-0.44,0.00031,2,1,-1.72,26.64,0.86279,2,-42.17,26.47,0.13721,2,1,25.53,46.18,0.40209,2,-14.94,46.04,0.59791,2,1,46.74,44.94,0.12835,2,6.27,44.82,0.87165,2,1,68.54,43.66,0.00544,2,28.07,43.57,0.99456,1,2,46.29,36.72,1,1,2,65,26.75,1,1,2,67.09,-7.12,1,1,2,64.12,-40.38,1,2,1,81.36,-45.37,0.02147,2,41,-45.44,0.97853,1,2,44,-4.99,1,1,2,23.35,-3.45,1,1,2,2.84,-2.32,1,1,1,23.06,-1.61,1],"hull":14,"edges":[4,6,8,10,6,8,20,22,18,20,28,22,18,28,24,26,28,26,30,28,16,30,30,0,2,4,32,30,2,32,32,14,10,12,12,14,8,34,34,32,12,34,34,4,14,16,16,18,26,0,22,24,0,2],"width":93,"height":111}},"huotui5":{"huotui4":{"type":"mesh","uvs":[1,0.40699,1,0.5891,1,0.77801,0.7274,1,0.51664,1,0.24854,0.99049,0,0.78473,0,0.58529,0,0.38082,0.04267,0.20627,0.18527,0,0.51336,0,0.86766,0,0.94721,0.21495,0.51148,0.20877,0.50992,0.38199,0.50814,0.58036,0.51452,0.76232],"triangles":[2,3,17,5,17,4,3,4,17,5,6,17,17,7,16,17,6,7,17,1,2,17,16,1,1,16,0,7,8,16,16,15,0,16,8,15,15,13,0,8,9,15,15,14,13,15,9,14,13,14,12,14,11,12,9,10,14,14,10,11],"vertices":[2,3,61.18,-47.17,0.46121,4,20.81,-47.27,0.53879,2,3,40.97,-46.64,0.79854,4,0.6,-46.77,0.20146,2,3,20.01,-46.1,0.97987,4,-20.36,-46.24,0.02013,1,3,-3.97,-20.11,1,2,3,-3.45,-0.52,0.99989,4,-43.87,-0.69,0.00011,2,3,-1.75,24.38,0.87258,4,-42.19,24.21,0.12742,2,3,21.68,46.89,0.43939,4,-18.78,46.74,0.56061,2,3,43.82,46.31,0.15175,4,3.35,46.19,0.84825,2,3,66.5,45.72,0.00712,4,26.04,45.63,0.99288,1,4,45.31,41.18,1,1,4,67.86,27.35,1,2,3,107.52,-3.11,0.00009,4,67.1,-3.16,0.99991,2,3,106.66,-36.05,0.03217,4,66.28,-36.1,0.96783,2,3,82.61,-42.82,0.16308,4,42.24,-42.9,0.83692,2,3,84.35,-2.33,0.00187,4,43.94,-2.4,0.99813,2,3,65.14,-1.68,0.00548,4,24.72,-1.78,0.99452,2,3,43.13,-0.94,0.1465,4,2.71,-1.06,0.8535,1,3,22.92,-1.01,1],"hull":14,"edges":[4,6,8,10,6,8,20,22,18,20,28,22,18,28,24,26,28,26,30,28,16,30,30,0,2,4,32,30,2,32,32,14,10,12,12,14,8,34,34,32,12,34,34,4,14,16,16,18,26,0,22,24,0,2],"width":93,"height":111}},"huotui6":{"huotui4":{"type":"mesh","uvs":[0.99523,0.41066,1,0.60344,1,0.76057,0.88151,1,0.51664,1,0.17729,0.99574,0,0.74082,0,0.57329,0,0.39831,0,0.19937,0.18527,0,0.51336,0,0.86766,0,0.97693,0.21495,0.51148,0.20877,0.50992,0.38199,0.50814,0.58036,0.51452,0.76232],"triangles":[2,3,17,5,17,4,3,4,17,5,6,17,6,16,17,2,17,1,17,16,1,6,7,16,16,0,1,7,8,16,16,15,0,16,8,15,15,13,0,8,9,15,15,14,13,15,9,14,13,14,12,14,11,12,9,10,14,14,10,11],"vertices":[2,5,60.77,-46.07,0.59028,6,20.41,-46.17,0.40972,2,5,39.37,-45.96,0.91394,6,-1,-46.08,0.08606,2,5,21.93,-45.5,0.99708,6,-18.43,-45.65,0.00292,1,5,-4.35,-33.8,1,1,5,-3.46,0.13,1,2,5,-2.17,31.66,0.96024,6,-42.62,31.49,0.03976,2,5,26.55,47.41,0.62616,6,-13.92,47.27,0.37384,2,5,45.14,46.92,0.32268,6,4.67,46.8,0.67732,2,5,64.55,46.42,0.07398,6,24.09,46.32,0.92602,2,5,86.63,45.84,0.00181,6,46.16,45.77,0.99819,1,6,67.85,27.99,1,2,5,107.51,-2.46,0.00328,6,67.09,-2.51,0.99672,2,5,106.65,-35.4,0.08223,6,66.27,-35.45,0.91777,2,5,82.53,-44.94,0.2599,6,42.17,-45.02,0.7401,2,5,84.35,-1.68,0.00329,6,43.93,-1.76,0.99671,2,5,65.13,-1.04,0.00681,6,24.71,-1.14,0.99319,2,5,43.12,-0.3,0.12254,6,2.71,-0.42,0.87746,1,5,22.92,-0.37,1],"hull":14,"edges":[4,6,8,10,6,8,20,22,18,20,28,22,18,28,24,26,28,26,30,28,16,30,30,0,2,4,32,30,2,32,32,14,10,12,12,14,8,34,34,32,12,34,34,4,14,16,16,18,26,0,22,24,0,2],"width":93,"height":111}},"huotui7":{"huotui4":{"type":"mesh","uvs":[1,0.38698,1,0.59354,0.99773,0.74156,0.81282,0.9819,0.51664,1,0.17075,0.9924,0,0.73652,0,0.57768,0,0.38119,0.04014,0.20406,0.18527,0,0.51336,0,0.86766,0,0.97253,0.21495,0.51148,0.20877,0.50992,0.38199,0.50814,0.58036,0.51452,0.76232],"triangles":[5,17,4,4,17,3,5,6,17,3,17,2,6,16,17,2,17,1,1,17,16,6,7,16,16,0,1,16,15,0,15,16,8,16,7,8,15,13,0,8,9,15,15,14,13,15,9,14,13,14,12,14,11,12,9,10,14,14,10,11],"vertices":[2,7,57.82,-49.08,0.1593,8,17.46,-49.18,0.8407,2,7,34.9,-48.48,0.52093,8,-5.46,-48.61,0.47907,2,7,18.48,-47.84,0.7562,8,-21.88,-47.99,0.2438,2,7,-7.74,-29.96,0.98356,8,-48.12,-30.13,0.01644,2,7,-9.03,-2.37,0.99981,8,-49.44,-2.55,0.00019,2,7,-7.35,29.77,0.86624,8,-47.8,29.59,0.13376,2,7,21.46,44.9,0.44869,8,-19.01,44.75,0.55131,2,7,39.09,44.44,0.18506,8,-1.38,44.31,0.81494,2,7,60.89,43.87,0.01099,8,20.42,43.77,0.98901,1,8,39.99,39.55,1,1,8,62.29,25.49,1,1,8,61.53,-5.01,1,1,8,60.71,-37.95,1,2,7,76.98,-47.02,0.02735,8,36.61,-47.11,0.97265,1,8,38.37,-4.26,1,1,8,19.15,-3.64,1,1,7,37.56,-2.79,1,1,7,17.35,-2.86,1],"hull":14,"edges":[4,6,8,10,6,8,20,22,18,20,28,22,18,28,24,26,28,26,30,28,16,30,30,0,2,4,32,30,2,32,32,14,10,12,12,14,8,34,34,32,12,34,34,4,14,16,16,18,26,0,22,24,0,2],"width":93,"height":111}},"huotui8":{"huotui5":{"x":-0.46,"y":29.5,"width":303,"height":101}}}},"animations":{"await1":{"bones":{"huotui4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"huotui1":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"huotui3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone2":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":6,"y":-0.09,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui2":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"huotui5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":6,"y":-0.09,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":6,"y":-0.09,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":6,"y":-0.09,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]}},"deform":{"default":{"huotui2":{"huotui2":[{"time":0,"offset":49,"vertices":[0.77],"curve":[0.25,0,0.75,1]},{"time":0.5,"offset":36,"vertices":[5.85198,4.00399,0,0,0,0,7.63398,5.23599,0,0,0,0,4.92798,-2.30999],"curve":[0.25,0,0.75,1]},{"time":1,"offset":49,"vertices":[0.77]}]},"huotui4":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.4667,"offset":38,"vertices":[3.60122,-0.81084],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui5":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"offset":36,"vertices":[3.60122,-0.81082],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui6":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"offset":36,"vertices":[3.60122,-0.81083],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui7":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.3667,"offset":38,"vertices":[3.60122,-0.81083],"curve":[0.25,0,0.75,1]},{"time":1}]}}}},"await2":{"bones":{"huotui4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":0,"y":15.8,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":0,"y":25.35,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":0,"y":11.4,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.019,"y":0.996,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":1.125,"y":0.969,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":0.938,"y":0.972,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui1":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"huotui3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"bone2":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"angle":1.58,"curve":[0.25,0,0.75,1]},{"time":0.2333,"angle":-0.6,"curve":"stepped"},{"time":0.3333,"angle":-0.6,"curve":[0.25,0,0.75,1]},{"time":0.4667,"angle":0.87,"curve":[0.25,0,0.75,1]},{"time":0.5667,"angle":-0.55,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":-4.82,"y":-0.03,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":6,"y":0.23,"curve":"stepped"},{"time":0.3333,"x":6,"y":0.23,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":-5.05,"y":0.6,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":6.91,"y":0.37,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.863,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.8333,"x":1,"y":1}]},"huotui2":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"huotui5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":0,"y":16.76,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":0,"y":28.68,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0,"y":4.73,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":1.019,"y":0.996,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":1.125,"y":0.969,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0.938,"y":0.972,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone3":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"angle":1.58,"curve":[0.25,0,0.75,1]},{"time":0.2,"angle":-0.6,"curve":"stepped"},{"time":0.3,"angle":-0.6,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":0.87,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":-0.55,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":-4.82,"y":-0.03,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":6,"y":0.23,"curve":"stepped"},{"time":0.3,"x":6,"y":0.23,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":-5.05,"y":0.6,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":6.91,"y":0.37,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.863,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.8333,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":0,"y":5.81,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":0,"y":24.45,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":0,"y":13.51,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.019,"y":0.996,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":1.125,"y":0.969,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":0.938,"y":0.972,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":1.58,"curve":[0.25,0,0.75,1]},{"time":0.2333,"angle":-0.6,"curve":"stepped"},{"time":0.3667,"angle":-0.6,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":0.87,"curve":[0.25,0,0.75,1]},{"time":0.6,"angle":-0.55,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-4.82,"y":-0.03,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":6,"y":0.23,"curve":"stepped"},{"time":0.3667,"x":6,"y":0.23,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":-5.05,"y":0.6,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":6.91,"y":0.37,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.863,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.8333,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":0,"y":5.81,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0,"y":11.55,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":0,"y":4.73,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":1.019,"y":0.996,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.125,"y":0.969,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":0.938,"y":0.972,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":1.58,"curve":[0.25,0,0.75,1]},{"time":0.2667,"angle":-0.6,"curve":"stepped"},{"time":0.4,"angle":-0.6,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":0.87,"curve":[0.25,0,0.75,1]},{"time":0.6667,"angle":-0.55,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-4.82,"y":-0.03,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":6,"y":0.23,"curve":"stepped"},{"time":0.4,"x":6,"y":0.23,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":-5.05,"y":0.6,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":6.91,"y":0.37,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.863,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.8333,"x":1,"y":1}]}},"deform":{"default":{"huotui2":{"huotui2":[{"time":0,"offset":49,"vertices":[0.77],"curve":[0.25,0,0.75,1]},{"time":0.4333,"offset":36,"vertices":[5.85198,4.00399,0,0,0,0,7.63398,5.23599,0,0,0,0,4.92798,-2.30999],"curve":[0.25,0,0.75,1]},{"time":0.8333,"offset":49,"vertices":[0.77]}]},"huotui4":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3333,"offset":38,"vertices":[3.60122,-0.81084],"curve":[0.25,0,0.75,1]},{"time":0.8333}]},"huotui5":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3,"offset":36,"vertices":[3.60122,-0.81082],"curve":[0.25,0,0.75,1]},{"time":0.8333}]},"huotui6":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3667,"offset":36,"vertices":[3.60122,-0.81083],"curve":[0.25,0,0.75,1]},{"time":0.8333}]},"huotui7":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4,"offset":38,"vertices":[3.60122,-0.81083],"curve":[0.25,0,0.75,1]},{"time":0.8333}]}}}}}},"_atlasText":"\nn_011.png\nsize: 920,328\nformat: RGBA8888\nfilter: Linear,Linear\nrepeat: none\nhuotui1\n rotate: false\n xy: 2, 2\n size: 304, 161\n orig: 304, 161\n offset: 0, 0\n index: -1\nhuotui2\n rotate: false\n xy: 308, 2\n size: 112, 70\n orig: 112, 70\n offset: 0, 0\n index: -1\nhuotui3\n rotate: false\n xy: 614, 2\n size: 301, 100\n orig: 301, 100\n offset: 0, 0\n index: -1\nhuotui4\n rotate: false\n xy: 2, 165\n size: 93, 111\n orig: 93, 111\n offset: 0, 0\n index: -1\nhuotui5\n rotate: false\n xy: 308, 165\n size: 303, 101\n orig: 303, 101\n offset: 0, 0\n index: -1\n","textures":[{"__uuid__":"76ORtaFaVOt4W79gSbIiHm"}],"textureNames":["n_011.png"]}
\ No newline at end of file
{"__type__":"sp.SkeletonData","_name":"n_012","_native":"raw-skeleton.json","_skeletonJson":{"skeleton":{"hash":"zOwGjI5DmTtbqllZXhxLWaI9OdE","spine":"3.6.53","width":302,"height":208.65,"images":"./lanjing/"},"bones":[{"name":"root"},{"name":"huotui4","parent":"root","length":40,"rotation":91.49,"x":83.86,"y":-11.2,"color":"ff00e5ff"},{"name":"bone2","parent":"huotui4","length":38,"rotation":-0.06,"x":40.42,"y":0.12,"color":"ff00e5ff"},{"name":"huotui5","parent":"root","length":40,"rotation":91.49,"x":-89.73,"y":-2.67,"color":"ff00e5ff"},{"name":"bone3","parent":"huotui5","length":38,"rotation":-0.06,"x":40.42,"y":0.12,"color":"ff00e5ff"},{"name":"huotui6","parent":"root","length":40,"rotation":91.49,"x":-0.72,"y":-51.17,"color":"ff00e5ff"},{"name":"bone4","parent":"huotui6","length":38,"rotation":-0.06,"x":40.42,"y":0.12,"color":"ff00e5ff"},{"name":"huotui7","parent":"root","length":40,"rotation":91.49,"x":-8.18,"y":32.51,"color":"ff00e5ff"},{"name":"bone5","parent":"huotui7","length":38,"rotation":-0.06,"x":40.42,"y":0.12,"color":"ff00e5ff"},{"name":"huotui1","parent":"root","color":"ff0000ff"},{"name":"huotui3","parent":"huotui1","x":-4.32,"y":61.7,"color":"ff0000ff"},{"name":"huotui8","parent":"root","x":-0.98,"y":-68.91}],"slots":[{"name":"huotui3","bone":"huotui3","attachment":"huotui3"},{"name":"huotui1","bone":"huotui1","attachment":"huotui1"},{"name":"huotui4","bone":"huotui4","attachment":"huotui4"},{"name":"huotui7","bone":"huotui7","attachment":"huotui4"},{"name":"huotui6","bone":"huotui6","attachment":"huotui4"},{"name":"huotui5","bone":"huotui5","attachment":"huotui4"},{"name":"huotui8","bone":"huotui8","attachment":"huotui5"}],"skins":{"default":{"huotui1":{"huotui1":{"x":1,"y":-13,"width":302,"height":159}},"huotui3":{"huotui3":{"x":5.18,"y":-13.49,"width":276,"height":92}},"huotui4":{"huotui4":{"type":"mesh","uvs":[0.99557,0.39477,0.97938,0.56679,0.97938,0.76248,0.83328,0.97899,0.51595,1,0.23808,1,0.02062,0.7652,0.02062,0.57383,0,0.39687,0,0.18749,0.18088,0,0.51937,0,0.86343,0.00955,1,0.21743,0.51101,0.20877,0.50733,0.39536,0.5078,0.58036,0.51392,0.76232],"triangles":[5,17,4,4,17,3,5,6,17,3,17,2,6,16,17,6,7,16,2,17,1,17,16,1,7,15,16,16,15,1,7,8,15,1,15,0,15,8,14,15,14,0,14,8,9,0,14,13,13,14,12,14,11,12,9,10,14,14,10,11],"vertices":[2,1,46.71,-47.42,0.79568,2,6.35,-47.54,0.20432,2,1,31.79,-45.46,0.95098,2,-8.57,-45.59,0.04902,2,1,14.78,-45.02,0.9993,2,-25.59,-45.17,0.0007,1,1,-3.69,-30.36,1,2,1,-4.71,0.46,0.99797,2,-45.13,0.29,0.00203,2,1,-4.01,27.4,0.77579,2,-44.46,27.23,0.22421,2,1,16.96,47.96,0.37768,2,-23.51,47.81,0.62232,2,1,33.61,47.52,0.17553,2,-6.86,47.39,0.82447,2,1,49.05,49.12,0.03411,2,8.58,49.01,0.96589,2,1,67.26,48.65,0.00005,2,26.79,48.55,0.99995,1,2,42.66,30.61,1,2,1,82.25,-2.14,0.00526,2,41.84,-2.22,0.99474,2,1,80.55,-35.48,0.3607,2,40.17,-35.56,0.6393,2,1,62.13,-48.25,0.61074,2,21.76,-48.35,0.38926,2,1,64.12,-0.85,0.00426,2,23.7,-0.95,0.99574,2,1,47.9,-0.07,0.00458,2,7.48,-0.19,0.99542,2,1,31.81,0.3,0.98939,2,-8.61,0.16,0.01061,2,1,15.97,0.12,0.9995,2,-24.45,-0.03,0.0005],"hull":14,"edges":[4,6,8,10,6,8,20,22,18,20,28,22,18,28,24,26,28,26,30,28,16,30,30,0,2,4,32,30,2,32,32,14,10,12,12,14,8,34,34,32,12,34,34,4,14,16,16,18,26,0,22,24,0,2],"width":97,"height":87}},"huotui5":{"huotui4":{"type":"mesh","uvs":[1,0.40991,0.97938,0.5891,0.97938,0.77801,0.71802,1,0.51595,1,0.25891,0.99049,0.02062,0.78473,0.02062,0.58529,0,0.39541,0.00393,0.20335,0.19824,0,0.51281,0,0.8525,0,1,0.23247,0.51101,0.20877,0.50951,0.38199,0.5078,0.58036,0.51392,0.76232],"triangles":[2,3,17,5,17,4,3,4,17,5,6,17,17,7,16,17,6,7,17,1,2,17,16,1,0,1,15,16,7,15,1,16,15,15,7,8,15,13,0,8,9,15,15,14,13,15,9,14,13,14,12,14,11,12,9,10,14,14,10,11],"vertices":[2,3,46.9,-49.53,0.75752,4,6.54,-49.65,0.24248,2,3,31.37,-47.12,0.9287,4,-8.99,-47.26,0.0713,2,3,14.94,-46.69,0.99531,4,-25.42,-46.85,0.00469,1,3,-3.7,-20.85,1,1,3,-3.19,-1.25,1,2,3,-1.72,23.65,0.83472,4,-42.16,23.48,0.16528,2,3,16.78,46.29,0.44628,4,-23.69,46.14,0.55372,2,3,34.13,45.84,0.22626,4,-6.34,45.71,0.77374,2,3,50.69,47.41,0.04979,4,10.22,47.29,0.95021,2,3,67.39,46.59,0.0022,4,26.92,46.49,0.9978,1,4,44.13,27.21,1,2,3,83.78,-3.22,0.00964,4,43.37,-3.29,0.99036,2,3,82.93,-36.16,0.31424,4,42.55,-36.23,0.68576,2,3,62.33,-49.93,0.58012,4,21.97,-50.03,0.41988,2,3,65.63,-2.57,0.01573,4,25.22,-2.67,0.98427,2,3,50.57,-2.03,0.07171,4,10.16,-2.14,0.92829,1,3,33.32,-1.41,1,1,3,17.48,-1.6,1],"hull":14,"edges":[4,6,8,10,6,8,20,22,18,20,28,22,18,28,24,26,28,26,30,28,16,30,30,0,2,4,32,30,2,32,32,14,10,12,12,14,8,34,34,32,12,34,34,4,14,16,16,18,26,0,22,24,0,2],"width":97,"height":87}},"huotui6":{"huotui4":{"type":"mesh","uvs":[1,0.41066,0.97938,0.60344,0.97938,0.76057,0.86578,1,0.51595,1,0.1906,0.99574,0.02062,0.74082,0.02062,0.57329,0,0.39831,0,0.19937,0.19824,0,0.51281,0,0.8525,0,1,0.2172,0.51101,0.20877,0.50951,0.38199,0.5078,0.58036,0.51392,0.76232],"triangles":[2,3,17,5,17,4,3,4,17,5,6,17,6,16,17,2,17,1,17,16,1,6,7,16,0,1,15,1,16,15,16,7,15,7,8,15,15,13,0,8,9,15,15,14,13,15,9,14,13,14,12,14,11,12,9,10,14,14,10,11],"vertices":[2,5,42.44,-47.93,0.78465,6,2.07,-48.06,0.21535,2,5,25.72,-45.5,0.95395,6,-14.64,-45.64,0.04605,2,5,12.06,-45.14,0.9969,6,-28.31,-45.3,0.0031,1,5,-8.48,-33.58,1,2,5,-7.59,0.34,0.99994,6,-48.01,0.16,0.00006,2,5,-6.4,31.88,0.92513,6,-46.85,31.7,0.07487,2,5,16.2,47.78,0.69938,6,-24.27,47.63,0.30062,2,5,30.77,47.4,0.50041,6,-9.7,47.27,0.49959,2,5,46.04,49.01,0.24853,6,5.57,48.89,0.75147,2,5,63.34,48.55,0.09102,6,22.87,48.46,0.90898,2,5,80.18,28.88,0.00311,6,39.73,28.8,0.99689,2,5,79.38,-1.62,0.00297,6,38.97,-1.7,0.99703,2,5,78.53,-34.56,0.31106,6,38.15,-34.64,0.68894,2,5,59.26,-48.37,0.57931,6,18.9,-48.48,0.42069,2,5,61.23,-0.98,0.00447,6,20.82,-1.08,0.99553,2,5,46.17,-0.44,0.02627,6,5.76,-0.56,0.97373,2,5,28.92,0.18,0.99905,6,-11.49,0.04,0.00095,2,5,13.08,0,1,6,-27.33,-0.16,0],"hull":14,"edges":[4,6,8,10,6,8,20,22,18,20,28,22,18,28,24,26,28,26,30,28,16,30,30,0,2,4,32,30,2,32,32,14,10,12,12,14,8,34,34,32,12,34,34,4,14,16,16,18,26,0,22,24,0,2],"width":97,"height":87}},"huotui7":{"huotui4":{"type":"mesh","uvs":[1,0.38698,0.97938,0.59354,0.85123,0.76317,0.79798,1,0.51595,1,0.18433,0.9924,0.11753,0.743,0.02062,0.57768,0,0.38119,0,0.20406,0.19824,0,0.51281,0,0.8525,0,1,0.22144,0.51101,0.20877,0.50951,0.38199,0.5078,0.58036,0.51392,0.76232],"triangles":[2,3,17,5,17,4,3,4,17,5,6,17,1,2,16,6,16,17,2,17,16,6,7,16,0,1,15,1,16,15,16,7,15,7,8,15,15,13,0,15,14,13,15,8,14,8,9,14,13,14,12,14,11,12,9,10,14,14,10,11],"vertices":[2,7,48.69,-50.05,0.78084,8,8.32,-50.16,0.21916,2,7,30.77,-47.58,0.94455,8,-9.59,-47.72,0.05545,2,7,16.34,-34.77,0.99926,8,-24.03,-34.92,0.00074,1,7,-4.12,-29.07,1,1,7,-3.41,-1.72,1,2,7,-1.91,30.42,0.86981,8,-42.36,30.25,0.13019,2,7,19.95,36.33,0.5415,8,-20.5,36.18,0.4585,2,7,34.58,45.35,0.20962,8,-5.89,45.22,0.79038,2,7,51.72,46.91,0.04625,8,11.25,46.79,0.95375,2,7,67.12,46.5,0.00203,8,26.65,46.41,0.99797,1,8,43.92,26.74,1,2,7,83.57,-3.68,0.0127,8,43.16,-3.76,0.9873,2,7,82.71,-36.62,0.35779,8,42.34,-36.7,0.64221,2,7,63.08,-50.42,0.61999,8,22.72,-50.52,0.38001,2,7,65.42,-3.04,0.02031,8,25.01,-3.13,0.97969,2,7,50.36,-2.5,0.09674,8,9.95,-2.61,0.90326,1,7,33.11,-1.88,1,1,7,17.27,-2.06,1],"hull":14,"edges":[4,6,8,10,6,8,20,22,18,20,28,22,18,28,24,26,28,26,30,28,16,30,30,0,2,4,32,30,2,32,32,14,10,12,12,14,8,34,34,32,12,34,34,4,14,16,16,18,26,0,22,24,0,2],"width":97,"height":87}},"huotui8":{"huotui5":{"x":-0.46,"y":29.5,"width":268,"height":95}}}},"animations":{"await1":{"bones":{"huotui4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"huotui1":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"huotui3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone2":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":6,"y":-0.09,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":6,"y":-0.09,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":6,"y":-0.09,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":6,"y":-0.09,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]}},"deform":{"default":{"huotui4":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.4667,"offset":38,"vertices":[3.60122,-0.81084],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui5":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"offset":36,"vertices":[3.60123,-0.81081],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui6":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"offset":38,"vertices":[3.60032,-0.81483,3.60122,-0.81083],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui7":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.3667,"offset":36,"vertices":[3.60122,-0.81083],"curve":[0.25,0,0.75,1]},{"time":1}]}}}},"await2":{"bones":{"huotui4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":0,"y":15.8,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":0,"y":25.35,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":0,"y":11.4,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.019,"y":0.996,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":1.125,"y":0.969,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":0.938,"y":0.972,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui1":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"huotui3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"bone2":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"angle":1.58,"curve":[0.25,0,0.75,1]},{"time":0.2333,"angle":-0.6,"curve":"stepped"},{"time":0.3333,"angle":-0.6,"curve":[0.25,0,0.75,1]},{"time":0.4667,"angle":0.87,"curve":[0.25,0,0.75,1]},{"time":0.5667,"angle":-0.55,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":-4.82,"y":-0.03,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":6,"y":0.23,"curve":"stepped"},{"time":0.3333,"x":6,"y":0.23,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":-5.05,"y":0.6,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":6.91,"y":0.37,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.863,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.8333,"x":1,"y":1}]},"huotui5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":0,"y":16.76,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":0,"y":28.68,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0,"y":4.73,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":1.019,"y":0.996,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":1.125,"y":0.969,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0.938,"y":0.972,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone3":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"angle":1.58,"curve":[0.25,0,0.75,1]},{"time":0.2,"angle":-0.6,"curve":"stepped"},{"time":0.3,"angle":-0.6,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":0.87,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":-0.55,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":-4.82,"y":-0.03,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":6,"y":0.23,"curve":"stepped"},{"time":0.3,"x":6,"y":0.23,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":-5.05,"y":0.6,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":6.91,"y":0.37,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.863,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.8333,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":0,"y":5.81,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":0,"y":24.45,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":0,"y":13.51,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.019,"y":0.996,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":1.125,"y":0.969,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":0.938,"y":0.972,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":1.58,"curve":[0.25,0,0.75,1]},{"time":0.2333,"angle":-0.6,"curve":"stepped"},{"time":0.3667,"angle":-0.6,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":0.87,"curve":[0.25,0,0.75,1]},{"time":0.6,"angle":-0.55,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-4.82,"y":-0.03,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":6,"y":0.23,"curve":"stepped"},{"time":0.3667,"x":6,"y":0.23,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":-5.05,"y":0.6,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":6.91,"y":0.37,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.863,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.8333,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":0,"y":5.81,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0,"y":11.55,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":0,"y":4.73,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":1.019,"y":0.996,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.125,"y":0.969,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":0.938,"y":0.972,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":1.58,"curve":[0.25,0,0.75,1]},{"time":0.2667,"angle":-0.6,"curve":"stepped"},{"time":0.4,"angle":-0.6,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":0.87,"curve":[0.25,0,0.75,1]},{"time":0.6667,"angle":-0.55,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-4.82,"y":-0.03,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":6,"y":0.23,"curve":"stepped"},{"time":0.4,"x":6,"y":0.23,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":-5.05,"y":0.6,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":6.91,"y":0.37,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.863,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.8333,"x":1,"y":1}]}},"deform":{"default":{"huotui4":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3333,"offset":38,"vertices":[3.60122,-0.81084],"curve":[0.25,0,0.75,1]},{"time":0.8333}]},"huotui5":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3,"offset":36,"vertices":[3.60123,-0.81081],"curve":[0.25,0,0.75,1]},{"time":0.8333}]},"huotui6":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3667,"offset":38,"vertices":[3.60032,-0.81483,3.60122,-0.81083],"curve":[0.25,0,0.75,1]},{"time":0.8333}]},"huotui7":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4,"offset":36,"vertices":[3.60122,-0.81083],"curve":[0.25,0,0.75,1]},{"time":0.8333}]}}}}}},"_atlasText":"\nn_012.png\nsize: 914,324\nformat: RGBA8888\nfilter: Linear,Linear\nrepeat: none\nhuotui1\n rotate: false\n xy: 2, 2\n size: 302, 159\n orig: 302, 159\n offset: 0, 0\n index: -1\nhuotui3\n rotate: false\n xy: 306, 2\n size: 276, 92\n orig: 276, 92\n offset: 0, 0\n index: -1\nhuotui4\n rotate: false\n xy: 610, 2\n size: 97, 87\n orig: 97, 87\n offset: 0, 0\n index: -1\nhuotui5\n rotate: false\n xy: 2, 163\n size: 268, 95\n orig: 268, 95\n offset: 0, 0\n index: -1\n","textures":[{"__uuid__":"77Qptp7M5L2K004PyAteTU"}],"textureNames":["n_012.png"]}
\ No newline at end of file
{"__type__":"cc.SpriteFrame","content":{"name":"n_010","texture":"804Ig2R89P9IcKYIWqW3u7","rect":[3,3,736,290],"offset":[-101,21],"originalSize":[944,338],"capInsets":[0,0,0,0]}}
\ No newline at end of file
{"__type__":"sp.SkeletonData","_name":"n_04","_native":"raw-skeleton.json","_skeletonJson":{"skeleton":{"hash":"kkfZgCHglFqA/XCeF+5lCda6/ZI","spine":"3.6.53","width":323.76,"height":206.02,"images":"./lanjing/"},"bones":[{"name":"root"},{"name":"huotui4","parent":"root","length":30.41,"rotation":91.37,"x":9.11,"y":-57.71,"color":"ff00e5ff"},{"name":"bone2","parent":"huotui4","length":44.73,"rotation":-0.61,"x":30.52,"y":-0.39,"color":"ff00e5ff"},{"name":"huotui5","parent":"root","length":30.41,"rotation":91.37,"x":-68.96,"y":-16.51,"color":"ff00e5ff"},{"name":"bone3","parent":"huotui5","length":44.73,"rotation":-0.61,"x":30.52,"y":-0.39,"color":"ff00e5ff"},{"name":"huotui6","parent":"root","length":30.41,"rotation":91.37,"x":87.13,"y":-24.1,"color":"ff00e5ff"},{"name":"bone4","parent":"huotui6","length":44.73,"rotation":-0.61,"x":30.52,"y":-0.39,"color":"ff00e5ff"},{"name":"huotui7","parent":"root","length":30.41,"rotation":91.37,"x":8,"y":10.05,"color":"ff00e5ff"},{"name":"bone5","parent":"huotui7","length":44.73,"rotation":-0.61,"x":30.52,"y":-0.39,"color":"ff00e5ff"},{"name":"huotui1","parent":"root","color":"ff0000ff"},{"name":"huotui3","parent":"huotui1","x":-6.42,"y":59.08,"color":"ff0000ff"},{"name":"suantou3","parent":"root","x":-13.23,"y":-81.15}],"slots":[{"name":"huotui3","bone":"huotui3","attachment":"huotui3"},{"name":"huotui1","bone":"huotui1","attachment":"huotui1"},{"name":"huotui6","bone":"huotui6","attachment":"huotui4"},{"name":"huotui7","bone":"huotui7","attachment":"huotui4"},{"name":"huotui4","bone":"huotui4","attachment":"huotui4"},{"name":"huotui5","bone":"huotui5","attachment":"huotui4"},{"name":"suantou3","bone":"suantou3","attachment":"suantou3"}],"skins":{"default":{"huotui1":{"huotui1":{"x":1,"y":-13,"width":315,"height":168}},"huotui3":{"huotui3":{"x":5.18,"y":-13.49,"width":290,"height":88}},"huotui4":{"huotui4":{"type":"mesh","uvs":[0.97086,0.31714,0.80657,0.34655,0.92015,0.52047,0.97622,0.71736,0.77928,0.92456,0.60036,0.98215,0.48132,0.99354,0.32075,0.96025,0.13091,0.92309,0.02548,0.84175,0,0.67748,0.06982,0.51107,0.08214,0.41599,0.09139,0.17893,0.17439,0.01075,0.48315,0,0.67019,0.01585,0.79198,0.13548,1,0.20948,0.47112,0.50964,0.47684,0.73258,0.47347,0.32061,0.46477,0.17999],"triangles":[22,14,15,13,14,22,22,15,16,17,22,16,22,17,18,18,1,22,1,21,22,18,0,1,21,12,13,21,13,22,19,12,21,19,21,1,11,12,19,19,1,2,20,19,2,11,19,20,10,11,20,8,9,10,20,8,10,4,20,3,7,8,20,5,20,4,6,7,20,5,6,20,20,2,3],"vertices":[1,2,28.48,-45.47,1,1,2,25.95,-30.16,1,2,1,39.72,-41,0.00992,2,9.63,-40.51,0.99008,2,1,21.29,-45.77,0.92,2,-8.74,-45.48,0.08,1,1,2.47,-27,1,1,1,-2.49,-10.24,1,1,1,-3.28,0.85,1,1,1,0.17,15.71,1,1,1,4.05,33.27,1,1,1,11.84,42.89,1,2,1,27.17,44.9,0.9657,2,-3.83,45.26,0.0343,2,1,42.49,38.04,0.74571,2,11.56,38.56,0.25429,2,1,51.3,36.68,0.51822,2,20.38,37.29,0.48178,2,1,73.32,35.29,0.14222,2,42.42,36.14,0.85778,2,1,88.77,27.2,0.04679,2,57.95,28.22,0.95321,2,1,89.08,-1.53,0.00006,2,58.57,-0.51,0.99994,1,2,56.87,-17.88,1,1,2,45.59,-29.06,1,1,2,38.45,-48.31,1,2,1,41.73,0.72,0.02999,2,11.2,1.24,0.97001,1,1,20.99,0.69,1,2,1,59.3,0.08,0.00211,2,28.77,0.79,0.99789,2,1,72.39,0.58,0.00126,2,41.86,1.42,0.99874],"hull":19,"edges":[4,6,8,10,32,34,34,36,14,16,16,18,10,12,12,14,28,30,30,32,22,38,38,4,18,20,12,40,40,38,20,40,40,6,22,24,42,38,24,42,4,2,42,2,20,22,6,8,24,26,26,28,30,44,44,42,26,44,44,36,2,0,0,36],"width":93,"height":93}},"huotui5":{"huotui4":{"type":"mesh","uvs":[0.97086,0.31714,0.80657,0.34655,0.92015,0.52047,0.97622,0.71736,0.77928,0.92456,0.60036,0.98215,0.48132,0.99354,0.32075,0.96025,0.13091,0.92309,0.02548,0.84175,0,0.67748,0.06982,0.51107,0.08214,0.41599,0.09139,0.17893,0.17439,0.01075,0.48315,0,0.67019,0.01585,0.79198,0.13548,1,0.20948,0.47112,0.50964,0.47684,0.73258,0.47347,0.32061,0.46477,0.17999],"triangles":[22,14,15,13,14,22,22,15,16,17,22,16,22,17,18,18,1,22,1,21,22,18,0,1,21,12,13,21,13,22,19,12,21,19,21,1,11,12,19,19,1,2,20,19,2,11,19,20,10,11,20,8,9,10,20,8,10,4,20,3,7,8,20,5,20,4,6,7,20,5,6,20,20,2,3],"vertices":[1,4,28.48,-45.47,1,1,4,25.95,-30.16,1,2,3,39.72,-41,0.00992,4,9.63,-40.51,0.99008,2,3,21.29,-45.77,0.92,4,-8.74,-45.48,0.08,1,3,2.47,-27,1,1,3,-2.49,-10.24,1,1,3,-3.28,0.85,1,1,3,0.17,15.71,1,1,3,4.05,33.27,1,1,3,11.84,42.89,1,2,3,27.17,44.9,0.9657,4,-3.83,45.26,0.0343,2,3,42.49,38.04,0.74571,4,11.56,38.56,0.25429,2,3,51.3,36.68,0.51822,4,20.38,37.29,0.48178,2,3,73.32,35.29,0.14222,4,42.42,36.14,0.85778,2,3,88.77,27.2,0.04679,4,57.95,28.22,0.95321,2,3,89.08,-1.53,0.00006,4,58.57,-0.51,0.99994,1,4,56.87,-17.88,1,1,4,45.59,-29.06,1,1,4,38.45,-48.31,1,2,3,41.73,0.72,0.02999,4,11.2,1.24,0.97001,1,3,20.99,0.69,1,2,3,59.3,0.08,0.00211,4,28.77,0.79,0.99789,2,3,72.39,0.58,0.00126,4,41.86,1.42,0.99874],"hull":19,"edges":[4,6,8,10,32,34,34,36,14,16,16,18,10,12,12,14,28,30,30,32,22,38,38,4,18,20,12,40,40,38,20,40,40,6,22,24,42,38,24,42,4,2,42,2,20,22,6,8,24,26,26,28,30,44,44,42,26,44,44,36,2,0,0,36],"width":93,"height":93}},"huotui6":{"huotui4":{"type":"mesh","uvs":[0.97086,0.31714,0.80657,0.34655,0.92015,0.52047,0.97622,0.71736,0.77928,0.92456,0.60036,0.98215,0.48132,0.99354,0.32075,0.96025,0.13091,0.92309,0.02548,0.84175,0,0.67748,0.06982,0.51107,0.08214,0.41599,0.09139,0.17893,0.17439,0.01075,0.48315,0,0.67019,0.01585,0.79198,0.13548,1,0.20948,0.47112,0.50964,0.47684,0.73258,0.47347,0.32061,0.46477,0.17999],"triangles":[22,14,15,13,14,22,22,15,16,17,22,16,22,17,18,18,1,22,1,21,22,18,0,1,21,12,13,21,13,22,19,12,21,19,21,1,11,12,19,19,1,2,20,19,2,11,19,20,10,11,20,8,9,10,20,8,10,4,20,3,7,8,20,5,20,4,6,7,20,5,6,20,20,2,3],"vertices":[1,6,28.48,-45.47,1,1,6,25.95,-30.16,1,2,5,39.72,-41,0.00992,6,9.63,-40.51,0.99008,2,5,21.29,-45.77,0.92,6,-8.74,-45.48,0.08,1,5,2.47,-27,1,1,5,-2.49,-10.24,1,1,5,-3.28,0.85,1,1,5,0.17,15.71,1,1,5,4.05,33.27,1,1,5,11.84,42.89,1,2,5,27.17,44.9,0.9657,6,-3.83,45.26,0.0343,2,5,42.49,38.04,0.74571,6,11.56,38.56,0.25429,2,5,51.3,36.68,0.51822,6,20.38,37.29,0.48178,2,5,73.32,35.29,0.14222,6,42.42,36.14,0.85778,2,5,88.77,27.2,0.04679,6,57.95,28.22,0.95321,2,5,89.08,-1.53,0.00006,6,58.57,-0.51,0.99994,1,6,56.87,-17.88,1,1,6,45.59,-29.06,1,1,6,38.45,-48.31,1,2,5,41.73,0.72,0.02999,6,11.2,1.24,0.97001,1,5,20.99,0.69,1,2,5,59.3,0.08,0.00211,6,28.77,0.79,0.99789,2,5,72.39,0.58,0.00126,6,41.86,1.42,0.99874],"hull":19,"edges":[4,6,8,10,32,34,34,36,14,16,16,18,10,12,12,14,28,30,30,32,22,38,38,4,18,20,12,40,40,38,20,40,40,6,22,24,42,38,24,42,4,2,42,2,20,22,6,8,24,26,26,28,30,44,44,42,26,44,44,36,2,0,0,36],"width":93,"height":93}},"huotui7":{"huotui4":{"type":"mesh","uvs":[0.97086,0.31714,0.80657,0.34655,0.92015,0.52047,0.97622,0.71736,0.77928,0.92456,0.60036,0.98215,0.48132,0.99354,0.32075,0.96025,0.13091,0.92309,0.02548,0.84175,0,0.67748,0.06982,0.51107,0.08214,0.41599,0.09139,0.17893,0.17439,0.01075,0.48315,0,0.67019,0.01585,0.79198,0.13548,1,0.20948,0.47112,0.50964,0.47684,0.73258,0.47347,0.32061,0.46477,0.17999],"triangles":[22,14,15,13,14,22,22,15,16,17,22,16,22,17,18,18,1,22,1,21,22,18,0,1,21,12,13,21,13,22,19,12,21,19,21,1,11,12,19,19,1,2,20,19,2,11,19,20,10,11,20,8,9,10,20,8,10,4,20,3,7,8,20,5,20,4,6,7,20,5,6,20,20,2,3],"vertices":[1,8,28.48,-45.47,1,1,8,25.95,-30.16,1,2,7,39.72,-41,0.00992,8,9.63,-40.51,0.99008,2,7,21.29,-45.77,0.92,8,-8.74,-45.48,0.08,1,7,2.47,-27,1,1,7,-2.49,-10.24,1,1,7,-3.28,0.85,1,1,7,0.17,15.71,1,1,7,4.05,33.27,1,1,7,11.84,42.89,1,2,7,27.17,44.9,0.9657,8,-3.83,45.26,0.0343,2,7,42.49,38.04,0.74571,8,11.56,38.56,0.25429,2,7,51.3,36.68,0.51822,8,20.38,37.29,0.48178,2,7,73.32,35.29,0.14222,8,42.42,36.14,0.85778,2,7,88.77,27.2,0.04679,8,57.95,28.22,0.95321,2,7,89.08,-1.53,0.00006,8,58.57,-0.51,0.99994,1,8,56.87,-17.88,1,1,8,45.59,-29.06,1,1,8,38.45,-48.31,1,2,7,41.73,0.72,0.02999,8,11.2,1.24,0.97001,1,7,20.99,0.69,1,2,7,59.3,0.08,0.00211,8,28.77,0.79,0.99789,2,7,72.39,0.58,0.00126,8,41.86,1.42,0.99874],"hull":19,"edges":[4,6,8,10,32,34,34,36,14,16,16,18,10,12,12,14,28,30,30,32,22,38,38,4,18,20,12,40,40,38,20,40,40,6,22,24,42,38,24,42,4,2,42,2,20,22,6,8,24,26,26,28,30,44,44,42,26,44,44,36,2,0,0,36],"width":93,"height":93}},"suantou3":{"suantou3":{"x":-0.53,"y":37.27,"width":303,"height":126}}}},"animations":{"await1":{"bones":{"huotui4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0,"y":1.25,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":1.117,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui1":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"huotui3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone2":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":12.62,"y":0.22,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":0,"y":1.25,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":1.117,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":12.62,"y":0.22,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0,"y":1.25,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.117,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":12.62,"y":0.22,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":0,"y":1.25,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":1.117,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":12.62,"y":0.22,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]}},"deform":{"default":{"huotui4":{"huotui4":[{"time":0,"curve":"stepped"},{"time":1}]},"huotui5":{"huotui4":[{"time":0,"curve":"stepped"},{"time":1}]},"huotui6":{"huotui4":[{"time":0,"curve":"stepped"},{"time":1}]},"huotui7":{"huotui4":[{"time":0,"curve":"stepped"},{"time":1}]}}}},"await2":{"bones":{"huotui4":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"angle":0.6,"curve":[0.25,0,0.75,1]},{"time":0.2667,"angle":-0.34,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":-0.88,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":0.94,"curve":[0.25,0,0.75,1]},{"time":0.6667,"angle":0.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":0,"y":-0.62,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":0,"y":8.17,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":0,"y":18.53,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0.31,"y":1.9,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":0.22,"y":8.67,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.204,0.19,0.549,0.54]},{"time":0.1667,"x":0.983,"y":0.933,"curve":[0.295,0.3,0.631,0.63]},{"time":0.2667,"x":1.319,"y":0.861,"curve":[0.285,0.29,0.63,0.64]},{"time":0.4333,"x":1.53,"y":0.735,"curve":[0.323,0.34,0.661,0.68]},{"time":0.5333,"x":1.023,"y":0.957,"curve":[0.336,0.36,0.673,0.69]},{"time":0.6667,"x":1.193,"y":0.922,"curve":[0.394,0.59,0.757,1]},{"time":0.8333,"x":1,"y":1}]},"huotui1":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"huotui3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"bone2":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"angle":2.05,"curve":[0.25,0,0.75,1]},{"time":0.2667,"angle":-0.4,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":-0.47,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":2.93,"curve":[0.25,0,0.75,1]},{"time":0.6667,"angle":0.34,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":-4.24,"y":0.01,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":6.21,"y":0.37,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":18.51,"y":0.25,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":-1.14,"y":0.48,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":10.06,"y":0.83,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui5":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"angle":0.6,"curve":[0.25,0,0.75,1]},{"time":0.2333,"angle":-0.34,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":-0.88,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":0.94,"curve":[0.25,0,0.75,1]},{"time":0.6,"angle":0.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":0,"y":-0.62,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":0,"y":8.17,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0,"y":18.53,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0.31,"y":1.9,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":0.22,"y":8.67,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.204,0.19,0.549,0.54]},{"time":0.1667,"x":0.983,"y":0.933,"curve":[0.295,0.3,0.631,0.63]},{"time":0.2333,"x":1.319,"y":0.861,"curve":[0.285,0.29,0.63,0.64]},{"time":0.4,"x":1.53,"y":0.735,"curve":[0.323,0.34,0.661,0.68]},{"time":0.5,"x":1.023,"y":0.957,"curve":[0.336,0.36,0.673,0.69]},{"time":0.6,"x":1.193,"y":0.922,"curve":[0.394,0.59,0.757,1]},{"time":0.8333,"x":1,"y":1}]},"bone3":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"angle":2.05,"curve":[0.25,0,0.75,1]},{"time":0.2333,"angle":-0.4,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":-0.47,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":2.93,"curve":[0.25,0,0.75,1]},{"time":0.6,"angle":0.34,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":-4.24,"y":0.01,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":6.21,"y":0.37,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":18.51,"y":0.25,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":-1.14,"y":0.48,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":10.06,"y":0.83,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":0.6,"curve":[0.25,0,0.75,1]},{"time":0.2,"angle":-0.34,"curve":[0.25,0,0.75,1]},{"time":0.3333,"angle":-0.88,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":0.94,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":0.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0,"y":-0.62,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":0,"y":8.17,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":0,"y":18.53,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":0.31,"y":1.9,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0.22,"y":8.67,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.204,0.19,0.549,0.54]},{"time":0.1333,"x":0.983,"y":0.933,"curve":[0.295,0.3,0.631,0.63]},{"time":0.2,"x":1.319,"y":0.861,"curve":[0.285,0.29,0.63,0.64]},{"time":0.3333,"x":1.53,"y":0.735,"curve":[0.323,0.34,0.661,0.68]},{"time":0.4333,"x":1.023,"y":0.957,"curve":[0.336,0.36,0.673,0.69]},{"time":0.5333,"x":1.193,"y":0.922,"curve":[0.394,0.59,0.757,1]},{"time":0.8333,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":2.05,"curve":[0.25,0,0.75,1]},{"time":0.2,"angle":-0.4,"curve":[0.25,0,0.75,1]},{"time":0.3333,"angle":-0.47,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":2.93,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":0.34,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-4.24,"y":0.01,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":6.21,"y":0.37,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":18.51,"y":0.25,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":-1.14,"y":0.48,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":10.06,"y":0.83,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":0.6,"curve":[0.25,0,0.75,1]},{"time":0.2333,"angle":-0.34,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":-0.88,"curve":[0.25,0,0.75,1]},{"time":0.4667,"angle":0.94,"curve":[0.25,0,0.75,1]},{"time":0.6,"angle":0.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0,"y":-0.62,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":0,"y":8.17,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0,"y":18.53,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":0.31,"y":1.9,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":0.22,"y":8.67,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.204,0.19,0.549,0.54]},{"time":0.1333,"x":0.983,"y":0.933,"curve":[0.295,0.3,0.631,0.63]},{"time":0.2333,"x":1.319,"y":0.861,"curve":[0.285,0.29,0.63,0.64]},{"time":0.4,"x":1.53,"y":0.735,"curve":[0.323,0.34,0.661,0.68]},{"time":0.4667,"x":1.023,"y":0.957,"curve":[0.336,0.36,0.673,0.69]},{"time":0.6,"x":1.193,"y":0.922,"curve":[0.394,0.59,0.757,1]},{"time":0.8333,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":2.05,"curve":[0.25,0,0.75,1]},{"time":0.2333,"angle":-0.4,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":-0.47,"curve":[0.25,0,0.75,1]},{"time":0.4667,"angle":2.93,"curve":[0.25,0,0.75,1]},{"time":0.6,"angle":0.34,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-4.24,"y":0.01,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":6.21,"y":0.37,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":18.51,"y":0.25,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":-1.14,"y":0.48,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":10.06,"y":0.83,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]}},"deform":{"default":{"huotui4":{"huotui4":[{"time":0,"curve":"stepped"},{"time":0.8333}]},"huotui5":{"huotui4":[{"time":0,"curve":"stepped"},{"time":0.8333}]},"huotui6":{"huotui4":[{"time":0,"curve":"stepped"},{"time":0.8333}]},"huotui7":{"huotui4":[{"time":0,"curve":"stepped"},{"time":0.8333}]}}}}}},"_atlasText":"\nn_04.png\nsize: 953,342\nformat: RGBA8888\nfilter: Linear,Linear\nrepeat: none\nhuotui1\n rotate: false\n xy: 2, 2\n size: 315, 168\n orig: 315, 168\n offset: 0, 0\n index: -1\nhuotui3\n rotate: false\n xy: 319, 2\n size: 290, 88\n orig: 290, 88\n offset: 0, 0\n index: -1\nhuotui4\n rotate: false\n xy: 636, 2\n size: 93, 93\n orig: 93, 93\n offset: 0, 0\n index: -1\nsuantou3\n rotate: false\n xy: 2, 172\n size: 303, 126\n orig: 303, 126\n offset: 0, 0\n index: -1\n","textures":[{"__uuid__":"15zyiJLxBDKYjJd2qeVQsz"}],"textureNames":["n_04.png"]}
\ No newline at end of file
{"__type__":"cc.Asset","_name":"n_01","_native":".atlas"}
\ No newline at end of file
{"__type__":"cc.Asset","_name":"n_013","_native":".atlas"}
\ No newline at end of file
{"__type__":"cc.SpriteFrame","content":{"name":"qiezi","texture":"b8NAKFQB9OAKcqROCt7Vcc","rect":[1,1,76,80],"offset":[0,0],"originalSize":[78,82],"capInsets":[0,0,0,0]}}
\ No newline at end of file
{"__type__":"sp.SkeletonData","_name":"n_08","_native":"raw-skeleton.json","_skeletonJson":{"skeleton":{"hash":"sJ3ykgFco4g4+Axs8bnoTF0kG74","spine":"3.6.53","width":306.42,"height":251.99,"images":"./lanjing/"},"bones":[{"name":"root"},{"name":"huotui4","parent":"root","length":50,"rotation":91.66,"x":91.99,"y":-11.22,"color":"ff00e5ff"},{"name":"bone2","parent":"huotui4","length":50,"rotation":0.3,"x":52.03,"color":"ff00e5ff"},{"name":"huotui5","parent":"root","length":50,"rotation":91.66,"x":-88.65,"y":-9.72,"color":"ff00e5ff"},{"name":"bone3","parent":"huotui5","length":50,"rotation":0.3,"x":52.03,"color":"ff00e5ff"},{"name":"huotui6","parent":"root","length":50,"rotation":91.66,"x":4.16,"y":-52.64,"color":"ff00e5ff"},{"name":"bone4","parent":"huotui6","length":50,"rotation":0.3,"x":52.03,"color":"ff00e5ff"},{"name":"huotui7","parent":"root","length":50,"rotation":91.66,"x":0.67,"y":43.17,"color":"ff00e5ff"},{"name":"bone5","parent":"huotui7","length":50,"rotation":0.3,"x":52.03,"color":"ff00e5ff"},{"name":"huotui1","parent":"root","color":"ff0000ff"},{"name":"huotui3","parent":"huotui1","x":-4.32,"y":58.54,"color":"ff0000ff"},{"name":"huotui8","parent":"root","x":1.71,"y":-70.31}],"slots":[{"name":"huotui3","bone":"huotui3","attachment":"huotui3"},{"name":"huotui1","bone":"huotui1","attachment":"huotui1"},{"name":"huotui4","bone":"huotui4","attachment":"huotui4"},{"name":"huotui7","bone":"huotui7","attachment":"huotui4"},{"name":"huotui6","bone":"huotui6","attachment":"huotui4"},{"name":"huotui5","bone":"huotui5","attachment":"huotui4"},{"name":"huotui8","bone":"huotui8","attachment":"huotui8"}],"skins":{"default":{"huotui1":{"huotui1":{"x":1,"y":-13,"width":303,"height":160}},"huotui3":{"huotui3":{"x":5.18,"y":-13.49,"width":297,"height":97}},"huotui4":{"huotui4":{"type":"mesh","uvs":[1,0.30351,1,0.47257,0.93824,0.65645,0.7592,0.77837,0.75103,0.87423,0.70197,0.96711,0.53595,1,0.26508,0.9779,0.21747,0.79999,0.12527,0.66411,0,0.4894,0,0.35098,0.05162,0.19928,0.18006,0.04561,0.49184,0,0.73931,0.0036,0.92996,0.16581,0.50677,0.65797,0.50254,0.76863,0.49827,0.18616,0.49704,0.32833,0.49406,0.46873],"triangles":[7,18,6,6,18,5,7,8,18,5,18,4,4,18,3,18,8,17,18,17,3,3,17,2,17,8,9,9,21,17,9,10,21,17,21,2,2,21,1,10,11,21,21,20,1,20,0,1,21,11,20,11,12,20,20,16,0,20,19,16,20,12,19,12,13,19,19,15,16,13,14,19,19,14,15],"vertices":[2,1,75.8,-56.37,0.16388,2,23.48,-56.49,0.83612,2,1,54.84,-55.76,0.36125,2,2.53,-55.78,0.63875,2,1,32.25,-48.25,0.63977,2,-20.03,-48.15,0.36023,2,1,17.71,-27.95,0.92837,2,-34.46,-27.77,0.07163,2,1,5.86,-26.7,0.99069,2,-46.31,-26.46,0.00931,2,1,-5.5,-20.92,0.99995,2,-57.63,-20.62,0.00005,1,1,-9.04,-2.38,1,2,1,-5.43,27.59,0.99991,2,-57.32,27.89,0.00009,2,1,16.77,32.23,0.94016,2,-35.09,32.42,0.05984,2,1,33.91,41.98,0.69043,2,-17.9,42.07,0.30957,2,1,55.97,55.25,0.34279,2,4.22,55.23,0.65721,2,1,73.12,54.76,0.19564,2,21.38,54.65,0.80436,2,1,91.76,48.48,0.07148,2,39.98,48.28,0.92852,2,1,110.39,33.68,0.00716,2,58.54,33.38,0.99284,1,2,63.01,-1.4,1,2,1,113.81,-28.52,0.00084,2,61.63,-28.84,0.99916,2,1,93.09,-49.09,0.06066,2,40.81,-49.3,0.93934,2,1,33.45,-0.37,0.99969,2,-18.58,-0.28,0.00031,1,1,19.74,0.49,1,1,2,39.92,-1.33,1,1,2,22.3,-0.59,1,2,1,56.94,0.36,0.00293,2,4.92,0.33,0.99707],"hull":17,"edges":[10,12,8,10,12,14,14,16,34,4,12,36,36,34,16,36,6,8,36,6,20,22,22,24,24,26,2,0,2,4,26,28,28,30,28,38,24,38,38,32,40,38,22,40,40,0,34,42,42,40,2,42,42,20,34,18,18,20,30,32,32,0,16,18,4,6],"width":111,"height":124}},"huotui5":{"huotui4":{"type":"mesh","uvs":[1,0.30351,1,0.47257,0.93824,0.65645,0.7592,0.77837,0.75103,0.87423,0.70197,0.96711,0.53595,1,0.26508,0.9779,0.21747,0.79999,0.12527,0.66411,0,0.4894,0,0.35098,0.05162,0.19928,0.18006,0.04561,0.49184,0,0.73931,0.0036,0.92996,0.16581,0.50677,0.65797,0.50254,0.76863,0.49827,0.18616,0.49704,0.32833,0.49406,0.46873],"triangles":[7,18,6,6,18,5,7,8,18,5,18,4,4,18,3,18,8,17,18,17,3,3,17,2,17,8,9,9,21,17,9,10,21,17,21,2,2,21,1,10,11,21,21,20,1,20,0,1,21,11,20,11,12,20,20,16,0,20,19,16,20,12,19,12,13,19,19,15,16,13,14,19,19,14,15],"vertices":[2,3,75.8,-56.37,0.16388,4,23.48,-56.49,0.83612,2,3,54.84,-55.76,0.36125,4,2.53,-55.78,0.63875,2,3,32.25,-48.25,0.63977,4,-20.03,-48.15,0.36023,2,3,17.71,-27.95,0.92837,4,-34.46,-27.77,0.07163,2,3,5.86,-26.7,0.99069,4,-46.31,-26.46,0.00931,2,3,-5.5,-20.92,0.99995,4,-57.63,-20.62,0.00005,1,3,-9.04,-2.38,1,2,3,-5.43,27.59,0.99991,4,-57.32,27.89,0.00009,2,3,16.77,32.23,0.94016,4,-35.09,32.42,0.05984,2,3,33.91,41.98,0.69043,4,-17.9,42.07,0.30957,2,3,55.97,55.25,0.34279,4,4.22,55.23,0.65721,2,3,73.12,54.76,0.19564,4,21.38,54.65,0.80436,2,3,91.76,48.48,0.07148,4,39.98,48.28,0.92852,2,3,110.39,33.68,0.00716,4,58.54,33.38,0.99284,1,4,63.01,-1.4,1,2,3,113.81,-28.52,0.00084,4,61.63,-28.84,0.99916,2,3,93.09,-49.09,0.06066,4,40.81,-49.3,0.93934,2,3,33.45,-0.37,0.99969,4,-18.58,-0.28,0.00031,1,3,19.74,0.49,1,1,4,39.92,-1.33,1,1,4,22.3,-0.59,1,2,3,56.94,0.36,0.00293,4,4.92,0.33,0.99707],"hull":17,"edges":[10,12,8,10,12,14,14,16,34,4,12,36,36,34,16,36,6,8,36,6,20,22,22,24,24,26,2,0,2,4,26,28,28,30,28,38,24,38,38,32,40,38,22,40,40,0,34,42,42,40,2,42,42,20,34,18,18,20,30,32,32,0,16,18,4,6],"width":111,"height":124}},"huotui6":{"huotui4":{"type":"mesh","uvs":[1,0.30351,1,0.47257,0.93824,0.65645,0.7592,0.77837,0.75103,0.87423,0.70197,0.96711,0.53595,1,0.26508,0.9779,0.21747,0.79999,0.12527,0.66411,0,0.4894,0,0.35098,0.05162,0.19928,0.18006,0.04561,0.49184,0,0.73931,0.0036,0.92996,0.16581,0.50677,0.65797,0.50254,0.76863,0.49827,0.18616,0.49704,0.32833,0.49406,0.46873],"triangles":[7,18,6,6,18,5,7,8,18,5,18,4,4,18,3,18,8,17,18,17,3,3,17,2,17,8,9,9,21,17,9,10,21,17,21,2,2,21,1,10,11,21,21,20,1,20,0,1,21,11,20,11,12,20,20,16,0,20,19,16,20,12,19,12,13,19,19,15,16,13,14,19,19,14,15],"vertices":[2,5,75.8,-56.37,0.16388,6,23.48,-56.49,0.83612,2,5,54.84,-55.76,0.36125,6,2.53,-55.78,0.63875,2,5,32.25,-48.25,0.63977,6,-20.03,-48.15,0.36023,2,5,17.71,-27.95,0.92837,6,-34.46,-27.77,0.07163,2,5,5.86,-26.7,0.99069,6,-46.31,-26.46,0.00931,2,5,-5.5,-20.92,0.99995,6,-57.63,-20.62,0.00005,1,5,-9.04,-2.38,1,2,5,-5.43,27.59,0.99991,6,-57.32,27.89,0.00009,2,5,16.77,32.23,0.94016,6,-35.09,32.42,0.05984,2,5,33.91,41.98,0.69043,6,-17.9,42.07,0.30957,2,5,55.97,55.25,0.34279,6,4.22,55.23,0.65721,2,5,73.12,54.76,0.19564,6,21.38,54.65,0.80436,2,5,91.76,48.48,0.07148,6,39.98,48.28,0.92852,2,5,110.39,33.68,0.00716,6,58.54,33.38,0.99284,1,6,63.01,-1.4,1,2,5,113.81,-28.52,0.00084,6,61.63,-28.84,0.99916,2,5,93.09,-49.09,0.06066,6,40.81,-49.3,0.93934,2,5,33.45,-0.37,0.99969,6,-18.58,-0.28,0.00031,1,5,19.74,0.49,1,1,6,39.92,-1.33,1,1,6,22.3,-0.59,1,2,5,56.94,0.36,0.00293,6,4.92,0.33,0.99707],"hull":17,"edges":[10,12,8,10,12,14,14,16,34,4,12,36,36,34,16,36,6,8,36,6,20,22,22,24,24,26,2,0,2,4,26,28,28,30,28,38,24,38,38,32,40,38,22,40,40,0,34,42,42,40,2,42,42,20,34,18,18,20,30,32,32,0,16,18,4,6],"width":111,"height":124}},"huotui7":{"huotui4":{"type":"mesh","uvs":[1,0.30351,1,0.47257,0.93824,0.65645,0.7592,0.77837,0.75103,0.87423,0.70197,0.96711,0.53595,1,0.26508,0.9779,0.21747,0.79999,0.12527,0.66411,0,0.4894,0,0.35098,0.05162,0.19928,0.18006,0.04561,0.49184,0,0.73931,0.0036,0.92996,0.16581,0.50677,0.65797,0.50254,0.76863,0.49827,0.18616,0.49704,0.32833,0.49406,0.46873],"triangles":[7,18,6,6,18,5,7,8,18,5,18,4,4,18,3,18,8,17,18,17,3,3,17,2,17,8,9,9,21,17,9,10,21,17,21,2,2,21,1,10,11,21,21,20,1,20,0,1,21,11,20,11,12,20,20,16,0,20,19,16,20,12,19,12,13,19,19,15,16,13,14,19,19,14,15],"vertices":[2,7,75.8,-56.37,0.16388,8,23.48,-56.49,0.83612,2,7,54.84,-55.76,0.36125,8,2.53,-55.78,0.63875,2,7,32.25,-48.25,0.63977,8,-20.03,-48.15,0.36023,2,7,17.71,-27.95,0.92837,8,-34.46,-27.77,0.07163,2,7,5.86,-26.7,0.99069,8,-46.31,-26.46,0.00931,2,7,-5.5,-20.92,0.99995,8,-57.63,-20.62,0.00005,1,7,-9.04,-2.38,1,2,7,-5.43,27.59,0.99991,8,-57.32,27.89,0.00009,2,7,16.77,32.23,0.94016,8,-35.09,32.42,0.05984,2,7,33.91,41.98,0.69043,8,-17.9,42.07,0.30957,2,7,55.97,55.25,0.34279,8,4.22,55.23,0.65721,2,7,73.12,54.76,0.19564,8,21.38,54.65,0.80436,2,7,91.76,48.48,0.07148,8,39.98,48.28,0.92852,2,7,110.39,33.68,0.00716,8,58.54,33.38,0.99284,1,8,63.01,-1.4,1,2,7,113.81,-28.52,0.00084,8,61.63,-28.84,0.99916,2,7,93.09,-49.09,0.06066,8,40.81,-49.3,0.93934,2,7,33.45,-0.37,0.99969,8,-18.58,-0.28,0.00031,1,7,19.74,0.49,1,1,8,39.92,-1.33,1,1,8,22.3,-0.59,1,2,7,56.94,0.36,0.00293,8,4.92,0.33,0.99707],"hull":17,"edges":[10,12,8,10,12,14,14,16,34,4,12,36,36,34,16,36,6,8,36,6,20,22,22,24,24,26,2,0,2,4,26,28,28,30,28,38,24,38,38,32,40,38,22,40,40,0,34,42,42,40,2,42,42,20,34,18,18,20,30,32,32,0,16,18,4,6],"width":111,"height":124}},"huotui8":{"huotui8":{"x":1.22,"y":28.02,"width":306,"height":103}}}},"animations":{"await1":{"bones":{"huotui4":{"rotate":[{"time":0,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":-0.84,"curve":[0.25,0,0.75,1]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":1.111,"y":1.026,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui1":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"huotui3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone2":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":6.64,"y":0.12,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui5":{"rotate":[{"time":0,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":-0.84,"curve":[0.25,0,0.75,1]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.111,"y":1.026,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":6.64,"y":0.12,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":-0.84,"curve":[0.25,0,0.75,1]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.111,"y":1.026,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":6.64,"y":0.12,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.4667,"angle":-0.84,"curve":[0.25,0,0.75,1]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":1.111,"y":1.026,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":6.64,"y":0.12,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]}},"deform":{"default":{"huotui4":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"offset":42,"vertices":[2.2063,0.29835,2.20782,0.28687,0,0,0,0,3.60032,-0.81482,3.59603,-0.83352],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui5":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"offset":42,"vertices":[2.2063,0.29835,2.20782,0.28687,0,0,0,0,3.60032,-0.81482,3.59603,-0.83352],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui6":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"offset":42,"vertices":[2.2063,0.29835,2.20782,0.28687,0,0,0,0,3.60032,-0.81482,3.59603,-0.83352],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui7":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.4667,"offset":42,"vertices":[2.2063,0.29835,2.20782,0.28687,0,0,0,0,3.60032,-0.81482,3.59603,-0.83352],"curve":[0.25,0,0.75,1]},{"time":1}]}}}},"await2":{"bones":{"huotui4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.1333,"angle":0,"curve":"stepped"},{"time":0.2333,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.3667,"angle":-1.91,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.6,"angle":-1.9,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.1333,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":0,"y":3.68,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":0,"y":18.15,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":0,"y":7.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.87,"y":1.108,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.205,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":1.319,"y":1.079,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0.824,"y":1.089,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":1.097,"y":1.105,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui1":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"huotui3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"bone2":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3667,"angle":0.73,"curve":[0.25,0,0.75,1]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-5.85,"y":0.15,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":14.09,"y":-0.53,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":12.1,"y":-0.56,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":-6.24,"y":0.17,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":6.35,"y":0.02,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.1,"angle":0,"curve":"stepped"},{"time":0.2,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.3,"angle":-1.91,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.4667,"angle":-1.9,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.1,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":0,"y":3.68,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":0,"y":18.15,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":0,"y":7.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.87,"y":1.108,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":1.205,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":1.319,"y":1.079,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0.824,"y":1.089,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":1.097,"y":1.105,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone3":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3,"angle":0.73,"curve":[0.25,0,0.75,1]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":-5.85,"y":0.15,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":14.09,"y":-0.53,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":12.1,"y":-0.56,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":-6.24,"y":0.17,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":6.35,"y":0.02,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.1333,"angle":0,"curve":"stepped"},{"time":0.2333,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":-1.91,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.6667,"angle":-1.9,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.1333,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":0,"y":3.68,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0,"y":18.15,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":0,"y":7.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.87,"y":1.108,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.205,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.319,"y":1.079,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0.824,"y":1.089,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":1.097,"y":1.105,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4,"angle":0.73,"curve":[0.25,0,0.75,1]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-5.85,"y":0.15,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":14.09,"y":-0.53,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":12.1,"y":-0.56,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":-6.24,"y":0.17,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":6.35,"y":0.02,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.1333,"angle":0,"curve":"stepped"},{"time":0.2667,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":-1.91,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.6667,"angle":-1.9,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.1333,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":0,"y":3.68,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0,"y":18.15,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":0,"y":7.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.87,"y":1.108,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":1.205,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.319,"y":1.079,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0.824,"y":1.089,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":1.097,"y":1.105,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4,"angle":0.73,"curve":[0.25,0,0.75,1]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-5.85,"y":0.15,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":14.09,"y":-0.53,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":12.1,"y":-0.56,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":-6.24,"y":0.17,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":6.35,"y":0.02,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]}},"deform":{"default":{"huotui4":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.2333,"offset":42,"vertices":[2.2063,0.29835,2.20782,0.28687,0,0,0,0,3.60032,-0.81482,3.59603,-0.83352],"curve":[0.25,0,0.75,1]},{"time":0.8333}]},"huotui5":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.2,"offset":42,"vertices":[2.2063,0.29835,2.20782,0.28687,0,0,0,0,3.60032,-0.81482,3.59603,-0.83352],"curve":[0.25,0,0.75,1]},{"time":0.8333}]},"huotui6":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.2333,"offset":42,"vertices":[2.2063,0.29835,2.20782,0.28687,0,0,0,0,3.60032,-0.81482,3.59603,-0.83352],"curve":[0.25,0,0.75,1]},{"time":0.8333}]},"huotui7":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.2667,"offset":42,"vertices":[2.2063,0.29835,2.20782,0.28687,0,0,0,0,3.60032,-0.81482,3.59603,-0.83352],"curve":[0.25,0,0.75,1]},{"time":0.8333}]}}}}}},"_atlasText":"\nn_08.png\nsize: 926,326\nformat: RGBA8888\nfilter: Linear,Linear\nrepeat: none\nhuotui1\n rotate: false\n xy: 2, 2\n size: 303, 160\n orig: 303, 160\n offset: 0, 0\n index: -1\nhuotui3\n rotate: false\n xy: 310, 2\n size: 297, 97\n orig: 297, 97\n offset: 0, 0\n index: -1\nhuotui4\n rotate: false\n xy: 618, 2\n size: 111, 124\n orig: 111, 124\n offset: 0, 0\n index: -1\nhuotui8\n rotate: false\n xy: 2, 164\n size: 306, 103\n orig: 306, 103\n offset: 0, 0\n index: -1\n","textures":[{"__uuid__":"faan5IkXJC2p0QMFDmzYVC"}],"textureNames":["n_08.png"]}
\ No newline at end of file
{"__type__":"sp.SkeletonData","_name":"n_013","_native":"raw-skeleton.json","_skeletonJson":{"skeleton":{"hash":"IR/tuoJfTn1avPnK++pQNp+2rKw","spine":"3.6.53","width":302,"height":204.67,"images":"./lanjing/"},"bones":[{"name":"root"},{"name":"huotui4","parent":"root","length":40,"rotation":91.49,"x":83.86,"y":-11.2,"color":"ff00e5ff"},{"name":"bone2","parent":"huotui4","length":38,"rotation":-0.06,"x":40.42,"y":0.12,"color":"ff00e5ff"},{"name":"huotui5","parent":"root","length":40,"rotation":91.49,"x":-89.73,"y":-2.67,"color":"ff00e5ff"},{"name":"bone3","parent":"huotui5","length":38,"rotation":-0.06,"x":40.42,"y":0.12,"color":"ff00e5ff"},{"name":"huotui6","parent":"root","length":40,"rotation":91.49,"x":-0.72,"y":-51.17,"color":"ff00e5ff"},{"name":"bone4","parent":"huotui6","length":38,"rotation":-0.06,"x":40.42,"y":0.12,"color":"ff00e5ff"},{"name":"huotui7","parent":"root","length":40,"rotation":91.49,"x":-8.18,"y":32.51,"color":"ff00e5ff"},{"name":"bone5","parent":"huotui7","length":38,"rotation":-0.06,"x":40.42,"y":0.12,"color":"ff00e5ff"},{"name":"huotui1","parent":"root","color":"ff0000ff"},{"name":"huotui3","parent":"huotui1","x":-4.32,"y":61.7,"color":"ff0000ff"},{"name":"huotui8","parent":"root","x":-0.98,"y":-68.91}],"slots":[{"name":"huotui3","bone":"huotui3","attachment":"huotui3"},{"name":"huotui1","bone":"huotui1","attachment":"huotui1"},{"name":"huotui4","bone":"huotui4","attachment":"huotui4"},{"name":"huotui7","bone":"huotui7","attachment":"huotui4"},{"name":"huotui6","bone":"huotui6","attachment":"huotui4"},{"name":"huotui5","bone":"huotui5","attachment":"huotui4"},{"name":"huotui8","bone":"huotui8","attachment":"huotui5"}],"skins":{"default":{"huotui1":{"huotui1":{"x":1,"y":-13,"width":302,"height":159}},"huotui3":{"huotui3":{"x":5.18,"y":-13.49,"width":276,"height":92}},"huotui4":{"huotui4":{"type":"mesh","uvs":[1,0.39477,1,0.56679,0.98883,0.76248,0.83328,0.97899,0.51595,1,0.23808,1,0,0.7652,0,0.57042,0,0.39687,0,0.18749,0.18088,0,0.51937,0,0.86343,0.00955,1,0.21743,0.51101,0.20877,0.50733,0.39536,0.5078,0.58036,0.51392,0.76232],"triangles":[5,17,4,4,17,3,5,6,17,3,17,2,6,16,17,6,7,16,1,2,16,2,17,16,7,15,16,16,15,1,7,8,15,15,0,1,15,8,14,15,14,0,14,8,9,14,13,0,13,14,12,14,11,12,9,10,14,14,10,11],"vertices":[2,1,46.97,-36.32,0.73348,2,6.59,-36.44,0.26652,2,1,32.35,-35.94,0.95479,2,-8.03,-36.07,0.04521,1,1,15.75,-34.6,1,1,1,-2.32,-21.52,1,1,1,-3.44,4.22,1,2,1,-2.85,26.72,0.98753,2,-43.3,26.54,0.01247,2,1,17.6,45.48,0.8169,2,-22.86,45.33,0.1831,2,1,34.15,45.04,0.59101,2,-6.31,44.91,0.40899,2,1,48.9,44.66,0.30227,2,8.43,44.54,0.69773,2,1,66.69,44.2,0.09192,2,26.23,44.1,0.90808,2,1,82.24,29.13,0.00655,2,41.79,29.06,0.99345,1,2,41.11,1.65,1,2,1,79.99,-26.11,0.16768,2,39.6,-26.19,0.83232,2,1,62.04,-36.71,0.44331,2,21.66,-36.81,0.55669,1,2,23.39,2.77,1,1,2,7.54,3.46,1,2,1,32.24,3.95,0.98833,2,-8.18,3.81,0.01167,1,1,16.76,3.86,1],"hull":14,"edges":[4,6,8,10,6,8,20,22,18,20,28,22,18,28,24,26,28,26,30,28,16,30,30,0,2,4,32,30,2,32,32,14,10,12,12,14,8,34,34,32,12,34,34,4,14,16,16,18,26,0,22,24,0,2],"width":81,"height":85}},"huotui5":{"huotui4":{"type":"mesh","uvs":[1,0.3892,1,0.57216,1,0.78365,0.76148,1,0.51595,1,0.25891,0.99049,0,0.7772,0,0.57211,0.01778,0.39353,0.10664,0.20711,0.19824,0,0.51281,0,0.8525,0,0.97432,0.22118,0.51101,0.20877,0.50951,0.38199,0.5078,0.58036,0.51392,0.76232],"triangles":[2,3,17,5,17,4,3,4,17,5,6,17,17,1,2,6,16,17,6,7,16,17,16,1,7,8,16,16,15,1,16,8,15,15,0,1,8,9,15,15,13,0,15,14,13,15,9,14,13,14,12,14,11,12,9,10,14,14,10,11],"vertices":[2,3,45.87,-39.53,0.74582,4,5.49,-39.65,0.25418,2,3,30.32,-39.12,0.95021,4,-10.05,-39.26,0.04979,2,3,12.35,-38.65,0.99995,4,-28.03,-38.81,0.00005,1,3,-5.53,-18.86,1,2,3,-5.01,1.02,0.99994,4,-45.43,0.85,0.00006,2,3,-3.66,21.81,0.96124,4,-44.1,21.64,0.03876,2,3,15.01,42.31,0.73159,4,-25.46,42.15,0.26841,2,3,32.43,41.85,0.48656,4,-8.03,41.72,0.51344,2,3,47.57,40.02,0.21421,4,7.11,39.9,0.78579,2,3,63.22,32.41,0.02798,4,22.77,32.31,0.97202,1,4,40.18,24.45,1,2,3,79.96,-0.94,0.00117,4,39.55,-1.02,0.99883,2,3,79.25,-28.45,0.18756,4,38.86,-28.53,0.81244,2,3,60.2,-37.82,0.47939,4,19.82,-37.92,0.52061,2,3,62.23,-0.33,0.00176,4,21.81,-0.43,0.99824,1,4,7.1,0.06,1,1,3,30.66,0.75,1,2,3,15.19,0.66,0.99961,4,-25.23,0.51,0.00039],"hull":14,"edges":[4,6,8,10,6,8,20,22,18,20,28,22,18,28,24,26,28,26,30,28,16,30,30,0,2,4,32,30,2,32,32,14,10,12,12,14,8,34,34,32,12,34,34,4,14,16,16,18,26,0,22,24,0,2],"width":81,"height":85}},"huotui6":{"huotui4":{"type":"mesh","uvs":[1,0.41317,1,0.60344,0.97938,0.76057,0.86578,1,0.51595,1,0.1906,0.99574,0,0.77339,0,0.57078,0,0.39831,0,0.19937,0.19824,0,0.51281,0,0.8525,0,1,0.2172,0.51101,0.20877,0.50951,0.38199,0.5078,0.58036,0.51392,0.76232],"triangles":[2,3,17,5,17,4,3,4,17,5,6,17,6,16,17,6,7,16,17,16,2,2,16,1,16,0,1,16,15,0,15,16,8,16,7,8,15,13,0,8,9,15,15,14,13,15,9,14,13,14,12,14,11,12,9,10,14,14,10,11],"vertices":[2,5,43.08,-37.04,0.78073,6,2.71,-37.16,0.21927,2,5,26.92,-36.62,0.97488,6,-13.46,-36.76,0.02512,2,5,13.61,-34.6,0.99992,6,-26.77,-34.76,0.00008,1,5,-6.5,-24.87,1,2,5,-5.76,3.45,0.99707,6,-46.18,3.28,0.00293,2,5,-4.71,29.79,0.88827,6,-45.16,29.61,0.11173,2,5,14.59,44.73,0.66431,6,-25.88,44.58,0.33569,2,5,31.8,44.28,0.41164,6,-8.66,44.15,0.58836,2,5,46.46,43.9,0.16227,6,5.99,43.78,0.83773,2,5,63.36,43.46,0.02717,6,22.9,43.36,0.97283,1,6,39.44,26.88,1,1,6,38.8,1.41,1,2,5,78.5,-26.01,0.16635,6,38.11,-26.09,0.83365,2,5,59.74,-37.47,0.46939,6,19.36,-37.58,0.53061,1,6,21.06,2,1,1,6,6.35,2.49,1,2,5,29.92,3.18,0.94755,6,-10.5,3.05,0.05245,2,5,14.44,3.09,0.99208,6,-25.98,2.94,0.00792],"hull":14,"edges":[4,6,8,10,6,8,20,22,18,20,28,22,18,28,24,26,28,26,30,28,16,30,30,0,2,4,32,30,2,32,32,14,10,12,12,14,8,34,34,32,12,34,34,4,14,16,16,18,26,0,22,24,0,2],"width":81,"height":85}},"huotui7":{"huotui4":{"type":"mesh","uvs":[1,0.38698,1,0.59785,0.98076,0.76891,0.79798,1,0.51595,1,0.18433,0.9924,0,0.76884,0,0.57768,0,0.38119,0,0.20406,0.19824,0,0.51281,0,0.8525,0,1,0.22144,0.51101,0.20877,0.50951,0.38199,0.5078,0.58036,0.51392,0.76232],"triangles":[2,3,17,5,17,4,3,4,17,5,6,17,1,2,16,6,16,17,6,7,16,2,17,16,16,0,1,16,15,0,15,16,8,16,7,8,15,13,0,15,14,13,15,8,14,8,9,14,13,14,12,14,11,12,9,10,14,14,10,11],"vertices":[2,7,45.75,-39.46,0.62071,8,5.38,-39.58,0.37929,2,7,27.83,-38.99,0.91375,8,-12.54,-39.13,0.08625,2,7,13.34,-37.05,0.9924,8,-27.04,-37.21,0.0076,1,7,-5.91,-21.74,1,2,7,-5.31,1.09,0.99838,8,-45.73,0.92,0.00162,2,7,-3.97,27.93,0.85658,8,-44.42,27.76,0.14342,2,7,15.42,42.36,0.58374,8,-25.05,42.21,0.41626,2,7,31.66,41.94,0.32527,8,-8.8,41.8,0.67473,2,7,48.36,41.5,0.07272,8,7.89,41.39,0.92728,2,7,63.41,41.11,0.00357,8,22.94,41.01,0.99643,1,8,39.88,24.52,1,2,7,79.66,-0.87,0.00061,8,39.25,-0.95,0.99939,2,7,78.95,-28.37,0.12964,8,38.56,-28.45,0.87036,2,7,59.82,-39.82,0.37874,8,19.45,-39.93,0.62126,2,7,61.93,-0.26,0.00051,8,21.51,-0.36,0.99949,1,8,6.79,0.13,1,2,7,30.36,0.83,0.98507,8,-10.06,0.69,0.01493,2,7,14.88,0.73,0.9986,8,-25.53,0.58,0.0014],"hull":14,"edges":[4,6,8,10,6,8,20,22,18,20,28,22,18,28,24,26,28,26,30,28,16,30,30,0,2,4,32,30,2,32,32,14,10,12,12,14,8,34,34,32,12,34,34,4,14,16,16,18,26,0,22,24,0,2],"width":81,"height":85}},"huotui8":{"huotui5":{"x":-0.46,"y":29.5,"width":268,"height":95}}}},"animations":{"await1":{"bones":{"huotui4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"huotui1":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"huotui3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone2":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":6,"y":-0.09,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":6,"y":-0.09,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":6,"y":-0.09,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":6,"y":-0.09,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]}},"deform":{"default":{"huotui4":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.4667,"offset":34,"vertices":[3.60032,-0.81484,3.60122,-0.81084],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui5":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"offset":38,"vertices":[3.60123,-0.81081],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui6":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"offset":38,"vertices":[3.60122,-0.81083],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui7":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.3667,"offset":38,"vertices":[3.60122,-0.81083],"curve":[0.25,0,0.75,1]},{"time":1}]}}}},"await2":{"bones":{"huotui4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":0,"y":15.8,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":0,"y":25.35,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":0,"y":11.4,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.019,"y":0.996,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":1.125,"y":0.969,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":0.938,"y":0.972,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui1":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"huotui3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"bone2":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"angle":1.58,"curve":[0.25,0,0.75,1]},{"time":0.2333,"angle":-0.6,"curve":"stepped"},{"time":0.3333,"angle":-0.6,"curve":[0.25,0,0.75,1]},{"time":0.4667,"angle":0.87,"curve":[0.25,0,0.75,1]},{"time":0.5667,"angle":-0.55,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":-4.82,"y":-0.03,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":6,"y":0.23,"curve":"stepped"},{"time":0.3333,"x":6,"y":0.23,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":-5.05,"y":0.6,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":6.91,"y":0.37,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.863,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.8333,"x":1,"y":1}]},"huotui5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":0,"y":16.76,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":0,"y":28.68,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0,"y":4.73,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":1.019,"y":0.996,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":1.125,"y":0.969,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0.938,"y":0.972,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone3":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"angle":1.58,"curve":[0.25,0,0.75,1]},{"time":0.2,"angle":-0.6,"curve":"stepped"},{"time":0.3,"angle":-0.6,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":0.87,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":-0.55,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":-4.82,"y":-0.03,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":6,"y":0.23,"curve":"stepped"},{"time":0.3,"x":6,"y":0.23,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":-5.05,"y":0.6,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":6.91,"y":0.37,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.863,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.8333,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":0,"y":5.81,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":0,"y":24.45,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":0,"y":13.51,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.019,"y":0.996,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":1.125,"y":0.969,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":0.938,"y":0.972,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":1.58,"curve":[0.25,0,0.75,1]},{"time":0.2333,"angle":-0.6,"curve":"stepped"},{"time":0.3667,"angle":-0.6,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":0.87,"curve":[0.25,0,0.75,1]},{"time":0.6,"angle":-0.55,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-4.82,"y":-0.03,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":6,"y":0.23,"curve":"stepped"},{"time":0.3667,"x":6,"y":0.23,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":-5.05,"y":0.6,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":6.91,"y":0.37,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.863,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.8333,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":0,"y":5.81,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0,"y":11.55,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":0,"y":4.73,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":1.019,"y":0.996,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.125,"y":0.969,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":0.938,"y":0.972,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":1.58,"curve":[0.25,0,0.75,1]},{"time":0.2667,"angle":-0.6,"curve":"stepped"},{"time":0.4,"angle":-0.6,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":0.87,"curve":[0.25,0,0.75,1]},{"time":0.6667,"angle":-0.55,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-4.82,"y":-0.03,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":6,"y":0.23,"curve":"stepped"},{"time":0.4,"x":6,"y":0.23,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":-5.05,"y":0.6,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":6.91,"y":0.37,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.863,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.8333,"x":1,"y":1}]}},"deform":{"default":{"huotui4":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3333,"offset":34,"vertices":[3.60032,-0.81484,3.60122,-0.81084],"curve":[0.25,0,0.75,1]},{"time":0.8333}]},"huotui5":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3,"offset":38,"vertices":[3.60123,-0.81081],"curve":[0.25,0,0.75,1]},{"time":0.8333}]},"huotui6":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3667,"offset":38,"vertices":[3.60122,-0.81083],"curve":[0.25,0,0.75,1]},{"time":0.8333}]},"huotui7":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4,"offset":38,"vertices":[3.60122,-0.81083],"curve":[0.25,0,0.75,1]},{"time":0.8333}]}}}}}},"_atlasText":"\nn_013.png\nsize: 914,324\nformat: RGBA8888\nfilter: Linear,Linear\nrepeat: none\nhuotui1\n rotate: false\n xy: 2, 2\n size: 302, 159\n orig: 302, 159\n offset: 0, 0\n index: -1\nhuotui3\n rotate: false\n xy: 306, 2\n size: 276, 92\n orig: 276, 92\n offset: 0, 0\n index: -1\nhuotui4\n rotate: false\n xy: 610, 2\n size: 81, 85\n orig: 81, 85\n offset: 0, 0\n index: -1\nhuotui5\n rotate: false\n xy: 2, 163\n size: 268, 95\n orig: 268, 95\n offset: 0, 0\n index: -1\n","textures":[{"__uuid__":"6aVWUY4spLoqsb/E197P1v"}],"textureNames":["n_013.png"]}
\ No newline at end of file
{"__type__":"cc.Asset","_name":"n_05","_native":".atlas"}
\ No newline at end of file
{"__type__":"cc.Asset","_name":"n_08","_native":".atlas"}
\ No newline at end of file
{"__type__":"cc.Asset","_name":"n_09","_native":".atlas"}
\ No newline at end of file
{"__type__":"cc.Asset","_name":"n_010","_native":".atlas"}
\ No newline at end of file
{"__type__":"sp.SkeletonData","_name":"n_07","_native":"raw-skeleton.json","_skeletonJson":{"skeleton":{"hash":"jITJkdJGKGxaoyJ6881GiR2/3dc","spine":"3.6.53","width":311.13,"height":229.21,"images":"./lanjing/"},"bones":[{"name":"root"},{"name":"huotui4","parent":"root","length":40,"rotation":91.49,"x":79.23,"y":-11.2,"color":"ff00e5ff"},{"name":"bone2","parent":"huotui4","length":44.73,"rotation":-0.06,"x":40.42,"y":0.12,"color":"ff00e5ff"},{"name":"huotui5","parent":"root","length":40,"rotation":91.49,"x":-89.73,"y":-2.67,"color":"ff00e5ff"},{"name":"bone3","parent":"huotui5","length":44.73,"rotation":-0.06,"x":40.42,"y":0.12,"color":"ff00e5ff"},{"name":"huotui6","parent":"root","length":40,"rotation":91.49,"x":-0.72,"y":-51.17,"color":"ff00e5ff"},{"name":"bone4","parent":"huotui6","length":44.73,"rotation":-0.06,"x":40.42,"y":0.12,"color":"ff00e5ff"},{"name":"huotui7","parent":"root","length":40,"rotation":91.49,"x":-8.18,"y":32.51,"color":"ff00e5ff"},{"name":"bone5","parent":"huotui7","length":44.73,"rotation":-0.06,"x":40.42,"y":0.12,"color":"ff00e5ff"},{"name":"huotui1","parent":"root","color":"ff0000ff"},{"name":"huotui2","parent":"root","x":94.75,"y":-51.97,"color":"0017ffff"},{"name":"huotui3","parent":"huotui1","x":-4.32,"y":61.7,"color":"ff0000ff"},{"name":"huotui8","parent":"root","x":-0.98,"y":-68.91}],"slots":[{"name":"huotui3","bone":"huotui3","attachment":"huotui3"},{"name":"huotui1","bone":"huotui1","attachment":"huotui1"},{"name":"huotui4","bone":"huotui4","attachment":"huotui4"},{"name":"huotui7","bone":"huotui7","attachment":"huotui4"},{"name":"huotui6","bone":"huotui6","attachment":"huotui4"},{"name":"huotui5","bone":"huotui5","attachment":"huotui4"},{"name":"huotui8","bone":"huotui8","attachment":"huotui5"},{"name":"huotui2","bone":"huotui2","attachment":"huotui2"}],"skins":{"default":{"huotui1":{"huotui1":{"x":1,"y":-13,"width":304,"height":161}},"huotui2":{"huotui2":{"type":"mesh","uvs":[0.81953,0.0301,1,0.16793,1,0.4357,0.68163,0.69679,0.44486,0.89762,0.26517,1,0,0.80055,0,0.68674,0.00487,0.50617,0.66893,0.02929,0.76739,0,0.15718,0.61729,0.28075,0.71092,0.86998,0.25852,0.72125,0.14728,0.21077,0.64948,0.7768,0.18755,0.6396,0.20284,0.68816,0.28049,0.74072,0.34807,0.47501,0.31079,0.53403,0.37474,0.57686,0.46938,0.31056,0.45181,0.3561,0.5331,0.41351,0.60707],"triangles":[14,9,10,14,10,0,16,14,0,16,0,1,17,9,14,13,16,1,18,17,14,18,14,16,17,20,9,21,20,17,19,18,16,19,16,13,18,21,17,13,1,2,9,20,8,19,22,21,19,21,18,8,20,23,21,24,23,21,23,20,24,21,22,25,24,22,11,8,23,15,11,23,24,15,23,12,15,24,7,8,11,3,22,19,25,22,3,2,3,19,2,19,13,25,12,24,15,6,7,4,25,3,12,25,4,12,6,15,5,12,4,15,7,11,12,5,6],"vertices":[1,10,38.38,28.39,1,1,10,58.96,18.46,1,1,10,58.96,-0.82,1,1,10,22.66,-19.61,1,1,10,-4.33,-34.07,1,1,10,-24.81,-41.45,1,1,10,-55.04,-27.08,1,1,10,-55.04,-18.89,1,1,10,-54.49,-5.89,1,1,10,21.21,28.45,1,1,10,32.44,30.55,1,1,10,-37.13,-13.89,1,1,10,-23.04,-20.63,1,1,10,44.13,11.94,1,1,10,27.18,19.95,1,1,10,-31.02,-16.21,1,1,10,33.51,17.05,1,1,10,17.87,15.95,1,1,10,23.41,10.36,1,1,10,29.4,5.49,1,1,10,-0.89,8.18,1,1,10,5.84,3.57,1,1,10,10.72,-3.24,1,1,10,-19.64,-1.98,1,1,10,-14.45,-7.83,1,1,10,-7.9,-13.15,1],"hull":11,"edges":[12,10,10,8,8,6,6,4,16,18,12,14,14,16,14,22,28,18,4,2,26,2,26,4,18,20,0,28,20,0,0,2,16,22,24,10,22,30,30,24,26,32,32,28,34,28,36,32,34,36,38,26,36,38,40,34,42,36,40,42,44,38,42,44,22,46,46,40,30,48,48,42,46,48,24,50,50,44,48,50],"width":112,"height":70}},"huotui3":{"huotui3":{"x":5.18,"y":-13.49,"width":301,"height":100}},"huotui4":{"huotui4":{"type":"mesh","uvs":[1,0.35466,1,0.52957,0.99301,0.59544,0.93496,0.76057,0.68577,0.96479,0.51664,1,0.36587,0.99174,0.30111,0.73082,0.03055,0.58529,0,0.43631,0.15812,0.21737,0.18527,0,0.51336,0,0.86766,0,0.93396,0.21495,0.51148,0.20877,0.50992,0.38199,0.50814,0.58036,0.51452,0.76232],"triangles":[4,5,18,5,6,18,6,7,18,4,18,3,7,17,18,18,17,3,3,17,2,7,8,17,2,17,1,17,8,16,17,16,1,16,8,9,16,0,1,9,10,16,16,14,0,16,15,14,16,10,15,10,11,15,14,15,13,15,12,13,15,11,12],"vertices":[2,1,60.82,-61.91,0.21891,2,20.47,-62.01,0.78109,2,1,40.71,-61.38,0.43083,2,0.36,-61.51,0.56917,2,1,33.16,-60.29,0.51881,2,-7.19,-60.42,0.48119,2,1,14.37,-52.37,0.74384,2,-25.99,-52.52,0.25616,2,1,-8.27,-19.87,0.99665,2,-48.67,-20.05,0.00335,1,1,-11.76,1.88,1,2,1,-10.31,21.14,0.97992,2,-50.75,20.96,0.02008,2,1,19.91,28.65,0.46063,2,-20.54,28.5,0.53937,2,1,37.54,62.83,0.0027,2,-2.95,62.7,0.9973,1,2,14.28,66.18,1,1,2,38.94,45.32,1,1,2,63.85,41.23,1,1,2,62.8,-0.76,1,2,1,102.03,-46.04,0.00276,2,61.67,-46.09,0.99724,2,1,77.1,-53.88,0.08086,2,36.74,-53.96,0.91914,1,2,38.8,0.08,1,1,2,18.89,0.78,1,2,1,36.51,1.71,0.80425,2,-3.91,1.58,0.19575,2,1,15.57,1.43,0.99515,2,-24.85,1.28,0.00485],"hull":15,"edges":[6,8,10,12,8,10,22,24,20,22,30,24,20,30,26,28,30,28,32,30,18,32,2,0,32,0,2,4,4,6,34,32,4,34,34,16,12,14,14,16,10,36,36,34,14,36,36,6,16,18,18,20,28,0,24,26],"width":128,"height":115}},"huotui5":{"huotui4":{"type":"mesh","uvs":[1,0.35466,1,0.52957,0.99301,0.59544,0.93496,0.76057,0.68577,0.96479,0.51664,1,0.36587,0.99174,0.30111,0.73082,0.03055,0.58529,0,0.43631,0.15812,0.21737,0.18527,0,0.51336,0,0.86766,0,0.93396,0.21495,0.51148,0.20877,0.50992,0.38199,0.50814,0.58036,0.51452,0.76232],"triangles":[4,5,18,5,6,18,6,7,18,4,18,3,7,17,18,18,17,3,3,17,2,7,8,17,2,17,1,17,8,16,17,16,1,16,8,9,16,0,1,9,10,16,16,14,0,16,15,14,16,10,15,10,11,15,14,15,13,15,12,13,15,11,12],"vertices":[2,3,60.82,-61.91,0.21891,4,20.47,-62.01,0.78109,2,3,40.71,-61.38,0.43083,4,0.36,-61.51,0.56917,2,3,33.16,-60.29,0.51881,4,-7.19,-60.42,0.48119,2,3,14.37,-52.37,0.74384,4,-25.99,-52.52,0.25616,2,3,-8.27,-19.87,0.99665,4,-48.67,-20.05,0.00335,1,3,-11.76,1.88,1,2,3,-10.31,21.14,0.97992,4,-50.75,20.96,0.02008,2,3,19.91,28.65,0.46063,4,-20.54,28.5,0.53937,2,3,37.54,62.83,0.0027,4,-2.95,62.7,0.9973,1,4,14.28,66.18,1,1,4,38.94,45.32,1,1,4,63.85,41.23,1,1,4,62.8,-0.76,1,2,3,102.03,-46.04,0.00276,4,61.67,-46.09,0.99724,2,3,77.1,-53.88,0.08086,4,36.74,-53.96,0.91914,1,4,38.8,0.08,1,1,4,18.89,0.78,1,2,3,36.51,1.71,0.80425,4,-3.91,1.58,0.19575,2,3,15.57,1.43,0.99515,4,-24.85,1.28,0.00485],"hull":15,"edges":[6,8,10,12,8,10,22,24,20,22,30,24,20,30,26,28,30,28,32,30,18,32,2,0,32,0,2,4,4,6,34,32,4,34,34,16,12,14,14,16,10,36,36,34,14,36,36,6,16,18,18,20,28,0,24,26],"width":128,"height":115}},"huotui6":{"huotui4":{"type":"mesh","uvs":[1,0.35466,1,0.52957,0.99301,0.59544,0.93496,0.76057,0.68577,0.96479,0.51664,1,0.36587,0.99174,0.30111,0.73082,0.03055,0.58529,0,0.43631,0.15812,0.21737,0.18527,0,0.51336,0,0.86766,0,0.93396,0.21495,0.51148,0.20877,0.50992,0.38199,0.50814,0.58036,0.51452,0.76232],"triangles":[4,5,18,5,6,18,6,7,18,4,18,3,7,17,18,18,17,3,3,17,2,7,8,17,2,17,1,17,8,16,17,16,1,16,8,9,16,0,1,9,10,16,16,14,0,16,15,14,16,10,15,10,11,15,14,15,13,15,12,13,15,11,12],"vertices":[2,5,60.82,-61.91,0.21891,6,20.47,-62.01,0.78109,2,5,40.71,-61.38,0.43083,6,0.36,-61.51,0.56917,2,5,33.16,-60.29,0.51881,6,-7.19,-60.42,0.48119,2,5,14.37,-52.37,0.74384,6,-25.99,-52.52,0.25616,2,5,-8.27,-19.87,0.99665,6,-48.67,-20.05,0.00335,1,5,-11.76,1.88,1,2,5,-10.31,21.14,0.97992,6,-50.75,20.96,0.02008,2,5,19.91,28.65,0.46063,6,-20.54,28.5,0.53937,2,5,37.54,62.83,0.0027,6,-2.95,62.7,0.9973,1,6,14.28,66.18,1,1,6,38.94,45.32,1,1,6,63.85,41.23,1,1,6,62.8,-0.76,1,2,5,102.03,-46.04,0.00276,6,61.67,-46.09,0.99724,2,5,77.1,-53.88,0.08086,6,36.74,-53.96,0.91914,1,6,38.8,0.08,1,1,6,18.89,0.78,1,2,5,36.51,1.71,0.80425,6,-3.91,1.58,0.19575,2,5,15.57,1.43,0.99515,6,-24.85,1.28,0.00485],"hull":15,"edges":[6,8,10,12,8,10,22,24,20,22,30,24,20,30,26,28,30,28,32,30,18,32,2,0,32,0,2,4,4,6,34,32,4,34,34,16,12,14,14,16,10,36,36,34,14,36,36,6,16,18,18,20,28,0,24,26],"width":128,"height":115}},"huotui7":{"huotui4":{"type":"mesh","uvs":[1,0.35466,1,0.52957,0.99301,0.59544,0.93496,0.76057,0.68577,0.96479,0.51664,1,0.36587,0.99174,0.30111,0.73082,0.03055,0.58529,0,0.43631,0.15812,0.21737,0.18527,0,0.51336,0,0.86766,0,0.93396,0.21495,0.51148,0.20877,0.50992,0.38199,0.50814,0.58036,0.51452,0.76232],"triangles":[4,5,18,5,6,18,6,7,18,4,18,3,7,17,18,18,17,3,3,17,2,7,8,17,2,17,1,17,8,16,17,16,1,16,8,9,16,0,1,9,10,16,16,14,0,16,15,14,16,10,15,10,11,15,14,15,13,15,12,13,15,11,12],"vertices":[2,7,60.82,-61.91,0.21891,8,20.47,-62.01,0.78109,2,7,40.71,-61.38,0.43083,8,0.36,-61.51,0.56917,2,7,33.16,-60.29,0.51881,8,-7.19,-60.42,0.48119,2,7,14.37,-52.37,0.74384,8,-25.99,-52.52,0.25616,2,7,-8.27,-19.87,0.99665,8,-48.67,-20.05,0.00335,1,7,-11.76,1.88,1,2,7,-10.31,21.14,0.97992,8,-50.75,20.96,0.02008,2,7,19.91,28.65,0.46063,8,-20.54,28.5,0.53937,2,7,37.54,62.83,0.0027,8,-2.95,62.7,0.9973,1,8,14.28,66.18,1,1,8,38.94,45.32,1,1,8,63.85,41.23,1,1,8,62.8,-0.76,1,2,7,102.03,-46.04,0.00276,8,61.67,-46.09,0.99724,2,7,77.1,-53.88,0.08086,8,36.74,-53.96,0.91914,1,8,38.8,0.08,1,1,8,18.89,0.78,1,2,7,36.51,1.71,0.80425,8,-3.91,1.58,0.19575,2,7,15.57,1.43,0.99515,8,-24.85,1.28,0.00485],"hull":15,"edges":[6,8,10,12,8,10,22,24,20,22,30,24,20,30,26,28,30,28,32,30,18,32,2,0,32,0,2,4,4,6,34,32,4,34,34,16,12,14,14,16,10,36,36,34,14,36,36,6,16,18,18,20,28,0,24,26],"width":128,"height":115}},"huotui8":{"huotui5":{"x":-0.46,"y":29.5,"width":303,"height":101}}}},"animations":{"await1":{"bones":{"huotui4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"huotui1":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"huotui3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone2":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":6,"y":-0.09,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui2":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"huotui5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":6,"y":-0.09,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":6,"y":-0.09,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":6,"y":-0.09,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]}},"deform":{"default":{"huotui2":{"huotui2":[{"time":0,"offset":49,"vertices":[0.77],"curve":[0.25,0,0.75,1]},{"time":0.5,"offset":36,"vertices":[5.85198,4.00399,0,0,0,0,7.63398,5.23599,0,0,0,0,4.92798,-2.30999],"curve":[0.25,0,0.75,1]},{"time":1,"offset":49,"vertices":[0.77]}]},"huotui4":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.4667,"offset":38,"vertices":[3.60122,-0.81083],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui5":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"offset":38,"vertices":[3.60122,-0.81083],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui6":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"offset":38,"vertices":[3.60122,-0.81083],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui7":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.3667,"offset":38,"vertices":[3.60122,-0.81083],"curve":[0.25,0,0.75,1]},{"time":1}]}}}},"await2":{"bones":{"huotui4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":0,"y":15.8,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":0,"y":25.35,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":0,"y":11.4,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.019,"y":0.996,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":1.125,"y":0.969,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":0.938,"y":0.972,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui1":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"huotui3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"bone2":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"angle":1.58,"curve":[0.25,0,0.75,1]},{"time":0.2333,"angle":-0.6,"curve":"stepped"},{"time":0.3333,"angle":-0.6,"curve":[0.25,0,0.75,1]},{"time":0.4667,"angle":0.87,"curve":[0.25,0,0.75,1]},{"time":0.5667,"angle":-0.55,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":-4.82,"y":-0.03,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":6,"y":0.23,"curve":"stepped"},{"time":0.3333,"x":6,"y":0.23,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":-5.05,"y":0.6,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":6.91,"y":0.37,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.863,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.8333,"x":1,"y":1}]},"huotui2":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"huotui5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":0,"y":16.76,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":0,"y":28.68,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0,"y":4.73,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":1.019,"y":0.996,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":1.125,"y":0.969,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0.938,"y":0.972,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone3":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"angle":1.58,"curve":[0.25,0,0.75,1]},{"time":0.2,"angle":-0.6,"curve":"stepped"},{"time":0.3,"angle":-0.6,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":0.87,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":-0.55,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":-4.82,"y":-0.03,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":6,"y":0.23,"curve":"stepped"},{"time":0.3,"x":6,"y":0.23,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":-5.05,"y":0.6,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":6.91,"y":0.37,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":0.863,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.8333,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":0,"y":5.81,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":0,"y":24.45,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":0,"y":13.51,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.019,"y":0.996,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":1.125,"y":0.969,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":0.938,"y":0.972,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":1.58,"curve":[0.25,0,0.75,1]},{"time":0.2333,"angle":-0.6,"curve":"stepped"},{"time":0.3667,"angle":-0.6,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":0.87,"curve":[0.25,0,0.75,1]},{"time":0.6,"angle":-0.55,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-4.82,"y":-0.03,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":6,"y":0.23,"curve":"stepped"},{"time":0.3667,"x":6,"y":0.23,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":-5.05,"y":0.6,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":6.91,"y":0.37,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.863,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.8333,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":0,"y":5.81,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0,"y":11.55,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0,"y":-1.79,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":0,"y":4.73,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":1.019,"y":0.996,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.125,"y":0.969,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0.8,"y":1.1,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":0.938,"y":0.972,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":1.58,"curve":[0.25,0,0.75,1]},{"time":0.2667,"angle":-0.6,"curve":"stepped"},{"time":0.4,"angle":-0.6,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":0.87,"curve":[0.25,0,0.75,1]},{"time":0.6667,"angle":-0.55,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-4.82,"y":-0.03,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":6,"y":0.23,"curve":"stepped"},{"time":0.4,"x":6,"y":0.23,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":-5.05,"y":0.6,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":6.91,"y":0.37,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.863,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.8333,"x":1,"y":1}]}},"deform":{"default":{"huotui2":{"huotui2":[{"time":0,"offset":49,"vertices":[0.77],"curve":[0.25,0,0.75,1]},{"time":0.4333,"offset":36,"vertices":[5.85198,4.00399,0,0,0,0,7.63398,5.23599,0,0,0,0,4.92798,-2.30999],"curve":[0.25,0,0.75,1]},{"time":0.8333,"offset":49,"vertices":[0.77]}]},"huotui4":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3333,"offset":38,"vertices":[3.60122,-0.81083],"curve":[0.25,0,0.75,1]},{"time":0.8333}]},"huotui5":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3,"offset":38,"vertices":[3.60122,-0.81083],"curve":[0.25,0,0.75,1]},{"time":0.8333}]},"huotui6":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3667,"offset":38,"vertices":[3.60122,-0.81083],"curve":[0.25,0,0.75,1]},{"time":0.8333}]},"huotui7":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4,"offset":38,"vertices":[3.60122,-0.81083],"curve":[0.25,0,0.75,1]},{"time":0.8333}]}}}}}},"_atlasText":"\nn_07.png\nsize: 920,328\nformat: RGBA8888\nfilter: Linear,Linear\nrepeat: none\nhuotui1\n rotate: false\n xy: 2, 2\n size: 304, 161\n orig: 304, 161\n offset: 0, 0\n index: -1\nhuotui2\n rotate: false\n xy: 308, 2\n size: 112, 70\n orig: 112, 70\n offset: 0, 0\n index: -1\nhuotui3\n rotate: false\n xy: 614, 2\n size: 301, 100\n orig: 301, 100\n offset: 0, 0\n index: -1\nhuotui4\n rotate: false\n xy: 2, 165\n size: 128, 115\n orig: 128, 115\n offset: 0, 0\n index: -1\nhuotui5\n rotate: false\n xy: 308, 165\n size: 303, 101\n orig: 303, 101\n offset: 0, 0\n index: -1\n","textures":[{"__uuid__":"8dUsVh3sdHlo1whjvTvmXZ"}],"textureNames":["n_07.png"]}
\ No newline at end of file
{"__type__":"cc.Asset","_name":"n_06","_native":".atlas"}
\ No newline at end of file
{"__type__":"sp.SkeletonData","_name":"n_03","_native":"raw-skeleton.json","_skeletonJson":{"skeleton":{"hash":"JRpGV8VJY2Eb/yZQJ7MiCcQMfvI","spine":"3.6.53","width":288,"height":227.71,"images":"./lanjing/"},"bones":[{"name":"root"},{"name":"huotui4","parent":"root","length":30.41,"rotation":89.41,"x":2.89,"y":-36.3,"color":"ff00e5ff"},{"name":"bone2","parent":"huotui4","length":30,"rotation":1.04,"x":29.77,"y":-0.6,"color":"ff00e5ff"},{"name":"bone3","parent":"bone2","length":14.27,"rotation":39.35,"x":39.44,"y":1.2,"color":"ff00e5ff"},{"name":"bone4","parent":"bone3","length":10.43,"rotation":-71.51,"x":14.27,"color":"ff00e5ff"},{"name":"bone5","parent":"bone4","length":11.26,"rotation":-12.36,"x":10.43,"color":"ff00e5ff"},{"name":"bone6","parent":"bone5","length":12.86,"rotation":38.23,"x":11.26,"color":"ff00e5ff"},{"name":"huotui5","parent":"root","length":30.41,"rotation":89.41,"x":-64.79,"y":-9.98,"color":"ff00e5ff"},{"name":"bone7","parent":"huotui5","length":30,"rotation":1.04,"x":29.77,"y":-0.6,"color":"ff00e5ff"},{"name":"bone8","parent":"bone7","length":14.27,"rotation":39.35,"x":39.44,"y":1.2,"color":"ff00e5ff"},{"name":"bone9","parent":"bone8","length":10.43,"rotation":-71.51,"x":14.27,"color":"ff00e5ff"},{"name":"bone10","parent":"bone9","length":11.26,"rotation":-12.36,"x":10.43,"color":"ff00e5ff"},{"name":"bone11","parent":"bone10","length":12.86,"rotation":38.23,"x":11.26,"color":"ff00e5ff"},{"name":"huotui6","parent":"root","length":30.41,"rotation":89.41,"x":66.34,"y":-18.44,"color":"ff00e5ff"},{"name":"bone12","parent":"huotui6","length":30,"rotation":1.04,"x":29.77,"y":-0.6,"color":"ff00e5ff"},{"name":"bone13","parent":"bone12","length":14.27,"rotation":39.35,"x":39.44,"y":1.2,"color":"ff00e5ff"},{"name":"bone14","parent":"bone13","length":10.43,"rotation":-71.51,"x":14.27,"color":"ff00e5ff"},{"name":"bone15","parent":"bone14","length":11.26,"rotation":-12.36,"x":10.43,"color":"ff00e5ff"},{"name":"bone16","parent":"bone15","length":12.86,"rotation":38.23,"x":11.26,"color":"ff00e5ff"},{"name":"huotui7","parent":"root","length":30.41,"rotation":89.41,"x":3.36,"y":16.34,"color":"ff00e5ff"},{"name":"bone17","parent":"huotui7","length":30,"rotation":1.04,"x":29.77,"y":-0.6,"color":"ff00e5ff"},{"name":"bone18","parent":"bone17","length":14.27,"rotation":39.35,"x":39.44,"y":1.2,"color":"ff00e5ff"},{"name":"bone19","parent":"bone18","length":10.43,"rotation":-71.51,"x":14.27,"color":"ff00e5ff"},{"name":"bone20","parent":"bone19","length":11.26,"rotation":-12.36,"x":10.43,"color":"ff00e5ff"},{"name":"bone21","parent":"bone20","length":12.86,"rotation":38.23,"x":11.26,"color":"ff00e5ff"},{"name":"huotui1","parent":"root","color":"ff0000ff"}],"slots":[{"name":"huotui1","bone":"huotui1","attachment":"huotui1"},{"name":"huotui6","bone":"huotui6","attachment":"huotui4"},{"name":"huotui7","bone":"huotui7","attachment":"huotui4"},{"name":"huotui4","bone":"huotui4","attachment":"huotui4"},{"name":"huotui5","bone":"huotui5","attachment":"huotui4"}],"skins":{"default":{"huotui1":{"huotui1":{"x":1,"y":-13,"width":288,"height":168}},"huotui4":{"huotui4":{"type":"mesh","uvs":[0.48157,0.29728,0.63651,0.31513,0.90927,0.4041,0.95857,0.55503,1,0.73049,0.87645,0.87843,0.61861,0.99466,0.36159,1,0.00319,0.90316,0,0.75069,0.06275,0.63358,0.06709,0.52937,0.0639,0.4485,0.13308,0.36414,0.1131,0.26506,0.14116,0.1782,0.36556,0.12668,0.21876,0.02021,0.40939,0,0.55559,0,0.59912,0.11685,0.51233,0.19736,0.40921,0.26611,0.45326,0.12592,0.34813,0.20269,0.25893,0.26484,0.37883,0.34037,0.4684,0.53114,0.43113,0.64117,0.39572,0.80975,0.47386,0.43756],"triangles":[16,17,18,23,18,19,16,18,23,24,16,23,21,23,20,23,19,20,24,23,21,25,15,24,24,15,16,22,24,21,26,25,22,13,14,25,14,15,25,25,24,22,13,26,30,28,27,3,28,11,27,3,27,2,27,30,2,30,27,12,27,11,12,12,13,30,30,1,2,30,26,0,13,25,26,30,0,1,26,22,0,4,28,3,10,11,28,5,28,4,7,29,6,7,8,29,6,29,5,8,9,29,29,28,5,9,10,29,29,10,28],"vertices":[2,2,48.3,-4.67,0.88,3,3.13,-10.16,0.12,1,2,46.04,-15.5,1,1,2,35.03,-34.51,1,1,2,16.59,-37.81,1,2,1,25.67,-41.23,0.83,2,-4.84,-40.54,0.17,1,1,7.53,-32.77,1,1,1,-6.83,-14.86,1,1,1,-7.66,3.12,1,1,1,3.89,28.33,1,1,1,22.49,28.74,1,2,1,36.82,24.5,0.89,2,7.5,24.97,0.11,1,2,20.21,24.56,1,1,2,30.08,24.71,1,2,2,40.33,19.79,0.94,3,12.48,13.8,0.06,2,3,22.66,7.13,0.94,4,-4.11,10.22,0.06,2,4,5.94,14.12,0.91,5,-7.4,12.83,0.09,2,5,8.03,5.91,0.91,6,1.13,6.64,0.09,1,6,13,18.18,1,1,6,16.81,5.16,1,1,6,17.85,-5.03,1,2,5,20.27,-5,0.95,6,3.98,-9.5,0.05,2,4,17.61,-9.22,0.92,5,8.98,-7.47,0.08,2,3,9.29,-8.71,0.89,4,6.68,-7.48,0.11,2,5,12.37,1.56,0.93,6,1.84,0.54,0.07,2,4,11.01,0.22,0.96,5,0.52,0.34,0.04,2,3,16.14,-0.72,0.91,4,1.28,1.55,0.09,2,2,43.1,2.56,0.94,3,3.69,-1.27,0.06,1,2,19.78,-3.53,1,2,1,36.16,-1.3,0.92,2,6.37,-0.81,0.08,1,1,15.57,0.97,1,1,2,31.19,-4,1],"hull":23,"edges":[34,36,36,38,36,46,46,48,48,50,50,52,22,54,54,6,56,54,20,56,8,10,56,8,16,18,14,58,58,56,18,58,58,10,6,8,18,20,14,16,10,12,12,14,32,34,32,46,38,40,46,40,28,30,30,32,30,48,40,42,42,44,48,42,28,50,50,44,26,28,26,52,0,44,52,0,22,24,24,26,52,60,60,54,24,60,4,6,60,4,60,26,60,0,0,2,2,4,20,22],"width":70,"height":122}},"huotui5":{"huotui4":{"type":"mesh","uvs":[0.48157,0.29728,0.63651,0.31513,0.90927,0.4041,0.95857,0.55503,1,0.73049,0.87645,0.87843,0.61861,0.99466,0.36159,1,0.00319,0.90316,0,0.75069,0.06275,0.63358,0.06709,0.52937,0.0639,0.4485,0.13308,0.36414,0.1131,0.26506,0.14116,0.1782,0.36556,0.12668,0.21876,0.02021,0.40939,0,0.55559,0,0.59912,0.11685,0.51233,0.19736,0.40921,0.26611,0.45326,0.12592,0.34813,0.20269,0.25893,0.26484,0.37883,0.34037,0.4684,0.53114,0.43113,0.64117,0.39572,0.80975,0.47386,0.43756],"triangles":[16,17,18,23,18,19,16,18,23,24,16,23,21,23,20,23,19,20,24,23,21,25,15,24,24,15,16,22,24,21,26,25,22,13,14,25,14,15,25,25,24,22,13,26,30,28,27,3,28,11,27,3,27,2,27,30,2,30,27,12,27,11,12,12,13,30,30,1,2,30,26,0,13,25,26,30,0,1,26,22,0,4,28,3,10,11,28,5,28,4,7,29,6,7,8,29,6,29,5,8,9,29,29,28,5,9,10,29,29,10,28],"vertices":[2,8,48.3,-4.67,0.88,9,3.13,-10.16,0.12,1,8,46.04,-15.5,1,1,8,35.03,-34.51,1,1,8,16.59,-37.81,1,2,7,25.67,-41.23,0.83,8,-4.84,-40.54,0.17,1,7,7.53,-32.77,1,1,7,-6.83,-14.86,1,1,7,-7.66,3.12,1,1,7,3.89,28.33,1,1,7,22.49,28.74,1,2,7,36.82,24.5,0.89,8,7.5,24.97,0.11,1,8,20.21,24.56,1,1,8,30.08,24.71,1,2,8,40.33,19.79,0.94,9,12.48,13.8,0.06,2,9,22.66,7.13,0.94,10,-4.11,10.22,0.06,2,10,5.94,14.12,0.91,11,-7.4,12.83,0.09,2,11,8.03,5.91,0.91,12,1.13,6.64,0.09,1,12,13,18.18,1,1,12,16.81,5.16,1,1,12,17.85,-5.03,1,2,11,20.27,-5,0.95,12,3.98,-9.5,0.05,2,10,17.61,-9.22,0.92,11,8.98,-7.47,0.08,2,9,9.29,-8.71,0.89,10,6.68,-7.48,0.11,2,11,12.37,1.56,0.93,12,1.84,0.54,0.07,2,10,11.01,0.22,0.96,11,0.52,0.34,0.04,2,9,16.14,-0.72,0.91,10,1.28,1.55,0.09,2,8,43.1,2.56,0.94,9,3.69,-1.27,0.06,1,8,19.78,-3.53,1,2,7,36.16,-1.3,0.92,8,6.37,-0.81,0.08,1,7,15.57,0.97,1,1,8,31.19,-4,1],"hull":23,"edges":[34,36,36,38,36,46,46,48,48,50,50,52,22,54,54,6,56,54,20,56,8,10,56,8,16,18,14,58,58,56,18,58,58,10,6,8,18,20,14,16,10,12,12,14,32,34,32,46,38,40,46,40,28,30,30,32,30,48,40,42,42,44,48,42,28,50,50,44,26,28,26,52,0,44,52,0,22,24,24,26,52,60,60,54,24,60,4,6,60,4,60,26,60,0,0,2,2,4,20,22],"width":70,"height":122}},"huotui6":{"huotui4":{"type":"mesh","uvs":[0.48157,0.29728,0.63651,0.31513,0.90927,0.4041,0.95857,0.55503,1,0.73049,0.87645,0.87843,0.61861,0.99466,0.36159,1,0.00319,0.90316,0,0.75069,0.06275,0.63358,0.06709,0.52937,0.0639,0.4485,0.13308,0.36414,0.1131,0.26506,0.14116,0.1782,0.36556,0.12668,0.21876,0.02021,0.40939,0,0.55559,0,0.59912,0.11685,0.51233,0.19736,0.40921,0.26611,0.45326,0.12592,0.34813,0.20269,0.25893,0.26484,0.37883,0.34037,0.4684,0.53114,0.43113,0.64117,0.39572,0.80975,0.47386,0.43756],"triangles":[16,17,18,23,18,19,16,18,23,24,16,23,21,23,20,23,19,20,24,23,21,25,15,24,24,15,16,22,24,21,26,25,22,13,14,25,14,15,25,25,24,22,13,26,30,28,27,3,28,11,27,3,27,2,27,30,2,30,27,12,27,11,12,12,13,30,30,1,2,30,26,0,13,25,26,30,0,1,26,22,0,4,28,3,10,11,28,5,28,4,7,29,6,7,8,29,6,29,5,8,9,29,29,28,5,9,10,29,29,10,28],"vertices":[2,14,48.3,-4.67,0.88,15,3.13,-10.16,0.12,1,14,46.04,-15.5,1,1,14,35.03,-34.51,1,1,14,16.59,-37.81,1,2,13,25.67,-41.23,0.83,14,-4.84,-40.54,0.17,1,13,7.53,-32.77,1,1,13,-6.83,-14.86,1,1,13,-7.66,3.12,1,1,13,3.89,28.33,1,1,13,22.49,28.74,1,2,13,36.82,24.5,0.89,14,7.5,24.97,0.11,1,14,20.21,24.56,1,1,14,30.08,24.71,1,2,14,40.33,19.79,0.94,15,12.48,13.8,0.06,2,15,22.66,7.13,0.94,16,-4.11,10.22,0.06,2,16,5.94,14.12,0.91,17,-7.4,12.83,0.09,2,17,8.03,5.91,0.91,18,1.13,6.64,0.09,1,18,13,18.18,1,1,18,16.81,5.16,1,1,18,17.85,-5.03,1,2,17,20.27,-5,0.95,18,3.98,-9.5,0.05,2,16,17.61,-9.22,0.92,17,8.98,-7.47,0.08,2,15,9.29,-8.71,0.89,16,6.68,-7.48,0.11,2,17,12.37,1.56,0.93,18,1.84,0.54,0.07,2,16,11.01,0.22,0.96,17,0.52,0.34,0.04,2,15,16.14,-0.72,0.91,16,1.28,1.55,0.09,2,14,43.1,2.56,0.94,15,3.69,-1.27,0.06,1,14,19.78,-3.53,1,2,13,36.16,-1.3,0.92,14,6.37,-0.81,0.08,1,13,15.57,0.97,1,1,14,31.19,-4,1],"hull":23,"edges":[34,36,36,38,36,46,46,48,48,50,50,52,22,54,54,6,56,54,20,56,8,10,56,8,16,18,14,58,58,56,18,58,58,10,6,8,18,20,14,16,10,12,12,14,32,34,32,46,38,40,46,40,28,30,30,32,30,48,40,42,42,44,48,42,28,50,50,44,26,28,26,52,0,44,52,0,22,24,24,26,52,60,60,54,24,60,4,6,60,4,60,26,60,0,0,2,2,4,20,22],"width":70,"height":122}},"huotui7":{"huotui4":{"type":"mesh","uvs":[0.48157,0.29728,0.63651,0.31513,0.90927,0.4041,0.95857,0.55503,1,0.73049,0.87645,0.87843,0.61861,0.99466,0.36159,1,0.00319,0.90316,0,0.75069,0.06275,0.63358,0.06709,0.52937,0.0639,0.4485,0.13308,0.36414,0.1131,0.26506,0.14116,0.1782,0.36556,0.12668,0.21876,0.02021,0.40939,0,0.55559,0,0.59912,0.11685,0.51233,0.19736,0.40921,0.26611,0.45326,0.12592,0.34813,0.20269,0.25893,0.26484,0.37883,0.34037,0.4684,0.53114,0.43113,0.64117,0.39572,0.80975,0.47386,0.43756],"triangles":[16,17,18,23,18,19,16,18,23,24,16,23,21,23,20,23,19,20,24,23,21,25,15,24,24,15,16,22,24,21,26,25,22,13,14,25,14,15,25,25,24,22,13,26,30,28,27,3,28,11,27,3,27,2,27,30,2,30,27,12,27,11,12,12,13,30,30,1,2,30,26,0,13,25,26,30,0,1,26,22,0,4,28,3,10,11,28,5,28,4,7,29,6,7,8,29,6,29,5,8,9,29,29,28,5,9,10,29,29,10,28],"vertices":[2,20,48.3,-4.67,0.88,21,3.13,-10.16,0.12,1,20,46.04,-15.5,1,1,20,35.03,-34.51,1,1,20,16.59,-37.81,1,2,19,25.67,-41.23,0.83,20,-4.84,-40.54,0.17,1,19,7.53,-32.77,1,1,19,-6.83,-14.86,1,1,19,-7.66,3.12,1,1,19,3.89,28.33,1,1,19,22.49,28.74,1,2,19,36.82,24.5,0.89,20,7.5,24.97,0.11,1,20,20.21,24.56,1,1,20,30.08,24.71,1,2,20,40.33,19.79,0.94,21,12.48,13.8,0.06,2,21,22.66,7.13,0.94,22,-4.11,10.22,0.06,2,22,5.94,14.12,0.91,23,-7.4,12.83,0.09,2,23,8.03,5.91,0.91,24,1.13,6.64,0.09,1,24,13,18.18,1,1,24,16.81,5.16,1,1,24,17.85,-5.03,1,2,23,20.27,-5,0.95,24,3.98,-9.5,0.05,2,22,17.61,-9.22,0.92,23,8.98,-7.47,0.08,2,21,9.29,-8.71,0.89,22,6.68,-7.48,0.11,2,23,12.37,1.56,0.93,24,1.84,0.54,0.07,2,22,11.01,0.22,0.96,23,0.52,0.34,0.04,2,21,16.14,-0.72,0.91,22,1.28,1.55,0.09,2,20,43.1,2.56,0.94,21,3.69,-1.27,0.06,1,20,19.78,-3.53,1,2,19,36.16,-1.3,0.92,20,6.37,-0.81,0.08,1,19,15.57,0.97,1,1,20,31.19,-4,1],"hull":23,"edges":[34,36,36,38,36,46,46,48,48,50,50,52,22,54,54,6,56,54,20,56,8,10,56,8,16,18,14,58,58,56,18,58,58,10,6,8,18,20,14,16,10,12,12,14,32,34,32,46,38,40,46,40,28,30,30,32,30,48,40,42,42,44,48,42,28,50,50,44,26,28,26,52,0,44,52,0,22,24,24,26,52,60,60,54,24,60,4,6,60,4,60,26,60,0,0,2,2,4,20,22],"width":70,"height":122}}}},"animations":{"await1":{"bones":{"huotui4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":0,"y":14.82,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.08,"y":1.116,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui1":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone2":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.55,"y":0.44,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone3":{"rotate":[{"time":0,"angle":-1.37,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":0,"curve":[0.25,0,0.75,1]},{"time":1,"angle":-1.37}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.4333,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":-2.24,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"angle":-2.75,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.24}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":0.44,"y":-0.38,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":-2.91,"curve":[0.11,0.13,0.75,1]},{"time":0.2333,"angle":-5.81,"curve":[0.25,0,0.75,1]},{"time":0.6333,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.91}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.67,"y":0.27,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone6":{"rotate":[{"time":0,"angle":-2.42,"curve":[0.11,0.13,0.75,1]},{"time":0.3333,"angle":-13.11,"curve":[0.25,0,0.75,1]},{"time":0.7667,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.42}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.6,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":0,"y":14.82,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.08,"y":1.116,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone11":{"rotate":[{"time":0,"angle":-2.42,"curve":[0.11,0.13,0.75,1]},{"time":0.3333,"angle":-13.11,"curve":[0.25,0,0.75,1]},{"time":0.7667,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.42}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.6,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone10":{"rotate":[{"time":0,"angle":-2.91,"curve":[0.11,0.13,0.75,1]},{"time":0.2333,"angle":-5.81,"curve":[0.25,0,0.75,1]},{"time":0.6333,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.91}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.67,"y":0.27,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone9":{"rotate":[{"time":0,"angle":-2.24,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"angle":-2.75,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.24}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":0.44,"y":-0.38,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone8":{"rotate":[{"time":0,"angle":-1.37,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":0,"curve":[0.25,0,0.75,1]},{"time":1,"angle":-1.37}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.4333,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone7":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.55,"y":0.44,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":0,"y":14.82,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.08,"y":1.116,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone16":{"rotate":[{"time":0,"angle":-2.42,"curve":[0.11,0.13,0.75,1]},{"time":0.3333,"angle":-13.11,"curve":[0.25,0,0.75,1]},{"time":0.7667,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.42}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.6,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone15":{"rotate":[{"time":0,"angle":-2.91,"curve":[0.11,0.13,0.75,1]},{"time":0.2333,"angle":-5.81,"curve":[0.25,0,0.75,1]},{"time":0.6333,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.91}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.67,"y":0.27,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone14":{"rotate":[{"time":0,"angle":-2.24,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"angle":-2.75,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.24}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":0.44,"y":-0.38,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone13":{"rotate":[{"time":0,"angle":-1.37,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":0,"curve":[0.25,0,0.75,1]},{"time":1,"angle":-1.37}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.4333,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone12":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.55,"y":0.44,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":0,"y":14.82,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.08,"y":1.116,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone21":{"rotate":[{"time":0,"angle":-2.42,"curve":[0.11,0.13,0.75,1]},{"time":0.3333,"angle":-13.11,"curve":[0.25,0,0.75,1]},{"time":0.7667,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.42}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.6,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone20":{"rotate":[{"time":0,"angle":-2.91,"curve":[0.11,0.13,0.75,1]},{"time":0.2333,"angle":-5.81,"curve":[0.25,0,0.75,1]},{"time":0.6333,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.91}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.67,"y":0.27,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone19":{"rotate":[{"time":0,"angle":-2.24,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"angle":-2.75,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.24}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":0.44,"y":-0.38,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone18":{"rotate":[{"time":0,"angle":-1.37,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":0,"curve":[0.25,0,0.75,1]},{"time":1,"angle":-1.37}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.4333,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone17":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.55,"y":0.44,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]}},"deform":{"default":{"huotui4":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"offset":6,"vertices":[0.57561,-0.21764,0,0.00002,0.01657,-1.61989,-0.01216,-1.70519,0.01381,-1.34991,0,0.00002,0,0.00002,0,0.00002,-0.01381,1.34993,-0.00828,0.80997,0.00608,0.85262,0.38778,0.42191,0.58167,0.63285,0,0.00002,0.00002,0.00002,1.87372,-1.20248,1.73471,1.39555,0.00002,0.00001,-0.00002,0.00002,-0.00002,0.00002,0,0.00002,3.65969,-0.4826,0,0.00002,0,0.00002,-0.00002,0.00002,0,0.00002,0.00002,0.00001,-0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,-0.00002,0.00002,0,0.00002,0.00002,0.00001,-0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0,0.00002,0.00002,0.00002,0.7714,-0.0067,1.88988,0.01934,1.79993,-0.01566],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui5":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"offset":6,"vertices":[0.57561,-0.21764,0,0.00002,0.01657,-1.61989,-0.01216,-1.70519,0.01381,-1.34991,0,0.00002,0,0.00002,0,0.00002,-0.01381,1.34993,-0.00828,0.80997,0.00608,0.85262,0.38778,0.42191,0.58167,0.63285,0,0.00002,0.00002,0.00002,1.87372,-1.20248,1.73471,1.39555,0.00002,0.00001,-0.00002,0.00002,-0.00002,0.00002,0,0.00002,3.65969,-0.4826,0,0.00002,0,0.00002,-0.00002,0.00002,0,0.00002,0.00002,0.00001,-0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,-0.00002,0.00002,0,0.00002,0.00002,0.00001,-0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0,0.00002,0.00002,0.00002,0.7714,-0.0067,1.88988,0.01934,1.79993,-0.01566],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui6":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"offset":6,"vertices":[0.57561,-0.21764,0,0.00002,0.01657,-1.61989,-0.01216,-1.70519,0.01381,-1.34991,0,0.00002,0,0.00002,0,0.00002,-0.01381,1.34993,-0.00828,0.80997,0.00608,0.85262,0.38778,0.42191,0.58167,0.63285,0,0.00002,0.00002,0.00002,1.87372,-1.20248,1.73471,1.39555,0.00002,0.00001,-0.00002,0.00002,-0.00002,0.00002,0,0.00002,3.65969,-0.4826,0,0.00002,0,0.00002,-0.00002,0.00002,0,0.00002,0.00002,0.00001,-0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,-0.00002,0.00002,0,0.00002,0.00002,0.00001,-0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0,0.00002,0.00002,0.00002,0.7714,-0.0067,1.88988,0.01934,1.79993,-0.01566],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui7":{"huotui4":[{"time":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"offset":6,"vertices":[0.57561,-0.21764,0,0.00002,0.01657,-1.61989,-0.01216,-1.70519,0.01381,-1.34991,0,0.00002,0,0.00002,0,0.00002,-0.01381,1.34993,-0.00828,0.80997,0.00608,0.85262,0.38778,0.42191,0.58167,0.63285,0,0.00002,0.00002,0.00002,1.87372,-1.20248,1.73471,1.39555,0.00002,0.00001,-0.00002,0.00002,-0.00002,0.00002,0,0.00002,3.65969,-0.4826,0,0.00002,0,0.00002,-0.00002,0.00002,0,0.00002,0.00002,0.00001,-0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,-0.00002,0.00002,0,0.00002,0.00002,0.00001,-0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0,0.00002,0.00002,0.00002,0.7714,-0.0067,1.88988,0.01934,1.79993,-0.01566],"curve":[0.25,0,0.75,1]},{"time":1}]}}}},"await2":{"bones":{"huotui4":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"angle":0.61,"curve":[0.25,0,0.75,1]},{"time":0.3333,"angle":-1.07,"curve":[0.25,0,0.75,1]},{"time":0.4667,"angle":-1.59,"curve":[0.25,0,0.75,1]},{"time":0.6333,"angle":1.29,"curve":[0.25,0,0.75,1]},{"time":0.8,"angle":-0.8,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":0,"y":-8.47,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":0,"y":16.48,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":0.3,"y":35.08,"curve":[0.25,0,0.75,1]},{"time":0.6333,"x":0,"y":-6.46,"curve":[0.243,0,0.68,0.71]},{"time":0.8,"x":-0.26,"y":20.02,"curve":[0.375,0.62,0.716,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":0.865,"y":1.216,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":1.233,"y":0.861,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":1.439,"y":0.822,"curve":[0.25,0,0.75,1]},{"time":0.6333,"x":0.783,"y":1.187,"curve":[0.243,0,0.68,0.71]},{"time":0.8,"x":1.198,"y":0.995,"curve":[0.375,0.62,0.716,1]},{"time":1,"x":1,"y":1}]},"huotui1":{"rotate":[{"time":0,"angle":0}],"translate":[{"time":0,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1}]},"bone2":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"angle":1.68,"curve":[0.25,0,0.75,1]},{"time":0.3333,"angle":0.39,"curve":[0.25,0,0.75,1]},{"time":0.4667,"angle":-5.28,"curve":[0.25,0,0.75,1]},{"time":0.6333,"angle":1.05,"curve":[0.25,0,0.75,1]},{"time":0.8,"angle":-1.39,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":-7.75,"y":-0.02,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":5.87,"y":0.18,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":8.53,"y":1.5,"curve":[0.25,0,0.75,1]},{"time":0.6333,"x":-2.24,"y":1.77,"curve":[0.25,0,0.75,1]},{"time":0.8,"x":9.93,"y":0.42,"curve":[0.25,0,0.932,0.9]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":0.98,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.6333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.8,"x":0.95,"y":1.05,"curve":[0.25,0,0.932,0.9]},{"time":1,"x":1,"y":1}]},"bone3":{"rotate":[{"time":0,"angle":-1.37,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":0,"curve":[0.25,0,0.75,1]},{"time":1,"angle":-1.37}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":4.75,"y":-0.04,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":-2.24,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":-2.75,"curve":[0.25,0,0.75,1]},{"time":0.5667,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.24}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.88,"y":-2.72,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone6":{"rotate":[{"time":0,"angle":-2.42,"curve":[0.11,0.13,0.75,1]},{"time":0.3667,"angle":-13.11,"curve":[0.25,0,0.75,1]},{"time":0.8,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.42}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.6,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":-2.91,"curve":[0.11,0.13,0.75,1]},{"time":0.2333,"angle":-5.81,"curve":[0.25,0,0.75,1]},{"time":0.6667,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.91}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":2.7,"y":0.25,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.4333,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui5":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"angle":0.61,"curve":[0.25,0,0.75,1]},{"time":0.3,"angle":-1.07,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":-1.59,"curve":[0.25,0,0.75,1]},{"time":0.6,"angle":1.29,"curve":[0.25,0,0.75,1]},{"time":0.7333,"angle":-0.8,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":0,"y":-8.47,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":0,"y":16.48,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":0.3,"y":35.08,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":0,"y":-6.46,"curve":[0.243,0,0.68,0.71]},{"time":0.7333,"x":-0.26,"y":20.02,"curve":[0.375,0.62,0.716,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":0.865,"y":1.216,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":1.233,"y":0.861,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.439,"y":0.822,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":0.783,"y":1.187,"curve":[0.243,0,0.68,0.71]},{"time":0.7333,"x":1.198,"y":0.995,"curve":[0.375,0.62,0.716,1]},{"time":1,"x":1,"y":1}]},"bone11":{"rotate":[{"time":0,"angle":-2.42,"curve":[0.11,0.13,0.75,1]},{"time":0.3333,"angle":-13.11,"curve":[0.25,0,0.75,1]},{"time":0.7333,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.42}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4,"x":1.6,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.4,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone10":{"rotate":[{"time":0,"angle":-2.91,"curve":[0.11,0.13,0.75,1]},{"time":0.2,"angle":-5.81,"curve":[0.25,0,0.75,1]},{"time":0.6333,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.91}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4,"x":2.7,"y":0.25,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.4,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone9":{"rotate":[{"time":0,"angle":-2.24,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":-2.75,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.24}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.4,"x":1.88,"y":-2.72,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.4,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone8":{"rotate":[{"time":0,"angle":-1.37,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":0,"curve":[0.25,0,0.75,1]},{"time":1,"angle":-1.37}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":4.75,"y":-0.04,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone7":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"angle":1.68,"curve":[0.25,0,0.75,1]},{"time":0.3,"angle":0.39,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":-5.28,"curve":[0.25,0,0.75,1]},{"time":0.6,"angle":1.05,"curve":[0.25,0,0.75,1]},{"time":0.7333,"angle":-1.39,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":-7.75,"y":-0.02,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":5.87,"y":0.18,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":8.53,"y":1.5,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":-2.24,"y":1.77,"curve":[0.25,0,0.75,1]},{"time":0.7333,"x":9.93,"y":0.42,"curve":[0.25,0,0.932,0.9]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":0.98,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.7333,"x":0.95,"y":1.05,"curve":[0.25,0,0.932,0.9]},{"time":1,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":0.61,"curve":[0.25,0,0.75,1]},{"time":0.3,"angle":-1.07,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":-1.59,"curve":[0.25,0,0.75,1]},{"time":0.5667,"angle":1.29,"curve":[0.25,0,0.75,1]},{"time":0.7,"angle":-0.8,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0,"y":-8.47,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":0,"y":16.48,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0.3,"y":35.08,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":0,"y":-6.46,"curve":[0.243,0,0.68,0.71]},{"time":0.7,"x":-0.26,"y":20.02,"curve":[0.375,0.62,0.716,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.865,"y":1.216,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":1.233,"y":0.861,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.439,"y":0.822,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":0.783,"y":1.187,"curve":[0.243,0,0.68,0.71]},{"time":0.7,"x":1.198,"y":0.995,"curve":[0.375,0.62,0.716,1]},{"time":1,"x":1,"y":1}]},"bone16":{"rotate":[{"time":0,"angle":-2.42,"curve":[0.11,0.13,0.75,1]},{"time":0.3333,"angle":-13.11,"curve":[0.25,0,0.75,1]},{"time":0.7,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.42}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3667,"x":1.6,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.3667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone15":{"rotate":[{"time":0,"angle":-2.91,"curve":[0.11,0.13,0.75,1]},{"time":0.2,"angle":-5.81,"curve":[0.25,0,0.75,1]},{"time":0.5667,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.91}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3667,"x":2.7,"y":0.25,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.3667,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone14":{"rotate":[{"time":0,"angle":-2.24,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"angle":-2.75,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.24}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3667,"x":1.88,"y":-2.72,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.3667,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone13":{"rotate":[{"time":0,"angle":-1.37,"curve":[0.25,0,0.75,1]},{"time":0.3667,"angle":0,"curve":[0.25,0,0.75,1]},{"time":1,"angle":-1.37}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":4.75,"y":-0.04,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone12":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":1.68,"curve":[0.25,0,0.75,1]},{"time":0.3,"angle":0.39,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":-5.28,"curve":[0.25,0,0.75,1]},{"time":0.5667,"angle":1.05,"curve":[0.25,0,0.75,1]},{"time":0.7,"angle":-1.39,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-7.75,"y":-0.02,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":5.87,"y":0.18,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":8.53,"y":1.5,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":-2.24,"y":1.77,"curve":[0.25,0,0.75,1]},{"time":0.7,"x":9.93,"y":0.42,"curve":[0.25,0,0.932,0.9]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":0.98,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.7,"x":0.95,"y":1.05,"curve":[0.25,0,0.932,0.9]},{"time":1,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":0.61,"curve":[0.25,0,0.75,1]},{"time":0.2667,"angle":-1.07,"curve":[0.25,0,0.75,1]},{"time":0.3667,"angle":-1.59,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":1.29,"curve":[0.25,0,0.75,1]},{"time":0.6333,"angle":-0.8,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0,"y":-8.47,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":0,"y":16.48,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":0.3,"y":35.08,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0,"y":-6.46,"curve":[0.243,0,0.68,0.71]},{"time":0.6333,"x":-0.26,"y":20.02,"curve":[0.375,0.62,0.716,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.865,"y":1.216,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":1.233,"y":0.861,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":1.439,"y":0.822,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0.783,"y":1.187,"curve":[0.243,0,0.68,0.71]},{"time":0.6333,"x":1.198,"y":0.995,"curve":[0.375,0.62,0.716,1]},{"time":1,"x":1,"y":1}]},"bone21":{"rotate":[{"time":0,"angle":-2.42,"curve":[0.11,0.13,0.75,1]},{"time":0.3,"angle":-13.11,"curve":[0.25,0,0.75,1]},{"time":0.6333,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.42}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3333,"x":1.6,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.3333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone20":{"rotate":[{"time":0,"angle":-2.91,"curve":[0.11,0.13,0.75,1]},{"time":0.2,"angle":-5.81,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.91}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3333,"x":2.7,"y":0.25,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.3333,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone19":{"rotate":[{"time":0,"angle":-2.24,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"angle":-2.75,"curve":[0.25,0,0.75,1]},{"time":0.4667,"angle":0,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":-2.24}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3333,"x":1.88,"y":-2.72,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.3333,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone18":{"rotate":[{"time":0,"angle":-1.37,"curve":[0.25,0,0.75,1]},{"time":0.3333,"angle":0,"curve":[0.25,0,0.75,1]},{"time":1,"angle":-1.37}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":4.75,"y":-0.04,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone17":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":1.68,"curve":[0.25,0,0.75,1]},{"time":0.2667,"angle":0.39,"curve":[0.25,0,0.75,1]},{"time":0.3667,"angle":-5.28,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":1.05,"curve":[0.25,0,0.75,1]},{"time":0.6333,"angle":-1.39,"curve":[0.25,0,0.932,0.9]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-7.75,"y":-0.02,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":5.87,"y":0.18,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":8.53,"y":1.5,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":-2.24,"y":1.77,"curve":[0.25,0,0.75,1]},{"time":0.6333,"x":9.93,"y":0.42,"curve":[0.25,0,0.932,0.9]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":1.02,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":0.98,"y":1.02,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.6333,"x":0.95,"y":1.05,"curve":[0.25,0,0.932,0.9]},{"time":1,"x":1,"y":1}]}},"deform":{"default":{"huotui4":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3333,"offset":6,"vertices":[0.57561,-0.21764,0,0.00002,0.01657,-1.61989,-0.01216,-1.70519,0.01381,-1.34991,0,0.00002,0,0.00002,0,0.00002,-0.01381,1.34993,-0.00828,0.80997,0.00608,0.85262,0.38778,0.42191,0.58167,0.63285,0,0.00002,0.00002,0.00002,1.87372,-1.20248,1.73471,1.39555,0.00002,0.00001,-0.00002,0.00002,-0.00002,0.00002,0,0.00002,3.65969,-0.4826,0,0.00002,0,0.00002,-0.00002,0.00002,0,0.00002,0.00002,0.00001,-0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,-0.00002,0.00002,0,0.00002,0.00002,0.00001,-0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0,0.00002,0.00002,0.00002,0.7714,-0.0067,1.88988,0.01934,1.79993,-0.01566],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui5":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3,"offset":6,"vertices":[0.57561,-0.21764,0,0.00002,0.01657,-1.61989,-0.01216,-1.70519,0.01381,-1.34991,0,0.00002,0,0.00002,0,0.00002,-0.01381,1.34993,-0.00828,0.80997,0.00608,0.85262,0.38778,0.42191,0.58167,0.63285,0,0.00002,0.00002,0.00002,1.87372,-1.20248,1.73471,1.39555,0.00002,0.00001,-0.00002,0.00002,-0.00002,0.00002,0,0.00002,3.65969,-0.4826,0,0.00002,0,0.00002,-0.00002,0.00002,0,0.00002,0.00002,0.00001,-0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,-0.00002,0.00002,0,0.00002,0.00002,0.00001,-0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0,0.00002,0.00002,0.00002,0.7714,-0.0067,1.88988,0.01934,1.79993,-0.01566],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui6":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.3,"offset":6,"vertices":[0.57561,-0.21764,0,0.00002,0.01657,-1.61989,-0.01216,-1.70519,0.01381,-1.34991,0,0.00002,0,0.00002,0,0.00002,-0.01381,1.34993,-0.00828,0.80997,0.00608,0.85262,0.38778,0.42191,0.58167,0.63285,0,0.00002,0.00002,0.00002,1.87372,-1.20248,1.73471,1.39555,0.00002,0.00001,-0.00002,0.00002,-0.00002,0.00002,0,0.00002,3.65969,-0.4826,0,0.00002,0,0.00002,-0.00002,0.00002,0,0.00002,0.00002,0.00001,-0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,-0.00002,0.00002,0,0.00002,0.00002,0.00001,-0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0,0.00002,0.00002,0.00002,0.7714,-0.0067,1.88988,0.01934,1.79993,-0.01566],"curve":[0.25,0,0.75,1]},{"time":1}]},"huotui7":{"huotui4":[{"time":0,"curve":[0.11,0.13,0.75,1]},{"time":0.2667,"offset":6,"vertices":[0.57561,-0.21764,0,0.00002,0.01657,-1.61989,-0.01216,-1.70519,0.01381,-1.34991,0,0.00002,0,0.00002,0,0.00002,-0.01381,1.34993,-0.00828,0.80997,0.00608,0.85262,0.38778,0.42191,0.58167,0.63285,0,0.00002,0.00002,0.00002,1.87372,-1.20248,1.73471,1.39555,0.00002,0.00001,-0.00002,0.00002,-0.00002,0.00002,0,0.00002,3.65969,-0.4826,0,0.00002,0,0.00002,-0.00002,0.00002,0,0.00002,0.00002,0.00001,-0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,-0.00002,0.00002,0,0.00002,0.00002,0.00001,-0.00002,0.00002,0.00002,0.00002,0.00002,0.00001,0,0.00002,0.00002,0.00002,0.7714,-0.0067,1.88988,0.01934,1.79993,-0.01566],"curve":[0.25,0,0.75,1]},{"time":1}]}}}}}},"_atlasText":"\nn_03.png\nsize: 582,172\nformat: RGBA8888\nfilter: Linear,Linear\nrepeat: none\nhuotui1\n rotate: false\n xy: 2, 2\n size: 288, 168\n orig: 288, 168\n offset: 0, 0\n index: -1\nhuotui4\n rotate: false\n xy: 292, 2\n size: 70, 122\n orig: 70, 122\n offset: 0, 0\n index: -1\n","textures":[{"__uuid__":"16GEm8+9RP65UVhFHU39uk"}],"textureNames":["n_03.png"]}
\ No newline at end of file
{"__type__":"sp.SkeletonData","_name":"n_06","_native":"raw-skeleton.json","_skeletonJson":{"skeleton":{"hash":"0grzO1AHKWrEUZqX1ProCqg3HII","spine":"3.6.53","width":321.26,"height":262.76,"images":"./lanjing/"},"bones":[{"name":"root"},{"name":"huotui4","parent":"root","length":30.41,"rotation":93.82,"x":82.83,"y":-11.43,"color":"ff00e5ff"},{"name":"bone2","parent":"huotui4","length":44.73,"rotation":-0.27,"x":31.04,"y":0.38,"color":"ff00e5ff"},{"name":"bone3","parent":"bone2","length":46.95,"rotation":17.25,"x":45.29,"y":0.31,"color":"ff00e5ff"},{"name":"huotui5","parent":"root","length":30.41,"rotation":93.82,"x":-71.92,"y":-3.95,"color":"ff00e5ff"},{"name":"bone4","parent":"huotui5","length":44.73,"rotation":-0.27,"x":31.04,"y":0.38,"color":"ff00e5ff"},{"name":"bone5","parent":"bone4","length":46.95,"rotation":17.25,"x":45.29,"y":0.31,"color":"ff00e5ff"},{"name":"huotui6","parent":"root","length":30.41,"rotation":93.82,"x":15.44,"y":-50.54,"color":"ff00e5ff"},{"name":"bone6","parent":"huotui6","length":44.73,"rotation":-0.27,"x":31.04,"y":0.38,"color":"ff00e5ff"},{"name":"bone7","parent":"bone6","length":46.95,"rotation":17.25,"x":45.29,"y":0.31,"color":"ff00e5ff"},{"name":"huotui7","parent":"root","length":30.41,"rotation":93.82,"x":5.04,"y":24.34,"color":"ff00e5ff"},{"name":"bone8","parent":"huotui7","length":44.73,"rotation":-0.27,"x":31.04,"y":0.38,"color":"ff00e5ff"},{"name":"bone9","parent":"bone8","length":46.95,"rotation":17.25,"x":45.29,"y":0.31,"color":"ff00e5ff"},{"name":"huotui1","parent":"root","color":"ff0000ff"},{"name":"huotui3","parent":"huotui1","x":-7.34,"y":55.37,"color":"ff0000ff"},{"name":"suantou3","parent":"root","x":-13.23,"y":-81.15}],"slots":[{"name":"huotui3","bone":"huotui3","attachment":"huotui3"},{"name":"huotui1","bone":"huotui1","attachment":"huotui1"},{"name":"huotui4","bone":"huotui4","attachment":"huotui4"},{"name":"huotui7","bone":"huotui7","attachment":"huotui4"},{"name":"huotui6","bone":"huotui6","attachment":"huotui4"},{"name":"huotui5","bone":"huotui5","attachment":"huotui4"},{"name":"suantou3","bone":"suantou3","attachment":"suantou3"}],"skins":{"default":{"huotui1":{"huotui1":{"x":1,"y":-13,"width":312,"height":166}},"huotui3":{"huotui3":{"x":5.18,"y":-13.49,"width":288,"height":86}},"huotui4":{"huotui4":{"type":"mesh","uvs":[0.7281,0.29165,0.74149,0.4133,1,0.54137,1,0.69913,0.7874,0.8801,0.72532,0.9785,0.56409,1,0.33326,0.97943,0.17874,0.8775,0.05086,0.6985,0,0.53203,0.05005,0.44783,0.18672,0.32782,0.08624,0.15963,0.11109,0,0.41181,0,0.53633,0,0.66345,0.13433,0.54437,0.53277,0.53744,0.71719,0.52179,0.43656,0.43147,0.15532,0.46476,0.28851,0.55177,0.86923],"triangles":[21,15,16,21,16,17,21,13,14,21,14,15,22,21,17,22,17,0,12,13,21,12,21,22,20,22,0,20,0,1,20,11,12,20,12,22,18,20,1,11,20,18,10,11,18,18,1,2,9,10,18,18,2,3,19,9,18,19,18,3,4,23,19,8,9,19,8,19,23,3,4,19,5,23,4,7,8,23,6,23,5,7,23,6],"vertices":[3,1,89.86,-22,0.00659,2,58.93,-22.11,0.11935,3,6.38,-25.45,0.87407,3,1,72.54,-22.12,0.12351,2,41.61,-22.31,0.65449,3,-10.22,-20.5,0.222,2,1,52.76,-45.41,0.60644,2,21.93,-45.69,0.39356,2,1,30.41,-43.92,0.83536,2,-0.43,-44.3,0.16464,1,1,6.11,-22.06,1,1,1,-7.44,-15.24,1,2,1,-9.47,0.24,0.99822,2,-40.5,-0.33,0.00178,3,1,-5.09,21.93,0.84124,2,-36.23,21.38,0.15281,3,-71.61,44.29,0.00596,3,1,10.33,35.61,0.48185,2,-20.87,35.13,0.46497,3,-52.86,52.88,0.05318,3,1,36.5,46.04,0.06225,2,5.25,45.68,0.67368,3,-24.79,55.21,0.26408,3,1,60.41,49.29,0.00016,2,29.14,49.04,0.45201,3,-0.97,51.33,0.54783,2,2,40.78,43.56,0.30589,3,8.52,42.64,0.69411,2,2,56.99,29.54,0.03058,3,19.84,24.46,0.96942,1,3,45.55,24.9,1,1,3,65.91,14.64,1,1,3,55.76,-12.06,1,1,3,51.56,-23.12,1,1,3,29.44,-27.64,1,2,1,56.86,-2.31,0.01658,2,25.83,-2.57,0.98342,2,1,30.77,0.09,0.57992,2,-0.26,-0.29,0.42008,2,1,70.63,-1.08,0.00217,2,39.6,-1.27,0.99783,1,3,34.48,-5.98,1,1,3,15.68,-2.22,1,3,1,9.14,0.17,0.99919,2,-21.89,-0.31,0.00079,3,-64.35,19.33,0.00002],"hull":18,"edges":[4,6,8,10,14,16,10,12,12,14,28,30,30,32,20,36,36,4,38,36,18,38,38,6,20,22,40,36,22,40,4,2,40,2,18,20,6,8,26,28,30,42,26,42,42,34,16,18,32,34,22,24,24,26,40,44,44,42,24,44,2,0,0,34,44,0,12,46,46,38,16,46,46,8],"width":95,"height":142}},"huotui5":{"huotui4":{"type":"mesh","uvs":[0.7281,0.29165,0.74149,0.4133,1,0.54137,1,0.69913,0.7874,0.8801,0.72532,0.9785,0.56409,1,0.33326,0.97943,0.17874,0.8775,0.05086,0.6985,0,0.53203,0.05005,0.44783,0.18672,0.32782,0.08624,0.15963,0.11109,0,0.41181,0,0.53633,0,0.66345,0.13433,0.54437,0.53277,0.53744,0.71719,0.52179,0.43656,0.43147,0.15532,0.46476,0.28851,0.55177,0.86923],"triangles":[21,15,16,21,16,17,21,13,14,21,14,15,22,21,17,22,17,0,12,13,21,12,21,22,20,22,0,20,0,1,20,11,12,20,12,22,18,20,1,11,20,18,10,11,18,18,1,2,9,10,18,18,2,3,19,9,18,19,18,3,4,23,19,8,9,19,8,19,23,3,4,19,5,23,4,7,8,23,6,23,5,7,23,6],"vertices":[3,4,89.86,-22,0.00659,5,58.93,-22.11,0.11935,6,6.38,-25.45,0.87407,3,4,72.54,-22.12,0.12351,5,41.61,-22.31,0.65449,6,-10.22,-20.5,0.222,2,4,52.76,-45.41,0.60644,5,21.93,-45.69,0.39356,2,4,30.41,-43.92,0.83536,5,-0.43,-44.3,0.16464,1,4,6.11,-22.06,1,1,4,-7.44,-15.24,1,2,4,-9.47,0.24,0.99822,5,-40.5,-0.33,0.00178,3,4,-5.09,21.93,0.84124,5,-36.23,21.38,0.15281,6,-71.61,44.29,0.00596,3,4,10.33,35.61,0.48185,5,-20.87,35.13,0.46497,6,-52.86,52.88,0.05318,3,4,36.5,46.04,0.06225,5,5.25,45.68,0.67368,6,-24.79,55.21,0.26408,3,4,60.41,49.29,0.00016,5,29.14,49.04,0.45201,6,-0.97,51.33,0.54783,2,5,40.78,43.56,0.30589,6,8.52,42.64,0.69411,2,5,56.99,29.54,0.03058,6,19.84,24.46,0.96942,1,6,45.55,24.9,1,1,6,65.91,14.64,1,1,6,55.76,-12.06,1,1,6,51.56,-23.12,1,1,6,29.44,-27.64,1,2,4,56.86,-2.31,0.01658,5,25.83,-2.57,0.98342,2,4,30.77,0.09,0.57992,5,-0.26,-0.29,0.42008,2,4,70.63,-1.08,0.00217,5,39.6,-1.27,0.99783,1,6,34.48,-5.98,1,1,6,15.68,-2.22,1,3,4,9.14,0.17,0.99919,5,-21.89,-0.31,0.00079,6,-64.35,19.33,0.00002],"hull":18,"edges":[4,6,8,10,14,16,10,12,12,14,28,30,30,32,20,36,36,4,38,36,18,38,38,6,20,22,40,36,22,40,4,2,40,2,18,20,6,8,26,28,30,42,26,42,42,34,16,18,32,34,22,24,24,26,40,44,44,42,24,44,2,0,0,34,44,0,12,46,46,38,16,46,46,8],"width":95,"height":142}},"huotui6":{"huotui4":{"type":"mesh","uvs":[0.7281,0.29165,0.74149,0.4133,1,0.54137,1,0.69913,0.7874,0.8801,0.72532,0.9785,0.56409,1,0.33326,0.97943,0.17874,0.8775,0.05086,0.6985,0,0.53203,0.05005,0.44783,0.18672,0.32782,0.08624,0.15963,0.11109,0,0.41181,0,0.53633,0,0.66345,0.13433,0.54437,0.53277,0.53744,0.71719,0.52179,0.43656,0.43147,0.15532,0.46476,0.28851,0.55177,0.86923],"triangles":[21,15,16,21,16,17,21,13,14,21,14,15,22,21,17,22,17,0,12,13,21,12,21,22,20,22,0,20,0,1,20,11,12,20,12,22,18,20,1,11,20,18,10,11,18,18,1,2,9,10,18,18,2,3,19,9,18,19,18,3,4,23,19,8,9,19,8,19,23,3,4,19,5,23,4,7,8,23,6,23,5,7,23,6],"vertices":[3,7,89.86,-22,0.00659,8,58.93,-22.11,0.11935,9,6.38,-25.45,0.87407,3,7,72.54,-22.12,0.12351,8,41.61,-22.31,0.65449,9,-10.22,-20.5,0.222,2,7,52.76,-45.41,0.60644,8,21.93,-45.69,0.39356,2,7,30.41,-43.92,0.83536,8,-0.43,-44.3,0.16464,1,7,6.11,-22.06,1,1,7,-7.44,-15.24,1,2,7,-9.47,0.24,0.99822,8,-40.5,-0.33,0.00178,3,7,-5.09,21.93,0.84124,8,-36.23,21.38,0.15281,9,-71.61,44.29,0.00596,3,7,10.33,35.61,0.48185,8,-20.87,35.13,0.46497,9,-52.86,52.88,0.05318,3,7,36.5,46.04,0.06225,8,5.25,45.68,0.67368,9,-24.79,55.21,0.26408,3,7,60.41,49.29,0.00016,8,29.14,49.04,0.45201,9,-0.97,51.33,0.54783,2,8,40.78,43.56,0.30589,9,8.52,42.64,0.69411,2,8,56.99,29.54,0.03058,9,19.84,24.46,0.96942,1,9,45.55,24.9,1,1,9,65.91,14.64,1,1,9,55.76,-12.06,1,1,9,51.56,-23.12,1,1,9,29.44,-27.64,1,2,7,56.86,-2.31,0.01658,8,25.83,-2.57,0.98342,2,7,30.77,0.09,0.57992,8,-0.26,-0.29,0.42008,2,7,70.63,-1.08,0.00217,8,39.6,-1.27,0.99783,1,9,34.48,-5.98,1,1,9,15.68,-2.22,1,3,7,9.14,0.17,0.99919,8,-21.89,-0.31,0.00079,9,-64.35,19.33,0.00002],"hull":18,"edges":[4,6,8,10,14,16,10,12,12,14,28,30,30,32,20,36,36,4,38,36,18,38,38,6,20,22,40,36,22,40,4,2,40,2,18,20,6,8,26,28,30,42,26,42,42,34,16,18,32,34,22,24,24,26,40,44,44,42,24,44,2,0,0,34,44,0,12,46,46,38,16,46,46,8],"width":95,"height":142}},"huotui7":{"huotui4":{"type":"mesh","uvs":[0.7281,0.29165,0.74149,0.4133,1,0.54137,1,0.69913,0.7874,0.8801,0.72532,0.9785,0.56409,1,0.33326,0.97943,0.17874,0.8775,0.05086,0.6985,0,0.53203,0.05005,0.44783,0.18672,0.32782,0.08624,0.15963,0.11109,0,0.41181,0,0.53633,0,0.66345,0.13433,0.54437,0.53277,0.53744,0.71719,0.52179,0.43656,0.43147,0.15532,0.46476,0.28851,0.55177,0.86923],"triangles":[21,15,16,21,16,17,21,13,14,21,14,15,22,21,17,22,17,0,12,13,21,12,21,22,20,22,0,20,0,1,20,11,12,20,12,22,18,20,1,11,20,18,10,11,18,18,1,2,9,10,18,18,2,3,19,9,18,19,18,3,4,23,19,8,9,19,8,19,23,3,4,19,5,23,4,7,8,23,6,23,5,7,23,6],"vertices":[3,10,89.86,-22,0.00659,11,58.93,-22.11,0.11935,12,6.38,-25.45,0.87407,3,10,72.54,-22.12,0.12351,11,41.61,-22.31,0.65449,12,-10.22,-20.5,0.222,2,10,52.76,-45.41,0.60644,11,21.93,-45.69,0.39356,2,10,30.41,-43.92,0.83536,11,-0.43,-44.3,0.16464,1,10,6.11,-22.06,1,1,10,-7.44,-15.24,1,2,10,-9.47,0.24,0.99822,11,-40.5,-0.33,0.00178,3,10,-5.09,21.93,0.84124,11,-36.23,21.38,0.15281,12,-71.61,44.29,0.00596,3,10,10.33,35.61,0.48185,11,-20.87,35.13,0.46497,12,-52.86,52.88,0.05318,3,10,36.5,46.04,0.06225,11,5.25,45.68,0.67368,12,-24.79,55.21,0.26408,3,10,60.41,49.29,0.00016,11,29.14,49.04,0.45201,12,-0.97,51.33,0.54783,2,11,40.78,43.56,0.30589,12,8.52,42.64,0.69411,2,11,56.99,29.54,0.03058,12,19.84,24.46,0.96942,1,12,45.55,24.9,1,1,12,65.91,14.64,1,1,12,55.76,-12.06,1,1,12,51.56,-23.12,1,1,12,29.44,-27.64,1,2,10,56.86,-2.31,0.01658,11,25.83,-2.57,0.98342,2,10,30.77,0.09,0.57992,11,-0.26,-0.29,0.42008,2,10,70.63,-1.08,0.00217,11,39.6,-1.27,0.99783,1,12,34.48,-5.98,1,1,12,15.68,-2.22,1,3,10,9.14,0.17,0.99919,11,-21.89,-0.31,0.00079,12,-64.35,19.33,0.00002],"hull":18,"edges":[4,6,8,10,14,16,10,12,12,14,28,30,30,32,20,36,36,4,38,36,18,38,38,6,20,22,40,36,22,40,4,2,40,2,18,20,6,8,26,28,30,42,26,42,42,34,16,18,32,34,22,24,24,26,40,44,44,42,24,44,2,0,0,34,44,0,12,46,46,38,16,46,46,8],"width":95,"height":142}},"suantou3":{"suantou3":{"x":-0.53,"y":37.27,"width":301,"height":124}}}},"animations":{"await1":{"bones":{"huotui4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":0,"y":1.25,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":1.117,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui1":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"huotui3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone2":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":4.07,"y":0.87,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone3":{"rotate":[{"time":0,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.6,"angle":-1.89,"curve":[0.25,0,0.75,1]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":4.36,"y":-0.34,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"huotui5":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0,"y":1.25,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.117,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":-1.89,"curve":[0.25,0,0.75,1]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":4.36,"y":-0.34,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":4.07,"y":0.87,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0,"y":1.25,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":1.117,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone7":{"rotate":[{"time":0,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.6333,"angle":-1.89,"curve":[0.25,0,0.75,1]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.6333,"x":4.36,"y":-0.34,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone6":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":4.07,"y":0.87,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":0,"y":1.25,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.117,"y":0.98,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]},"bone9":{"rotate":[{"time":0,"angle":0,"curve":[0.25,0,0.75,1]},{"time":0.5667,"angle":-1.89,"curve":[0.25,0,0.75,1]},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":4.36,"y":-0.34,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":1,"x":1,"y":1}]},"bone8":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":1,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":4.07,"y":0.87,"curve":[0.25,0,0.75,1]},{"time":1,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":1,"x":1,"y":1}]}},"deform":{"default":{"huotui4":{"huotui4":[{"time":0,"curve":"stepped"},{"time":1}]},"huotui5":{"huotui4":[{"time":0,"curve":"stepped"},{"time":1}]},"huotui6":{"huotui4":[{"time":0,"curve":"stepped"},{"time":1}]},"huotui7":{"huotui4":[{"time":0,"curve":"stepped"},{"time":1}]}}}},"await2":{"bones":{"huotui4":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":0.6,"curve":[0.25,0,0.75,1]},{"time":0.2,"angle":-0.34,"curve":[0.25,0,0.75,1]},{"time":0.3667,"angle":-0.88,"curve":[0.25,0,0.75,1]},{"time":0.4667,"angle":0.94,"curve":[0.25,0,0.75,1]},{"time":0.6,"angle":0.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-1.52,"y":-0.62,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":0,"y":11.72,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":0,"y":27.64,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":0.31,"y":1.9,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":0.22,"y":8.67,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.204,0.19,0.549,0.54]},{"time":0.1333,"x":0.983,"y":0.933,"curve":[0.295,0.3,0.631,0.63]},{"time":0.2,"x":1.319,"y":0.861,"curve":[0.285,0.29,0.63,0.64]},{"time":0.3667,"x":1.53,"y":0.735,"curve":[0.323,0.34,0.661,0.68]},{"time":0.4667,"x":1.023,"y":0.957,"curve":[0.336,0.36,0.673,0.69]},{"time":0.6,"x":1.193,"y":0.922,"curve":[0.394,0.59,0.757,1]},{"time":0.8333,"x":1,"y":1}]},"huotui1":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"huotui3":{"rotate":[{"time":0,"angle":0,"curve":"stepped"},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":"stepped"},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"bone2":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"angle":2.05,"curve":[0.25,0,0.75,1]},{"time":0.2333,"angle":-0.4,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":-0.47,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":2.93,"curve":[0.25,0,0.75,1]},{"time":0.6,"angle":0.34,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":-4.24,"y":0.01,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":2.56,"y":0.71,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":5.86,"y":-1.38,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":-1.14,"y":0.48,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":10.06,"y":0.83,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"bone3":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.2,"angle":1.82,"curve":[0.25,0,0.75,1]},{"time":0.2667,"angle":-3.56,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":-14.78,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":-6.65,"curve":[0.25,0,0.75,1]},{"time":0.6333,"angle":-4.66,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.2,"x":-6.06,"y":0.62,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":1.62,"y":-0.58,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":5.68,"y":-1.48,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":-8.9,"y":0.64,"curve":[0.25,0,0.75,1]},{"time":0.6333,"x":3.27,"y":0.04,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.2,"x":1,"y":1,"curve":"stepped"},{"time":0.2667,"x":1,"y":1,"curve":"stepped"},{"time":0.4333,"x":1,"y":1,"curve":"stepped"},{"time":0.5333,"x":1,"y":1,"curve":"stepped"},{"time":0.6333,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"huotui5":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"angle":0.6,"curve":[0.25,0,0.75,1]},{"time":0.1667,"angle":-0.34,"curve":[0.25,0,0.75,1]},{"time":0.3,"angle":-0.88,"curve":[0.25,0,0.75,1]},{"time":0.3667,"angle":0.94,"curve":[0.25,0,0.75,1]},{"time":0.4667,"angle":0.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":-1.52,"y":-0.62,"curve":[0.25,0,0.75,1]},{"time":0.1667,"x":0,"y":11.72,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":0,"y":27.64,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":0.31,"y":1.9,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":0.22,"y":8.67,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.204,0.19,0.549,0.54]},{"time":0.1,"x":0.983,"y":0.933,"curve":[0.295,0.3,0.631,0.63]},{"time":0.1667,"x":1.319,"y":0.861,"curve":[0.285,0.29,0.63,0.64]},{"time":0.3,"x":1.53,"y":0.735,"curve":[0.323,0.34,0.661,0.68]},{"time":0.3667,"x":1.023,"y":0.957,"curve":[0.336,0.36,0.673,0.69]},{"time":0.4667,"x":1.193,"y":0.922,"curve":[0.394,0.59,0.757,1]},{"time":0.8333,"x":1,"y":1}]},"bone5":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":1.82,"curve":[0.25,0,0.75,1]},{"time":0.2333,"angle":-3.56,"curve":[0.25,0,0.75,1]},{"time":0.3333,"angle":-14.78,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":-6.65,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":-4.66,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-6.06,"y":0.62,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.62,"y":-0.58,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":5.68,"y":-1.48,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":-8.9,"y":0.64,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":3.27,"y":0.04,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.1333,"x":1,"y":1,"curve":"stepped"},{"time":0.2333,"x":1,"y":1,"curve":"stepped"},{"time":0.3333,"x":1,"y":1,"curve":"stepped"},{"time":0.4,"x":1,"y":1,"curve":"stepped"},{"time":0.5,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"bone4":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":2.05,"curve":[0.25,0,0.75,1]},{"time":0.2,"angle":-0.4,"curve":[0.25,0,0.75,1]},{"time":0.3,"angle":-0.47,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":2.93,"curve":[0.25,0,0.75,1]},{"time":0.4667,"angle":0.34,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-4.24,"y":0.01,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":2.56,"y":0.71,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":5.86,"y":-1.38,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":-1.14,"y":0.48,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":10.06,"y":0.83,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui6":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":0.6,"curve":[0.25,0,0.75,1]},{"time":0.2333,"angle":-0.34,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":-0.88,"curve":[0.25,0,0.75,1]},{"time":0.5,"angle":0.94,"curve":[0.25,0,0.75,1]},{"time":0.6333,"angle":0.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-1.52,"y":-0.62,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":0,"y":11.72,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":0,"y":27.64,"curve":[0.25,0,0.75,1]},{"time":0.5,"x":0.31,"y":1.9,"curve":[0.25,0,0.75,1]},{"time":0.6333,"x":0.22,"y":8.67,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.204,0.19,0.549,0.54]},{"time":0.1333,"x":0.983,"y":0.933,"curve":[0.295,0.3,0.631,0.63]},{"time":0.2333,"x":1.319,"y":0.861,"curve":[0.285,0.29,0.63,0.64]},{"time":0.4,"x":1.53,"y":0.735,"curve":[0.323,0.34,0.661,0.68]},{"time":0.5,"x":1.023,"y":0.957,"curve":[0.336,0.36,0.673,0.69]},{"time":0.6333,"x":1.193,"y":0.922,"curve":[0.394,0.59,0.757,1]},{"time":0.8333,"x":1,"y":1}]},"bone7":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.2,"angle":1.82,"curve":[0.25,0,0.75,1]},{"time":0.3,"angle":-3.56,"curve":[0.25,0,0.75,1]},{"time":0.4667,"angle":-14.78,"curve":[0.25,0,0.75,1]},{"time":0.5667,"angle":-6.65,"curve":[0.25,0,0.75,1]},{"time":0.7,"angle":-4.66,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.2,"x":-6.06,"y":0.62,"curve":[0.25,0,0.75,1]},{"time":0.3,"x":1.62,"y":-0.58,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":5.68,"y":-1.48,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":-8.9,"y":0.64,"curve":[0.25,0,0.75,1]},{"time":0.7,"x":3.27,"y":0.04,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.2,"x":1,"y":1,"curve":"stepped"},{"time":0.3,"x":1,"y":1,"curve":"stepped"},{"time":0.4667,"x":1,"y":1,"curve":"stepped"},{"time":0.5667,"x":1,"y":1,"curve":"stepped"},{"time":0.7,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"bone6":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"angle":2.05,"curve":[0.25,0,0.75,1]},{"time":0.2667,"angle":-0.4,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":-0.47,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":2.93,"curve":[0.25,0,0.75,1]},{"time":0.6667,"angle":0.34,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":-4.24,"y":0.01,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":2.56,"y":0.71,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":5.86,"y":-1.38,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":-1.14,"y":0.48,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":10.06,"y":0.83,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.6667,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]},"huotui7":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"angle":0.6,"curve":[0.25,0,0.75,1]},{"time":0.2,"angle":-0.34,"curve":[0.25,0,0.75,1]},{"time":0.3333,"angle":-0.88,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":0.94,"curve":[0.25,0,0.75,1]},{"time":0.5333,"angle":0.46,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1,"x":-1.52,"y":-0.62,"curve":[0.25,0,0.75,1]},{"time":0.2,"x":0,"y":11.72,"curve":[0.25,0,0.75,1]},{"time":0.3333,"x":0,"y":27.64,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":0.31,"y":1.9,"curve":[0.25,0,0.75,1]},{"time":0.5333,"x":0.22,"y":8.67,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.204,0.19,0.549,0.54]},{"time":0.1,"x":0.983,"y":0.933,"curve":[0.295,0.3,0.631,0.63]},{"time":0.2,"x":1.319,"y":0.861,"curve":[0.285,0.29,0.63,0.64]},{"time":0.3333,"x":1.53,"y":0.735,"curve":[0.323,0.34,0.661,0.68]},{"time":0.4333,"x":1.023,"y":0.957,"curve":[0.336,0.36,0.673,0.69]},{"time":0.5333,"x":1.193,"y":0.922,"curve":[0.394,0.59,0.757,1]},{"time":0.8333,"x":1,"y":1}]},"bone9":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"angle":1.82,"curve":[0.25,0,0.75,1]},{"time":0.2667,"angle":-3.56,"curve":[0.25,0,0.75,1]},{"time":0.4,"angle":-14.78,"curve":[0.25,0,0.75,1]},{"time":0.4667,"angle":-6.65,"curve":[0.25,0,0.75,1]},{"time":0.6,"angle":-4.66,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1667,"x":-6.06,"y":0.62,"curve":[0.25,0,0.75,1]},{"time":0.2667,"x":1.62,"y":-0.58,"curve":[0.25,0,0.75,1]},{"time":0.4,"x":5.68,"y":-1.48,"curve":[0.25,0,0.75,1]},{"time":0.4667,"x":-8.9,"y":0.64,"curve":[0.25,0,0.75,1]},{"time":0.6,"x":3.27,"y":0.04,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":"stepped"},{"time":0.1667,"x":1,"y":1,"curve":"stepped"},{"time":0.2667,"x":1,"y":1,"curve":"stepped"},{"time":0.4,"x":1,"y":1,"curve":"stepped"},{"time":0.4667,"x":1,"y":1,"curve":"stepped"},{"time":0.6,"x":1,"y":1,"curve":"stepped"},{"time":0.8333,"x":1,"y":1}]},"bone8":{"rotate":[{"time":0,"angle":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"angle":2.05,"curve":[0.25,0,0.75,1]},{"time":0.2333,"angle":-0.4,"curve":[0.25,0,0.75,1]},{"time":0.3667,"angle":-0.47,"curve":[0.25,0,0.75,1]},{"time":0.4333,"angle":2.93,"curve":[0.25,0,0.75,1]},{"time":0.5667,"angle":0.34,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"angle":0}],"translate":[{"time":0,"x":0,"y":0,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":-4.24,"y":0.01,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":2.56,"y":0.71,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":5.86,"y":-1.38,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":-1.14,"y":0.48,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":10.06,"y":0.83,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":0,"y":0}],"scale":[{"time":0,"x":1,"y":1,"curve":[0.11,0.13,0.75,1]},{"time":0.1333,"x":0.95,"y":1.05,"curve":[0.25,0,0.75,1]},{"time":0.2333,"x":1.03,"y":0.97,"curve":[0.25,0,0.75,1]},{"time":0.3667,"x":1.05,"y":0.95,"curve":[0.25,0,0.75,1]},{"time":0.4333,"x":0.97,"y":1.03,"curve":[0.25,0,0.75,1]},{"time":0.5667,"x":1.02,"y":0.98,"curve":[0.25,0,0.932,0.9]},{"time":0.8333,"x":1,"y":1}]}},"deform":{"default":{"huotui4":{"huotui4":[{"time":0,"curve":"stepped"},{"time":0.8333}]},"huotui5":{"huotui4":[{"time":0,"curve":"stepped"},{"time":0.8333}]},"huotui6":{"huotui4":[{"time":0,"curve":"stepped"},{"time":0.8333}]},"huotui7":{"huotui4":[{"time":0,"curve":"stepped"},{"time":0.8333}]}}}}}},"_atlasText":"\nn_06.png\nsize: 944,338\nformat: RGBA8888\nfilter: Linear,Linear\nrepeat: none\nhuotui1\n rotate: false\n xy: 2, 2\n size: 312, 166\n orig: 312, 166\n offset: 0, 0\n index: -1\nhuotui3\n rotate: false\n xy: 316, 2\n size: 288, 86\n orig: 288, 86\n offset: 0, 0\n index: -1\nhuotui4\n rotate: false\n xy: 630, 2\n size: 95, 142\n orig: 95, 142\n offset: 0, 0\n index: -1\nsuantou3\n rotate: false\n xy: 2, 170\n size: 301, 124\n orig: 301, 124\n offset: 0, 0\n index: -1\n","textures":[{"__uuid__":"ddR12uH6xKBaQ/WeGV18fQ"}],"textureNames":["n_06.png"]}
\ No newline at end of file
{"__type__":"cc.SpriteFrame","content":{"name":"n_013","texture":"6aVWUY4spLoqsb/E197P1v","rect":[3,3,687,254],"offset":[-110.5,32],"originalSize":[914,324],"capInsets":[0,0,0,0]}}
\ No newline at end of file
{"__type__":"cc.SpriteFrame","content":{"name":"n_09","texture":"cdj5D244dBqLsezKowjzUK","rect":[3,3,708,263],"offset":[-106,28.5],"originalSize":[926,326],"capInsets":[0,0,0,0]}}
\ No newline at end of file
{"__type__":"cc.SpriteFrame","content":{"name":"n_012","texture":"77Qptp7M5L2K004PyAteTU","rect":[3,3,703,254],"offset":[-102.5,32],"originalSize":[914,324],"capInsets":[0,0,0,0]}}
\ No newline at end of file
{"__type__":"cc.Asset","_name":"n_02","_native":".atlas"}
\ No newline at end of file
{"__type__":"cc.SpriteFrame","content":{"name":"n_01","texture":"3eXvvR3qJBFaYhOQSnO3tU","rect":[3,3,925,255],"offset":[-3.5,36.5],"originalSize":[938,334],"capInsets":[0,0,0,0]}}
\ No newline at end of file
{"__type__":"cc.SpriteFrame","content":{"name":"n_011","texture":"76ORtaFaVOt4W79gSbIiHm","rect":[3,3,911,272],"offset":[-1.5,25],"originalSize":[920,328],"capInsets":[0,0,0,0]}}
\ No newline at end of file
{"__type__":"cc.SpriteFrame","content":{"name":"n_05","texture":"b1ZulTbBlB76E4Qu8UXemZ","rect":[78,4,1565,634],"offset":[-50.5,-1],"originalSize":[1822,640],"capInsets":[0,0,0,0]}}
\ No newline at end of file
{"__type__":"cc.SpriteFrame","content":{"name":"n_07","texture":"8dUsVh3sdHlo1whjvTvmXZ","rect":[3,3,911,276],"offset":[-1.5,23],"originalSize":[920,328],"capInsets":[0,0,0,0]}}
\ No newline at end of file
n_04.png
size: 953,342
format: RGBA8888
filter: Linear,Linear
repeat: none
huotui1
rotate: false
xy: 2, 2
size: 315, 168
orig: 315, 168
offset: 0, 0
index: -1
huotui3
rotate: false
xy: 319, 2
size: 290, 88
orig: 290, 88
offset: 0, 0
index: -1
huotui4
rotate: false
xy: 636, 2
size: 93, 93
orig: 93, 93
offset: 0, 0
index: -1
suantou3
rotate: false
xy: 2, 172
size: 303, 126
orig: 303, 126
offset: 0, 0
index: -1
n_012.png
size: 914,324
format: RGBA8888
filter: Linear,Linear
repeat: none
huotui1
rotate: false
xy: 2, 2
size: 302, 159
orig: 302, 159
offset: 0, 0
index: -1
huotui3
rotate: false
xy: 306, 2
size: 276, 92
orig: 276, 92
offset: 0, 0
index: -1
huotui4
rotate: false
xy: 610, 2
size: 97, 87
orig: 97, 87
offset: 0, 0
index: -1
huotui5
rotate: false
xy: 2, 163
size: 268, 95
orig: 268, 95
offset: 0, 0
index: -1
n_011.png
size: 920,328
format: RGBA8888
filter: Linear,Linear
repeat: none
huotui1
rotate: false
xy: 2, 2
size: 304, 161
orig: 304, 161
offset: 0, 0
index: -1
huotui2
rotate: false
xy: 308, 2
size: 112, 70
orig: 112, 70
offset: 0, 0
index: -1
huotui3
rotate: false
xy: 614, 2
size: 301, 100
orig: 301, 100
offset: 0, 0
index: -1
huotui4
rotate: false
xy: 2, 165
size: 93, 111
orig: 93, 111
offset: 0, 0
index: -1
huotui5
rotate: false
xy: 308, 165
size: 303, 101
orig: 303, 101
offset: 0, 0
index: -1
n_07.png
size: 920,328
format: RGBA8888
filter: Linear,Linear
repeat: none
huotui1
rotate: false
xy: 2, 2
size: 304, 161
orig: 304, 161
offset: 0, 0
index: -1
huotui2
rotate: false
xy: 308, 2
size: 112, 70
orig: 112, 70
offset: 0, 0
index: -1
huotui3
rotate: false
xy: 614, 2
size: 301, 100
orig: 301, 100
offset: 0, 0
index: -1
huotui4
rotate: false
xy: 2, 165
size: 128, 115
orig: 128, 115
offset: 0, 0
index: -1
huotui5
rotate: false
xy: 308, 165
size: 303, 101
orig: 303, 101
offset: 0, 0
index: -1
n_03.png
size: 582,172
format: RGBA8888
filter: Linear,Linear
repeat: none
huotui1
rotate: false
xy: 2, 2
size: 288, 168
orig: 288, 168
offset: 0, 0
index: -1
huotui4
rotate: false
xy: 292, 2
size: 70, 122
orig: 70, 122
offset: 0, 0
index: -1
n_01.png
size: 938,334
format: RGBA8888
filter: Linear,Linear
repeat: none
huotui1
rotate: false
xy: 2, 2
size: 310, 164
orig: 310, 164
offset: 0, 0
index: -1
huotui2
rotate: false
xy: 314, 2
size: 114, 72
orig: 114, 72
offset: 0, 0
index: -1
huotui3
rotate: false
xy: 626, 2
size: 303, 102
orig: 303, 102
offset: 0, 0
index: -1
huotui4
rotate: false
xy: 2, 168
size: 105, 91
orig: 105, 91
offset: 0, 0
index: -1
n_013.png
size: 914,324
format: RGBA8888
filter: Linear,Linear
repeat: none
huotui1
rotate: false
xy: 2, 2
size: 302, 159
orig: 302, 159
offset: 0, 0
index: -1
huotui3
rotate: false
xy: 306, 2
size: 276, 92
orig: 276, 92
offset: 0, 0
index: -1
huotui4
rotate: false
xy: 610, 2
size: 81, 85
orig: 81, 85
offset: 0, 0
index: -1
huotui5
rotate: false
xy: 2, 163
size: 268, 95
orig: 268, 95
offset: 0, 0
index: -1
n_05.png
size: 1822,640
format: RGBA8888
filter: Linear,Linear
repeat: none
yan
rotate: false
xy: 2, 2
size: 200, 143
orig: 200, 143
offset: 0, 0
index: -1
yan1
rotate: false
xy: 366, 2
size: 200, 143
orig: 200, 143
offset: 0, 0
index: -1
yan2
rotate: false
xy: 730, 2
size: 200, 143
orig: 200, 143
offset: 0, 0
index: -1
yan3
rotate: false
xy: 1094, 2
size: 200, 143
orig: 200, 143
offset: 0, 0
index: -1
yan4
rotate: false
xy: 1458, 2
size: 200, 143
orig: 200, 143
offset: 0, 0
index: -1
yan5
rotate: false
xy: 2, 321
size: 200, 143
orig: 200, 143
offset: 0, 0
index: -1
yanjiuyuan
rotate: false
xy: 366, 321
size: 362, 317
orig: 362, 317
offset: 0, 0
index: -1
n_08.png
size: 926,326
format: RGBA8888
filter: Linear,Linear
repeat: none
huotui1
rotate: false
xy: 2, 2
size: 303, 160
orig: 303, 160
offset: 0, 0
index: -1
huotui3
rotate: false
xy: 310, 2
size: 297, 97
orig: 297, 97
offset: 0, 0
index: -1
huotui4
rotate: false
xy: 618, 2
size: 111, 124
orig: 111, 124
offset: 0, 0
index: -1
huotui8
rotate: false
xy: 2, 164
size: 306, 103
orig: 306, 103
offset: 0, 0
index: -1
n_09.png
size: 926,326
format: RGBA8888
filter: Linear,Linear
repeat: none
huotui1
rotate: false
xy: 2, 2
size: 303, 160
orig: 303, 160
offset: 0, 0
index: -1
huotui3
rotate: false
xy: 310, 2
size: 297, 97
orig: 297, 97
offset: 0, 0
index: -1
huotui4
rotate: false
xy: 618, 2
size: 94, 96
orig: 94, 96
offset: 0, 0
index: -1
huotui8
rotate: false
xy: 2, 164
size: 306, 103
orig: 306, 103
offset: 0, 0
index: -1
n_010.png
size: 944,338
format: RGBA8888
filter: Linear,Linear
repeat: none
huotui1
rotate: false
xy: 2, 2
size: 312, 166
orig: 312, 166
offset: 0, 0
index: -1
huotui3
rotate: false
xy: 316, 2
size: 288, 86
orig: 288, 86
offset: 0, 0
index: -1
huotui4
rotate: false
xy: 630, 2
size: 110, 109
orig: 110, 109
offset: 0, 0
index: -1
suantou3
rotate: false
xy: 2, 170
size: 301, 124
orig: 301, 124
offset: 0, 0
index: -1
n_06.png
size: 944,338
format: RGBA8888
filter: Linear,Linear
repeat: none
huotui1
rotate: false
xy: 2, 2
size: 312, 166
orig: 312, 166
offset: 0, 0
index: -1
huotui3
rotate: false
xy: 316, 2
size: 288, 86
orig: 288, 86
offset: 0, 0
index: -1
huotui4
rotate: false
xy: 630, 2
size: 95, 142
orig: 95, 142
offset: 0, 0
index: -1
suantou3
rotate: false
xy: 2, 170
size: 301, 124
orig: 301, 124
offset: 0, 0
index: -1
n_02.png
size: 941,166
format: RGBA8888
filter: Linear,Linear
repeat: none
huotui1
rotate: false
xy: 2, 2
size: 311, 162
orig: 311, 162
offset: 0, 0
index: -1
huotui3
rotate: false
xy: 315, 2
size: 299, 99
orig: 299, 99
offset: 0, 0
index: -1
huotui4
rotate: false
xy: 628, 2
size: 96, 114
orig: 96, 114
offset: 0, 0
index: -1
This source diff could not be displayed because it is too large. You can view the blob instead.
window._CCSettings={platform:"web-mobile",groupList:["default"],collisionMatrix:[[true]],rawAssets:{assets:{"0":["Prefab/View/goodStoreUI.prefab",2],"1":["Icon/pingguo",0,1],"4":["Prefab/View/ordersDialogPt.prefab",2],"8":["Icon/jinbi2",0,1],"11":["Prefab/View/ResearchInstitute/farmersItem.prefab",2],"12":["Prefab/View/testUI.prefab",2],"13":["Icon/huluobo.png",1],"14":["spine/n_04.png",1],"15":["spine/n_03.png",1],"16":["Image/2.png",1],"17":["spine/n_01.png",1],"18":["Icon/jinbi2.png",1],"19":["Image/3.png",1],"20":["spine/n_013.png",1],"21":["spine/n_011.png",1],"22":["spine/n_012.png",1],"23":["Image/0.png",1],"24":["spine/n_010.png",1],"25":["spine/n_07.png",1],"26":["Icon/xihongshi.png",1],"27":["Icon/zuanshi2.png",1],"28":["Icon/pingguo.png",1],"29":["spine/n_05.png",1],"30":["Icon/qiezi.png",1],"31":["Image/1.png",1],"32":["spine/n_02.png",1],"33":["spine/n_09.png",1],"34":["spine/n_06.png",1],"35":["spine/n_08.png",1],"36":["Icon/zuanshi2",0,1],"37":["Prefab/View/startUI.prefab",2],"38":["Image/1",0,1],"39":["Image/3",0,1],"40":["Image/2",0,1],"41":["Icon/xihongshi",0,1],"42":["Icon/huluobo",0,1],"45":["Prefab/View/item.prefab",2],"46":["Prefab/View/deathUI.prefab",2],"59":["Prefab/View/ordersDialogZf.prefab",2],"61":["Prefab/View/audioSwitchView.prefab",2],"62":["Prefab/View/orderFinishDialog.prefab",2],"65":["Prefab/View/ResearchInstitute/researchItem.prefab",2],"67":["Prefab/View/ResearchInstitute/postItem.prefab",2],"69":["Prefab/View/ResearchInstitute/researchInstituteUI.prefab",2],"76":["Prefab/land.prefab",2],"79":["Prefab/View/ordersDialogCj.prefab",2],"81":["Prefab/View/commonDialog.prefab",2],"82":["Prefab/View/toast.prefab",2],"65xQ16q89IIawJ0DM9xAyI":["Icon/qiezi",0,1],"06qjdQUXZGqLrg6B1QHSwo":["Image/0",0,1],eaUoavvVNEi6Egg4ZGMzr0:["spine/n_01",0,1],"52MU+IWtxMH4Uo3+iluaMe":["spine/n_01.atlas",3],"08UcmyzfFFi758OKLD/WnI":["spine/n_01.json",4],"374sxfZqNI4avvKljS/20k":["spine/n_010",0,1],"91fIZVq69PMoxQ0CRFeZoq":["spine/n_010.atlas",3],"07UCAYIltOXb4Jusc+qALn":["spine/n_010.json",4],"efGVVW1OxLSLujG6ynbV/G":["spine/n_011",0,1],"33XywZgUJDHKqjsb1OHRvX":["spine/n_011.atlas",3],"37O4KmFMNOPaKo7yNrugpd":["spine/n_011.json",4],d7iICbqPdAc5DJz23WvVIS:["spine/n_012",0,1],"13vorL0O9A2JiGTiYpHTw4":["spine/n_012.atlas",3],"37pDjM5IpE0bp/asO9d2nx":["spine/n_012.json",4],cbOIP1keRIIp6jyPc0mgtO:["spine/n_013",0,1],"5383Gcbp9F0pdy33P6chG6":["spine/n_013.atlas",3],"6bSLkdBGxOSZOTtzEav+/Y":["spine/n_013.json",4],"0bo9Peqj9IU6/BPfXbPfKJ":["spine/n_02",0,1],e93uztDaZFJYY1xZdDzgmu:["spine/n_02.atlas",3],"26djwJQzpMR4SwbWsYiabc":["spine/n_02.json",4],"19mjFuFk5FEIfm33oep6Nb":["spine/n_03",0,1],"361kBhjYRLHLtjqgs7dIqE":["spine/n_03.atlas",3],bbKsjxshJMr7ODxa1eTsoC:["spine/n_03.json",4],"32kyMWK0VAU54JcPR4DepF":["spine/n_04",0,1],"0dC3lB4rdL64OuUlL9t0x5":["spine/n_04.atlas",3],"49RLEMModFYKTmtwO4oEdx":["spine/n_04.json",4],"f0aMqOSvNGMbE/V1KYMSj3":["spine/n_05",0,1],"6dis7ppvNMPa2XKCrfw7Fu":["spine/n_05.atlas",3],"1bbav4lz9HpJr5niR3oUJR":["spine/n_05.json",4],"1emUvO02pP8523NCbcwqMd":["spine/n_06",0,1],"9f9nEi3lZCcZF4igunO85a":["spine/n_06.atlas",3],c5M8fexL9F4aVyGLGIz7h7:["spine/n_06.json",4],f1imM0FxxDiaFjmDAK12U7:["spine/n_07",0,1],"34wybzkJNJJarnoerQJUsv":["spine/n_07.atlas",3],"9bt+CHt1pA1bJrqJZsdWSJ":["spine/n_07.json",4],"02PtftP9FHa6VUh3hfLXxu":["spine/n_08",0,1],"7bD9aJluFEAqcgZbGGQ8/+":["spine/n_08.atlas",3],"66qZ3G9IdDGqrqBjrgeYMQ":["spine/n_08.json",4],"d02wO/mNBDaKnSv8/hpEUe":["spine/n_09",0,1],"8a6K/5T71FfKl5wpiHQzpe":["spine/n_09.atlas",3],"02WlJK2MxKk45A/Z0rXsWd":["spine/n_09.json",4]}},assetTypes:["cc.SpriteFrame","cc.Texture2D","cc.Prefab","cc.Asset","sp.SkeletonData"],launchScene:"db://assets/scene/main.fire",scenes:[{url:"db://assets/scene/main.fire",uuid:66}],packedAssets:{"0247f9be7":["11iqZDrT9PaZyQ+Lto+WYl",2,0,3,"4bncJjjZBDnLxvURXkmgdA","5cO7kybDxGj4ipyMYdRYZB","5f5dyqtRNNxaFmVzYns6FZ",5,43,6,"9bvaMerUlDyary99mJa6xp",7,9,10,"f1YmKMrflIfZUIFSow3ky8"],"027279c53":[47,1,48,49,50,2,3,4,51,52,"6551AM8CxPIKkEcBrDxpZd",53,5,54,6,55,56,7,44,57,58,8,9,10,60],"031d2ccea":[11,7],"03f18012b":[2,12,7,9,10],"04a87b0ff":["02Bdszvk5DNLHaTw/+DKDL","02delMVqdBD70a/HSD99FK","05hzoMOD9H1a9guZyVBs9Q","0918ZfOMBJzIZxGZQ38Wod","0aSbThNLFHka+TrC94ypNd","0favQxn7hBrLscAW/6G8Uf","0flATc+a1P7IM+xWtZLkPa",13,14,"15z64+y65EU4Xt12rwH1IJ",15,"184IYkhUNEYqxKjD4chi7G","1bkqaRuwlPZZx8SiBGvDhP","1fbSYyThdHf5WTbSCwZ8TB","205mizwIJP4qpcqJVhCNlT","21PHAE7rlJrKa6GgGqfjjo","2ccIZnqNpH8ZyqKm6Nfbzc","2e3v8qmgxFhqiyn1JC1Kgv","2e4g4B9ZtNX54SJElBFCdA",16,"35xT7FjfdParePqgzySFB5","3dARtEOaNMbb6q7kgP0HaF","3eAxuMr1BFAbWu5uY12lLA",17,"40Jv0OSw1Oi6wg6VLf0cZt","429tdM1iFCrZsQT/CJ+KTI","49+19C9mND941CgoXQXUml","53mSrcFehA4qIa4n4hLGAA",18,"58y2W5WipMWJdNEJ8WRQus","5aKVC+CyBHLpKI0/M2qZ8/","5bFxbAHkJGVYxUrjIrgA7J","5dmR8lPHlC9ZY6/84LODt6","61cyPdEfRN047sDK9rO0W5","64sdw9hWRJI4C6oOwPm/GX",19,"68SDnZvYxE/IVnbTu/KJi/",20,"6bn6SDuPdI3bZuWlWnYSHi","6cn3qW4VFJDKAk50r406dh","6fSeXHvGVKF5wEASY6xhSX","6fYb26Ko5FsZKbwQiJVb3M","70yEBliTlG0YrxNFj77neI","71VhFCTINJM6/Ky3oX9nBT",21,"769WgeZctFkaG0V0K1nxjb",22,23,"770NpATzNMyY9pPhOCa+cR","79yujOGpJOyoZb93OKJFpY","7aA5fKsylDt741V0Et4cnV","7bO1xMF0BOO4v4lrnouws1","7cacegOSFMkoZPIfMOzC0n","7c0HEGsddB6bEM72hHR1N3","7dYYPbBQlMyodWniFhwnOT",24,"8aQ6vdXPFNgZ1xAQAmlcZn",25,"8fa3Cn1KRLcJa9hV8H3oCj","95EnwBtCdLPpIgALCEwZJn",26,27,"97PDsTquJLfbhNLJXIEGI0","97/TZe7phDG7XGM5A8Szyt","9aKTgaD3tFHZD0UNZWn7CQ","a2KVU2ShVGZ7b3jkf5Otnb","a2XyoFoS5P4o5KjX9Viafi","a3cofYOOxJ5YnG5JX3h3ce","a8rnVZMYdB1IKFsz0IP0FP","a9QoHyJZZB9L+K2Ky5xYk/",28,"afZvkqPD5JSKL1J+pqdcp5","b0sXGKCTFIyaYSeW+fLK1j",29,"b26uKGXyhKLKClwzSgbcmD","b3W18dQiFCJbnI/oUgOP1I","b4P/PCArtIdIH38t6mlw8Y","b7Cow+rm9DwZ1lU4vRORJj",30,"b9yzy3FvxKDr8I6VIY4bjZ","baUdLJSXVLNq0duXBQORq9","bcdOAaoy1J3ZyHWcBC179d",31,"c0strDbdxCwK/4cR03o8ul","c1/MiHkYtEeJ5uhXgSchw2","c2ORbro1VCzL/uHM7fCnqr","c3zrt5evNIrIdL7ZoYALXe","c4P/+ZLpdMT7vmmUl1W1CK","c51q3B4/xLPbJrhpqxOydL",32,33,"d608qFRoFHwbXd0Dap056i","d8HsitJHxOYqo801xBk8ev","d9MoJxtLlAbbph+Hx6qw7L","dcNSFOYidLSbkxXF6x8RAL",34,"e0jKurGjNK+7hEcPvojV1Y","e3sh7xARVArJ+EZKvY0Hgz","e4tGlf4TVKtrlE0QAufoML","e8Ueib+qJEhL6mXAHdnwbi","eaqWNbouFJLqfz1d4+L2Y/","edDzdkfBFKGbFZPxWRtFVs","efVL7RrcRKPa8GHGhR8tm3","f1s/Fanz5IJYqYNREZ5RBD","f6C/H9xjdPrp7KpyfUChlN","f9svfgeK9FwaaFDW6iSZqe",35,"fdLoCzzVhNr66i10hm1Xw0","fdj9U5MftDVInpIZVruSTW","fe7LKB/MdFuK2UM6MvaZkf"],"04b227ef6":["06fdXHuP1IgK1vtD7Sj8qg",64,"20raXdTc5KIbeyU7PcC9uO",36,2,"2bIWelWi9H9qXFgoSHgh4b",70,"2clHWXHJZKgZtB2tXlQKKe","2fJWxtnURDdr5IPZALT60q","38+TrSLqlLh5tCtSUr0Duz","39mwTlS8BJzYjAp7RqDbYu",71,"4fJ1UTMCxDz5GiZVEW+jq+","66mxvSullGtLP7VPLVtnti",72,"6bGqQI9X9BbbayASpcNiBH","75yalR1/BAYZ8W0hTfazsu",73,74,"94hfu9wahEP7d3xfh/xJ3M",7,37,38,39,"b6ovzv3FtKj4VCYp1uFZmQ","c3aEQodqZBX5Bna78fO36X",40,41,8,9,75,"ec7LH1ZpZOjLq36f4SRorI",10,"f9VK5W23dORJxguHM8s4iP"],"052761863":[42,"09TPsG8SxJIZ/PQ6qXDMKZ",63,43,44,45],"071c3ce00":[46,7],"07c76e846":[77,47,"0eYgWNoNBK949UIG5/iDN9",1,48,49,50,36,2,3,51,52,78,53,5,54,6,55,56,7,44,57,58,8,80,9,59,10,60],"081a81ce4":["33xcnfMYdJs4WRlCZZFZkc","40SiQOx2lHo6EiSTTkVr10",61],"08dddf8c7":[62,"14wPRrPtNGlq/xpYaBhvS6","20HM4LDJpJYoA2IaSuUWO7",2,68,51,"4eVH0OkqlNwrziMJUO4HgW",63,7,44,"ad2F8CLOpGfKcq9mZpDtI2",57,58,"e4EVEYwi9CHoISbXmQO7mE",8,9,10,"f2J8bCFrFB2osgTae51C/C"],"09ace6248":[64,2,"49ZnH1wRxPbZi/pjZaCrDm",83,65,9,10],"0afcff4d0":["05/CttEvVKRpdOABgLQH8I","924WpApvRIrIfhbZeRwx4R",66],"0b8ec1230":["1bzypsv0ZB6oZMkkl48fOU",67,"91d5qp5DlImLdEyutO9MKh","cclK01detBC7ZBlq44kQMI"],"0c036726c":["03z5UrFmdI/KmAQrJVRAG+",64,"237gZJ4K9Ll4nXd9ABJdCl",2,68,"58xRTNsCBLioGNzjHJcgDn","6b4FBe4MpDHat1ymZbAbq2","6cYb6oLmBLhojewKXz+d1a","737aqnuvRGE7dflH0TbSol","9cim+voplGn5px5CwguZ7/","9czMBNS1FHF73ZbHDJd/eM","9fkYaZfqdCm5tOMcZgwJiN","a1KZhSS5tJh7qxsCmWtTmB","d6NHx7ZJJG9KWr/Play5Wi","e6apdqKO5GqqsWrIqt4DHw",9,"edfLo/MpVEir9D0AwWPxs3",10,69],"0cd49225b":[2,70,71,72,73,74,9,75,76,10],"0d77a813e":[77,47,1,48,49,50,36,2,3,51,52,"55ASWCwgxPQptc0cJw6VJE",78,53,5,54,6,55,56,7,44,79,"baO8h5JP5MKb20UFGbsfBd",57,58,8,80,9,10,60],"0d92432a9":[2,7,9,81,10],"0f01df3c5":[82,83]},md5AssetsMap:{},orientation:"",subpackages:{},uuids:["36xV9JHAhBa6uFW+z2OgBP","13OT1x+TBPPKE7V0rP0HpQ","29FYIk+N1GYaeWH/q1NxQO","3c/sEkUjpEQrEJz66SpgRP","3dD650RVRNi7UvCWrzjxPV","757nIdGSNLsqmAAJFA2JzX","89eJUe2dlPuZVpJFyxfSK7","a2MjXRFdtLlYQ5ouAFv/+R","e4IYERodFIB46xcrvFttJN","e97GVMl6JHh5Ml5qEDdSGa","f0BIwQ8D5Ml7nTNQbh1YlS","7fwYFYPfBFKpN+Sc4fadF1","85qv3pWYNIgp83ARl3hU0Y","14FzpwscRJ8bg1rMexmXlL","15zyiJLxBDKYjJd2qeVQsz","16GEm8+9RP65UVhFHU39uk","31rrXgFgZBOq5k/vrR/Ghf","3eXvvR3qJBFaYhOQSnO3tU","55hts9dLRPs4Mzsv2gkIiU","64/2rGXc9EOr1ai5bIhfy3","6aVWUY4spLoqsb/E197P1v","76ORtaFaVOt4W79gSbIiHm","77Qptp7M5L2K004PyAteTU","77fDZ05KZIK53P4qMH5nGY","804Ig2R89P9IcKYIWqW3u7","8dUsVh3sdHlo1whjvTvmXZ","95TDHFV4BPdJEClJo5Qg3H","95tgA+MEhHHZqRO7FLtECb","aeteZP/o5KnJuvgFXVoNnO","b1ZulTbBlB76E4Qu8UXemZ","b8NAKFQB9OAKcqROCt7Vcc","bfQWZNXMBJlLOnHnk8Cipo","c7eWZKPJNBZrkzZYnL+7Eh","cdj5D244dBqLsezKowjzUK","ddR12uH6xKBaQ/WeGV18fQ","faan5IkXJC2p0QMFDmzYVC","25dt/PtH1IGKEfe/72MI9D","b0+u4cFppJwIFjnDGpZ5gM","b2+l2glfpANI6FbzZUrDX3","b5Gp/G0mhK5Y2S+G/zLA/d","d8p3A8l5ZCLZcz6kiD0R27","df54KWEAFBBKkNtc4LmHwM","02id22Jn9KSbLtcqPsCofY","89IjhBi91BhZOsCO5nA3Ev","a2TYdtzAFNR6H+yuIFYh4y","b5YJuB4z9G8p4jjBJJ+bHh","55Go3jGK9N+5HuauG4gNf+","0aVL9yk5NBMIqOmTBfViTq","1cfKbUfbBMJba67UvAqXrj","20br33BY5AcL1/fs0WSU9p","23k8InBK1IDZAfxIWOodHI","48qtt5FpNJw61v73KxEYd0","51ae9jWYhKpKoGh/zkEUrn","6daBhqyU5NWolCSCBzP2x5","84Co42Wu9BELJrl0EYps4G","8e/pnTRy9C3Ihd0emR560P","9dZNwraKtEq5SLTSVj93Ri","cdZod374dKbY+0ASLPyCjV","dfsLO8DAtLGLUSj3gsAl3G","eaCsqIwyNBlYV5Q4w5HpX+","f5nQwFoT1EUo0gSBGxWBwj","aavF51oQFE44OKzwM6quqF","0cm8y33E5FFZ4iTF3okflE","51xpboqLlHApAT/cDhovBJ","1dEUZugBRHYoCKgHpDH/Gj","e2sYM7TcRH1o0UXl67ihsY","f9SkzhU7ZN2ry4IFWqNa9/","84K5VJcFpKS4NR09igMC+B","3aXSv7WLRE2p3ngltKHL/1","f8PAsP08JBx4l9aFzOawpg","2bKMF0fhBP/qHnz0Xjkzyl","4ai8vFkTBMO42u/ttQqR2A","6659eeWqtAdZsjMyUxM5Sm","7bbEGd/dVDTocuYRvzmw/0","7fWCxAEIxKKZ4ZTyzYk4FA","ea/RcVsVNE2LGuaHsE6aWO","efB7QckU1Nl4RlH/MJrj7C","05wr3+zh5Oza/Utq5jYf9z","5d4XNTx3BFvqK56MzxWFFB","b5E/Dh3EpKZayiREdF+6ko","e6bdVThHNGuZ+OvYbEXq0S","eceiRZciNIWLneWe/inUCY","638TInu+xO2b60JiAxqQa8","c0aU+sxJBFxaH0oprk/bgn"]};
\ No newline at end of file
body {
cursor: default;
padding: 0;
border: 0;
margin: 0;
text-align: center;
background-color: white;
font-family: Helvetica, Verdana, Arial, sans-serif;
}
body, canvas, div {
outline: none;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
-khtml-user-select: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* Remove spin of input type number */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
/* display: none; <- Crashes Chrome on hover */
-webkit-appearance: none;
margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
#Cocos2dGameContainer {
position: absolute;
margin: 0;
overflow: hidden;
left: 0px;
top: 0px;
}
canvas {
background-color: rgba(0, 0, 0, 0);
}
a:link, a:visited {
color: #000;
}
a:active, a:hover {
color: #666;
}
p.header {
font-size: small;
}
p.footer {
font-size: x-small;
}
#splash {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #171717 url(./splash.png) no-repeat center;
background-size: 40%;
}
.progress-bar {
background-color: #1a1a1a;
position: absolute;
left: 50%;
top: 80%;
height: 26px;
padding: 5px;
width: 350px;
margin: 0 -175px;
border-radius: 5px;
box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444;
}
.progress-bar span {
display: block;
height: 100%;
border-radius: 3px;
box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;
transition: width .4s ease-in-out;
background-color: #34c2e3;
}
.stripes span {
background-size: 30px 30px;
background-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%,
transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%,
transparent 75%, transparent);
animation: animate-stripes 1s linear infinite;
}
@keyframes animate-stripes {
0% {background-position: 0 0;} 100% {background-position: 60px 0;}
}
h1 {
color: #444;
text-shadow: 3px 3px 15px;
}
#GameDiv {
width: 800px;
height: 450px;
margin: 0 auto;
background: black;
position:relative;
border:5px solid black;
border-radius: 10px;
box-shadow: 0 5px 50px #333
}
html {
-ms-touch-action: none;
}
body, canvas, div {
display: block;
outline: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
-khtml-user-select: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* Remove spin of input type number */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
/* display: none; <- Crashes Chrome on hover */
-webkit-appearance: none;
margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
body {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
padding: 0;
border: 0;
margin: 0;
cursor: default;
color: #888;
background-color: #333;
text-align: center;
font-family: Helvetica, Verdana, Arial, sans-serif;
display: flex;
flex-direction: column;
}
#Cocos2dGameContainer {
position: absolute;
margin: 0;
overflow: hidden;
left: 0px;
top: 0px;
display: -webkit-box;
-webkit-box-orient: horizontal;
-webkit-box-align: center;
-webkit-box-pack: center;
}
canvas {
background-color: rgba(0, 0, 0, 0);
}
a:link, a:visited {
color: #666;
}
a:active, a:hover {
color: #666;
}
p.header {
font-size: small;
}
p.footer {
font-size: x-small;
}
#splash {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #171717 url(./splash.png) no-repeat center;
background-size: 40%;
}
.progress-bar {
background-color: #1a1a1a;
position: absolute;
left: 25%;
top: 80%;
height: 15px;
padding: 5px;
width: 50%;
/*margin: 0 -175px; */
border-radius: 5px;
box-shadow: 0 1px 5px #000 inset, 0 1px 0 #444;
}
.progress-bar span {
display: block;
height: 100%;
border-radius: 3px;
box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;
transition: width .4s ease-in-out;
background-color: #34c2e3;
}
.stripes span {
background-size: 30px 30px;
background-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%,
transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%,
transparent 75%, transparent);
animation: animate-stripes 1s linear infinite;
}
@keyframes animate-stripes {
0% {background-position: 0 0;} 100% {background-position: 60px 0;}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment