LuckView.prefab 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "LuckView",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 7
  25. },
  26. {
  27. "__id__": 33
  28. },
  29. {
  30. "__id__": 59
  31. }
  32. ],
  33. "_active": false,
  34. "_level": 1,
  35. "_components": [
  36. {
  37. "__id__": 64
  38. }
  39. ],
  40. "_prefab": {
  41. "__id__": 65
  42. },
  43. "_opacity": 255,
  44. "_color": {
  45. "__type__": "cc.Color",
  46. "r": 255,
  47. "g": 255,
  48. "b": 255,
  49. "a": 255
  50. },
  51. "_contentSize": {
  52. "__type__": "cc.Size",
  53. "width": 613,
  54. "height": 974
  55. },
  56. "_anchorPoint": {
  57. "__type__": "cc.Vec2",
  58. "x": 0.5,
  59. "y": 0.5
  60. },
  61. "_position": {
  62. "__type__": "cc.Vec3",
  63. "x": 0,
  64. "y": 0,
  65. "z": 0
  66. },
  67. "_scale": {
  68. "__type__": "cc.Vec3",
  69. "x": 1,
  70. "y": 1,
  71. "z": 1
  72. },
  73. "_quat": {
  74. "__type__": "cc.Quat",
  75. "x": 0,
  76. "y": 0,
  77. "z": 0,
  78. "w": 1
  79. },
  80. "_skewX": 0,
  81. "_skewY": 0,
  82. "_zIndex": 0,
  83. "_is3DNode": false,
  84. "groupIndex": 0,
  85. "_id": ""
  86. },
  87. {
  88. "__type__": "cc.Node",
  89. "_name": "BlackBGShader",
  90. "_objFlags": 0,
  91. "_parent": {
  92. "__id__": 1
  93. },
  94. "_children": [],
  95. "_active": true,
  96. "_level": 5,
  97. "_components": [
  98. {
  99. "__id__": 3
  100. },
  101. {
  102. "__id__": 4
  103. },
  104. {
  105. "__id__": 5
  106. }
  107. ],
  108. "_prefab": {
  109. "__id__": 6
  110. },
  111. "_opacity": 255,
  112. "_color": {
  113. "__type__": "cc.Color",
  114. "r": 247,
  115. "g": 242,
  116. "b": 242,
  117. "a": 255
  118. },
  119. "_contentSize": {
  120. "__type__": "cc.Size",
  121. "width": 720,
  122. "height": 1280
  123. },
  124. "_anchorPoint": {
  125. "__type__": "cc.Vec2",
  126. "x": 0.5,
  127. "y": 0.5
  128. },
  129. "_position": {
  130. "__type__": "cc.Vec3",
  131. "x": -2.9999999999998863,
  132. "y": -1,
  133. "z": 0
  134. },
  135. "_scale": {
  136. "__type__": "cc.Vec3",
  137. "x": 1,
  138. "y": 1,
  139. "z": 1
  140. },
  141. "_quat": {
  142. "__type__": "cc.Quat",
  143. "x": 0,
  144. "y": 0,
  145. "z": 0,
  146. "w": 1
  147. },
  148. "_skewX": 0,
  149. "_skewY": 0,
  150. "_zIndex": 0,
  151. "_is3DNode": false,
  152. "groupIndex": 0,
  153. "_rotationX": 0,
  154. "_rotationY": 0,
  155. "_id": ""
  156. },
  157. {
  158. "__type__": "cc.Sprite",
  159. "_name": "",
  160. "_objFlags": 0,
  161. "node": {
  162. "__id__": 2
  163. },
  164. "_enabled": true,
  165. "_srcBlendFactor": 770,
  166. "_dstBlendFactor": 771,
  167. "_spriteFrame": {
  168. "__uuid__": "771f3687-9f8e-4005-ab97-e0f695d3424c"
  169. },
  170. "_type": 0,
  171. "_sizeMode": 0,
  172. "_fillType": 0,
  173. "_fillCenter": {
  174. "__type__": "cc.Vec2",
  175. "x": 0,
  176. "y": 0
  177. },
  178. "_fillStart": 0,
  179. "_fillRange": 0,
  180. "_isTrimmedMode": true,
  181. "_state": 0,
  182. "_atlas": null,
  183. "_id": ""
  184. },
  185. {
  186. "__type__": "cc.Widget",
  187. "_name": "",
  188. "_objFlags": 0,
  189. "node": {
  190. "__id__": 2
  191. },
  192. "_enabled": true,
  193. "alignMode": 0,
  194. "_target": null,
  195. "_alignFlags": 18,
  196. "_left": 0,
  197. "_right": 0,
  198. "_top": 0,
  199. "_bottom": 0,
  200. "_verticalCenter": -1,
  201. "_horizontalCenter": -2.9999999999998863,
  202. "_isAbsLeft": true,
  203. "_isAbsRight": true,
  204. "_isAbsTop": true,
  205. "_isAbsBottom": true,
  206. "_isAbsHorizontalCenter": true,
  207. "_isAbsVerticalCenter": true,
  208. "_originalWidth": 0,
  209. "_originalHeight": 0,
  210. "_id": ""
  211. },
  212. {
  213. "__type__": "cc.BlockInputEvents",
  214. "_name": "",
  215. "_objFlags": 0,
  216. "node": {
  217. "__id__": 2
  218. },
  219. "_enabled": true,
  220. "_id": ""
  221. },
  222. {
  223. "__type__": "cc.PrefabInfo",
  224. "root": {
  225. "__id__": 1
  226. },
  227. "asset": {
  228. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  229. },
  230. "fileId": "ddwsJENqJEDKet9sa5s1jw",
  231. "sync": false
  232. },
  233. {
  234. "__type__": "cc.Node",
  235. "_name": "Wheel",
  236. "_objFlags": 0,
  237. "_parent": {
  238. "__id__": 1
  239. },
  240. "_children": [
  241. {
  242. "__id__": 8
  243. },
  244. {
  245. "__id__": 12
  246. },
  247. {
  248. "__id__": 15
  249. },
  250. {
  251. "__id__": 26
  252. },
  253. {
  254. "__id__": 29
  255. }
  256. ],
  257. "_active": true,
  258. "_level": 5,
  259. "_components": [
  260. {
  261. "__id__": 32
  262. }
  263. ],
  264. "_prefab": {
  265. "__id__": 58
  266. },
  267. "_opacity": 255,
  268. "_color": {
  269. "__type__": "cc.Color",
  270. "r": 255,
  271. "g": 255,
  272. "b": 255,
  273. "a": 255
  274. },
  275. "_contentSize": {
  276. "__type__": "cc.Size",
  277. "width": 0,
  278. "height": 0
  279. },
  280. "_anchorPoint": {
  281. "__type__": "cc.Vec2",
  282. "x": 0.5,
  283. "y": 0.5
  284. },
  285. "_position": {
  286. "__type__": "cc.Vec3",
  287. "x": 0,
  288. "y": 0,
  289. "z": 0
  290. },
  291. "_scale": {
  292. "__type__": "cc.Vec3",
  293. "x": 1,
  294. "y": 1,
  295. "z": 1
  296. },
  297. "_quat": {
  298. "__type__": "cc.Quat",
  299. "x": 0,
  300. "y": 0,
  301. "z": 0,
  302. "w": 1
  303. },
  304. "_skewX": 0,
  305. "_skewY": 0,
  306. "_zIndex": 0,
  307. "_is3DNode": false,
  308. "groupIndex": 0,
  309. "_id": ""
  310. },
  311. {
  312. "__type__": "cc.Node",
  313. "_name": "wheel",
  314. "_objFlags": 0,
  315. "_parent": {
  316. "__id__": 7
  317. },
  318. "_children": [],
  319. "_active": true,
  320. "_level": 3,
  321. "_components": [
  322. {
  323. "__id__": 9
  324. },
  325. {
  326. "__id__": 10
  327. }
  328. ],
  329. "_prefab": {
  330. "__id__": 11
  331. },
  332. "_opacity": 255,
  333. "_color": {
  334. "__type__": "cc.Color",
  335. "r": 255,
  336. "g": 255,
  337. "b": 255,
  338. "a": 255
  339. },
  340. "_contentSize": {
  341. "__type__": "cc.Size",
  342. "width": 655,
  343. "height": 655
  344. },
  345. "_anchorPoint": {
  346. "__type__": "cc.Vec2",
  347. "x": 0.5,
  348. "y": 0.5
  349. },
  350. "_position": {
  351. "__type__": "cc.Vec3",
  352. "x": 0,
  353. "y": -96,
  354. "z": 0
  355. },
  356. "_scale": {
  357. "__type__": "cc.Vec3",
  358. "x": 1,
  359. "y": 1,
  360. "z": 1
  361. },
  362. "_quat": {
  363. "__type__": "cc.Quat",
  364. "x": 0,
  365. "y": 0,
  366. "z": 0,
  367. "w": 1
  368. },
  369. "_skewX": 0,
  370. "_skewY": 0,
  371. "_zIndex": 0,
  372. "_is3DNode": false,
  373. "groupIndex": 0,
  374. "_rotationX": 0,
  375. "_rotationY": 0,
  376. "_id": ""
  377. },
  378. {
  379. "__type__": "cc.Sprite",
  380. "_name": "",
  381. "_objFlags": 0,
  382. "node": {
  383. "__id__": 8
  384. },
  385. "_enabled": true,
  386. "_srcBlendFactor": 770,
  387. "_dstBlendFactor": 771,
  388. "_spriteFrame": {
  389. "__uuid__": "222d143b-d5b6-4198-8053-25f104b69c66"
  390. },
  391. "_type": 0,
  392. "_sizeMode": 0,
  393. "_fillType": 0,
  394. "_fillCenter": {
  395. "__type__": "cc.Vec2",
  396. "x": 0,
  397. "y": 0
  398. },
  399. "_fillStart": 0,
  400. "_fillRange": 0,
  401. "_isTrimmedMode": true,
  402. "_state": 0,
  403. "_atlas": null,
  404. "_id": ""
  405. },
  406. {
  407. "__type__": "cc.Widget",
  408. "_name": "",
  409. "_objFlags": 0,
  410. "node": {
  411. "__id__": 8
  412. },
  413. "_enabled": true,
  414. "alignMode": 0,
  415. "_target": null,
  416. "_alignFlags": 18,
  417. "_left": 0,
  418. "_right": 62.25,
  419. "_top": 0,
  420. "_bottom": 0,
  421. "_verticalCenter": -96,
  422. "_horizontalCenter": 0,
  423. "_isAbsLeft": true,
  424. "_isAbsRight": true,
  425. "_isAbsTop": true,
  426. "_isAbsBottom": true,
  427. "_isAbsHorizontalCenter": true,
  428. "_isAbsVerticalCenter": true,
  429. "_originalWidth": 877,
  430. "_originalHeight": 0,
  431. "_id": ""
  432. },
  433. {
  434. "__type__": "cc.PrefabInfo",
  435. "root": {
  436. "__id__": 1
  437. },
  438. "asset": {
  439. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  440. },
  441. "fileId": "c9UcNMH1FA966S3a4EFO1M",
  442. "sync": false
  443. },
  444. {
  445. "__type__": "cc.Node",
  446. "_name": "Pointer",
  447. "_objFlags": 0,
  448. "_parent": {
  449. "__id__": 7
  450. },
  451. "_children": [],
  452. "_active": true,
  453. "_level": 3,
  454. "_components": [
  455. {
  456. "__id__": 13
  457. }
  458. ],
  459. "_prefab": {
  460. "__id__": 14
  461. },
  462. "_opacity": 255,
  463. "_color": {
  464. "__type__": "cc.Color",
  465. "r": 255,
  466. "g": 255,
  467. "b": 255,
  468. "a": 255
  469. },
  470. "_contentSize": {
  471. "__type__": "cc.Size",
  472. "width": 90,
  473. "height": 189
  474. },
  475. "_anchorPoint": {
  476. "__type__": "cc.Vec2",
  477. "x": 0.5,
  478. "y": 0.5
  479. },
  480. "_position": {
  481. "__type__": "cc.Vec3",
  482. "x": -3,
  483. "y": 230,
  484. "z": 0
  485. },
  486. "_scale": {
  487. "__type__": "cc.Vec3",
  488. "x": 1,
  489. "y": 1,
  490. "z": 1
  491. },
  492. "_quat": {
  493. "__type__": "cc.Quat",
  494. "x": 0,
  495. "y": 0,
  496. "z": 0,
  497. "w": 1
  498. },
  499. "_skewX": 0,
  500. "_skewY": 0,
  501. "_zIndex": 0,
  502. "_is3DNode": false,
  503. "groupIndex": 0,
  504. "_id": ""
  505. },
  506. {
  507. "__type__": "cc.Sprite",
  508. "_name": "",
  509. "_objFlags": 0,
  510. "node": {
  511. "__id__": 12
  512. },
  513. "_enabled": true,
  514. "_srcBlendFactor": 770,
  515. "_dstBlendFactor": 771,
  516. "_spriteFrame": {
  517. "__uuid__": "2bb4cf12-a1db-4c9a-ae82-e12817d5733d"
  518. },
  519. "_type": 0,
  520. "_sizeMode": 1,
  521. "_fillType": 0,
  522. "_fillCenter": {
  523. "__type__": "cc.Vec2",
  524. "x": 0,
  525. "y": 0
  526. },
  527. "_fillStart": 0,
  528. "_fillRange": 0,
  529. "_isTrimmedMode": true,
  530. "_state": 0,
  531. "_atlas": null,
  532. "_id": ""
  533. },
  534. {
  535. "__type__": "cc.PrefabInfo",
  536. "root": {
  537. "__id__": 1
  538. },
  539. "asset": {
  540. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  541. },
  542. "fileId": "6fvF7PAoxL5IC+xuw1fEoB",
  543. "sync": false
  544. },
  545. {
  546. "__type__": "cc.Node",
  547. "_name": "spin",
  548. "_objFlags": 0,
  549. "_parent": {
  550. "__id__": 7
  551. },
  552. "_children": [
  553. {
  554. "__id__": 16
  555. },
  556. {
  557. "__id__": 19
  558. }
  559. ],
  560. "_active": true,
  561. "_level": 3,
  562. "_components": [
  563. {
  564. "__id__": 22
  565. },
  566. {
  567. "__id__": 23
  568. },
  569. {
  570. "__id__": 24
  571. }
  572. ],
  573. "_prefab": {
  574. "__id__": 25
  575. },
  576. "_opacity": 255,
  577. "_color": {
  578. "__type__": "cc.Color",
  579. "r": 255,
  580. "g": 255,
  581. "b": 255,
  582. "a": 255
  583. },
  584. "_contentSize": {
  585. "__type__": "cc.Size",
  586. "width": 139,
  587. "height": 139
  588. },
  589. "_anchorPoint": {
  590. "__type__": "cc.Vec2",
  591. "x": 0.5,
  592. "y": 0.5
  593. },
  594. "_position": {
  595. "__type__": "cc.Vec3",
  596. "x": 1.0000000000001137,
  597. "y": -97,
  598. "z": 0
  599. },
  600. "_scale": {
  601. "__type__": "cc.Vec3",
  602. "x": 1.2,
  603. "y": 1.2,
  604. "z": 1.2
  605. },
  606. "_quat": {
  607. "__type__": "cc.Quat",
  608. "x": 0,
  609. "y": 0,
  610. "z": 0,
  611. "w": 1
  612. },
  613. "_skewX": 0,
  614. "_skewY": 0,
  615. "_zIndex": 0,
  616. "_is3DNode": false,
  617. "groupIndex": 0,
  618. "_rotationX": 0,
  619. "_rotationY": 0,
  620. "_id": ""
  621. },
  622. {
  623. "__type__": "cc.Node",
  624. "_name": "New Sprite",
  625. "_objFlags": 0,
  626. "_parent": {
  627. "__id__": 15
  628. },
  629. "_children": [],
  630. "_active": true,
  631. "_level": 4,
  632. "_components": [
  633. {
  634. "__id__": 17
  635. }
  636. ],
  637. "_prefab": {
  638. "__id__": 18
  639. },
  640. "_opacity": 255,
  641. "_color": {
  642. "__type__": "cc.Color",
  643. "r": 255,
  644. "g": 255,
  645. "b": 255,
  646. "a": 255
  647. },
  648. "_contentSize": {
  649. "__type__": "cc.Size",
  650. "width": 33,
  651. "height": 30
  652. },
  653. "_anchorPoint": {
  654. "__type__": "cc.Vec2",
  655. "x": 0.5,
  656. "y": 0.5
  657. },
  658. "_position": {
  659. "__type__": "cc.Vec3",
  660. "x": -17,
  661. "y": -38,
  662. "z": 0
  663. },
  664. "_scale": {
  665. "__type__": "cc.Vec3",
  666. "x": 1,
  667. "y": 1,
  668. "z": 1
  669. },
  670. "_quat": {
  671. "__type__": "cc.Quat",
  672. "x": 0,
  673. "y": 0,
  674. "z": 0,
  675. "w": 1
  676. },
  677. "_skewX": 0,
  678. "_skewY": 0,
  679. "_zIndex": 0,
  680. "_is3DNode": false,
  681. "groupIndex": 0,
  682. "_rotationX": 0,
  683. "_rotationY": 0,
  684. "_id": ""
  685. },
  686. {
  687. "__type__": "cc.Sprite",
  688. "_name": "",
  689. "_objFlags": 0,
  690. "node": {
  691. "__id__": 16
  692. },
  693. "_enabled": true,
  694. "_srcBlendFactor": 770,
  695. "_dstBlendFactor": 771,
  696. "_spriteFrame": {
  697. "__uuid__": "00abb72e-935a-4068-ab9a-2b782f0edfa1"
  698. },
  699. "_type": 0,
  700. "_sizeMode": 0,
  701. "_fillType": 0,
  702. "_fillCenter": {
  703. "__type__": "cc.Vec2",
  704. "x": 0,
  705. "y": 0
  706. },
  707. "_fillStart": 0,
  708. "_fillRange": 0,
  709. "_isTrimmedMode": true,
  710. "_state": 0,
  711. "_atlas": null,
  712. "_id": ""
  713. },
  714. {
  715. "__type__": "cc.PrefabInfo",
  716. "root": {
  717. "__id__": 1
  718. },
  719. "asset": {
  720. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  721. },
  722. "fileId": "96RwZhdy5Pro+X6PSPM1Xv",
  723. "sync": false
  724. },
  725. {
  726. "__type__": "cc.Node",
  727. "_name": "New Label",
  728. "_objFlags": 0,
  729. "_parent": {
  730. "__id__": 15
  731. },
  732. "_children": [],
  733. "_active": true,
  734. "_level": 4,
  735. "_components": [
  736. {
  737. "__id__": 20
  738. }
  739. ],
  740. "_prefab": {
  741. "__id__": 21
  742. },
  743. "_opacity": 255,
  744. "_color": {
  745. "__type__": "cc.Color",
  746. "r": 0,
  747. "g": 0,
  748. "b": 0,
  749. "a": 255
  750. },
  751. "_contentSize": {
  752. "__type__": "cc.Size",
  753. "width": 13.9,
  754. "height": 30
  755. },
  756. "_anchorPoint": {
  757. "__type__": "cc.Vec2",
  758. "x": 0.5,
  759. "y": 0.5
  760. },
  761. "_position": {
  762. "__type__": "cc.Vec3",
  763. "x": 16,
  764. "y": -37,
  765. "z": 0
  766. },
  767. "_scale": {
  768. "__type__": "cc.Vec3",
  769. "x": 1,
  770. "y": 1,
  771. "z": 1
  772. },
  773. "_quat": {
  774. "__type__": "cc.Quat",
  775. "x": 0,
  776. "y": 0,
  777. "z": 0,
  778. "w": 1
  779. },
  780. "_skewX": 0,
  781. "_skewY": 0,
  782. "_zIndex": 0,
  783. "_is3DNode": false,
  784. "groupIndex": 0,
  785. "_rotationX": 0,
  786. "_rotationY": 0,
  787. "_id": ""
  788. },
  789. {
  790. "__type__": "cc.Label",
  791. "_name": "",
  792. "_objFlags": 0,
  793. "node": {
  794. "__id__": 19
  795. },
  796. "_enabled": true,
  797. "_srcBlendFactor": 1,
  798. "_dstBlendFactor": 771,
  799. "_useOriginalSize": false,
  800. "_string": "1",
  801. "_N$string": "1",
  802. "_fontSize": 25,
  803. "_lineHeight": 30,
  804. "_enableWrapText": true,
  805. "_N$file": null,
  806. "_isSystemFontUsed": true,
  807. "_spacingX": 0,
  808. "_N$horizontalAlign": 1,
  809. "_N$verticalAlign": 1,
  810. "_N$fontFamily": "Arial",
  811. "_N$overflow": 0,
  812. "_id": ""
  813. },
  814. {
  815. "__type__": "cc.PrefabInfo",
  816. "root": {
  817. "__id__": 1
  818. },
  819. "asset": {
  820. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  821. },
  822. "fileId": "0eWIgLHjpAur9IChsDuM2Z",
  823. "sync": false
  824. },
  825. {
  826. "__type__": "cc.Sprite",
  827. "_name": "",
  828. "_objFlags": 0,
  829. "node": {
  830. "__id__": 15
  831. },
  832. "_enabled": true,
  833. "_srcBlendFactor": 770,
  834. "_dstBlendFactor": 771,
  835. "_spriteFrame": {
  836. "__uuid__": "9b70e9ee-69de-4303-b600-d19d2b96f4fe"
  837. },
  838. "_type": 1,
  839. "_sizeMode": 0,
  840. "_fillType": 0,
  841. "_fillCenter": {
  842. "__type__": "cc.Vec2",
  843. "x": 0,
  844. "y": 0
  845. },
  846. "_fillStart": 0,
  847. "_fillRange": 0,
  848. "_isTrimmedMode": true,
  849. "_state": 0,
  850. "_atlas": null,
  851. "_id": ""
  852. },
  853. {
  854. "__type__": "cc.Button",
  855. "_name": "",
  856. "_objFlags": 0,
  857. "node": {
  858. "__id__": 15
  859. },
  860. "_enabled": true,
  861. "duration": 0.1,
  862. "zoomScale": 1.2,
  863. "clickEvents": [],
  864. "_N$interactable": true,
  865. "_N$enableAutoGrayEffect": false,
  866. "_N$transition": 3,
  867. "transition": 3,
  868. "_N$normalColor": {
  869. "__type__": "cc.Color",
  870. "r": 255,
  871. "g": 255,
  872. "b": 255,
  873. "a": 255
  874. },
  875. "_N$pressedColor": {
  876. "__type__": "cc.Color",
  877. "r": 255,
  878. "g": 255,
  879. "b": 255,
  880. "a": 255
  881. },
  882. "pressedColor": {
  883. "__type__": "cc.Color",
  884. "r": 255,
  885. "g": 255,
  886. "b": 255,
  887. "a": 255
  888. },
  889. "_N$hoverColor": {
  890. "__type__": "cc.Color",
  891. "r": 255,
  892. "g": 255,
  893. "b": 255,
  894. "a": 255
  895. },
  896. "hoverColor": {
  897. "__type__": "cc.Color",
  898. "r": 255,
  899. "g": 255,
  900. "b": 255,
  901. "a": 255
  902. },
  903. "_N$disabledColor": {
  904. "__type__": "cc.Color",
  905. "r": 255,
  906. "g": 255,
  907. "b": 255,
  908. "a": 255
  909. },
  910. "_N$normalSprite": {
  911. "__uuid__": "9b70e9ee-69de-4303-b600-d19d2b96f4fe"
  912. },
  913. "_N$pressedSprite": null,
  914. "pressedSprite": null,
  915. "_N$hoverSprite": null,
  916. "hoverSprite": null,
  917. "_N$disabledSprite": null,
  918. "_N$target": {
  919. "__id__": 15
  920. },
  921. "_id": ""
  922. },
  923. {
  924. "__type__": "cc.Widget",
  925. "_name": "",
  926. "_objFlags": 0,
  927. "node": {
  928. "__id__": 15
  929. },
  930. "_enabled": true,
  931. "alignMode": 0,
  932. "_target": null,
  933. "_alignFlags": 18,
  934. "_left": 0,
  935. "_right": 0,
  936. "_top": 0,
  937. "_bottom": 0,
  938. "_verticalCenter": -97,
  939. "_horizontalCenter": 1.0000000000001137,
  940. "_isAbsLeft": true,
  941. "_isAbsRight": true,
  942. "_isAbsTop": true,
  943. "_isAbsBottom": true,
  944. "_isAbsHorizontalCenter": true,
  945. "_isAbsVerticalCenter": true,
  946. "_originalWidth": 0,
  947. "_originalHeight": 0,
  948. "_id": ""
  949. },
  950. {
  951. "__type__": "cc.PrefabInfo",
  952. "root": {
  953. "__id__": 1
  954. },
  955. "asset": {
  956. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  957. },
  958. "fileId": "89zFbYLzxB9YriIbOcN+8q",
  959. "sync": false
  960. },
  961. {
  962. "__type__": "cc.Node",
  963. "_name": "Label",
  964. "_objFlags": 0,
  965. "_parent": {
  966. "__id__": 7
  967. },
  968. "_children": [],
  969. "_active": true,
  970. "_level": 3,
  971. "_components": [
  972. {
  973. "__id__": 27
  974. }
  975. ],
  976. "_prefab": {
  977. "__id__": 28
  978. },
  979. "_opacity": 255,
  980. "_color": {
  981. "__type__": "cc.Color",
  982. "r": 0,
  983. "g": 0,
  984. "b": 0,
  985. "a": 255
  986. },
  987. "_contentSize": {
  988. "__type__": "cc.Size",
  989. "width": 100,
  990. "height": 40
  991. },
  992. "_anchorPoint": {
  993. "__type__": "cc.Vec2",
  994. "x": 0.5,
  995. "y": 0.5
  996. },
  997. "_position": {
  998. "__type__": "cc.Vec3",
  999. "x": -2.9999999999998863,
  1000. "y": -96,
  1001. "z": 0
  1002. },
  1003. "_scale": {
  1004. "__type__": "cc.Vec3",
  1005. "x": 1,
  1006. "y": 1,
  1007. "z": 1
  1008. },
  1009. "_quat": {
  1010. "__type__": "cc.Quat",
  1011. "x": 0,
  1012. "y": 0,
  1013. "z": 0,
  1014. "w": 1
  1015. },
  1016. "_skewX": 0,
  1017. "_skewY": 0,
  1018. "_zIndex": 0,
  1019. "_is3DNode": false,
  1020. "groupIndex": 0,
  1021. "_rotationX": 0,
  1022. "_rotationY": 0,
  1023. "_id": ""
  1024. },
  1025. {
  1026. "__type__": "cc.Label",
  1027. "_name": "",
  1028. "_objFlags": 0,
  1029. "node": {
  1030. "__id__": 26
  1031. },
  1032. "_enabled": true,
  1033. "_srcBlendFactor": 1,
  1034. "_dstBlendFactor": 771,
  1035. "_useOriginalSize": false,
  1036. "_string": "",
  1037. "_N$string": "",
  1038. "_fontSize": 20,
  1039. "_lineHeight": 40,
  1040. "_enableWrapText": false,
  1041. "_N$file": null,
  1042. "_isSystemFontUsed": true,
  1043. "_spacingX": 0,
  1044. "_N$horizontalAlign": 1,
  1045. "_N$verticalAlign": 1,
  1046. "_N$fontFamily": "Arial",
  1047. "_N$overflow": 1,
  1048. "_id": ""
  1049. },
  1050. {
  1051. "__type__": "cc.PrefabInfo",
  1052. "root": {
  1053. "__id__": 1
  1054. },
  1055. "asset": {
  1056. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  1057. },
  1058. "fileId": "a81z6Rv5FBfoTeId3Lg4vI",
  1059. "sync": false
  1060. },
  1061. {
  1062. "__type__": "cc.Node",
  1063. "_name": "title",
  1064. "_objFlags": 0,
  1065. "_parent": {
  1066. "__id__": 7
  1067. },
  1068. "_children": [],
  1069. "_active": true,
  1070. "_level": 6,
  1071. "_components": [
  1072. {
  1073. "__id__": 30
  1074. }
  1075. ],
  1076. "_prefab": {
  1077. "__id__": 31
  1078. },
  1079. "_opacity": 255,
  1080. "_color": {
  1081. "__type__": "cc.Color",
  1082. "r": 255,
  1083. "g": 255,
  1084. "b": 255,
  1085. "a": 255
  1086. },
  1087. "_contentSize": {
  1088. "__type__": "cc.Size",
  1089. "width": 635,
  1090. "height": 198
  1091. },
  1092. "_anchorPoint": {
  1093. "__type__": "cc.Vec2",
  1094. "x": 0.5,
  1095. "y": 0.5
  1096. },
  1097. "_position": {
  1098. "__type__": "cc.Vec3",
  1099. "x": -3,
  1100. "y": 477,
  1101. "z": 0
  1102. },
  1103. "_scale": {
  1104. "__type__": "cc.Vec3",
  1105. "x": 1,
  1106. "y": 1,
  1107. "z": 1
  1108. },
  1109. "_quat": {
  1110. "__type__": "cc.Quat",
  1111. "x": 0,
  1112. "y": 0,
  1113. "z": 0,
  1114. "w": 1
  1115. },
  1116. "_skewX": 0,
  1117. "_skewY": 0,
  1118. "_zIndex": 0,
  1119. "_is3DNode": false,
  1120. "groupIndex": 0,
  1121. "_id": ""
  1122. },
  1123. {
  1124. "__type__": "cc.Sprite",
  1125. "_name": "",
  1126. "_objFlags": 0,
  1127. "node": {
  1128. "__id__": 29
  1129. },
  1130. "_enabled": true,
  1131. "_srcBlendFactor": 770,
  1132. "_dstBlendFactor": 771,
  1133. "_spriteFrame": {
  1134. "__uuid__": "0fad9508-9e40-4a79-8d4f-303638e38a37"
  1135. },
  1136. "_type": 0,
  1137. "_sizeMode": 1,
  1138. "_fillType": 0,
  1139. "_fillCenter": {
  1140. "__type__": "cc.Vec2",
  1141. "x": 0,
  1142. "y": 0
  1143. },
  1144. "_fillStart": 0,
  1145. "_fillRange": 0,
  1146. "_isTrimmedMode": true,
  1147. "_state": 0,
  1148. "_atlas": null,
  1149. "_id": ""
  1150. },
  1151. {
  1152. "__type__": "cc.PrefabInfo",
  1153. "root": {
  1154. "__id__": 1
  1155. },
  1156. "asset": {
  1157. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  1158. },
  1159. "fileId": "a2pPbqDulPu7TkEL3LxOqd",
  1160. "sync": false
  1161. },
  1162. {
  1163. "__type__": "5d90clO6ndGXpPKjeetlkbm",
  1164. "_name": "",
  1165. "_objFlags": 0,
  1166. "node": {
  1167. "__id__": 7
  1168. },
  1169. "_enabled": true,
  1170. "spinBtn": {
  1171. "__id__": 23
  1172. },
  1173. "wheelSp": {
  1174. "__id__": 9
  1175. },
  1176. "background": {
  1177. "__id__": 3
  1178. },
  1179. "pointer": {
  1180. "__id__": 13
  1181. },
  1182. "title": {
  1183. "__id__": 30
  1184. },
  1185. "startbtn": {
  1186. "__id__": 22
  1187. },
  1188. "maxSpeed": 10,
  1189. "duration": 5,
  1190. "acc": 10,
  1191. "targetID": 0,
  1192. "springback": false,
  1193. "ShowRewards": {
  1194. "__id__": 33
  1195. },
  1196. "Rewards": {
  1197. "__id__": 46
  1198. },
  1199. "RewardDetail": [
  1200. "BusinessLicense",
  1201. "Golden10",
  1202. "Building",
  1203. "Golden50",
  1204. "LandDevelopmentCertificate",
  1205. "Golden10",
  1206. "Golden100",
  1207. "Golden10"
  1208. ],
  1209. "Businesslicense": {
  1210. "__uuid__": "3382907a-6840-488d-8582-e55bdeca3774"
  1211. },
  1212. "LandDevelopmentCertificate": {
  1213. "__uuid__": "50e75b29-d224-4326-9d11-b9966eda496b"
  1214. },
  1215. "Golden10": {
  1216. "__uuid__": "385a5983-c342-4230-b0fc-2b23b0040b2f"
  1217. },
  1218. "Golden50": {
  1219. "__uuid__": "412e93f1-652e-4ad8-8a7b-831b4a2477a7"
  1220. },
  1221. "Golden100": {
  1222. "__uuid__": "471d12e3-f5ce-41fd-aa2f-492da1763246"
  1223. },
  1224. "ManageUI": null,
  1225. "ManageMap": null,
  1226. "_id": ""
  1227. },
  1228. {
  1229. "__type__": "cc.Node",
  1230. "_name": "ShowRewards",
  1231. "_objFlags": 0,
  1232. "_parent": {
  1233. "__id__": 1
  1234. },
  1235. "_children": [
  1236. {
  1237. "__id__": 34
  1238. },
  1239. {
  1240. "__id__": 37
  1241. }
  1242. ],
  1243. "_active": false,
  1244. "_level": 5,
  1245. "_components": [],
  1246. "_prefab": {
  1247. "__id__": 57
  1248. },
  1249. "_opacity": 0,
  1250. "_color": {
  1251. "__type__": "cc.Color",
  1252. "r": 255,
  1253. "g": 255,
  1254. "b": 255,
  1255. "a": 255
  1256. },
  1257. "_contentSize": {
  1258. "__type__": "cc.Size",
  1259. "width": 720,
  1260. "height": 1280
  1261. },
  1262. "_anchorPoint": {
  1263. "__type__": "cc.Vec2",
  1264. "x": 0.5,
  1265. "y": 0.5
  1266. },
  1267. "_position": {
  1268. "__type__": "cc.Vec3",
  1269. "x": 0,
  1270. "y": 0,
  1271. "z": 0
  1272. },
  1273. "_scale": {
  1274. "__type__": "cc.Vec3",
  1275. "x": 1,
  1276. "y": 1,
  1277. "z": 1
  1278. },
  1279. "_quat": {
  1280. "__type__": "cc.Quat",
  1281. "x": 0,
  1282. "y": 0,
  1283. "z": 0,
  1284. "w": 1
  1285. },
  1286. "_skewX": 0,
  1287. "_skewY": 0,
  1288. "_zIndex": 0,
  1289. "_is3DNode": false,
  1290. "groupIndex": 0,
  1291. "_id": ""
  1292. },
  1293. {
  1294. "__type__": "cc.Node",
  1295. "_name": "title",
  1296. "_objFlags": 0,
  1297. "_parent": {
  1298. "__id__": 33
  1299. },
  1300. "_children": [],
  1301. "_active": true,
  1302. "_level": 6,
  1303. "_components": [
  1304. {
  1305. "__id__": 35
  1306. }
  1307. ],
  1308. "_prefab": {
  1309. "__id__": 36
  1310. },
  1311. "_opacity": 255,
  1312. "_color": {
  1313. "__type__": "cc.Color",
  1314. "r": 255,
  1315. "g": 255,
  1316. "b": 255,
  1317. "a": 255
  1318. },
  1319. "_contentSize": {
  1320. "__type__": "cc.Size",
  1321. "width": 635,
  1322. "height": 198
  1323. },
  1324. "_anchorPoint": {
  1325. "__type__": "cc.Vec2",
  1326. "x": 0.5,
  1327. "y": 0.5
  1328. },
  1329. "_position": {
  1330. "__type__": "cc.Vec3",
  1331. "x": -3,
  1332. "y": 477,
  1333. "z": 0
  1334. },
  1335. "_scale": {
  1336. "__type__": "cc.Vec3",
  1337. "x": 1,
  1338. "y": 1,
  1339. "z": 1
  1340. },
  1341. "_quat": {
  1342. "__type__": "cc.Quat",
  1343. "x": 0,
  1344. "y": 0,
  1345. "z": 0,
  1346. "w": 1
  1347. },
  1348. "_skewX": 0,
  1349. "_skewY": 0,
  1350. "_zIndex": 0,
  1351. "_is3DNode": false,
  1352. "groupIndex": 0,
  1353. "_id": ""
  1354. },
  1355. {
  1356. "__type__": "cc.Sprite",
  1357. "_name": "",
  1358. "_objFlags": 0,
  1359. "node": {
  1360. "__id__": 34
  1361. },
  1362. "_enabled": true,
  1363. "_srcBlendFactor": 770,
  1364. "_dstBlendFactor": 771,
  1365. "_spriteFrame": {
  1366. "__uuid__": "51ee376e-4754-4a1c-8997-bf73276d95e3"
  1367. },
  1368. "_type": 0,
  1369. "_sizeMode": 1,
  1370. "_fillType": 0,
  1371. "_fillCenter": {
  1372. "__type__": "cc.Vec2",
  1373. "x": 0,
  1374. "y": 0
  1375. },
  1376. "_fillStart": 0,
  1377. "_fillRange": 0,
  1378. "_isTrimmedMode": true,
  1379. "_state": 0,
  1380. "_atlas": null,
  1381. "_id": ""
  1382. },
  1383. {
  1384. "__type__": "cc.PrefabInfo",
  1385. "root": {
  1386. "__id__": 1
  1387. },
  1388. "asset": {
  1389. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  1390. },
  1391. "fileId": "d2SDKwcgVKT6eeK+yLUmSO",
  1392. "sync": false
  1393. },
  1394. {
  1395. "__type__": "cc.Node",
  1396. "_name": "GivePrize",
  1397. "_objFlags": 0,
  1398. "_parent": {
  1399. "__id__": 33
  1400. },
  1401. "_children": [
  1402. {
  1403. "__id__": 38
  1404. },
  1405. {
  1406. "__id__": 44
  1407. },
  1408. {
  1409. "__id__": 46
  1410. },
  1411. {
  1412. "__id__": 49
  1413. }
  1414. ],
  1415. "_active": true,
  1416. "_level": 6,
  1417. "_components": [
  1418. {
  1419. "__id__": 55
  1420. }
  1421. ],
  1422. "_prefab": {
  1423. "__id__": 56
  1424. },
  1425. "_opacity": 255,
  1426. "_color": {
  1427. "__type__": "cc.Color",
  1428. "r": 255,
  1429. "g": 255,
  1430. "b": 255,
  1431. "a": 255
  1432. },
  1433. "_contentSize": {
  1434. "__type__": "cc.Size",
  1435. "width": 0,
  1436. "height": 0
  1437. },
  1438. "_anchorPoint": {
  1439. "__type__": "cc.Vec2",
  1440. "x": 0.5,
  1441. "y": 0.5
  1442. },
  1443. "_position": {
  1444. "__type__": "cc.Vec3",
  1445. "x": 0,
  1446. "y": 0,
  1447. "z": 0
  1448. },
  1449. "_scale": {
  1450. "__type__": "cc.Vec3",
  1451. "x": 1,
  1452. "y": 1,
  1453. "z": 1
  1454. },
  1455. "_quat": {
  1456. "__type__": "cc.Quat",
  1457. "x": 0,
  1458. "y": 0,
  1459. "z": 0,
  1460. "w": 1
  1461. },
  1462. "_skewX": 0,
  1463. "_skewY": 0,
  1464. "_zIndex": 0,
  1465. "_is3DNode": false,
  1466. "groupIndex": 0,
  1467. "_id": ""
  1468. },
  1469. {
  1470. "__type__": "cc.Node",
  1471. "_name": "Sunshine",
  1472. "_objFlags": 0,
  1473. "_parent": {
  1474. "__id__": 37
  1475. },
  1476. "_children": [
  1477. {
  1478. "__id__": 39
  1479. }
  1480. ],
  1481. "_active": true,
  1482. "_level": 7,
  1483. "_components": [
  1484. {
  1485. "__id__": 42
  1486. }
  1487. ],
  1488. "_prefab": {
  1489. "__id__": 43
  1490. },
  1491. "_opacity": 255,
  1492. "_color": {
  1493. "__type__": "cc.Color",
  1494. "r": 255,
  1495. "g": 255,
  1496. "b": 255,
  1497. "a": 255
  1498. },
  1499. "_contentSize": {
  1500. "__type__": "cc.Size",
  1501. "width": 1287,
  1502. "height": 1329
  1503. },
  1504. "_anchorPoint": {
  1505. "__type__": "cc.Vec2",
  1506. "x": 0.5,
  1507. "y": 0.5
  1508. },
  1509. "_position": {
  1510. "__type__": "cc.Vec3",
  1511. "x": 0,
  1512. "y": 0,
  1513. "z": 0
  1514. },
  1515. "_scale": {
  1516. "__type__": "cc.Vec3",
  1517. "x": 0.5,
  1518. "y": 0.5,
  1519. "z": 1
  1520. },
  1521. "_quat": {
  1522. "__type__": "cc.Quat",
  1523. "x": 0,
  1524. "y": 0,
  1525. "z": 0,
  1526. "w": 1
  1527. },
  1528. "_skewX": 0,
  1529. "_skewY": 0,
  1530. "_zIndex": 0,
  1531. "_is3DNode": false,
  1532. "groupIndex": 0,
  1533. "_id": ""
  1534. },
  1535. {
  1536. "__type__": "cc.Node",
  1537. "_name": "Halo",
  1538. "_objFlags": 0,
  1539. "_parent": {
  1540. "__id__": 38
  1541. },
  1542. "_children": [],
  1543. "_active": true,
  1544. "_level": 8,
  1545. "_components": [
  1546. {
  1547. "__id__": 40
  1548. }
  1549. ],
  1550. "_prefab": {
  1551. "__id__": 41
  1552. },
  1553. "_opacity": 255,
  1554. "_color": {
  1555. "__type__": "cc.Color",
  1556. "r": 255,
  1557. "g": 255,
  1558. "b": 255,
  1559. "a": 255
  1560. },
  1561. "_contentSize": {
  1562. "__type__": "cc.Size",
  1563. "width": 873,
  1564. "height": 873
  1565. },
  1566. "_anchorPoint": {
  1567. "__type__": "cc.Vec2",
  1568. "x": 0.5,
  1569. "y": 0.5
  1570. },
  1571. "_position": {
  1572. "__type__": "cc.Vec3",
  1573. "x": 0,
  1574. "y": 0,
  1575. "z": 0
  1576. },
  1577. "_scale": {
  1578. "__type__": "cc.Vec3",
  1579. "x": 1,
  1580. "y": 1,
  1581. "z": 1
  1582. },
  1583. "_quat": {
  1584. "__type__": "cc.Quat",
  1585. "x": 0,
  1586. "y": 0,
  1587. "z": 0,
  1588. "w": 1
  1589. },
  1590. "_skewX": 0,
  1591. "_skewY": 0,
  1592. "_zIndex": 0,
  1593. "_is3DNode": false,
  1594. "groupIndex": 0,
  1595. "_id": ""
  1596. },
  1597. {
  1598. "__type__": "cc.Sprite",
  1599. "_name": "",
  1600. "_objFlags": 0,
  1601. "node": {
  1602. "__id__": 39
  1603. },
  1604. "_enabled": true,
  1605. "_srcBlendFactor": 770,
  1606. "_dstBlendFactor": 771,
  1607. "_spriteFrame": {
  1608. "__uuid__": "830f26ed-1d7e-4f27-bee1-3a50912a6d3d"
  1609. },
  1610. "_type": 0,
  1611. "_sizeMode": 1,
  1612. "_fillType": 0,
  1613. "_fillCenter": {
  1614. "__type__": "cc.Vec2",
  1615. "x": 0,
  1616. "y": 0
  1617. },
  1618. "_fillStart": 0,
  1619. "_fillRange": 0,
  1620. "_isTrimmedMode": true,
  1621. "_state": 0,
  1622. "_atlas": null,
  1623. "_id": ""
  1624. },
  1625. {
  1626. "__type__": "cc.PrefabInfo",
  1627. "root": {
  1628. "__id__": 1
  1629. },
  1630. "asset": {
  1631. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  1632. },
  1633. "fileId": "6e5S85fxtGSZg2FasyDyWl",
  1634. "sync": false
  1635. },
  1636. {
  1637. "__type__": "cc.Sprite",
  1638. "_name": "",
  1639. "_objFlags": 0,
  1640. "node": {
  1641. "__id__": 38
  1642. },
  1643. "_enabled": true,
  1644. "_srcBlendFactor": 770,
  1645. "_dstBlendFactor": 771,
  1646. "_spriteFrame": {
  1647. "__uuid__": "c61d4942-e3a9-40b1-bb69-0b68761e5696"
  1648. },
  1649. "_type": 0,
  1650. "_sizeMode": 1,
  1651. "_fillType": 0,
  1652. "_fillCenter": {
  1653. "__type__": "cc.Vec2",
  1654. "x": 0,
  1655. "y": 0
  1656. },
  1657. "_fillStart": 0,
  1658. "_fillRange": 0,
  1659. "_isTrimmedMode": true,
  1660. "_state": 0,
  1661. "_atlas": null,
  1662. "_id": ""
  1663. },
  1664. {
  1665. "__type__": "cc.PrefabInfo",
  1666. "root": {
  1667. "__id__": 1
  1668. },
  1669. "asset": {
  1670. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  1671. },
  1672. "fileId": "abUwa/1wtPsb2+nIdTO83Q",
  1673. "sync": false
  1674. },
  1675. {
  1676. "__type__": "cc.Node",
  1677. "_name": "Particle",
  1678. "_objFlags": 0,
  1679. "_parent": {
  1680. "__id__": 37
  1681. },
  1682. "_children": [],
  1683. "_active": false,
  1684. "_level": 7,
  1685. "_components": [],
  1686. "_prefab": {
  1687. "__id__": 45
  1688. },
  1689. "_opacity": 255,
  1690. "_color": {
  1691. "__type__": "cc.Color",
  1692. "r": 255,
  1693. "g": 255,
  1694. "b": 255,
  1695. "a": 255
  1696. },
  1697. "_contentSize": {
  1698. "__type__": "cc.Size",
  1699. "width": 0,
  1700. "height": 0
  1701. },
  1702. "_anchorPoint": {
  1703. "__type__": "cc.Vec2",
  1704. "x": 0.5,
  1705. "y": 0.5
  1706. },
  1707. "_position": {
  1708. "__type__": "cc.Vec3",
  1709. "x": 0,
  1710. "y": 0,
  1711. "z": 0
  1712. },
  1713. "_scale": {
  1714. "__type__": "cc.Vec3",
  1715. "x": 1,
  1716. "y": 1,
  1717. "z": 1
  1718. },
  1719. "_quat": {
  1720. "__type__": "cc.Quat",
  1721. "x": 0,
  1722. "y": 0,
  1723. "z": 0,
  1724. "w": 1
  1725. },
  1726. "_skewX": 0,
  1727. "_skewY": 0,
  1728. "_zIndex": 0,
  1729. "_is3DNode": false,
  1730. "groupIndex": 0,
  1731. "_id": ""
  1732. },
  1733. {
  1734. "__type__": "cc.PrefabInfo",
  1735. "root": {
  1736. "__id__": 1
  1737. },
  1738. "asset": {
  1739. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  1740. },
  1741. "fileId": "0eIjtvsJtPu5yDO8p+3ep7",
  1742. "sync": false
  1743. },
  1744. {
  1745. "__type__": "cc.Node",
  1746. "_name": "Rewards",
  1747. "_objFlags": 0,
  1748. "_parent": {
  1749. "__id__": 37
  1750. },
  1751. "_children": [],
  1752. "_active": true,
  1753. "_level": 7,
  1754. "_components": [
  1755. {
  1756. "__id__": 47
  1757. }
  1758. ],
  1759. "_prefab": {
  1760. "__id__": 48
  1761. },
  1762. "_opacity": 255,
  1763. "_color": {
  1764. "__type__": "cc.Color",
  1765. "r": 255,
  1766. "g": 255,
  1767. "b": 255,
  1768. "a": 255
  1769. },
  1770. "_contentSize": {
  1771. "__type__": "cc.Size",
  1772. "width": 417,
  1773. "height": 421
  1774. },
  1775. "_anchorPoint": {
  1776. "__type__": "cc.Vec2",
  1777. "x": 0.5,
  1778. "y": 0.5
  1779. },
  1780. "_position": {
  1781. "__type__": "cc.Vec3",
  1782. "x": 0,
  1783. "y": 0,
  1784. "z": 0
  1785. },
  1786. "_scale": {
  1787. "__type__": "cc.Vec3",
  1788. "x": 1,
  1789. "y": 1,
  1790. "z": 1
  1791. },
  1792. "_quat": {
  1793. "__type__": "cc.Quat",
  1794. "x": 0,
  1795. "y": 0,
  1796. "z": 0,
  1797. "w": 1
  1798. },
  1799. "_skewX": 0,
  1800. "_skewY": 0,
  1801. "_zIndex": 0,
  1802. "_is3DNode": false,
  1803. "groupIndex": 0,
  1804. "_id": ""
  1805. },
  1806. {
  1807. "__type__": "cc.Sprite",
  1808. "_name": "",
  1809. "_objFlags": 0,
  1810. "node": {
  1811. "__id__": 46
  1812. },
  1813. "_enabled": true,
  1814. "_srcBlendFactor": 770,
  1815. "_dstBlendFactor": 771,
  1816. "_spriteFrame": {
  1817. "__uuid__": "c6f76af8-db3c-45a0-bd6c-4f032dc5f0f9"
  1818. },
  1819. "_type": 0,
  1820. "_sizeMode": 1,
  1821. "_fillType": 0,
  1822. "_fillCenter": {
  1823. "__type__": "cc.Vec2",
  1824. "x": 0,
  1825. "y": 0
  1826. },
  1827. "_fillStart": 0,
  1828. "_fillRange": 0,
  1829. "_isTrimmedMode": true,
  1830. "_state": 0,
  1831. "_atlas": null,
  1832. "_id": ""
  1833. },
  1834. {
  1835. "__type__": "cc.PrefabInfo",
  1836. "root": {
  1837. "__id__": 1
  1838. },
  1839. "asset": {
  1840. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  1841. },
  1842. "fileId": "4dpxh63xNLXL6aXLn/W0mo",
  1843. "sync": false
  1844. },
  1845. {
  1846. "__type__": "cc.Node",
  1847. "_name": "Share",
  1848. "_objFlags": 0,
  1849. "_parent": {
  1850. "__id__": 37
  1851. },
  1852. "_children": [
  1853. {
  1854. "__id__": 50
  1855. }
  1856. ],
  1857. "_active": true,
  1858. "_level": 7,
  1859. "_components": [
  1860. {
  1861. "__id__": 53
  1862. }
  1863. ],
  1864. "_prefab": {
  1865. "__id__": 54
  1866. },
  1867. "_opacity": 255,
  1868. "_color": {
  1869. "__type__": "cc.Color",
  1870. "r": 255,
  1871. "g": 255,
  1872. "b": 255,
  1873. "a": 255
  1874. },
  1875. "_contentSize": {
  1876. "__type__": "cc.Size",
  1877. "width": 180,
  1878. "height": 150
  1879. },
  1880. "_anchorPoint": {
  1881. "__type__": "cc.Vec2",
  1882. "x": 0.5,
  1883. "y": 0.5
  1884. },
  1885. "_position": {
  1886. "__type__": "cc.Vec3",
  1887. "x": 0,
  1888. "y": -172,
  1889. "z": 0
  1890. },
  1891. "_scale": {
  1892. "__type__": "cc.Vec3",
  1893. "x": 1,
  1894. "y": 1,
  1895. "z": 1
  1896. },
  1897. "_quat": {
  1898. "__type__": "cc.Quat",
  1899. "x": 0,
  1900. "y": 0,
  1901. "z": 0,
  1902. "w": 1
  1903. },
  1904. "_skewX": 0,
  1905. "_skewY": 0,
  1906. "_zIndex": 0,
  1907. "_is3DNode": false,
  1908. "groupIndex": 0,
  1909. "_id": ""
  1910. },
  1911. {
  1912. "__type__": "cc.Node",
  1913. "_name": "New Label",
  1914. "_objFlags": 0,
  1915. "_parent": {
  1916. "__id__": 49
  1917. },
  1918. "_children": [],
  1919. "_active": true,
  1920. "_level": 8,
  1921. "_components": [
  1922. {
  1923. "__id__": 51
  1924. }
  1925. ],
  1926. "_prefab": {
  1927. "__id__": 52
  1928. },
  1929. "_opacity": 255,
  1930. "_color": {
  1931. "__type__": "cc.Color",
  1932. "r": 255,
  1933. "g": 255,
  1934. "b": 255,
  1935. "a": 255
  1936. },
  1937. "_contentSize": {
  1938. "__type__": "cc.Size",
  1939. "width": 80,
  1940. "height": 35
  1941. },
  1942. "_anchorPoint": {
  1943. "__type__": "cc.Vec2",
  1944. "x": 0.5,
  1945. "y": 0.5
  1946. },
  1947. "_position": {
  1948. "__type__": "cc.Vec3",
  1949. "x": 0,
  1950. "y": 0,
  1951. "z": 0
  1952. },
  1953. "_scale": {
  1954. "__type__": "cc.Vec3",
  1955. "x": 1,
  1956. "y": 1,
  1957. "z": 1
  1958. },
  1959. "_quat": {
  1960. "__type__": "cc.Quat",
  1961. "x": 0,
  1962. "y": 0,
  1963. "z": 0,
  1964. "w": 1
  1965. },
  1966. "_skewX": 0,
  1967. "_skewY": 0,
  1968. "_zIndex": 0,
  1969. "_is3DNode": false,
  1970. "groupIndex": 0,
  1971. "_rotationX": 0,
  1972. "_rotationY": 0,
  1973. "_id": ""
  1974. },
  1975. {
  1976. "__type__": "cc.Label",
  1977. "_name": "",
  1978. "_objFlags": 0,
  1979. "node": {
  1980. "__id__": 50
  1981. },
  1982. "_enabled": true,
  1983. "_srcBlendFactor": 1,
  1984. "_dstBlendFactor": 771,
  1985. "_useOriginalSize": false,
  1986. "_string": "分享",
  1987. "_N$string": "分享",
  1988. "_fontSize": 40,
  1989. "_lineHeight": 35,
  1990. "_enableWrapText": true,
  1991. "_N$file": null,
  1992. "_isSystemFontUsed": true,
  1993. "_spacingX": 0,
  1994. "_N$horizontalAlign": 1,
  1995. "_N$verticalAlign": 1,
  1996. "_N$fontFamily": "Arial",
  1997. "_N$overflow": 0,
  1998. "_id": ""
  1999. },
  2000. {
  2001. "__type__": "cc.PrefabInfo",
  2002. "root": {
  2003. "__id__": 1
  2004. },
  2005. "asset": {
  2006. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  2007. },
  2008. "fileId": "aev67kFMZPkZeRrocvjovP",
  2009. "sync": false
  2010. },
  2011. {
  2012. "__type__": "cc.Sprite",
  2013. "_name": "",
  2014. "_objFlags": 0,
  2015. "node": {
  2016. "__id__": 49
  2017. },
  2018. "_enabled": true,
  2019. "_srcBlendFactor": 770,
  2020. "_dstBlendFactor": 771,
  2021. "_spriteFrame": {
  2022. "__uuid__": "ab4fa2e6-62f6-4cc0-b33e-92dc6b6d2b63"
  2023. },
  2024. "_type": 0,
  2025. "_sizeMode": 1,
  2026. "_fillType": 0,
  2027. "_fillCenter": {
  2028. "__type__": "cc.Vec2",
  2029. "x": 0,
  2030. "y": 0
  2031. },
  2032. "_fillStart": 0,
  2033. "_fillRange": 0,
  2034. "_isTrimmedMode": true,
  2035. "_state": 0,
  2036. "_atlas": null,
  2037. "_id": ""
  2038. },
  2039. {
  2040. "__type__": "cc.PrefabInfo",
  2041. "root": {
  2042. "__id__": 1
  2043. },
  2044. "asset": {
  2045. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  2046. },
  2047. "fileId": "f3fw3fHt9PWoP8ntv55qiB",
  2048. "sync": false
  2049. },
  2050. {
  2051. "__type__": "cc.Animation",
  2052. "_name": "",
  2053. "_objFlags": 0,
  2054. "node": {
  2055. "__id__": 37
  2056. },
  2057. "_enabled": true,
  2058. "_defaultClip": null,
  2059. "_clips": [],
  2060. "playOnLoad": true,
  2061. "_id": ""
  2062. },
  2063. {
  2064. "__type__": "cc.PrefabInfo",
  2065. "root": {
  2066. "__id__": 1
  2067. },
  2068. "asset": {
  2069. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  2070. },
  2071. "fileId": "b3fMs8AD9PvoUYH84T/ucZ",
  2072. "sync": false
  2073. },
  2074. {
  2075. "__type__": "cc.PrefabInfo",
  2076. "root": {
  2077. "__id__": 1
  2078. },
  2079. "asset": {
  2080. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  2081. },
  2082. "fileId": "1d/KF5MF1Gn4l84KYGwIuu",
  2083. "sync": false
  2084. },
  2085. {
  2086. "__type__": "cc.PrefabInfo",
  2087. "root": {
  2088. "__id__": 1
  2089. },
  2090. "asset": {
  2091. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  2092. },
  2093. "fileId": "aa1kI926lLM4V7/Q90+KgX",
  2094. "sync": false
  2095. },
  2096. {
  2097. "__type__": "cc.Node",
  2098. "_name": "PCloseButton",
  2099. "_objFlags": 0,
  2100. "_parent": {
  2101. "__id__": 1
  2102. },
  2103. "_children": [],
  2104. "_active": true,
  2105. "_level": 5,
  2106. "_components": [
  2107. {
  2108. "__id__": 60
  2109. },
  2110. {
  2111. "__id__": 61
  2112. },
  2113. {
  2114. "__id__": 62
  2115. }
  2116. ],
  2117. "_prefab": {
  2118. "__id__": 63
  2119. },
  2120. "_opacity": 255,
  2121. "_color": {
  2122. "__type__": "cc.Color",
  2123. "r": 255,
  2124. "g": 255,
  2125. "b": 255,
  2126. "a": 255
  2127. },
  2128. "_contentSize": {
  2129. "__type__": "cc.Size",
  2130. "width": 54,
  2131. "height": 53
  2132. },
  2133. "_anchorPoint": {
  2134. "__type__": "cc.Vec2",
  2135. "x": 0.5,
  2136. "y": 0.5
  2137. },
  2138. "_position": {
  2139. "__type__": "cc.Vec3",
  2140. "x": 287,
  2141. "y": 474,
  2142. "z": 0
  2143. },
  2144. "_scale": {
  2145. "__type__": "cc.Vec3",
  2146. "x": 1,
  2147. "y": 1,
  2148. "z": 1
  2149. },
  2150. "_quat": {
  2151. "__type__": "cc.Quat",
  2152. "x": 0,
  2153. "y": 0,
  2154. "z": 0,
  2155. "w": 1
  2156. },
  2157. "_skewX": 0,
  2158. "_skewY": 0,
  2159. "_zIndex": 0,
  2160. "_is3DNode": false,
  2161. "groupIndex": 0,
  2162. "_rotationX": 0,
  2163. "_rotationY": 0,
  2164. "_id": ""
  2165. },
  2166. {
  2167. "__type__": "cc.Sprite",
  2168. "_name": "",
  2169. "_objFlags": 0,
  2170. "node": {
  2171. "__id__": 59
  2172. },
  2173. "_enabled": true,
  2174. "_srcBlendFactor": 770,
  2175. "_dstBlendFactor": 771,
  2176. "_spriteFrame": {
  2177. "__uuid__": "e5780f65-f39c-4fe9-92a9-7cc6cc1f94e7"
  2178. },
  2179. "_type": 1,
  2180. "_sizeMode": 0,
  2181. "_fillType": 0,
  2182. "_fillCenter": {
  2183. "__type__": "cc.Vec2",
  2184. "x": 0,
  2185. "y": 0
  2186. },
  2187. "_fillStart": 0,
  2188. "_fillRange": 0,
  2189. "_isTrimmedMode": true,
  2190. "_state": 0,
  2191. "_atlas": null,
  2192. "_id": ""
  2193. },
  2194. {
  2195. "__type__": "cc.Button",
  2196. "_name": "",
  2197. "_objFlags": 0,
  2198. "node": {
  2199. "__id__": 59
  2200. },
  2201. "_enabled": true,
  2202. "duration": 0.1,
  2203. "zoomScale": 1.2,
  2204. "clickEvents": [
  2205. null,
  2206. null
  2207. ],
  2208. "_N$interactable": true,
  2209. "_N$enableAutoGrayEffect": false,
  2210. "_N$transition": 3,
  2211. "transition": 3,
  2212. "_N$normalColor": {
  2213. "__type__": "cc.Color",
  2214. "r": 255,
  2215. "g": 255,
  2216. "b": 255,
  2217. "a": 255
  2218. },
  2219. "_N$pressedColor": {
  2220. "__type__": "cc.Color",
  2221. "r": 255,
  2222. "g": 255,
  2223. "b": 255,
  2224. "a": 255
  2225. },
  2226. "pressedColor": {
  2227. "__type__": "cc.Color",
  2228. "r": 255,
  2229. "g": 255,
  2230. "b": 255,
  2231. "a": 255
  2232. },
  2233. "_N$hoverColor": {
  2234. "__type__": "cc.Color",
  2235. "r": 255,
  2236. "g": 255,
  2237. "b": 255,
  2238. "a": 255
  2239. },
  2240. "hoverColor": {
  2241. "__type__": "cc.Color",
  2242. "r": 255,
  2243. "g": 255,
  2244. "b": 255,
  2245. "a": 255
  2246. },
  2247. "_N$disabledColor": {
  2248. "__type__": "cc.Color",
  2249. "r": 255,
  2250. "g": 255,
  2251. "b": 255,
  2252. "a": 255
  2253. },
  2254. "_N$normalSprite": {
  2255. "__uuid__": "e5780f65-f39c-4fe9-92a9-7cc6cc1f94e7"
  2256. },
  2257. "_N$pressedSprite": {
  2258. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2259. },
  2260. "pressedSprite": {
  2261. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2262. },
  2263. "_N$hoverSprite": {
  2264. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2265. },
  2266. "hoverSprite": {
  2267. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2268. },
  2269. "_N$disabledSprite": {
  2270. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2271. },
  2272. "_N$target": {
  2273. "__id__": 59
  2274. },
  2275. "_id": ""
  2276. },
  2277. {
  2278. "__type__": "cc.Widget",
  2279. "_name": "",
  2280. "_objFlags": 0,
  2281. "node": {
  2282. "__id__": 59
  2283. },
  2284. "_enabled": true,
  2285. "alignMode": 1,
  2286. "_target": {
  2287. "__id__": 1
  2288. },
  2289. "_alignFlags": 18,
  2290. "_left": 0,
  2291. "_right": 0,
  2292. "_top": 0,
  2293. "_bottom": 0,
  2294. "_verticalCenter": 474,
  2295. "_horizontalCenter": 287,
  2296. "_isAbsLeft": true,
  2297. "_isAbsRight": true,
  2298. "_isAbsTop": true,
  2299. "_isAbsBottom": true,
  2300. "_isAbsHorizontalCenter": true,
  2301. "_isAbsVerticalCenter": true,
  2302. "_originalWidth": 0,
  2303. "_originalHeight": 0,
  2304. "_id": ""
  2305. },
  2306. {
  2307. "__type__": "cc.PrefabInfo",
  2308. "root": {
  2309. "__id__": 1
  2310. },
  2311. "asset": {
  2312. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  2313. },
  2314. "fileId": "c6gRfQnVJKYq4fkcFKZHgb",
  2315. "sync": false
  2316. },
  2317. {
  2318. "__type__": "cc.Widget",
  2319. "_name": "",
  2320. "_objFlags": 0,
  2321. "node": {
  2322. "__id__": 1
  2323. },
  2324. "_enabled": true,
  2325. "alignMode": 1,
  2326. "_target": null,
  2327. "_alignFlags": 18,
  2328. "_left": 0,
  2329. "_right": 0,
  2330. "_top": 0,
  2331. "_bottom": 0,
  2332. "_verticalCenter": 0,
  2333. "_horizontalCenter": 0,
  2334. "_isAbsLeft": true,
  2335. "_isAbsRight": true,
  2336. "_isAbsTop": true,
  2337. "_isAbsBottom": true,
  2338. "_isAbsHorizontalCenter": true,
  2339. "_isAbsVerticalCenter": true,
  2340. "_originalWidth": 0,
  2341. "_originalHeight": 0,
  2342. "_id": ""
  2343. },
  2344. {
  2345. "__type__": "cc.PrefabInfo",
  2346. "root": {
  2347. "__id__": 1
  2348. },
  2349. "asset": {
  2350. "__uuid__": "1e2c1219-11e9-4d26-8c6e-c14a94455ef1"
  2351. },
  2352. "fileId": "d1ioROlqlJka4fnI1Iq5Pb",
  2353. "sync": false
  2354. }
  2355. ]