123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586 |
- {
- "ver": "1.2.4",
- "uuid": "07a4b184-ad35-457c-af08-868bf3502155",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "size": {
- "width": 1673,
- "height": 1023
- },
- "type": "Texture Packer",
- "subMetas": {
- "alert_bg_block_01.png": {
- "ver": "1.0.4",
- "uuid": "1d6bf6d8-209a-41be-a5fd-b4ee78a23fa9",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1134,
- "trimY": 989,
- "width": 24,
- "height": 24,
- "rawWidth": 24,
- "rawHeight": 24,
- "borderTop": 12,
- "borderBottom": 12,
- "borderLeft": 12,
- "borderRight": 12,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_02.png": {
- "ver": "1.0.4",
- "uuid": "eaaaceef-5e2b-47cd-a342-b4b4e8427b0a",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1108,
- "trimY": 989,
- "width": 24,
- "height": 24,
- "rawWidth": 24,
- "rawHeight": 24,
- "borderTop": 12,
- "borderBottom": 12,
- "borderLeft": 12,
- "borderRight": 12,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_03.png": {
- "ver": "1.0.4",
- "uuid": "ca8198a5-104d-4851-a2e4-e65b5d653a37",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1626,
- "trimY": 971,
- "width": 18,
- "height": 18,
- "rawWidth": 18,
- "rawHeight": 18,
- "borderTop": 9,
- "borderBottom": 9,
- "borderLeft": 9,
- "borderRight": 9,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_04.png": {
- "ver": "1.0.4",
- "uuid": "23946cb4-9ab6-41ef-bbaa-ebc891a6e009",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1082,
- "trimY": 989,
- "width": 24,
- "height": 24,
- "rawWidth": 24,
- "rawHeight": 24,
- "borderTop": 10,
- "borderBottom": 14,
- "borderLeft": 12,
- "borderRight": 12,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_05.png": {
- "ver": "1.0.4",
- "uuid": "c368420e-27c1-4a56-81f2-1f99e2998b0b",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1652,
- "trimY": 951,
- "width": 18,
- "height": 18,
- "rawWidth": 18,
- "rawHeight": 18,
- "borderTop": 8,
- "borderBottom": 10,
- "borderLeft": 9,
- "borderRight": 9,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_06.png": {
- "ver": "1.0.4",
- "uuid": "261fdb32-600b-4918-ad59-95df05efb364",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1632,
- "trimY": 951,
- "width": 18,
- "height": 18,
- "rawWidth": 18,
- "rawHeight": 18,
- "borderTop": 9,
- "borderBottom": 9,
- "borderLeft": 9,
- "borderRight": 9,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_07.png": {
- "ver": "1.0.4",
- "uuid": "4c53968c-0ca9-4765-b333-5b2f0ba224aa",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1186,
- "trimY": 989,
- "width": 18,
- "height": 18,
- "rawWidth": 18,
- "rawHeight": 18,
- "borderTop": 9,
- "borderBottom": 9,
- "borderLeft": 9,
- "borderRight": 9,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_08.png": {
- "ver": "1.0.4",
- "uuid": "3ef31b5e-f09a-42cd-85d8-94a0d8aee2c3",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 826,
- "trimY": 941,
- "width": 28,
- "height": 28,
- "rawWidth": 28,
- "rawHeight": 28,
- "borderTop": 14,
- "borderBottom": 14,
- "borderLeft": 14,
- "borderRight": 14,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_09.png": {
- "ver": "1.0.4",
- "uuid": "9a6e1c54-55a3-4af7-aaab-940a372ec24d",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1444,
- "trimY": 737,
- "width": 8,
- "height": 18,
- "rawWidth": 8,
- "rawHeight": 18,
- "borderTop": 9,
- "borderBottom": 9,
- "borderLeft": 7,
- "borderRight": 1,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_10.png": {
- "ver": "1.0.4",
- "uuid": "1dd7640d-5654-406d-bbed-cde8c2ed080b",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1396,
- "trimY": 995,
- "width": 18,
- "height": 20,
- "rawWidth": 18,
- "rawHeight": 20,
- "borderTop": 10,
- "borderBottom": 10,
- "borderLeft": 9,
- "borderRight": 9,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_11.png": {
- "ver": "1.0.4",
- "uuid": "9c0caf60-39c2-4ef3-a1e9-9f9cc6810457",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 870,
- "trimY": 622,
- "width": 44,
- "height": 44,
- "rawWidth": 44,
- "rawHeight": 44,
- "borderTop": 26,
- "borderBottom": 30,
- "borderLeft": 13,
- "borderRight": 14,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_12.png": {
- "ver": "1.0.4",
- "uuid": "f58a47a4-5193-475e-9243-244a24ca3606",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1388,
- "trimY": 587,
- "width": 63,
- "height": 62,
- "rawWidth": 63,
- "rawHeight": 62,
- "borderTop": 31,
- "borderBottom": 31,
- "borderLeft": 30,
- "borderRight": 31,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_13.png": {
- "ver": "1.0.4",
- "uuid": "8716974f-6f25-41c2-8445-37208629cac0",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1514,
- "trimY": 791,
- "width": 68,
- "height": 68,
- "rawWidth": 68,
- "rawHeight": 68,
- "borderTop": 34,
- "borderBottom": 34,
- "borderLeft": 34,
- "borderRight": 34,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_14.png": {
- "ver": "1.0.4",
- "uuid": "87b67e38-96eb-4aa6-b0f3-bd0a07335ac9",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1592,
- "trimY": 720,
- "width": 68,
- "height": 68,
- "rawWidth": 68,
- "rawHeight": 68,
- "borderTop": 34,
- "borderBottom": 34,
- "borderLeft": 34,
- "borderRight": 34,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_15.png": {
- "ver": "1.0.4",
- "uuid": "f189ca56-fe2f-4f05-8683-0aa08eb28e73",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1444,
- "trimY": 667,
- "width": 68,
- "height": 68,
- "rawWidth": 68,
- "rawHeight": 68,
- "borderTop": 34,
- "borderBottom": 34,
- "borderLeft": 33,
- "borderRight": 33,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_16.png": {
- "ver": "1.0.4",
- "uuid": "2776ef9b-36ad-4a6e-b8c7-bd1949ca4b21",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 870,
- "trimY": 622,
- "width": 44,
- "height": 44,
- "rawWidth": 44,
- "rawHeight": 44,
- "borderTop": 22,
- "borderBottom": 22,
- "borderLeft": 22,
- "borderRight": 22,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_17.png": {
- "ver": "1.0.4",
- "uuid": "9aad234a-b52b-42ec-8317-ad3708363b8b",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1160,
- "trimY": 1009,
- "width": 12,
- "height": 12,
- "rawWidth": 12,
- "rawHeight": 12,
- "borderTop": 6,
- "borderBottom": 6,
- "borderLeft": 6,
- "borderRight": 6,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_18.png": {
- "ver": "1.0.4",
- "uuid": "760de526-525a-489a-8869-d706a2b93d86",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1516,
- "trimY": 941,
- "width": 60,
- "height": 72,
- "rawWidth": 60,
- "rawHeight": 72,
- "borderTop": 35,
- "borderBottom": 35,
- "borderLeft": 30,
- "borderRight": 30,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_19.png": {
- "ver": "1.0.4",
- "uuid": "e70e5cd1-29b3-4e74-b291-706deb52ed0b",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1584,
- "trimY": 853,
- "width": 60,
- "height": 60,
- "rawWidth": 60,
- "rawHeight": 60,
- "borderTop": 30,
- "borderBottom": 30,
- "borderLeft": 30,
- "borderRight": 30,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_20.png": {
- "ver": "1.0.4",
- "uuid": "9aa5c209-2362-4f25-8c3a-0a86816e50ff",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 782,
- "trimY": 983,
- "width": 38,
- "height": 38,
- "rawWidth": 38,
- "rawHeight": 38,
- "borderTop": 19,
- "borderBottom": 19,
- "borderLeft": 18,
- "borderRight": 18,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_21.png": {
- "ver": "1.0.4",
- "uuid": "a8f681ff-4be5-4dbb-be54-39b587fb2fc3",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 742,
- "trimY": 983,
- "width": 38,
- "height": 38,
- "rawWidth": 38,
- "rawHeight": 38,
- "borderTop": 19,
- "borderBottom": 19,
- "borderLeft": 19,
- "borderRight": 19,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_22.png": {
- "ver": "1.0.4",
- "uuid": "a75a63fb-57ce-45eb-8cd4-00fe6b5a7b46",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1160,
- "trimY": 989,
- "width": 24,
- "height": 18,
- "rawWidth": 24,
- "rawHeight": 18,
- "borderTop": 9,
- "borderBottom": 9,
- "borderLeft": 12,
- "borderRight": 12,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_23.png": {
- "ver": "1.0.4",
- "uuid": "db6a9b80-81d3-4f28-9d08-90e5c086f4b1",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1290,
- "trimY": 555,
- "width": 10,
- "height": 20,
- "rawWidth": 10,
- "rawHeight": 20,
- "borderTop": 10,
- "borderBottom": 10,
- "borderLeft": 5,
- "borderRight": 5,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_24.png": {
- "ver": "1.0.4",
- "uuid": "98c4dc2c-5329-4da6-8f55-95260d9caa0f",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1578,
- "trimY": 963,
- "width": 46,
- "height": 38,
- "rawWidth": 46,
- "rawHeight": 38,
- "borderTop": 18,
- "borderBottom": 18,
- "borderLeft": 23,
- "borderRight": 23,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_25.png": {
- "ver": "1.0.4",
- "uuid": "5817e106-90a5-4b7f-aabd-d5d024265fb5",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1234,
- "trimY": 555,
- "width": 54,
- "height": 30,
- "rawWidth": 54,
- "rawHeight": 30,
- "borderTop": 15,
- "borderBottom": 15,
- "borderLeft": 27,
- "borderRight": 27,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_26.png": {
- "ver": "1.0.4",
- "uuid": "2538eaf8-d889-41d6-b2df-44673569b329",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1056,
- "trimY": 989,
- "width": 24,
- "height": 24,
- "rawWidth": 24,
- "rawHeight": 24,
- "borderTop": 12,
- "borderBottom": 12,
- "borderLeft": 12,
- "borderRight": 12,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_27.png": {
- "ver": "1.0.4",
- "uuid": "f703d41a-c73d-4b36-9a1a-3c457d46f291",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1366,
- "trimY": 319,
- "width": 20,
- "height": 20,
- "rawWidth": 20,
- "rawHeight": 20,
- "borderTop": 10,
- "borderBottom": 10,
- "borderLeft": 10,
- "borderRight": 10,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_28.png": {
- "ver": "1.0.4",
- "uuid": "c93e5d5a-4118-4342-97ee-464aa64561aa",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 822,
- "trimY": 983,
- "width": 32,
- "height": 32,
- "rawWidth": 32,
- "rawHeight": 32,
- "borderTop": 16,
- "borderBottom": 16,
- "borderLeft": 16,
- "borderRight": 16,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_29.png": {
- "ver": "1.0.4",
- "uuid": "1c812b66-159d-4605-b383-e1d64ad36527",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 698,
- "trimY": 941,
- "width": 42,
- "height": 42,
- "rawWidth": 42,
- "rawHeight": 42,
- "borderTop": 21,
- "borderBottom": 21,
- "borderLeft": 21,
- "borderRight": 21,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_30.png": {
- "ver": "1.0.4",
- "uuid": "91cc4bb3-0448-4c42-afeb-b58030f86738",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1460,
- "trimY": 913,
- "width": 52,
- "height": 38,
- "rawWidth": 52,
- "rawHeight": 38,
- "borderTop": 18,
- "borderBottom": 18,
- "borderLeft": 26,
- "borderRight": 26,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_31.png": {
- "ver": "1.0.4",
- "uuid": "16ccb9d6-687a-40a0-a811-4275f0fca855",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 806,
- "trimY": 666,
- "width": 30,
- "height": 30,
- "rawWidth": 30,
- "rawHeight": 30,
- "borderTop": 15,
- "borderBottom": 15,
- "borderLeft": 15,
- "borderRight": 15,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_32.png": {
- "ver": "1.0.4",
- "uuid": "ec2e94c7-b11d-4167-8088-8dd4b8ec2331",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1514,
- "trimY": 861,
- "width": 66,
- "height": 78,
- "rawWidth": 66,
- "rawHeight": 78,
- "borderTop": 23,
- "borderBottom": 49,
- "borderLeft": 33,
- "borderRight": 33,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_33.png": {
- "ver": "1.0.4",
- "uuid": "f0b1431a-b709-4f9a-a46e-935f598b006f",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1368,
- "trimY": 995,
- "width": 26,
- "height": 26,
- "rawWidth": 26,
- "rawHeight": 26,
- "borderTop": 13,
- "borderBottom": 13,
- "borderLeft": 13,
- "borderRight": 13,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_34.png": {
- "ver": "1.0.4",
- "uuid": "07e3dc4c-ea87-4f43-83c1-ef89365399f2",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1340,
- "trimY": 995,
- "width": 26,
- "height": 26,
- "rawWidth": 26,
- "rawHeight": 26,
- "borderTop": 13,
- "borderBottom": 13,
- "borderLeft": 13,
- "borderRight": 13,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_35.png": {
- "ver": "1.0.4",
- "uuid": "406f142b-c14a-49a9-8ed2-8346ebb03ef4",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1514,
- "trimY": 713,
- "width": 76,
- "height": 76,
- "rawWidth": 76,
- "rawHeight": 76,
- "borderTop": 38,
- "borderBottom": 38,
- "borderLeft": 38,
- "borderRight": 38,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_36.png": {
- "ver": "1.0.4",
- "uuid": "bcf4ae3a-6435-43b6-b0e1-e661c5c18225",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 784,
- "trimY": 941,
- "width": 40,
- "height": 40,
- "rawWidth": 40,
- "rawHeight": 40,
- "borderTop": 20,
- "borderBottom": 20,
- "borderLeft": 20,
- "borderRight": 20,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_37.png": {
- "ver": "1.0.4",
- "uuid": "43350c07-284e-4ac8-990f-ac79316788a5",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1584,
- "trimY": 791,
- "width": 60,
- "height": 60,
- "rawWidth": 60,
- "rawHeight": 60,
- "borderTop": 29.9,
- "borderBottom": 29.9,
- "borderLeft": 29.9,
- "borderRight": 29.9,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_38.png": {
- "ver": "1.0.4",
- "uuid": "5c4d7633-647a-449e-8aba-c3dfb0555ee3",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 742,
- "trimY": 941,
- "width": 40,
- "height": 40,
- "rawWidth": 40,
- "rawHeight": 40,
- "borderTop": 20,
- "borderBottom": 20,
- "borderLeft": 20,
- "borderRight": 20,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_39.png": {
- "ver": "1.0.4",
- "uuid": "caac6967-6350-4998-bd9a-bc52db223c08",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1176,
- "trimY": 557,
- "width": 48,
- "height": 108,
- "rawWidth": 48,
- "rawHeight": 108,
- "borderTop": 43,
- "borderBottom": 65,
- "borderLeft": 24,
- "borderRight": 24,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_40.png": {
- "ver": "1.0.4",
- "uuid": "17350d35-8605-48e2-bdf1-67c0806a010f",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 978,
- "trimY": 969,
- "width": 26,
- "height": 27,
- "rawWidth": 26,
- "rawHeight": 27,
- "borderTop": 13,
- "borderBottom": 14,
- "borderLeft": 13,
- "borderRight": 13,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_41.png": {
- "ver": "1.0.4",
- "uuid": "fba6dd14-1d63-4d1d-8953-e23913dd201c",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1366,
- "trimY": 295,
- "width": 22,
- "height": 22,
- "rawWidth": 22,
- "rawHeight": 22,
- "borderTop": 11,
- "borderBottom": 11,
- "borderLeft": 11,
- "borderRight": 11,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_42.png": {
- "ver": "1.0.4",
- "uuid": "bfc4faa7-611d-4bbe-b996-901b11235677",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1632,
- "trimY": 915,
- "width": 34,
- "height": 34,
- "rawWidth": 34,
- "rawHeight": 34,
- "borderTop": 17,
- "borderBottom": 17,
- "borderLeft": 17,
- "borderRight": 17,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_43.png": {
- "ver": "1.0.4",
- "uuid": "21527617-d834-4112-8764-8ed54bdfc787",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 608,
- "trimY": 964,
- "width": 55,
- "height": 55,
- "rawWidth": 55,
- "rawHeight": 55,
- "borderTop": 22,
- "borderBottom": 22,
- "borderLeft": 22,
- "borderRight": 22,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_47.png": {
- "ver": "1.0.4",
- "uuid": "ed07d753-efd7-451a-82f8-68955f789130",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1582,
- "trimY": 915,
- "width": 48,
- "height": 46,
- "rawWidth": 48,
- "rawHeight": 46,
- "borderTop": 15,
- "borderBottom": 15,
- "borderLeft": 15,
- "borderRight": 15,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_48.png": {
- "ver": "1.0.4",
- "uuid": "dd40a245-8179-467a-acde-fd5c5c6c176c",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1006,
- "trimY": 989,
- "width": 48,
- "height": 25,
- "rawWidth": 48,
- "rawHeight": 25,
- "borderTop": 7,
- "borderBottom": 13,
- "borderLeft": 22,
- "borderRight": 22,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_49.png": {
- "ver": "1.0.4",
- "uuid": "69212947-b00d-4cc9-96ad-3977c870ca09",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 806,
- "trimY": 622,
- "width": 62,
- "height": 42,
- "rawWidth": 62,
- "rawHeight": 42,
- "borderTop": 17,
- "borderBottom": 17,
- "borderLeft": 24,
- "borderRight": 24,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_50.png": {
- "ver": "1.0.4",
- "uuid": "1a851b57-f5b1-4332-a26a-3daac04392e7",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 2,
- "trimY": 2,
- "width": 952,
- "height": 322,
- "rawWidth": 952,
- "rawHeight": 322,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_51.png": {
- "ver": "1.0.4",
- "uuid": "10cdb29b-feb5-4901-a4a8-f651f15cf6bf",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 2,
- "trimY": 530,
- "width": 912,
- "height": 90,
- "rawWidth": 912,
- "rawHeight": 90,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_52.png": {
- "ver": "1.0.4",
- "uuid": "0f447adc-1e03-4ab9-bdcb-9bdc8bced733",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1508,
- "trimY": 126,
- "width": 82,
- "height": 54,
- "rawWidth": 82,
- "rawHeight": 54,
- "borderTop": 14,
- "borderBottom": 14,
- "borderLeft": 25,
- "borderRight": 25,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_53.png": {
- "ver": "1.0.4",
- "uuid": "949d402c-b019-46c5-b3a3-7245e7ed5ddb",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1462,
- "trimY": 789,
- "width": 50,
- "height": 50,
- "rawWidth": 50,
- "rawHeight": 50,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_block_54.png": {
- "ver": "1.0.4",
- "uuid": "4d963724-820c-4a7d-a252-9ee7240283ba",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1462,
- "trimY": 737,
- "width": 50,
- "height": 50,
- "rawWidth": 50,
- "rawHeight": 50,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_buff_01.png": {
- "ver": "1.0.4",
- "uuid": "145d3a7d-e448-4c35-8b1d-e68e00787b9f",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 854,
- "trimY": 669,
- "width": 154,
- "height": 212,
- "rawWidth": 154,
- "rawHeight": 212,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_buff_02.png": {
- "ver": "1.0.4",
- "uuid": "845dd51d-9b07-4f8d-b539-82ce3194de56",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 698,
- "trimY": 698,
- "width": 154,
- "height": 212,
- "rawWidth": 154,
- "rawHeight": 212,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_buff_03.png": {
- "ver": "1.0.4",
- "uuid": "29b8540c-85ff-4caf-8d8f-39c340e3340e",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1234,
- "trimY": 341,
- "width": 154,
- "height": 212,
- "rawWidth": 154,
- "rawHeight": 212,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_01.png": {
- "ver": "1.0.4",
- "uuid": "a9283a7c-f3e7-45cf-ad56-2c3ea581cc22",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1456,
- "trimY": 895,
- "width": 2,
- "height": 86,
- "rawWidth": 2,
- "rawHeight": 86,
- "borderTop": 43,
- "borderBottom": 1,
- "borderLeft": 1,
- "borderRight": 1,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_02.png": {
- "ver": "1.0.4",
- "uuid": "22e7808c-0b3a-4d68-97d1-f76a913b31f3",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1454,
- "trimY": 193,
- "width": 58,
- "height": 472,
- "rawWidth": 58,
- "rawHeight": 472,
- "borderTop": 236,
- "borderBottom": 234,
- "borderLeft": 29,
- "borderRight": 29,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_03.png": {
- "ver": "1.0.4",
- "uuid": "eaa4b0a7-5c06-416c-b566-8c4f06ae2d72",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1322,
- "trimY": 773,
- "width": 16,
- "height": 50,
- "rawWidth": 16,
- "rawHeight": 50,
- "borderTop": 18,
- "borderBottom": 32,
- "borderLeft": 8,
- "borderRight": 8,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_04.png": {
- "ver": "1.0.4",
- "uuid": "2d029d7a-0ec2-48ed-ba96-f9413e54a555",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1494,
- "trimY": 953,
- "width": 20,
- "height": 62,
- "rawWidth": 20,
- "rawHeight": 62,
- "borderTop": 18,
- "borderBottom": 44,
- "borderLeft": 10,
- "borderRight": 10,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_05.png": {
- "ver": "1.0.4",
- "uuid": "0ae049a7-717b-45da-b635-097b7d3b01bf",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1646,
- "trimY": 850,
- "width": 20,
- "height": 50,
- "rawWidth": 20,
- "rawHeight": 50,
- "borderTop": 17,
- "borderBottom": 33,
- "borderLeft": 10,
- "borderRight": 10,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_06.png": {
- "ver": "1.0.4",
- "uuid": "0e21aa46-8d60-40e4-a97d-2b0fc4d0dbfe",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 2,
- "trimY": 326,
- "width": 958,
- "height": 202,
- "rawWidth": 958,
- "rawHeight": 202,
- "borderTop": 141,
- "borderBottom": 62,
- "borderLeft": 479,
- "borderRight": 480,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_08.png": {
- "ver": "1.0.4",
- "uuid": "415feab9-0f18-4287-b5a7-b02d47487729",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 962,
- "trimY": 341,
- "width": 270,
- "height": 118,
- "rawWidth": 270,
- "rawHeight": 118,
- "borderTop": 68,
- "borderBottom": 42,
- "borderLeft": 135,
- "borderRight": 135,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_09.png": {
- "ver": "1.0.4",
- "uuid": "7d82ee1c-7f70-4b85-82b7-af2616dd9711",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 676,
- "trimY": 934,
- "width": 20,
- "height": 40,
- "rawWidth": 20,
- "rawHeight": 40,
- "borderTop": 20,
- "borderBottom": 20,
- "borderLeft": 10,
- "borderRight": 10,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_10.png": {
- "ver": "1.0.4",
- "uuid": "d1b8609a-5f9c-4ea7-a813-678e940c6b0e",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1414,
- "trimY": 895,
- "width": 40,
- "height": 88,
- "rawWidth": 40,
- "rawHeight": 88,
- "borderTop": 43,
- "borderBottom": 43,
- "borderLeft": 20,
- "borderRight": 20,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_11.png": {
- "ver": "1.0.4",
- "uuid": "561dc3cf-dbd1-48c5-a157-326ffa530941",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 978,
- "trimY": 883,
- "width": 20,
- "height": 84,
- "rawWidth": 20,
- "rawHeight": 84,
- "borderTop": 32,
- "borderBottom": 52,
- "borderLeft": 10,
- "borderRight": 10,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_12.png": {
- "ver": "1.0.4",
- "uuid": "1c48f91b-2cbf-48ba-9226-91537c965372",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1390,
- "trimY": 223,
- "width": 62,
- "height": 362,
- "rawWidth": 62,
- "rawHeight": 362,
- "borderTop": 179,
- "borderBottom": 179,
- "borderLeft": 29,
- "borderRight": 27,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_13.png": {
- "ver": "1.0.4",
- "uuid": "0fa6f0b5-b710-4362-a3b7-fdd1e1e850e0",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1592,
- "trimY": 538,
- "width": 79,
- "height": 180,
- "rawWidth": 79,
- "rawHeight": 180,
- "borderTop": 78,
- "borderBottom": 102,
- "borderLeft": 39,
- "borderRight": 40,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_14.png": {
- "ver": "1.0.4",
- "uuid": "7863ff34-ae8c-4ccc-bc93-1d6e3f0e573c",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1224,
- "trimY": 829,
- "width": 114,
- "height": 170,
- "rawWidth": 114,
- "rawHeight": 170,
- "borderTop": 85,
- "borderBottom": 85,
- "borderLeft": 57,
- "borderRight": 57,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_15.png": {
- "ver": "1.0.4",
- "uuid": "5086e7f8-3cd8-465c-88e9-005e47810cc9",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 2,
- "trimY": 622,
- "width": 706,
- "height": 68,
- "rawWidth": 706,
- "rawHeight": 68,
- "borderTop": 34,
- "borderBottom": 34,
- "borderLeft": 352,
- "borderRight": 352,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_16.png": {
- "ver": "1.0.4",
- "uuid": "6ea3b2a4-23f9-41df-9c48-3d4b00adf346",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1670,
- "trimY": 2,
- "width": 1,
- "height": 28,
- "rawWidth": 1,
- "rawHeight": 28,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_17.png": {
- "ver": "1.0.4",
- "uuid": "26a59340-69cf-49d1-a6f6-6e568501fbe2",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1178,
- "trimY": 667,
- "width": 104,
- "height": 160,
- "rawWidth": 104,
- "rawHeight": 160,
- "borderTop": 55,
- "borderBottom": 99,
- "borderLeft": 52,
- "borderRight": 52,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_18.png": {
- "ver": "1.0.4",
- "uuid": "26386fbe-c0d2-4df2-b490-2258781ca849",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 676,
- "trimY": 704,
- "width": 20,
- "height": 228,
- "rawWidth": 20,
- "rawHeight": 228,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 10,
- "borderRight": 10,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_19.png": {
- "ver": "1.0.4",
- "uuid": "ee188ec7-9e64-400d-9aaf-7c262bb22762",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1628,
- "trimY": 2,
- "width": 40,
- "height": 116,
- "rawWidth": 40,
- "rawHeight": 116,
- "borderTop": 56,
- "borderBottom": 56,
- "borderLeft": 13,
- "borderRight": 13,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_20.png": {
- "ver": "1.0.4",
- "uuid": "15a55c4c-16e6-4483-b5a1-2c09d7550cc1",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1302,
- "trimY": 555,
- "width": 84,
- "height": 94,
- "rawWidth": 84,
- "rawHeight": 94,
- "borderTop": 45,
- "borderBottom": 45,
- "borderLeft": 39,
- "borderRight": 39,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_21.png": {
- "ver": "1.0.4",
- "uuid": "46ffd1bd-c7ae-4fca-8f86-1f4425c2177d",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1462,
- "trimY": 877,
- "width": 50,
- "height": 34,
- "rawWidth": 50,
- "rawHeight": 34,
- "borderTop": 1,
- "borderBottom": 1,
- "borderLeft": 25,
- "borderRight": 25,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_22.png": {
- "ver": "1.0.4",
- "uuid": "23594e2a-8975-4e0a-8bb0-3b900cdb1309",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1462,
- "trimY": 841,
- "width": 50,
- "height": 34,
- "rawWidth": 50,
- "rawHeight": 34,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 25,
- "borderRight": 25,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_23.png": {
- "ver": "1.0.4",
- "uuid": "f68479c0-21f4-4bdc-b123-13f09cae888a",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 962,
- "trimY": 223,
- "width": 402,
- "height": 116,
- "rawWidth": 402,
- "rawHeight": 116,
- "borderTop": 56,
- "borderBottom": 56,
- "borderLeft": 201,
- "borderRight": 201,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_24.png": {
- "ver": "1.0.4",
- "uuid": "72f6710d-9195-43f7-9752-b003995490be",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 770,
- "trimY": 692,
- "width": 26,
- "height": 4,
- "rawWidth": 26,
- "rawHeight": 4,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_25.png": {
- "ver": "1.0.4",
- "uuid": "01a3e811-5455-4902-bca5-06e739eb13fa",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1340,
- "trimY": 773,
- "width": 120,
- "height": 120,
- "rawWidth": 120,
- "rawHeight": 120,
- "borderTop": 25,
- "borderBottom": 25,
- "borderLeft": 25,
- "borderRight": 25,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_26.png": {
- "ver": "1.0.4",
- "uuid": "0f42d0fa-8e2d-47bf-b6bd-84908002f19b",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 446,
- "trimY": 704,
- "width": 228,
- "height": 174,
- "rawWidth": 228,
- "rawHeight": 174,
- "borderTop": 87,
- "borderBottom": 87,
- "borderLeft": 113,
- "borderRight": 114,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_27.png": {
- "ver": "1.0.4",
- "uuid": "40b551c2-e5b3-4b34-bbe5-5a6e61ab80df",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1010,
- "trimY": 837,
- "width": 212,
- "height": 150,
- "rawWidth": 212,
- "rawHeight": 150,
- "borderTop": 62,
- "borderBottom": 56,
- "borderLeft": 83,
- "borderRight": 83,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_28.png": {
- "ver": "1.0.4",
- "uuid": "4b9651dc-fcce-456c-b51d-1b24b61a742b",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 446,
- "trimY": 880,
- "width": 228,
- "height": 82,
- "rawWidth": 228,
- "rawHeight": 82,
- "borderTop": 41,
- "borderBottom": 41,
- "borderLeft": 114,
- "borderRight": 114,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_29.png": {
- "ver": "1.0.4",
- "uuid": "54f9a118-9383-4b65-8c03-b9c15f8fc4e0",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 916,
- "trimY": 557,
- "width": 258,
- "height": 110,
- "rawWidth": 258,
- "rawHeight": 110,
- "borderTop": 55,
- "borderBottom": 55,
- "borderLeft": 129,
- "borderRight": 129,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_30.png": {
- "ver": "1.0.4",
- "uuid": "dbfb2c42-aeee-420f-a4d6-350bfaffe3c9",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 698,
- "trimY": 912,
- "width": 156,
- "height": 27,
- "rawWidth": 156,
- "rawHeight": 27,
- "borderTop": 14,
- "borderBottom": 13,
- "borderLeft": 78,
- "borderRight": 78,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_31.png": {
- "ver": "1.0.4",
- "uuid": "402fb630-0da7-4372-afbd-6246013e09e0",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1514,
- "trimY": 627,
- "width": 76,
- "height": 84,
- "rawWidth": 76,
- "rawHeight": 84,
- "borderTop": 42,
- "borderBottom": 42,
- "borderLeft": 38,
- "borderRight": 38,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_32.png": {
- "ver": "1.0.4",
- "uuid": "a26d1111-cca4-4bab-bff5-010f748bcc18",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1366,
- "trimY": 223,
- "width": 22,
- "height": 70,
- "rawWidth": 22,
- "rawHeight": 70,
- "borderTop": 35,
- "borderBottom": 35,
- "borderLeft": 11,
- "borderRight": 11,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_33.png": {
- "ver": "1.0.4",
- "uuid": "ade03a92-94f1-41f7-b6a9-36c364eeabf0",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1284,
- "trimY": 667,
- "width": 36,
- "height": 138,
- "rawWidth": 36,
- "rawHeight": 138,
- "borderTop": 69,
- "borderBottom": 69,
- "borderLeft": 18,
- "borderRight": 18,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_34.png": {
- "ver": "1.0.4",
- "uuid": "d189fcf4-6293-4548-8f85-ccc3bbd35d44",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1592,
- "trimY": 126,
- "width": 60,
- "height": 410,
- "rawWidth": 60,
- "rawHeight": 410,
- "borderTop": 206,
- "borderBottom": 204,
- "borderLeft": 30,
- "borderRight": 31,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_35.png": {
- "ver": "1.0.4",
- "uuid": "0f876db0-cd24-4ac2-8975-513a21959aa1",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 2,
- "trimY": 692,
- "width": 766,
- "height": 4,
- "rawWidth": 766,
- "rawHeight": 4,
- "borderTop": 2,
- "borderBottom": 2,
- "borderLeft": 300,
- "borderRight": 300,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_36.png": {
- "ver": "1.0.4",
- "uuid": "fe76eae7-8f9c-4e05-b4b2-74854831718b",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1646,
- "trimY": 790,
- "width": 24,
- "height": 58,
- "rawWidth": 24,
- "rawHeight": 58,
- "borderTop": 27,
- "borderBottom": 31,
- "borderLeft": 12,
- "borderRight": 12,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_37.jpg": {
- "ver": "1.0.4",
- "uuid": "0c6ba4d9-af84-45e3-9502-4c8458f2a235",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 2,
- "trimY": 698,
- "width": 678,
- "height": 4,
- "rawWidth": 678,
- "rawHeight": 4,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_38.png": {
- "ver": "1.0.4",
- "uuid": "2d3e1bc5-04fa-4acc-ac08-a19cf2ce1be0",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 956,
- "trimY": 189,
- "width": 548,
- "height": 2,
- "rawWidth": 548,
- "rawHeight": 2,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_39.png": {
- "ver": "1.0.4",
- "uuid": "ed29fb2c-8c98-40d2-b1df-80610bb1aee3",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 2,
- "trimY": 704,
- "width": 442,
- "height": 220,
- "rawWidth": 442,
- "rawHeight": 220,
- "borderTop": 110,
- "borderBottom": 110,
- "borderLeft": 221,
- "borderRight": 221,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_40.png": {
- "ver": "1.0.4",
- "uuid": "2b1403a8-bff1-455c-9f3c-a45ba694333b",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 710,
- "trimY": 622,
- "width": 94,
- "height": 68,
- "rawWidth": 94,
- "rawHeight": 68,
- "borderTop": 34,
- "borderBottom": 34,
- "borderLeft": 47,
- "borderRight": 47,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_41.png": {
- "ver": "1.0.4",
- "uuid": "b2ff110c-3c2b-4bf0-8cad-67583d34e4cf",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 962,
- "trimY": 461,
- "width": 270,
- "height": 94,
- "rawWidth": 270,
- "rawHeight": 94,
- "borderTop": 35,
- "borderBottom": 59,
- "borderLeft": 135,
- "borderRight": 135,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_42.png": {
- "ver": "1.0.4",
- "uuid": "a2c6025a-4858-4fcd-8056-92a0f3c08deb",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1226,
- "trimY": 587,
- "width": 74,
- "height": 78,
- "rawWidth": 74,
- "rawHeight": 78,
- "borderTop": 37,
- "borderBottom": 41,
- "borderLeft": 37,
- "borderRight": 37,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_43.png": {
- "ver": "1.0.4",
- "uuid": "fed3ea98-d196-40e9-a054-98a1d79d684a",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1654,
- "trimY": 470,
- "width": 12,
- "height": 66,
- "rawWidth": 12,
- "rawHeight": 66,
- "borderTop": 15,
- "borderBottom": 51,
- "borderLeft": 6,
- "borderRight": 6,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_44.png": {
- "ver": "1.0.4",
- "uuid": "834ba2d6-8da5-4f4f-856c-12d1827bc1a7",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 956,
- "trimY": 223,
- "width": 4,
- "height": 78,
- "rawWidth": 4,
- "rawHeight": 78,
- "borderTop": 39,
- "borderBottom": 39,
- "borderLeft": 2,
- "borderRight": 2,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_45.png": {
- "ver": "1.0.4",
- "uuid": "b144fcfc-c644-4a26-b6aa-8b4e00b02e84",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1340,
- "trimY": 895,
- "width": 72,
- "height": 98,
- "rawWidth": 72,
- "rawHeight": 98,
- "borderTop": 49,
- "borderBottom": 49,
- "borderLeft": 36,
- "borderRight": 36,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_46.png": {
- "ver": "1.0.4",
- "uuid": "35e2bf6c-61d0-4393-85d0-7d1020f206a5",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 2,
- "trimY": 1018,
- "width": 3,
- "height": 3,
- "rawWidth": 3,
- "rawHeight": 3,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_47.png": {
- "ver": "1.0.4",
- "uuid": "90847da9-bb66-4221-b13c-8637c7eee455",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 916,
- "trimY": 530,
- "width": 32,
- "height": 20,
- "rawWidth": 32,
- "rawHeight": 20,
- "borderTop": 1,
- "borderBottom": 19,
- "borderLeft": 16,
- "borderRight": 16,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_48.png": {
- "ver": "1.0.4",
- "uuid": "de82a33a-fbb3-4abe-8ea3-2d261c0eb7b5",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1284,
- "trimY": 807,
- "width": 32,
- "height": 20,
- "rawWidth": 32,
- "rawHeight": 20,
- "borderTop": 1,
- "borderBottom": 19,
- "borderLeft": 16,
- "borderRight": 16,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_49.png": {
- "ver": "1.0.4",
- "uuid": "55fbbb34-29f6-49fc-b602-d30b3b1d63b9",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1460,
- "trimY": 953,
- "width": 32,
- "height": 68,
- "rawWidth": 32,
- "rawHeight": 68,
- "borderTop": 8,
- "borderBottom": 60,
- "borderLeft": 16,
- "borderRight": 16,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_50.png": {
- "ver": "1.0.4",
- "uuid": "500f4720-d67f-4b1c-90c2-a170c3f89cfd",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1654,
- "trimY": 384,
- "width": 16,
- "height": 84,
- "rawWidth": 16,
- "rawHeight": 84,
- "borderTop": 32,
- "borderBottom": 52,
- "borderLeft": 8,
- "borderRight": 8,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_51.png": {
- "ver": "1.0.4",
- "uuid": "78ffad16-2fcd-42bb-a103-f99ac6851973",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1654,
- "trimY": 252,
- "width": 16,
- "height": 130,
- "rawWidth": 16,
- "rawHeight": 130,
- "borderTop": 45,
- "borderBottom": 85,
- "borderLeft": 8,
- "borderRight": 8,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_52.png": {
- "ver": "1.0.4",
- "uuid": "47be2ff0-8420-44c3-8bd9-b5c71b62e480",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1654,
- "trimY": 120,
- "width": 16,
- "height": 130,
- "rawWidth": 16,
- "rawHeight": 130,
- "borderTop": 49,
- "borderBottom": 81,
- "borderLeft": 8,
- "borderRight": 8,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_53.png": {
- "ver": "1.0.4",
- "uuid": "fd258444-5755-4bb8-9bad-cc8f919418af",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1322,
- "trimY": 651,
- "width": 120,
- "height": 120,
- "rawWidth": 120,
- "rawHeight": 120,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_54.png": {
- "ver": "1.0.4",
- "uuid": "d7147a77-4117-4a93-b6b3-87fc73fcdccb",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1010,
- "trimY": 669,
- "width": 166,
- "height": 166,
- "rawWidth": 166,
- "rawHeight": 166,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_55.png": {
- "ver": "1.0.4",
- "uuid": "a2742929-2dcf-432b-8388-f59b83e56698",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1514,
- "trimY": 189,
- "width": 76,
- "height": 436,
- "rawWidth": 76,
- "rawHeight": 436,
- "borderTop": 103,
- "borderBottom": 92,
- "borderLeft": 40,
- "borderRight": 38,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_56.png": {
- "ver": "1.0.4",
- "uuid": "f8e89c70-b052-4184-b76f-3cf567de70f9",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 856,
- "trimY": 883,
- "width": 120,
- "height": 120,
- "rawWidth": 120,
- "rawHeight": 120,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_57.png": {
- "ver": "1.0.4",
- "uuid": "97e234d8-2f3c-423a-841d-4ee2c9bdc153",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1000,
- "trimY": 883,
- "width": 6,
- "height": 70,
- "rawWidth": 6,
- "rawHeight": 70,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_58.png": {
- "ver": "1.0.4",
- "uuid": "4c7e63ce-d640-4a16-8717-cce066046e98",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 2,
- "trimY": 926,
- "width": 434,
- "height": 90,
- "rawWidth": 434,
- "rawHeight": 90,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_bg_gradual_59.png": {
- "ver": "1.0.4",
- "uuid": "7ab88bdd-9bbc-4a90-bcff-43dbba7eecae",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 956,
- "trimY": 2,
- "width": 670,
- "height": 122,
- "rawWidth": 670,
- "rawHeight": 122,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_title_big.png": {
- "ver": "1.0.4",
- "uuid": "3082f089-6fca-4867-8ce2-3a27672d1b59",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 956,
- "trimY": 126,
- "width": 550,
- "height": 56,
- "rawWidth": 550,
- "rawHeight": 56,
- "borderTop": 28,
- "borderBottom": 11,
- "borderLeft": 202,
- "borderRight": 202,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_title_cell_bg.png": {
- "ver": "1.0.4",
- "uuid": "da0ea654-a39d-49c0-8eb8-8e13310b0906",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 438,
- "trimY": 964,
- "width": 168,
- "height": 48,
- "rawWidth": 168,
- "rawHeight": 48,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_title_small.png": {
- "ver": "1.0.4",
- "uuid": "f2a7311b-926b-462d-a393-87c6409a0aae",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 956,
- "trimY": 193,
- "width": 496,
- "height": 28,
- "rawWidth": 496,
- "rawHeight": 28,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 100,
- "borderRight": 100,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_title_zs.png": {
- "ver": "1.0.4",
- "uuid": "9933df57-efa3-4706-b09b-36ce690f7e8e",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 1578,
- "trimY": 1003,
- "width": 54,
- "height": 18,
- "rawWidth": 54,
- "rawHeight": 18,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- },
- "alert_tixian_line.png": {
- "ver": "1.0.4",
- "uuid": "d0169ce6-96c8-4ed8-bde1-673714fca53c",
- "rawTextureUuid": "92a916a5-03b3-4f14-958c-a230fc6a2d9a",
- "trimType": "auto",
- "trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
- "offsetY": 0,
- "trimX": 956,
- "trimY": 184,
- "width": 560,
- "height": 3,
- "rawWidth": 560,
- "rawHeight": 3,
- "borderTop": 0,
- "borderBottom": 0,
- "borderLeft": 0,
- "borderRight": 0,
- "spriteType": "normal",
- "subMetas": {}
- }
- }
- }
|