loading.prefab 41 KB

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