From 5cc6ea78a7a91852beb08a8e9019fc5a9096d8ee Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?computer=5C=E5=B0=BC=E5=8D=A1?= <203267346@qq.com>
Date: Thu, 7 Aug 2025 16:53:11 +0800
Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
assets/Script/JiaZai.ts | 69 +-
assets/Script/module/Tool/GameTool.ts | 48 +-
assets/Script/monthlyCard.ts | 5 +
assets/res/font/font.plist | 784 +--
assets/res/font/font.plist.meta | 1284 +++--
assets/res/font/font.png | Bin 83507 -> 96269 bytes
assets/shop/img/chuji.png | Bin 31455 -> 112087 bytes
assets/shop/img/gaoji.png | Bin 44419 -> 167130 bytes
assets/shop/img/texture_atlas-1.plist | 110 +-
assets/shop/img/texture_atlas-1.plist.meta | 158 +-
assets/shop/img/texture_atlas-1.png | Bin 277458 -> 1231177 bytes
assets/shop/img/texture_atlas-1.png.meta | 4 +-
assets/shop/img/zhongji.png | Bin 40813 -> 157154 bytes
assets/shop/prefab/shop.prefab | 5911 +++++++++++++-------
assets/shop/script/shop.ts | 1381 ++---
15 files changed, 5948 insertions(+), 3806 deletions(-)
diff --git a/assets/Script/JiaZai.ts b/assets/Script/JiaZai.ts
index 002c8db..45ced9c 100644
--- a/assets/Script/JiaZai.ts
+++ b/assets/Script/JiaZai.ts
@@ -79,6 +79,9 @@ export default class JiaZai extends cc.Component {
@property(cc.Node)
cardTime: cc.Node = null;
// LIFE-CYCLE CALLBACKS:
+ private onShowListener: () => void;
+ private onHideListener: () => void;
+ // LIFE-CYCLE CALLBACKS:
onLoad() {
this.closeLoad();
@@ -173,24 +176,29 @@ export default class JiaZai extends cc.Component {
//console.log("音乐开关", cc.fx.GameConfig.GM_INFO.musicOpen);
AudioManager._instance.playMusicGame();
// this.openMonthCard();
+ this.onGames();
+ }
+ //监听后台
+ onGames() {
if (typeof wx !== 'undefined') {
- wx.onShow(() => {
- // 只有非首次启动时才调用 onGameShow
- if (!this.isFirstLaunch) {
- this.onGameShow();
- }
- // 标记首次启动已完成
+ this.onShowListener = null;
+ this.onHideListener = null;
+ // 定义监听函数
+ this.onShowListener = () => {
+ this.onGameShow();
- });
-
- wx.onHide(() => {
+ };
+ this.onHideListener = () => {
this.onGameHide();
- this.isFirstLaunch = false;
- });
+ };
+ wx.onShow(this.onShowListener);
+ wx.onHide(this.onHideListener);
+
}
}
onGameHide() {
console.log("执行onGameHide", cc.fx.GameConfig.GM_INFO.min_Time);
+ this.isFirstLaunch = false;
this.stopHeathTimeCutDown();
this.stopTimeCutDown();
this.stopPowerTime();
@@ -205,13 +213,16 @@ export default class JiaZai extends cc.Component {
});
console.log("执行on", cc.fx.GameConfig.GM_INFO.min_Time);
- if (this.node.getChildByName("heathpop") && this.node.getChildByName("heathpop").active == true) {
- const heathComponent = this.node.getChildByName("heathpop").getComponent("heathnum");
- if (heathComponent && heathComponent.timeNode &&
- cc.fx.GameConfig.GM_INFO.hp < cc.fx.GameConfig.GM_INFO.hp_Max) {
- this.startHeathTimeCutDown(heathComponent.timeNode);
+ if (this.node.getChildByName("heathpop")) {
+ if (this.node.getChildByName("heathpop").active == true) {
+ const heathComponent = this.node.getChildByName("heathpop").getComponent("heathnum");
+ if (heathComponent && heathComponent.timeNode &&
+ cc.fx.GameConfig.GM_INFO.hp < cc.fx.GameConfig.GM_INFO.hp_Max) {
+ this.startHeathTimeCutDown(heathComponent.timeNode);
+ }
}
+
}
}
@@ -491,6 +502,12 @@ export default class JiaZai extends cc.Component {
}, 500);
return;
}
+ if (typeof wx !== 'undefined') {
+ //@ts-ignore
+ wx.offShow(this.onShowListener);
+ wx.offHide(this.onHideListener);
+ }
+
if (this.node.getChildByName("Load").getChildByName("startBtn").getComponent("btnControl")._touch) {
this.node.getChildByName("Load").getChildByName("startBtn").getComponent("btnControl").setTouch(false);
let version = cc.fx.GameTool.getWechatGameVersion();
@@ -550,6 +567,11 @@ export default class JiaZai extends cc.Component {
this.shopNode.active = true;
this.shopNode.getComponent("shop").init();
}
+ if (typeof wx !== 'undefined') {
+ //@ts-ignore
+ wx.offShow(this.onShowListener);
+ wx.offHide(this.onHideListener);
+ }
// //console.log("shopNode parent:", this.shopNode.parent);
}
@@ -593,6 +615,11 @@ export default class JiaZai extends cc.Component {
this.monthlyCardNode.getComponent("monthlyCard").init();
this.monthlyCardNode.getComponent("monthlyCard").juwai = true;
}
+ if (typeof wx !== 'undefined') {
+ //@ts-ignore
+ wx.offShow(this.onShowListener);
+ wx.offHide(this.onHideListener);
+ }
}
// 关闭商店
@@ -704,8 +731,8 @@ export default class JiaZai extends cc.Component {
console.log("需要补发数据", order);
if (order.itemid == "gold_1" || order.itemid == "gold_2" || order.itemid == "gold_3"
|| order.itemid == "gold_4" || order.itemid == "gold_5" || order.itemid == "gold_6"
- || order.itemid == "unlimited_health_bundle_1" || order.itemid == "unlimited_health_bundle_2"
- || order.itemid == "unlimited_health_bundle_3" || order.itemid == "month_Card" || "reborn_Gift"
+ || order.itemid == "unlimited_health_bundle_10" || order.itemid == "unlimited_health_bundle_20"
+ || order.itemid == "unlimited_health_bundle_30" || order.itemid == "month_Card" || "reborn_Gift"
) {
this.openLoad();
console.log("补发名称:", order.itemid);
@@ -723,9 +750,9 @@ export default class JiaZai extends cc.Component {
else if (order.itemid == "gold_4") { coinTemp = 32000; }
else if (order.itemid == "gold_5") { coinTemp = 100000; }
else if (order.itemid == "gold_6") { coinTemp = 240000; }
- else if (order.itemid == "unlimited_health_bundle_1") { coinTemp = 5000; }
- else if (order.itemid == "unlimited_health_bundle_2") { coinTemp = 12000; }
- else if (order.itemid == "unlimited_health_bundle_3") { coinTemp = 30000; }
+ else if (order.itemid == "unlimited_health_bundle_10") { coinTemp = 2500; }
+ else if (order.itemid == "unlimited_health_bundle_20") { coinTemp = 5000; }
+ else if (order.itemid == "unlimited_health_bundle_30") { coinTemp = 7500; }
else if (order.itemid == "month_Card") {
coinTemp = 6000;
cc.fx.GameConfig.GM_INFO.doubleCoin = 2;
diff --git a/assets/Script/module/Tool/GameTool.ts b/assets/Script/module/Tool/GameTool.ts
index 449e180..482ed8c 100644
--- a/assets/Script/module/Tool/GameTool.ts
+++ b/assets/Script/module/Tool/GameTool.ts
@@ -1031,21 +1031,21 @@ var GameTool = {
{ type: "coin", count: coin },
]
break;
- case "unlimited_health_bundle_1":
- cc.fx.GameTool.changeCoin(5000);
- coin = 5000;
- price = 1800;
- this.setUserPowerTime(1800);
+ case "unlimited_health_bundle_10":
+ cc.fx.GameTool.changeCoin(2500);
+ coin = 2500;
+ price = 1000;
+ this.setUserPowerTime(3600);
// MiniGameSdk.API.showToast("获得无限体力小组合包");
rewardData = [
{ type: "coin", count: coin },
- { type: "infinite_health", count: 1800 },
+ { type: "infinite_health", count: 3600 },
]
break;
- case "unlimited_health_bundle_2":
- cc.fx.GameTool.changeCoin(12000);
- coin = 12000;
- price = 6600;
+ case "unlimited_health_bundle_20":
+ cc.fx.GameTool.changeCoin(5000);
+ coin = 5000;
+ price = 2000;
let propData = {
"freeze": 2,
"hammer": 2,
@@ -1053,35 +1053,35 @@ var GameTool = {
"price": price
}
this.getShopProp(propData, compensate);
- this.setUserPowerTime(3600);
+ this.setUserPowerTime(7200);
// MiniGameSdk.API.showToast("获得无限体力大组合包");
rewardData = [
{ type: "coin", count: coin },
{ type: "freeze", count: 2 },
{ type: "hammer", count: 2 },
{ type: "magic", count: 2 },
- { type: "infinite_health", count: 3600 },
+ { type: "infinite_health", count: 7200 },
]
break;
- case "unlimited_health_bundle_3":
- cc.fx.GameTool.changeCoin(30000);
- coin = 30000;
- price = 10800;
+ case "unlimited_health_bundle_30":
+ cc.fx.GameTool.changeCoin(7500);
+ coin = 7500;
+ price = 3000;
let propData2 = {
- "freeze": 6,
- "hammer": 6,
- "magic_wand": 6,
+ "freeze": 5,
+ "hammer": 5,
+ "magic_wand": 5,
"price": price
}
this.getShopProp(propData2, compensate);
- this.setUserPowerTime(7200);
+ this.setUserPowerTime(14400);
// MiniGameSdk.API.showToast("获得无限体力超组合包");
rewardData = [
{ type: "coin", count: coin },
- { type: "freeze", count: 6 },
- { type: "hammer", count: 6 },
- { type: "magic", count: 6 },
- { type: "infinite_health", count: 7200 },
+ { type: "freeze", count: 5 },
+ { type: "hammer", count: 5 },
+ { type: "magic", count: 5 },
+ { type: "infinite_health", count: 14400 },
]
break;
case "month_Card":
diff --git a/assets/Script/monthlyCard.ts b/assets/Script/monthlyCard.ts
index c0a0e7c..4070500 100644
--- a/assets/Script/monthlyCard.ts
+++ b/assets/Script/monthlyCard.ts
@@ -285,6 +285,11 @@ export default class NewClass extends cc.Component {
jiazaiComp.rewarded();
console.log("123iiiii222")
}
+ if (jiazaiComp) {
+ jiazaiComp.onGames();
+ console.log("1222")
+ }
+
this.node.active = false;
}
diff --git a/assets/res/font/font.plist b/assets/res/font/font.plist
index 953f459..52c7685 100644
--- a/assets/res/font/font.plist
+++ b/assets/res/font/font.plist
@@ -15,9 +15,9 @@
spriteSourceSize
{25,39}
textureRect
- {{324,75},{25,39}}
+ {{180,1668},{25,39}}
textureRotated
-
+
big_1.png
@@ -30,7 +30,7 @@
spriteSourceSize
{20,38}
textureRect
- {{264,37},{20,38}}
+ {{109,1866},{20,38}}
textureRotated
@@ -45,7 +45,7 @@
spriteSourceSize
{24,37}
textureRect
- {{390,0},{24,37}}
+ {{191,1449},{24,37}}
textureRotated
@@ -60,9 +60,9 @@
spriteSourceSize
{23,38}
textureRect
- {{284,37},{23,38}}
+ {{131,1891},{23,38}}
textureRotated
-
+
big_4.png
@@ -75,9 +75,9 @@
spriteSourceSize
{26,38}
textureRect
- {{307,37},{26,38}}
+ {{38,1948},{26,38}}
textureRotated
-
+
big_5.png
@@ -90,7 +90,7 @@
spriteSourceSize
{24,38}
textureRect
- {{333,37},{24,38}}
+ {{191,1409},{24,38}}
textureRotated
@@ -105,7 +105,7 @@
spriteSourceSize
{25,38}
textureRect
- {{357,37},{25,38}}
+ {{190,1369},{25,38}}
textureRotated
@@ -120,7 +120,7 @@
spriteSourceSize
{25,39}
textureRect
- {{349,75},{25,39}}
+ {{194,1166},{25,39}}
textureRotated
@@ -135,9 +135,9 @@
spriteSourceSize
{24,38}
textureRect
- {{382,37},{24,38}}
+ {{171,1891},{24,38}}
textureRotated
-
+
big_9.png
@@ -150,9 +150,9 @@
spriteSourceSize
{25,38}
textureRect
- {{406,37},{25,38}}
+ {{78,1947},{25,38}}
textureRotated
-
+
button_0.png
@@ -165,22 +165,22 @@
spriteSourceSize
{37,40}
textureRect
- {{374,75},{37,40}}
+ {{144,997},{37,40}}
textureRotated
-
+
button_1.png
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {37,40}
+ {23,40}
spriteSourceSize
{37,40}
textureRect
- {{411,75},{37,40}}
+ {{186,994},{23,40}}
textureRotated
@@ -191,11 +191,11 @@
spriteOffset
{0,0}
spriteSize
- {37,40}
+ {33,40}
spriteSourceSize
{37,40}
textureRect
- {{448,75},{37,40}}
+ {{221,1658},{33,40}}
textureRotated
@@ -206,13 +206,13 @@
spriteOffset
{0,0}
spriteSize
- {37,40}
+ {31,40}
spriteSourceSize
{37,40}
textureRect
- {{0,115},{37,40}}
+ {{94,1687},{31,40}}
textureRotated
-
+
button_4.png
@@ -225,9 +225,9 @@
spriteSourceSize
{37,40}
textureRect
- {{37,115},{37,40}}
+ {{136,1691},{37,40}}
textureRotated
-
+
button_5.png
@@ -236,26 +236,26 @@
spriteOffset
{0,0}
spriteSize
- {37,40}
+ {33,40}
spriteSourceSize
{37,40}
textureRect
- {{74,115},{37,40}}
+ {{178,1695},{33,40}}
textureRotated
-
+
button_6.png
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {37,40}
+ {35,40}
spriteSourceSize
{37,40}
textureRect
- {{111,115},{37,40}}
+ {{220,1700},{35,40}}
textureRotated
@@ -270,7 +270,7 @@
spriteSourceSize
{37,40}
textureRect
- {{148,115},{37,40}}
+ {{181,1730},{37,40}}
textureRotated
@@ -281,11 +281,11 @@
spriteOffset
{0,0}
spriteSize
- {37,40}
+ {35,40}
spriteSourceSize
{37,40}
textureRect
- {{185,115},{37,40}}
+ {{220,1742},{35,40}}
textureRotated
@@ -296,11 +296,11 @@
spriteOffset
{0,0}
spriteSize
- {37,40}
+ {35,40}
spriteSourceSize
{37,40}
textureRect
- {{222,115},{37,40}}
+ {{96,1766},{35,40}}
textureRotated
@@ -315,9 +315,9 @@
spriteSourceSize
{36,38}
textureRect
- {{431,37},{36,38}}
+ {{54,1692},{36,38}}
textureRotated
-
+
coin_1.png
@@ -326,11 +326,11 @@
spriteOffset
{0,0}
spriteSize
- {36,38}
+ {26,38}
spriteSourceSize
{36,38}
textureRect
- {{467,37},{36,38}}
+ {{190,1329},{26,38}}
textureRotated
@@ -341,11 +341,11 @@
spriteOffset
{0,0}
spriteSize
- {36,38}
+ {16,30}
spriteSourceSize
{36,38}
textureRect
- {{288,75},{36,38}}
+ {{182,1086},{16,30}}
textureRotated
@@ -356,11 +356,11 @@
spriteOffset
{0,0}
spriteSize
- {36,38}
+ {34,38}
spriteSourceSize
{36,38}
textureRect
- {{0,75},{36,38}}
+ {{221,1214},{34,38}}
textureRotated
@@ -371,13 +371,13 @@
spriteOffset
{0,0}
spriteSize
- {36,38}
+ {32,38}
spriteSourceSize
{36,38}
textureRect
- {{36,75},{36,38}}
+ {{216,239},{32,38}}
textureRotated
-
+
coin_4.png
@@ -390,9 +390,9 @@
spriteSourceSize
{36,38}
textureRect
- {{72,75},{36,38}}
+ {{179,1772},{36,38}}
textureRotated
-
+
coin_5.png
@@ -401,11 +401,11 @@
spriteOffset
{0,0}
spriteSize
- {36,38}
+ {34,38}
spriteSourceSize
{36,38}
textureRect
- {{108,75},{36,38}}
+ {{221,1254},{34,38}}
textureRotated
@@ -416,11 +416,11 @@
spriteOffset
{0,0}
spriteSize
- {36,38}
+ {34,38}
spriteSourceSize
{36,38}
textureRect
- {{144,75},{36,38}}
+ {{221,1294},{34,38}}
textureRotated
@@ -435,7 +435,7 @@
spriteSourceSize
{36,38}
textureRect
- {{180,75},{36,38}}
+ {{219,1784},{36,38}}
textureRotated
@@ -446,11 +446,11 @@
spriteOffset
{0,0}
spriteSize
- {36,38}
+ {34,38}
spriteSourceSize
{36,38}
textureRect
- {{216,75},{36,38}}
+ {{221,1334},{34,38}}
textureRotated
@@ -465,7 +465,7 @@
spriteSourceSize
{36,38}
textureRect
- {{252,75},{36,38}}
+ {{219,1824},{36,38}}
textureRotated
@@ -480,7 +480,7 @@
spriteSourceSize
{47,59}
textureRect
- {{127,469},{47,59}}
+ {{105,545},{47,59}}
textureRotated
@@ -495,9 +495,9 @@
spriteSourceSize
{32,61}
textureRect
- {{385,469},{32,61}}
+ {{153,239},{32,61}}
textureRotated
-
+
coins2.png
@@ -510,7 +510,7 @@
spriteSourceSize
{45,60}
textureRect
- {{298,469},{45,60}}
+ {{1,1979},{45,60}}
textureRotated
@@ -525,9 +525,9 @@
spriteSourceSize
{42,60}
textureRect
- {{343,469},{42,60}}
+ {{151,433},{42,60}}
textureRotated
-
+
coins4.png
@@ -540,7 +540,7 @@
spriteSourceSize
{50,59}
textureRect
- {{174,469},{50,59}}
+ {{205,492},{50,59}}
textureRotated
@@ -555,7 +555,7 @@
spriteSourceSize
{44,59}
textureRect
- {{224,469},{44,59}}
+ {{137,936},{44,59}}
textureRotated
@@ -570,9 +570,9 @@
spriteSourceSize
{47,58}
textureRect
- {{335,411},{47,58}}
+ {{154,339},{47,58}}
textureRotated
-
+
coins7.png
@@ -585,9 +585,9 @@
spriteSourceSize
{43,58}
textureRect
- {{382,411},{43,58}}
+ {{154,388},{43,58}}
textureRotated
-
+
coins8.png
@@ -600,7 +600,7 @@
spriteSourceSize
{47,58}
textureRect
- {{425,411},{47,58}}
+ {{151,676},{47,58}}
textureRotated
@@ -615,9 +615,9 @@
spriteSourceSize
{44,58}
textureRect
- {{0,469},{44,58}}
+ {{62,1194},{44,58}}
textureRotated
-
+
coins_+.png
@@ -630,7 +630,7 @@
spriteSourceSize
{44,42}
textureRect
- {{259,115},{44,42}}
+ {{107,1475},{44,42}}
textureRotated
@@ -645,7 +645,7 @@
spriteSourceSize
{23,26}
textureRect
- {{89,0},{23,26}}
+ {{191,1207},{23,26}}
textureRotated
@@ -660,9 +660,9 @@
spriteSourceSize
{24,20}
textureRect
- {{22,0},{24,20}}
+ {{109,1906},{24,20}}
textureRotated
-
+
coins_x.png
@@ -675,9 +675,9 @@
spriteSourceSize
{43,49}
textureRect
- {{63,301},{43,49}}
+ {{100,673},{43,49}}
textureRotated
-
+
cost_0.png
@@ -690,7 +690,7 @@
spriteSourceSize
{43,46}
textureRect
- {{395,115},{43,46}}
+ {{212,789},{43,46}}
textureRotated
@@ -699,13 +699,13 @@
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {43,46}
+ {29,46}
spriteSourceSize
{43,46}
textureRect
- {{438,115},{43,46}}
+ {{226,186},{29,46}}
textureRotated
@@ -720,7 +720,7 @@
spriteSourceSize
{47,42}
textureRect
- {{303,115},{47,42}}
+ {{58,1472},{47,42}}
textureRotated
@@ -731,11 +731,11 @@
spriteOffset
{0,0}
spriteSize
- {43,46}
+ {39,46}
spriteSourceSize
{43,46}
textureRect
- {{0,161},{43,46}}
+ {{216,933},{39,46}}
textureRotated
@@ -746,11 +746,11 @@
spriteOffset
{0,0}
spriteSize
- {43,46}
+ {37,46}
spriteSourceSize
{43,46}
textureRect
- {{43,161},{43,46}}
+ {{212,1562},{37,46}}
textureRotated
@@ -765,7 +765,7 @@
spriteSourceSize
{43,46}
textureRect
- {{86,161},{43,46}}
+ {{212,837},{43,46}}
textureRotated
@@ -776,11 +776,11 @@
spriteOffset
{0,0}
spriteSize
- {43,46}
+ {39,46}
spriteSourceSize
{43,46}
textureRect
- {{129,161},{43,46}}
+ {{216,981},{39,46}}
textureRotated
@@ -789,13 +789,13 @@
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {43,46}
+ {41,46}
spriteSourceSize
{43,46}
textureRect
- {{172,161},{43,46}}
+ {{214,380},{41,46}}
textureRotated
@@ -810,7 +810,7 @@
spriteSourceSize
{43,46}
textureRect
- {{215,161},{43,46}}
+ {{212,885},{43,46}}
textureRotated
@@ -821,13 +821,13 @@
spriteOffset
{0,0}
spriteSize
- {43,46}
+ {41,46}
spriteSourceSize
{43,46}
textureRect
- {{258,161},{43,46}}
+ {{164,808},{41,46}}
textureRotated
-
+
cost_9.png
@@ -836,14 +836,164 @@
spriteOffset
{0,0}
spriteSize
- {43,46}
+ {41,46}
spriteSourceSize
{43,46}
textureRect
- {{301,161},{43,46}}
+ {{194,1118},{41,46}}
textureRotated
+ discount_0.png
+
+ aliases
+
+ spriteOffset
+ {0,0}
+ spriteSize
+ {40,44}
+ spriteSourceSize
+ {40,44}
+ textureRect
+ {{211,1029},{40,44}}
+ textureRotated
+
+
+ discount_1.png
+
+ aliases
+
+ spriteOffset
+ {0,0}
+ spriteSize
+ {28,42}
+ spriteSourceSize
+ {40,44}
+ textureRect
+ {{182,851},{28,42}}
+ textureRotated
+
+
+ discount_2.png
+
+ aliases
+
+ spriteOffset
+ {0,0}
+ spriteSize
+ {38,44}
+ spriteSourceSize
+ {40,44}
+ textureRect
+ {{217,1422},{38,44}}
+ textureRotated
+
+
+ discount_3.png
+
+ aliases
+
+ spriteOffset
+ {-1,0}
+ spriteSize
+ {36,44}
+ spriteSourceSize
+ {40,44}
+ textureRect
+ {{135,1730},{36,44}}
+ textureRotated
+
+
+ discount_4.png
+
+ aliases
+
+ spriteOffset
+ {0,0}
+ spriteSize
+ {40,44}
+ spriteSourceSize
+ {40,44}
+ textureRect
+ {{53,1730},{40,44}}
+ textureRotated
+
+
+ discount_5.png
+
+ aliases
+
+ spriteOffset
+ {-1,0}
+ spriteSize
+ {38,44}
+ spriteSourceSize
+ {40,44}
+ textureRect
+ {{217,1468},{38,44}}
+ textureRotated
+
+
+ discount_6.png
+
+ aliases
+
+ spriteOffset
+ {0,0}
+ spriteSize
+ {38,44}
+ spriteSourceSize
+ {40,44}
+ textureRect
+ {{95,1720},{38,44}}
+ textureRotated
+
+
+ discount_7.png
+
+ aliases
+
+ spriteOffset
+ {0,0}
+ spriteSize
+ {40,44}
+ spriteSourceSize
+ {40,44}
+ textureRect
+ {{54,1776},{40,44}}
+ textureRotated
+
+
+ discount_8.png
+
+ aliases
+
+ spriteOffset
+ {0,0}
+ spriteSize
+ {40,44}
+ spriteSourceSize
+ {40,44}
+ textureRect
+ {{54,1822},{40,44}}
+ textureRotated
+
+
+ discount_9.png
+
+ aliases
+
+ spriteOffset
+ {0,0}
+ spriteSize
+ {40,44}
+ spriteSourceSize
+ {40,44}
+ textureRect
+ {{133,1768},{40,44}}
+ textureRotated
+
+
hp_,.png
aliases
@@ -855,7 +1005,7 @@
spriteSourceSize
{46,68}
textureRect
- {{0,661},{46,68}}
+ {{62,1124},{46,68}}
textureRotated
@@ -870,9 +1020,9 @@
spriteSourceSize
{66,29}
textureRect
- {{112,0},{66,29}}
+ {{38,1880},{66,29}}
textureRotated
-
+
hp_..png
@@ -885,22 +1035,22 @@
spriteSourceSize
{45,42}
textureRect
- {{350,115},{45,42}}
+ {{213,1071},{45,42}}
textureRotated
-
+
hp_0.png
aliases
spriteOffset
- {0,0}
+ {0,1}
spriteSize
- {97,108}
+ {97,104}
spriteSourceSize
{97,108}
textureRect
- {{301,753},{97,108}}
+ {{1,596},{97,104}}
textureRotated
@@ -909,13 +1059,13 @@
aliases
spriteOffset
- {0,0}
+ {0,1}
spriteSize
- {97,108}
+ {57,104}
spriteSourceSize
{97,108}
textureRect
- {{398,753},{97,108}}
+ {{100,92},{57,104}}
textureRotated
@@ -926,11 +1076,11 @@
spriteOffset
{0,0}
spriteSize
- {97,108}
+ {85,104}
spriteSourceSize
{97,108}
textureRect
- {{0,861},{97,108}}
+ {{1,808},{85,104}}
textureRotated
@@ -939,13 +1089,13 @@
aliases
spriteOffset
- {0,0}
+ {0,1}
spriteSize
- {97,108}
+ {81,104}
spriteSourceSize
{97,108}
textureRect
- {{97,861},{97,108}}
+ {{1,1018},{81,104}}
textureRotated
@@ -956,11 +1106,11 @@
spriteOffset
{0,0}
spriteSize
- {97,108}
+ {95,104}
spriteSourceSize
{97,108}
textureRect
- {{194,861},{97,108}}
+ {{1,702},{95,104}}
textureRotated
@@ -971,11 +1121,11 @@
spriteOffset
{0,0}
spriteSize
- {97,108}
+ {85,102}
spriteSourceSize
{97,108}
textureRect
- {{291,861},{97,108}}
+ {{1,914},{85,102}}
textureRotated
@@ -990,7 +1140,7 @@
spriteSourceSize
{98,128}
textureRect
- {{94,970},{98,128}}
+ {{1,228},{98,128}}
textureRotated
@@ -1005,7 +1155,7 @@
spriteSourceSize
{94,125}
textureRect
- {{0,970},{94,125}}
+ {{1,358},{94,125}}
textureRotated
@@ -1020,7 +1170,7 @@
spriteSourceSize
{97,134}
textureRect
- {{288,970},{97,134}}
+ {{1,92},{97,134}}
textureRotated
@@ -1035,7 +1185,7 @@
spriteSourceSize
{96,129}
textureRect
- {{192,970},{96,129}}
+ {{159,1},{96,129}}
textureRotated
@@ -1050,7 +1200,7 @@
spriteSourceSize
{102,109}
textureRect
- {{388,861},{102,109}}
+ {{1,485},{102,109}}
textureRotated
@@ -1065,7 +1215,7 @@
spriteSourceSize
{51,65}
textureRect
- {{104,596},{51,65}}
+ {{101,277},{51,65}}
textureRotated
@@ -1080,7 +1230,7 @@
spriteSourceSize
{27,64}
textureRect
- {{470,532},{27,64}}
+ {{88,808},{27,64}}
textureRotated
@@ -1095,9 +1245,9 @@
spriteSourceSize
{51,65}
textureRect
- {{155,596},{51,65}}
+ {{159,186},{51,65}}
textureRotated
-
+
ice_3.png
@@ -1110,7 +1260,7 @@
spriteSourceSize
{45,65}
textureRect
- {{206,596},{45,65}}
+ {{105,478},{45,65}}
textureRotated
@@ -1125,7 +1275,7 @@
spriteSourceSize
{52,65}
textureRect
- {{251,596},{52,65}}
+ {{97,411},{52,65}}
textureRotated
@@ -1140,7 +1290,7 @@
spriteSourceSize
{49,65}
textureRect
- {{303,596},{49,65}}
+ {{152,477},{49,65}}
textureRotated
@@ -1155,7 +1305,7 @@
spriteSourceSize
{49,65}
textureRect
- {{352,596},{49,65}}
+ {{100,606},{49,65}}
textureRotated
@@ -1170,7 +1320,7 @@
spriteSourceSize
{46,64}
textureRect
- {{0,596},{46,64}}
+ {{98,718},{46,64}}
textureRotated
@@ -1185,7 +1335,7 @@
spriteSourceSize
{51,65}
textureRect
- {{401,596},{51,65}}
+ {{101,344},{51,65}}
textureRotated
@@ -1200,7 +1350,7 @@
spriteSourceSize
{49,65}
textureRect
- {{452,596},{49,65}}
+ {{154,544},{49,65}}
textureRotated
@@ -1215,7 +1365,7 @@
spriteSourceSize
{42,54}
textureRect
- {{138,301},{42,54}}
+ {{94,1519},{42,54}}
textureRotated
@@ -1226,13 +1376,13 @@
spriteOffset
{0,0}
spriteSize
- {42,54}
+ {30,54}
spriteSourceSize
{42,54}
textureRect
- {{180,301},{42,54}}
+ {{88,1004},{30,54}}
textureRotated
-
+
level_2.png
@@ -1241,11 +1391,11 @@
spriteOffset
{0,0}
spriteSize
- {42,54}
+ {40,54}
spriteSourceSize
{42,54}
textureRect
- {{222,301},{42,54}}
+ {{138,1635},{40,54}}
textureRotated
@@ -1256,11 +1406,11 @@
spriteOffset
{0,0}
spriteSize
- {42,54}
+ {38,54}
spriteSourceSize
{42,54}
textureRect
- {{264,301},{42,54}}
+ {{128,1036},{38,54}}
textureRotated
@@ -1275,7 +1425,7 @@
spriteSourceSize
{42,54}
textureRect
- {{306,301},{42,54}}
+ {{94,1575},{42,54}}
textureRotated
@@ -1286,11 +1436,11 @@
spriteOffset
{0,0}
spriteSize
- {42,54}
+ {40,54}
spriteSourceSize
{42,54}
textureRect
- {{348,301},{42,54}}
+ {{148,1356},{40,54}}
textureRotated
@@ -1301,11 +1451,11 @@
spriteOffset
{0,0}
spriteSize
- {42,54}
+ {40,54}
spriteSourceSize
{42,54}
textureRect
- {{390,301},{42,54}}
+ {{149,1412},{40,54}}
textureRotated
@@ -1320,7 +1470,7 @@
spriteSourceSize
{42,54}
textureRect
- {{432,301},{42,54}}
+ {{94,1631},{42,54}}
textureRotated
@@ -1335,7 +1485,7 @@
spriteSourceSize
{42,54}
textureRect
- {{0,355},{42,54}}
+ {{84,1036},{42,54}}
textureRotated
@@ -1350,7 +1500,7 @@
spriteSourceSize
{42,54}
textureRect
- {{42,355},{42,54}}
+ {{150,1124},{42,54}}
textureRotated
@@ -1365,9 +1515,9 @@
spriteSourceSize
{22,32}
textureRect
- {{199,0},{22,32}}
+ {{98,784},{22,32}}
textureRotated
-
+
lock_1.png
@@ -1380,9 +1530,9 @@
spriteSourceSize
{17,32}
textureRect
- {{221,0},{17,32}}
+ {{96,1847},{17,32}}
textureRotated
-
+
lock_2.png
@@ -1395,9 +1545,9 @@
spriteSourceSize
{21,31}
textureRect
- {{178,0},{21,31}}
+ {{166,785},{21,31}}
textureRotated
-
+
lock_3.png
@@ -1410,9 +1560,9 @@
spriteSourceSize
{21,32}
textureRect
- {{238,0},{21,32}}
+ {{132,785},{21,32}}
textureRotated
-
+
lock_4.png
@@ -1425,9 +1575,9 @@
spriteSourceSize
{23,32}
textureRect
- {{259,0},{23,32}}
+ {{122,2013},{23,32}}
textureRotated
-
+
lock_5.png
@@ -1440,9 +1590,9 @@
spriteSourceSize
{21,32}
textureRect
- {{282,0},{21,32}}
+ {{118,1951},{21,32}}
textureRotated
-
+
lock_6.png
@@ -1455,7 +1605,7 @@
spriteSourceSize
{22,32}
textureRect
- {{303,0},{22,32}}
+ {{157,1967},{22,32}}
textureRotated
@@ -1470,7 +1620,7 @@
spriteSourceSize
{22,32}
textureRect
- {{325,0},{22,32}}
+ {{181,1952},{22,32}}
textureRotated
@@ -1485,9 +1635,9 @@
spriteSourceSize
{21,32}
textureRect
- {{347,0},{21,32}}
+ {{205,1967},{21,32}}
textureRotated
-
+
lock_9.png
@@ -1500,7 +1650,7 @@
spriteSourceSize
{22,32}
textureRect
- {{368,0},{22,32}}
+ {{181,1986},{22,32}}
textureRotated
@@ -1511,26 +1661,26 @@
spriteOffset
{0,0}
spriteSize
- {40,46}
+ {40,44}
spriteSourceSize
{40,46}
textureRect
- {{344,161},{40,46}}
+ {{131,1810},{40,44}}
textureRotated
-
+
month_1.png
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {40,46}
+ {26,44}
spriteSourceSize
{40,46}
textureRect
- {{384,161},{40,46}}
+ {{190,1283},{26,44}}
textureRotated
@@ -1541,11 +1691,11 @@
spriteOffset
{0,0}
spriteSize
- {40,46}
+ {38,44}
spriteSourceSize
{40,46}
textureRect
- {{424,161},{40,46}}
+ {{69,1868},{38,44}}
textureRotated
@@ -1556,11 +1706,11 @@
spriteOffset
{0,0}
spriteSize
- {40,46}
+ {34,44}
spriteSourceSize
{40,46}
textureRect
- {{0,207},{40,46}}
+ {{221,1168},{34,44}}
textureRotated
@@ -1575,7 +1725,7 @@
spriteSourceSize
{40,46}
textureRect
- {{40,207},{40,46}}
+ {{179,1235},{40,46}}
textureRotated
@@ -1584,13 +1734,13 @@
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {40,46}
+ {38,44}
spriteSourceSize
{40,46}
textureRect
- {{80,207},{40,46}}
+ {{82,1974},{38,44}}
textureRotated
@@ -1601,11 +1751,11 @@
spriteOffset
{0,0}
spriteSize
- {40,46}
+ {38,46}
spriteSourceSize
{40,46}
textureRect
- {{120,207},{40,46}}
+ {{217,1374},{38,46}}
textureRotated
@@ -1616,11 +1766,11 @@
spriteOffset
{0,0}
spriteSize
- {40,46}
+ {40,44}
spriteSourceSize
{40,46}
textureRect
- {{160,207},{40,46}}
+ {{177,1810},{40,44}}
textureRotated
@@ -1635,7 +1785,7 @@
spriteSourceSize
{40,46}
textureRect
- {{200,207},{40,46}}
+ {{203,1514},{40,46}}
textureRotated
@@ -1650,7 +1800,7 @@
spriteSourceSize
{40,46}
textureRect
- {{240,207},{40,46}}
+ {{213,1610},{40,46}}
textureRotated
@@ -1665,7 +1815,7 @@
spriteSourceSize
{33,37}
textureRect
- {{414,0},{33,37}}
+ {{96,1808},{33,37}}
textureRotated
@@ -1674,15 +1824,15 @@
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {33,37}
+ {25,37}
spriteSourceSize
{33,37}
textureRect
- {{447,0},{33,37}}
+ {{205,1864},{25,37}}
textureRotated
-
+
mul10.png
@@ -1695,7 +1845,7 @@
spriteSourceSize
{58,64}
textureRect
- {{46,596},{58,64}}
+ {{154,273},{58,64}}
textureRotated
@@ -1710,7 +1860,7 @@
spriteSourceSize
{33,37}
textureRect
- {{0,37},{33,37}}
+ {{131,1852},{33,37}}
textureRotated
@@ -1719,15 +1869,15 @@
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {33,37}
+ {31,37}
spriteSourceSize
{33,37}
textureRect
- {{33,37},{33,37}}
+ {{69,1914},{31,37}}
textureRotated
-
+
mul4.png
@@ -1740,9 +1890,9 @@
spriteSourceSize
{33,37}
textureRect
- {{66,37},{33,37}}
+ {{166,1856},{33,37}}
textureRotated
-
+
mul5.png
@@ -1751,11 +1901,11 @@
spriteOffset
{0,0}
spriteSize
- {33,37}
+ {31,35}
spriteSourceSize
{33,37}
textureRect
- {{99,37},{33,37}}
+ {{211,1891},{31,35}}
textureRotated
@@ -1770,9 +1920,9 @@
spriteSourceSize
{33,37}
textureRect
- {{132,37},{33,37}}
+ {{131,1916},{33,37}}
textureRotated
-
+
mul7.png
@@ -1785,9 +1935,9 @@
spriteSourceSize
{33,37}
textureRect
- {{165,37},{33,37}}
+ {{170,1917},{33,37}}
textureRotated
-
+
mul8.png
@@ -1800,7 +1950,7 @@
spriteSourceSize
{33,37}
textureRect
- {{198,37},{33,37}}
+ {{209,1928},{33,37}}
textureRotated
@@ -1815,7 +1965,7 @@
spriteSourceSize
{33,37}
textureRect
- {{231,37},{33,37}}
+ {{122,1974},{33,37}}
textureRotated
@@ -1830,7 +1980,7 @@
spriteSourceSize
{55,93}
textureRect
- {{0,753},{55,93}}
+ {{1,1219},{55,93}}
textureRotated
@@ -1845,7 +1995,7 @@
spriteSourceSize
{35,97}
textureRect
- {{266,753},{35,97}}
+ {{1,1880},{35,97}}
textureRotated
@@ -1860,7 +2010,7 @@
spriteSourceSize
{50,77}
textureRect
- {{46,661},{50,77}}
+ {{101,198},{50,77}}
textureRotated
@@ -1875,9 +2025,9 @@
spriteSourceSize
{52,96}
textureRect
- {{214,753},{52,96}}
+ {{159,132},{52,96}}
textureRotated
-
+
mulo3.png
@@ -1890,7 +2040,7 @@
spriteSourceSize
{49,95}
textureRect
- {{165,753},{49,95}}
+ {{1,1501},{49,95}}
textureRotated
@@ -1905,7 +2055,7 @@
spriteSourceSize
{59,93}
textureRect
- {{55,753},{59,93}}
+ {{1,1124},{59,93}}
textureRotated
@@ -1920,7 +2070,7 @@
spriteSourceSize
{51,93}
textureRect
- {{114,753},{51,93}}
+ {{1,1598},{51,93}}
textureRotated
@@ -1935,7 +2085,7 @@
spriteSourceSize
{56,92}
textureRect
- {{358,661},{56,92}}
+ {{1,1314},{56,92}}
textureRotated
@@ -1950,7 +2100,7 @@
spriteSourceSize
{50,92}
textureRect
- {{414,661},{50,92}}
+ {{1,1693},{50,92}}
textureRotated
@@ -1965,7 +2115,7 @@
spriteSourceSize
{55,91}
textureRect
- {{252,661},{55,91}}
+ {{1,1408},{55,91}}
textureRotated
@@ -1980,7 +2130,7 @@
spriteSourceSize
{51,91}
textureRect
- {{307,661},{51,91}}
+ {{1,1787},{51,91}}
textureRotated
@@ -1995,7 +2145,7 @@
spriteSourceSize
{33,48}
textureRect
- {{431,253},{33,48}}
+ {{168,1519},{33,48}}
textureRotated
@@ -2010,7 +2160,7 @@
spriteSourceSize
{27,47}
textureRect
- {{240,253},{27,47}}
+ {{183,895},{27,47}}
textureRotated
@@ -2025,7 +2175,7 @@
spriteSourceSize
{31,47}
textureRect
- {{267,253},{31,47}}
+ {{180,1619},{31,47}}
textureRotated
@@ -2040,9 +2190,9 @@
spriteSourceSize
{30,47}
textureRect
- {{298,253},{30,47}}
+ {{84,1092},{30,47}}
textureRotated
-
+
rank_4.png
@@ -2055,7 +2205,7 @@
spriteSourceSize
{34,48}
textureRect
- {{464,253},{34,48}}
+ {{176,1569},{34,48}}
textureRotated
@@ -2070,9 +2220,9 @@
spriteSourceSize
{30,47}
textureRect
- {{328,253},{30,47}}
+ {{133,1092},{30,47}}
textureRotated
-
+
rank_6.png
@@ -2085,7 +2235,7 @@
spriteSourceSize
{32,47}
textureRect
- {{358,253},{32,47}}
+ {{48,1976},{32,47}}
textureRotated
@@ -2100,7 +2250,7 @@
spriteSourceSize
{32,49}
textureRect
- {{106,301},{32,49}}
+ {{153,1468},{32,49}}
textureRotated
@@ -2115,7 +2265,7 @@
spriteSourceSize
{31,48}
textureRect
- {{0,301},{31,48}}
+ {{183,944},{31,48}}
textureRotated
@@ -2130,7 +2280,7 @@
spriteSourceSize
{32,48}
textureRect
- {{31,301},{32,48}}
+ {{168,1036},{32,48}}
textureRotated
@@ -2145,7 +2295,7 @@
spriteSourceSize
{21,24}
textureRect
- {{68,0},{21,24}}
+ {{187,1488},{21,24}}
textureRotated
@@ -2160,7 +2310,7 @@
spriteSourceSize
{22,18}
textureRect
- {{0,0},{22,18}}
+ {{157,2001},{22,18}}
textureRotated
@@ -2175,7 +2325,7 @@
spriteSourceSize
{45,57}
textureRect
- {{200,411},{45,57}}
+ {{58,1240},{45,57}}
textureRotated
@@ -2190,7 +2340,7 @@
spriteSourceSize
{30,59}
textureRect
- {{268,469},{30,59}}
+ {{105,1240},{30,59}}
textureRotated
@@ -2205,7 +2355,7 @@
spriteSourceSize
{43,58}
textureRect
- {{44,469},{43,58}}
+ {{59,1299},{43,58}}
textureRotated
@@ -2220,7 +2370,7 @@
spriteSourceSize
{40,58}
textureRect
- {{87,469},{40,58}}
+ {{52,1516},{40,58}}
textureRotated
@@ -2235,7 +2385,7 @@
spriteSourceSize
{48,57}
textureRect
- {{245,411},{48,57}}
+ {{205,553},{48,57}}
textureRotated
@@ -2250,7 +2400,7 @@
spriteSourceSize
{42,57}
textureRect
- {{293,411},{42,57}}
+ {{213,433},{42,57}}
textureRotated
@@ -2265,9 +2415,9 @@
spriteSourceSize
{45,56}
textureRect
- {{84,355},{45,56}}
+ {{199,742},{45,56}}
textureRotated
-
+
result_7.png
@@ -2280,7 +2430,7 @@
spriteSourceSize
{41,56}
textureRect
- {{129,355},{41,56}}
+ {{214,273},{41,56}}
textureRotated
@@ -2295,7 +2445,7 @@
spriteSourceSize
{45,56}
textureRect
- {{170,355},{45,56}}
+ {{59,1359},{45,56}}
textureRotated
@@ -2310,7 +2460,7 @@
spriteSourceSize
{42,56}
textureRect
- {{215,355},{42,56}}
+ {{104,1301},{42,56}}
textureRotated
@@ -2325,7 +2475,7 @@
spriteSourceSize
{41,47}
textureRect
- {{390,253},{41,47}}
+ {{214,331},{41,47}}
textureRotated
@@ -2334,15 +2484,15 @@
aliases
spriteOffset
- {0,0}
+ {0,1}
spriteSize
- {47,63}
+ {47,51}
spriteSourceSize
{47,63}
textureRect
- {{417,469},{47,63}}
+ {{146,736},{47,51}}
textureRotated
-
+
scoin_09.png
@@ -2351,11 +2501,11 @@
spriteOffset
{0,0}
spriteSize
- {47,63}
+ {45,63}
spriteSourceSize
{47,63}
textureRect
- {{376,532},{47,63}}
+ {{117,808},{45,63}}
textureRotated
@@ -2366,11 +2516,11 @@
spriteOffset
{0,0}
spriteSize
- {47,63}
+ {25,53}
spriteSourceSize
{47,63}
textureRect
- {{0,532},{47,63}}
+ {{164,1180},{25,53}}
textureRotated
@@ -2381,11 +2531,11 @@
spriteOffset
{0,0}
spriteSize
- {47,63}
+ {21,25}
spriteSourceSize
{47,63}
textureRect
- {{423,532},{47,63}}
+ {{205,1990},{21,25}}
textureRotated
@@ -2394,13 +2544,13 @@
aliases
spriteOffset
- {0,0}
+ {0,1}
spriteSize
- {47,63}
+ {47,53}
spriteSourceSize
{47,63}
textureRect
- {{47,532},{47,63}}
+ {{58,1417},{47,53}}
textureRotated
@@ -2415,7 +2565,7 @@
spriteSourceSize
{47,63}
textureRect
- {{94,532},{47,63}}
+ {{151,611},{47,63}}
textureRotated
@@ -2430,7 +2580,7 @@
spriteSourceSize
{47,63}
textureRect
- {{141,532},{47,63}}
+ {{200,612},{47,63}}
textureRotated
@@ -2439,13 +2589,13 @@
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {47,63}
+ {45,63}
spriteSourceSize
{47,63}
textureRect
- {{188,532},{47,63}}
+ {{88,874},{45,63}}
textureRotated
@@ -2460,7 +2610,7 @@
spriteSourceSize
{47,63}
textureRect
- {{235,532},{47,63}}
+ {{200,677},{47,63}}
textureRotated
@@ -2469,13 +2619,13 @@
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {47,63}
+ {45,61}
spriteSourceSize
{47,63}
textureRect
- {{282,532},{47,63}}
+ {{135,873},{45,61}}
textureRotated
@@ -2490,7 +2640,7 @@
spriteSourceSize
{47,63}
textureRect
- {{329,532},{47,63}}
+ {{88,939},{47,63}}
textureRotated
@@ -2501,26 +2651,26 @@
spriteOffset
{0,0}
spriteSize
- {40,46}
+ {40,44}
spriteSourceSize
{40,46}
textureRect
- {{280,207},{40,46}}
+ {{131,1810},{40,44}}
textureRotated
-
+
tili_1.png
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {40,46}
+ {26,44}
spriteSourceSize
{40,46}
textureRect
- {{320,207},{40,46}}
+ {{190,1283},{26,44}}
textureRotated
@@ -2531,11 +2681,11 @@
spriteOffset
{0,0}
spriteSize
- {40,46}
+ {38,44}
spriteSourceSize
{40,46}
textureRect
- {{360,207},{40,46}}
+ {{69,1868},{38,44}}
textureRotated
@@ -2546,11 +2696,11 @@
spriteOffset
{0,0}
spriteSize
- {40,46}
+ {34,44}
spriteSourceSize
{40,46}
textureRect
- {{400,207},{40,46}}
+ {{221,1168},{34,44}}
textureRotated
@@ -2565,7 +2715,7 @@
spriteSourceSize
{40,46}
textureRect
- {{440,207},{40,46}}
+ {{179,1235},{40,46}}
textureRotated
@@ -2574,13 +2724,13 @@
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {40,46}
+ {38,44}
spriteSourceSize
{40,46}
textureRect
- {{0,253},{40,46}}
+ {{82,1974},{38,44}}
textureRotated
@@ -2591,11 +2741,11 @@
spriteOffset
{0,0}
spriteSize
- {40,46}
+ {38,46}
spriteSourceSize
{40,46}
textureRect
- {{40,253},{40,46}}
+ {{217,1374},{38,46}}
textureRotated
@@ -2606,11 +2756,11 @@
spriteOffset
{0,0}
spriteSize
- {40,46}
+ {40,44}
spriteSourceSize
{40,46}
textureRect
- {{80,253},{40,46}}
+ {{177,1810},{40,44}}
textureRotated
@@ -2625,7 +2775,7 @@
spriteSourceSize
{40,46}
textureRect
- {{120,253},{40,46}}
+ {{203,1514},{40,46}}
textureRotated
@@ -2640,7 +2790,7 @@
spriteSourceSize
{40,46}
textureRect
- {{160,253},{40,46}}
+ {{213,1610},{40,46}}
textureRotated
@@ -2649,15 +2799,15 @@
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {40,46}
+ {16,32}
spriteSourceSize
{40,46}
textureRect
- {{200,253},{40,46}}
+ {{82,2020},{16,32}}
textureRotated
-
+
time_0.png
@@ -2670,7 +2820,7 @@
spriteSourceSize
{40,56}
textureRect
- {{257,355},{40,56}}
+ {{106,1359},{40,56}}
textureRotated
@@ -2681,11 +2831,11 @@
spriteOffset
{0,0}
spriteSize
- {40,56}
+ {28,56}
spriteSourceSize
{40,56}
textureRect
- {{297,355},{40,56}}
+ {{138,1519},{28,56}}
textureRotated
@@ -2696,11 +2846,11 @@
spriteOffset
{0,0}
spriteSize
- {40,56}
+ {18,48}
spriteSourceSize
{40,56}
textureRect
- {{160,411},{40,56}}
+ {{237,1118},{18,48}}
textureRotated
@@ -2711,11 +2861,11 @@
spriteOffset
{0,0}
spriteSize
- {40,56}
+ {38,56}
spriteSourceSize
{40,56}
textureRect
- {{337,355},{40,56}}
+ {{54,1576},{38,56}}
textureRotated
@@ -2726,11 +2876,11 @@
spriteOffset
{0,0}
spriteSize
- {40,56}
+ {36,56}
spriteSourceSize
{40,56}
textureRect
- {{377,355},{40,56}}
+ {{138,1577},{36,56}}
textureRotated
@@ -2745,7 +2895,7 @@
spriteSourceSize
{40,56}
textureRect
- {{417,355},{40,56}}
+ {{107,1417},{40,56}}
textureRotated
@@ -2756,11 +2906,11 @@
spriteOffset
{0,0}
spriteSize
- {40,56}
+ {38,56}
spriteSourceSize
{40,56}
textureRect
- {{457,355},{40,56}}
+ {{54,1634},{38,56}}
textureRotated
@@ -2771,11 +2921,11 @@
spriteOffset
{0,0}
spriteSize
- {40,56}
+ {38,56}
spriteSourceSize
{40,56}
textureRect
- {{0,411},{40,56}}
+ {{110,1124},{38,56}}
textureRotated
@@ -2790,7 +2940,7 @@
spriteSourceSize
{40,56}
textureRect
- {{40,411},{40,56}}
+ {{122,1182},{40,56}}
textureRotated
@@ -2805,7 +2955,7 @@
spriteSourceSize
{40,56}
textureRect
- {{80,411},{40,56}}
+ {{137,1240},{40,56}}
textureRotated
@@ -2820,7 +2970,7 @@
spriteSourceSize
{40,56}
textureRect
- {{120,411},{40,56}}
+ {{148,1298},{40,56}}
textureRotated
@@ -2835,7 +2985,7 @@
spriteSourceSize
{156,89}
textureRect
- {{96,661},{156,89}}
+ {{1,1},{156,89}}
textureRotated
@@ -2850,7 +3000,7 @@
spriteSourceSize
{22,22}
textureRect
- {{46,0},{22,22}}
+ {{205,2017},{22,22}}
textureRotated
@@ -2866,9 +3016,9 @@
realTextureFileName
font.png
size
- {503,1104}
+ {256,2040}
smartupdate
- $TexturePacker:SmartUpdate:3cab7c28b17bd3c8ee67b66490395a2a:f8c9d78b5a8f5cba8d47fdeb3aba3aaf:90bd8558f1bc1540882ee9b431362e98$
+ $TexturePacker:SmartUpdate:b43195dff15c8126595451a22022634e:038b722b3d3f0405b262c4249637d1ba:90bd8558f1bc1540882ee9b431362e98$
textureFileName
font.png
diff --git a/assets/res/font/font.plist.meta b/assets/res/font/font.plist.meta
index b51fae2..eb6829e 100644
--- a/assets/res/font/font.plist.meta
+++ b/assets/res/font/font.plist.meta
@@ -4,8 +4,8 @@
"importer": "asset",
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"size": {
- "width": 503,
- "height": 1104
+ "width": 256,
+ "height": 2040
},
"type": "Texture Packer",
"subMetas": {
@@ -16,11 +16,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 324,
- "trimY": 75,
+ "trimX": 180,
+ "trimY": 1668,
"width": 25,
"height": 39,
"rawWidth": 25,
@@ -42,8 +42,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 264,
- "trimY": 37,
+ "trimX": 109,
+ "trimY": 1866,
"width": 20,
"height": 38,
"rawWidth": 20,
@@ -65,8 +65,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 390,
- "trimY": 0,
+ "trimX": 191,
+ "trimY": 1449,
"width": 24,
"height": 37,
"rawWidth": 24,
@@ -85,11 +85,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 284,
- "trimY": 37,
+ "trimX": 131,
+ "trimY": 1891,
"width": 23,
"height": 38,
"rawWidth": 23,
@@ -108,11 +108,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 307,
- "trimY": 37,
+ "trimX": 38,
+ "trimY": 1948,
"width": 26,
"height": 38,
"rawWidth": 26,
@@ -134,8 +134,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 333,
- "trimY": 37,
+ "trimX": 191,
+ "trimY": 1409,
"width": 24,
"height": 38,
"rawWidth": 24,
@@ -157,8 +157,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 357,
- "trimY": 37,
+ "trimX": 190,
+ "trimY": 1369,
"width": 25,
"height": 38,
"rawWidth": 25,
@@ -180,8 +180,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 349,
- "trimY": 75,
+ "trimX": 194,
+ "trimY": 1166,
"width": 25,
"height": 39,
"rawWidth": 25,
@@ -200,11 +200,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 382,
- "trimY": 37,
+ "trimX": 171,
+ "trimY": 1891,
"width": 24,
"height": 38,
"rawWidth": 24,
@@ -223,11 +223,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 406,
- "trimY": 37,
+ "trimX": 78,
+ "trimY": 1947,
"width": 25,
"height": 38,
"rawWidth": 25,
@@ -246,11 +246,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 374,
- "trimY": 75,
+ "trimX": 144,
+ "trimY": 997,
"width": 37,
"height": 40,
"rawWidth": 37,
@@ -270,11 +270,11 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
- "offsetX": 0,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 411,
- "trimY": 75,
- "width": 37,
+ "trimX": 186,
+ "trimY": 994,
+ "width": 23,
"height": 40,
"rawWidth": 37,
"rawHeight": 40,
@@ -295,9 +295,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 448,
- "trimY": 75,
- "width": 37,
+ "trimX": 221,
+ "trimY": 1658,
+ "width": 33,
"height": 40,
"rawWidth": 37,
"rawHeight": 40,
@@ -315,12 +315,12 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 115,
- "width": 37,
+ "trimX": 94,
+ "trimY": 1687,
+ "width": 31,
"height": 40,
"rawWidth": 37,
"rawHeight": 40,
@@ -338,11 +338,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 37,
- "trimY": 115,
+ "trimX": 136,
+ "trimY": 1691,
"width": 37,
"height": 40,
"rawWidth": 37,
@@ -361,12 +361,12 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 74,
- "trimY": 115,
- "width": 37,
+ "trimX": 178,
+ "trimY": 1695,
+ "width": 33,
"height": 40,
"rawWidth": 37,
"rawHeight": 40,
@@ -385,11 +385,11 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
- "offsetX": 0,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 111,
- "trimY": 115,
- "width": 37,
+ "trimX": 220,
+ "trimY": 1700,
+ "width": 35,
"height": 40,
"rawWidth": 37,
"rawHeight": 40,
@@ -410,8 +410,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 148,
- "trimY": 115,
+ "trimX": 181,
+ "trimY": 1730,
"width": 37,
"height": 40,
"rawWidth": 37,
@@ -433,9 +433,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 185,
- "trimY": 115,
- "width": 37,
+ "trimX": 220,
+ "trimY": 1742,
+ "width": 35,
"height": 40,
"rawWidth": 37,
"rawHeight": 40,
@@ -456,9 +456,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 222,
- "trimY": 115,
- "width": 37,
+ "trimX": 96,
+ "trimY": 1766,
+ "width": 35,
"height": 40,
"rawWidth": 37,
"rawHeight": 40,
@@ -476,11 +476,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 431,
- "trimY": 37,
+ "trimX": 54,
+ "trimY": 1692,
"width": 36,
"height": 38,
"rawWidth": 36,
@@ -502,9 +502,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 467,
- "trimY": 37,
- "width": 36,
+ "trimX": 190,
+ "trimY": 1329,
+ "width": 26,
"height": 38,
"rawWidth": 36,
"rawHeight": 38,
@@ -525,10 +525,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 288,
- "trimY": 75,
- "width": 36,
- "height": 38,
+ "trimX": 182,
+ "trimY": 1086,
+ "width": 16,
+ "height": 30,
"rawWidth": 36,
"rawHeight": 38,
"borderTop": 0,
@@ -548,9 +548,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 75,
- "width": 36,
+ "trimX": 221,
+ "trimY": 1214,
+ "width": 34,
"height": 38,
"rawWidth": 36,
"rawHeight": 38,
@@ -568,12 +568,12 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 36,
- "trimY": 75,
- "width": 36,
+ "trimX": 216,
+ "trimY": 239,
+ "width": 32,
"height": 38,
"rawWidth": 36,
"rawHeight": 38,
@@ -591,11 +591,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 72,
- "trimY": 75,
+ "trimX": 179,
+ "trimY": 1772,
"width": 36,
"height": 38,
"rawWidth": 36,
@@ -617,9 +617,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 108,
- "trimY": 75,
- "width": 36,
+ "trimX": 221,
+ "trimY": 1254,
+ "width": 34,
"height": 38,
"rawWidth": 36,
"rawHeight": 38,
@@ -640,9 +640,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 144,
- "trimY": 75,
- "width": 36,
+ "trimX": 221,
+ "trimY": 1294,
+ "width": 34,
"height": 38,
"rawWidth": 36,
"rawHeight": 38,
@@ -663,8 +663,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 180,
- "trimY": 75,
+ "trimX": 219,
+ "trimY": 1784,
"width": 36,
"height": 38,
"rawWidth": 36,
@@ -686,9 +686,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 216,
- "trimY": 75,
- "width": 36,
+ "trimX": 221,
+ "trimY": 1334,
+ "width": 34,
"height": 38,
"rawWidth": 36,
"rawHeight": 38,
@@ -709,8 +709,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 252,
- "trimY": 75,
+ "trimX": 219,
+ "trimY": 1824,
"width": 36,
"height": 38,
"rawWidth": 36,
@@ -732,8 +732,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 127,
- "trimY": 469,
+ "trimX": 105,
+ "trimY": 545,
"width": 47,
"height": 59,
"rawWidth": 47,
@@ -752,11 +752,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 385,
- "trimY": 469,
+ "trimX": 153,
+ "trimY": 239,
"width": 32,
"height": 61,
"rawWidth": 32,
@@ -778,8 +778,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 298,
- "trimY": 469,
+ "trimX": 1,
+ "trimY": 1979,
"width": 45,
"height": 60,
"rawWidth": 45,
@@ -798,11 +798,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 343,
- "trimY": 469,
+ "trimX": 151,
+ "trimY": 433,
"width": 42,
"height": 60,
"rawWidth": 42,
@@ -824,8 +824,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 174,
- "trimY": 469,
+ "trimX": 205,
+ "trimY": 492,
"width": 50,
"height": 59,
"rawWidth": 50,
@@ -847,8 +847,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 224,
- "trimY": 469,
+ "trimX": 137,
+ "trimY": 936,
"width": 44,
"height": 59,
"rawWidth": 44,
@@ -867,11 +867,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 335,
- "trimY": 411,
+ "trimX": 154,
+ "trimY": 339,
"width": 47,
"height": 58,
"rawWidth": 47,
@@ -890,11 +890,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 382,
- "trimY": 411,
+ "trimX": 154,
+ "trimY": 388,
"width": 43,
"height": 58,
"rawWidth": 43,
@@ -916,8 +916,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 425,
- "trimY": 411,
+ "trimX": 151,
+ "trimY": 676,
"width": 47,
"height": 58,
"rawWidth": 47,
@@ -936,11 +936,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 469,
+ "trimX": 62,
+ "trimY": 1194,
"width": 44,
"height": 58,
"rawWidth": 44,
@@ -962,8 +962,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 259,
- "trimY": 115,
+ "trimX": 107,
+ "trimY": 1475,
"width": 44,
"height": 42,
"rawWidth": 44,
@@ -985,8 +985,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 89,
- "trimY": 0,
+ "trimX": 191,
+ "trimY": 1207,
"width": 23,
"height": 26,
"rawWidth": 23,
@@ -1005,11 +1005,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 22,
- "trimY": 0,
+ "trimX": 109,
+ "trimY": 1906,
"width": 24,
"height": 20,
"rawWidth": 24,
@@ -1028,11 +1028,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 63,
- "trimY": 301,
+ "trimX": 100,
+ "trimY": 673,
"width": 43,
"height": 49,
"rawWidth": 43,
@@ -1054,8 +1054,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 395,
- "trimY": 115,
+ "trimX": 212,
+ "trimY": 789,
"width": 43,
"height": 46,
"rawWidth": 43,
@@ -1075,11 +1075,11 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
- "offsetX": 0,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 438,
- "trimY": 115,
- "width": 43,
+ "trimX": 226,
+ "trimY": 186,
+ "width": 29,
"height": 46,
"rawWidth": 43,
"rawHeight": 46,
@@ -1100,8 +1100,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 303,
- "trimY": 115,
+ "trimX": 58,
+ "trimY": 1472,
"width": 47,
"height": 42,
"rawWidth": 47,
@@ -1123,9 +1123,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 161,
- "width": 43,
+ "trimX": 216,
+ "trimY": 933,
+ "width": 39,
"height": 46,
"rawWidth": 43,
"rawHeight": 46,
@@ -1146,9 +1146,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 43,
- "trimY": 161,
- "width": 43,
+ "trimX": 212,
+ "trimY": 1562,
+ "width": 37,
"height": 46,
"rawWidth": 43,
"rawHeight": 46,
@@ -1169,8 +1169,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 86,
- "trimY": 161,
+ "trimX": 212,
+ "trimY": 837,
"width": 43,
"height": 46,
"rawWidth": 43,
@@ -1192,9 +1192,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 129,
- "trimY": 161,
- "width": 43,
+ "trimX": 216,
+ "trimY": 981,
+ "width": 39,
"height": 46,
"rawWidth": 43,
"rawHeight": 46,
@@ -1213,11 +1213,11 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
- "offsetX": 0,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 172,
- "trimY": 161,
- "width": 43,
+ "trimX": 214,
+ "trimY": 380,
+ "width": 41,
"height": 46,
"rawWidth": 43,
"rawHeight": 46,
@@ -1238,8 +1238,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 215,
- "trimY": 161,
+ "trimX": 212,
+ "trimY": 885,
"width": 43,
"height": 46,
"rawWidth": 43,
@@ -1258,12 +1258,12 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 258,
- "trimY": 161,
- "width": 43,
+ "trimX": 164,
+ "trimY": 808,
+ "width": 41,
"height": 46,
"rawWidth": 43,
"rawHeight": 46,
@@ -1284,9 +1284,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 301,
- "trimY": 161,
- "width": 43,
+ "trimX": 194,
+ "trimY": 1118,
+ "width": 41,
"height": 46,
"rawWidth": 43,
"rawHeight": 46,
@@ -1297,6 +1297,236 @@
"spriteType": "normal",
"subMetas": {}
},
+ "discount_0.png": {
+ "ver": "1.0.6",
+ "uuid": "8bf71b2d-8110-4f80-b372-7664958fa972",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": true,
+ "offsetX": 0,
+ "offsetY": 0,
+ "trimX": 211,
+ "trimY": 1029,
+ "width": 40,
+ "height": 44,
+ "rawWidth": 40,
+ "rawHeight": 44,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "discount_1.png": {
+ "ver": "1.0.6",
+ "uuid": "573856d6-bcf2-4f74-a296-b938735b3a6e",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": false,
+ "offsetX": 0,
+ "offsetY": 0,
+ "trimX": 182,
+ "trimY": 851,
+ "width": 28,
+ "height": 42,
+ "rawWidth": 40,
+ "rawHeight": 44,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "discount_2.png": {
+ "ver": "1.0.6",
+ "uuid": "e81e3849-47b0-4002-8396-1c6890c56208",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": false,
+ "offsetX": 0,
+ "offsetY": 0,
+ "trimX": 217,
+ "trimY": 1422,
+ "width": 38,
+ "height": 44,
+ "rawWidth": 40,
+ "rawHeight": 44,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "discount_3.png": {
+ "ver": "1.0.6",
+ "uuid": "d7e579d0-af4f-4a02-9c38-e1fe585db121",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": true,
+ "offsetX": -1,
+ "offsetY": 0,
+ "trimX": 135,
+ "trimY": 1730,
+ "width": 36,
+ "height": 44,
+ "rawWidth": 40,
+ "rawHeight": 44,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "discount_4.png": {
+ "ver": "1.0.6",
+ "uuid": "7a51cfc8-dc08-482d-91e8-d851ed02b4d0",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": false,
+ "offsetX": 0,
+ "offsetY": 0,
+ "trimX": 53,
+ "trimY": 1730,
+ "width": 40,
+ "height": 44,
+ "rawWidth": 40,
+ "rawHeight": 44,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "discount_5.png": {
+ "ver": "1.0.6",
+ "uuid": "6143b77a-3c94-42ca-9026-dca9db58f56b",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": false,
+ "offsetX": -1,
+ "offsetY": 0,
+ "trimX": 217,
+ "trimY": 1468,
+ "width": 38,
+ "height": 44,
+ "rawWidth": 40,
+ "rawHeight": 44,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "discount_6.png": {
+ "ver": "1.0.6",
+ "uuid": "e8659f41-d9d0-4e43-adc8-f13b0cbf66a1",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": false,
+ "offsetX": 0,
+ "offsetY": 0,
+ "trimX": 95,
+ "trimY": 1720,
+ "width": 38,
+ "height": 44,
+ "rawWidth": 40,
+ "rawHeight": 44,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "discount_7.png": {
+ "ver": "1.0.6",
+ "uuid": "535a83dd-d70a-480e-9190-b8776cc97c65",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": false,
+ "offsetX": 0,
+ "offsetY": 0,
+ "trimX": 54,
+ "trimY": 1776,
+ "width": 40,
+ "height": 44,
+ "rawWidth": 40,
+ "rawHeight": 44,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "discount_8.png": {
+ "ver": "1.0.6",
+ "uuid": "d458276c-fa7a-452d-a01a-fa19cd196e1d",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": false,
+ "offsetX": 0,
+ "offsetY": 0,
+ "trimX": 54,
+ "trimY": 1822,
+ "width": 40,
+ "height": 44,
+ "rawWidth": 40,
+ "rawHeight": 44,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "discount_9.png": {
+ "ver": "1.0.6",
+ "uuid": "e61fdba9-d3ad-47c9-ba96-14f843fc2f6b",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": true,
+ "offsetX": 0,
+ "offsetY": 0,
+ "trimX": 133,
+ "trimY": 1768,
+ "width": 40,
+ "height": 44,
+ "rawWidth": 40,
+ "rawHeight": 44,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
"hp_,.png": {
"ver": "1.0.6",
"uuid": "f1cb68b4-fc78-45bd-9786-d4e21fd02523",
@@ -1307,8 +1537,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 661,
+ "trimX": 62,
+ "trimY": 1124,
"width": 46,
"height": 68,
"rawWidth": 46,
@@ -1327,11 +1557,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 112,
- "trimY": 0,
+ "trimX": 38,
+ "trimY": 1880,
"width": 66,
"height": 29,
"rawWidth": 66,
@@ -1350,11 +1580,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 350,
- "trimY": 115,
+ "trimX": 213,
+ "trimY": 1071,
"width": 45,
"height": 42,
"rawWidth": 45,
@@ -1375,11 +1605,11 @@
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
- "offsetY": 0,
- "trimX": 301,
- "trimY": 753,
+ "offsetY": 1,
+ "trimX": 1,
+ "trimY": 596,
"width": 97,
- "height": 108,
+ "height": 104,
"rawWidth": 97,
"rawHeight": 108,
"borderTop": 0,
@@ -1398,11 +1628,11 @@
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
- "offsetY": 0,
- "trimX": 398,
- "trimY": 753,
- "width": 97,
- "height": 108,
+ "offsetY": 1,
+ "trimX": 100,
+ "trimY": 92,
+ "width": 57,
+ "height": 104,
"rawWidth": 97,
"rawHeight": 108,
"borderTop": 0,
@@ -1422,10 +1652,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 861,
- "width": 97,
- "height": 108,
+ "trimX": 1,
+ "trimY": 808,
+ "width": 85,
+ "height": 104,
"rawWidth": 97,
"rawHeight": 108,
"borderTop": 0,
@@ -1444,11 +1674,11 @@
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
- "offsetY": 0,
- "trimX": 97,
- "trimY": 861,
- "width": 97,
- "height": 108,
+ "offsetY": 1,
+ "trimX": 1,
+ "trimY": 1018,
+ "width": 81,
+ "height": 104,
"rawWidth": 97,
"rawHeight": 108,
"borderTop": 0,
@@ -1468,10 +1698,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 194,
- "trimY": 861,
- "width": 97,
- "height": 108,
+ "trimX": 1,
+ "trimY": 702,
+ "width": 95,
+ "height": 104,
"rawWidth": 97,
"rawHeight": 108,
"borderTop": 0,
@@ -1491,10 +1721,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 291,
- "trimY": 861,
- "width": 97,
- "height": 108,
+ "trimX": 1,
+ "trimY": 914,
+ "width": 85,
+ "height": 102,
"rawWidth": 97,
"rawHeight": 108,
"borderTop": 0,
@@ -1514,8 +1744,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 94,
- "trimY": 970,
+ "trimX": 1,
+ "trimY": 228,
"width": 98,
"height": 128,
"rawWidth": 98,
@@ -1537,8 +1767,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 970,
+ "trimX": 1,
+ "trimY": 358,
"width": 94,
"height": 125,
"rawWidth": 94,
@@ -1560,8 +1790,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 288,
- "trimY": 970,
+ "trimX": 1,
+ "trimY": 92,
"width": 97,
"height": 134,
"rawWidth": 97,
@@ -1583,8 +1813,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 192,
- "trimY": 970,
+ "trimX": 159,
+ "trimY": 1,
"width": 96,
"height": 129,
"rawWidth": 96,
@@ -1606,8 +1836,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 388,
- "trimY": 861,
+ "trimX": 1,
+ "trimY": 485,
"width": 102,
"height": 109,
"rawWidth": 102,
@@ -1629,8 +1859,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 104,
- "trimY": 596,
+ "trimX": 101,
+ "trimY": 277,
"width": 51,
"height": 65,
"rawWidth": 51,
@@ -1652,8 +1882,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 470,
- "trimY": 532,
+ "trimX": 88,
+ "trimY": 808,
"width": 27,
"height": 64,
"rawWidth": 27,
@@ -1672,11 +1902,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 155,
- "trimY": 596,
+ "trimX": 159,
+ "trimY": 186,
"width": 51,
"height": 65,
"rawWidth": 51,
@@ -1698,8 +1928,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 206,
- "trimY": 596,
+ "trimX": 105,
+ "trimY": 478,
"width": 45,
"height": 65,
"rawWidth": 45,
@@ -1721,8 +1951,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 251,
- "trimY": 596,
+ "trimX": 97,
+ "trimY": 411,
"width": 52,
"height": 65,
"rawWidth": 52,
@@ -1744,8 +1974,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 303,
- "trimY": 596,
+ "trimX": 152,
+ "trimY": 477,
"width": 49,
"height": 65,
"rawWidth": 49,
@@ -1767,8 +1997,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 352,
- "trimY": 596,
+ "trimX": 100,
+ "trimY": 606,
"width": 49,
"height": 65,
"rawWidth": 49,
@@ -1790,8 +2020,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 596,
+ "trimX": 98,
+ "trimY": 718,
"width": 46,
"height": 64,
"rawWidth": 46,
@@ -1813,8 +2043,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 401,
- "trimY": 596,
+ "trimX": 101,
+ "trimY": 344,
"width": 51,
"height": 65,
"rawWidth": 51,
@@ -1836,8 +2066,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 452,
- "trimY": 596,
+ "trimX": 154,
+ "trimY": 544,
"width": 49,
"height": 65,
"rawWidth": 49,
@@ -1859,8 +2089,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 138,
- "trimY": 301,
+ "trimX": 94,
+ "trimY": 1519,
"width": 42,
"height": 54,
"rawWidth": 42,
@@ -1879,12 +2109,12 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 180,
- "trimY": 301,
- "width": 42,
+ "trimX": 88,
+ "trimY": 1004,
+ "width": 30,
"height": 54,
"rawWidth": 42,
"rawHeight": 54,
@@ -1905,9 +2135,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 222,
- "trimY": 301,
- "width": 42,
+ "trimX": 138,
+ "trimY": 1635,
+ "width": 40,
"height": 54,
"rawWidth": 42,
"rawHeight": 54,
@@ -1928,9 +2158,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 264,
- "trimY": 301,
- "width": 42,
+ "trimX": 128,
+ "trimY": 1036,
+ "width": 38,
"height": 54,
"rawWidth": 42,
"rawHeight": 54,
@@ -1951,8 +2181,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 306,
- "trimY": 301,
+ "trimX": 94,
+ "trimY": 1575,
"width": 42,
"height": 54,
"rawWidth": 42,
@@ -1974,9 +2204,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 348,
- "trimY": 301,
- "width": 42,
+ "trimX": 148,
+ "trimY": 1356,
+ "width": 40,
"height": 54,
"rawWidth": 42,
"rawHeight": 54,
@@ -1997,9 +2227,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 390,
- "trimY": 301,
- "width": 42,
+ "trimX": 149,
+ "trimY": 1412,
+ "width": 40,
"height": 54,
"rawWidth": 42,
"rawHeight": 54,
@@ -2020,8 +2250,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 432,
- "trimY": 301,
+ "trimX": 94,
+ "trimY": 1631,
"width": 42,
"height": 54,
"rawWidth": 42,
@@ -2043,8 +2273,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 355,
+ "trimX": 84,
+ "trimY": 1036,
"width": 42,
"height": 54,
"rawWidth": 42,
@@ -2066,8 +2296,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 42,
- "trimY": 355,
+ "trimX": 150,
+ "trimY": 1124,
"width": 42,
"height": 54,
"rawWidth": 42,
@@ -2086,11 +2316,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 199,
- "trimY": 0,
+ "trimX": 98,
+ "trimY": 784,
"width": 22,
"height": 32,
"rawWidth": 22,
@@ -2109,11 +2339,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 221,
- "trimY": 0,
+ "trimX": 96,
+ "trimY": 1847,
"width": 17,
"height": 32,
"rawWidth": 17,
@@ -2132,11 +2362,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 178,
- "trimY": 0,
+ "trimX": 166,
+ "trimY": 785,
"width": 21,
"height": 31,
"rawWidth": 21,
@@ -2155,11 +2385,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 238,
- "trimY": 0,
+ "trimX": 132,
+ "trimY": 785,
"width": 21,
"height": 32,
"rawWidth": 21,
@@ -2178,11 +2408,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 259,
- "trimY": 0,
+ "trimX": 122,
+ "trimY": 2013,
"width": 23,
"height": 32,
"rawWidth": 23,
@@ -2201,11 +2431,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 282,
- "trimY": 0,
+ "trimX": 118,
+ "trimY": 1951,
"width": 21,
"height": 32,
"rawWidth": 21,
@@ -2227,8 +2457,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 303,
- "trimY": 0,
+ "trimX": 157,
+ "trimY": 1967,
"width": 22,
"height": 32,
"rawWidth": 22,
@@ -2250,8 +2480,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 325,
- "trimY": 0,
+ "trimX": 181,
+ "trimY": 1952,
"width": 22,
"height": 32,
"rawWidth": 22,
@@ -2270,11 +2500,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 347,
- "trimY": 0,
+ "trimX": 205,
+ "trimY": 1967,
"width": 21,
"height": 32,
"rawWidth": 21,
@@ -2296,8 +2526,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 368,
- "trimY": 0,
+ "trimX": 181,
+ "trimY": 1986,
"width": 22,
"height": 32,
"rawWidth": 22,
@@ -2316,13 +2546,13 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 344,
- "trimY": 161,
+ "trimX": 131,
+ "trimY": 1810,
"width": 40,
- "height": 46,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -2340,12 +2570,12 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
- "offsetX": 0,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 384,
- "trimY": 161,
- "width": 40,
- "height": 46,
+ "trimX": 190,
+ "trimY": 1283,
+ "width": 26,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -2365,10 +2595,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 424,
- "trimY": 161,
- "width": 40,
- "height": 46,
+ "trimX": 69,
+ "trimY": 1868,
+ "width": 38,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -2388,10 +2618,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 207,
- "width": 40,
- "height": 46,
+ "trimX": 221,
+ "trimY": 1168,
+ "width": 34,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -2411,8 +2641,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 40,
- "trimY": 207,
+ "trimX": 179,
+ "trimY": 1235,
"width": 40,
"height": 46,
"rawWidth": 40,
@@ -2432,12 +2662,12 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
- "offsetX": 0,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 80,
- "trimY": 207,
- "width": 40,
- "height": 46,
+ "trimX": 82,
+ "trimY": 1974,
+ "width": 38,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -2457,9 +2687,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 120,
- "trimY": 207,
- "width": 40,
+ "trimX": 217,
+ "trimY": 1374,
+ "width": 38,
"height": 46,
"rawWidth": 40,
"rawHeight": 46,
@@ -2480,10 +2710,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 160,
- "trimY": 207,
+ "trimX": 177,
+ "trimY": 1810,
"width": 40,
- "height": 46,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -2503,8 +2733,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 200,
- "trimY": 207,
+ "trimX": 203,
+ "trimY": 1514,
"width": 40,
"height": 46,
"rawWidth": 40,
@@ -2526,8 +2756,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 240,
- "trimY": 207,
+ "trimX": 213,
+ "trimY": 1610,
"width": 40,
"height": 46,
"rawWidth": 40,
@@ -2549,8 +2779,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 414,
- "trimY": 0,
+ "trimX": 96,
+ "trimY": 1808,
"width": 33,
"height": 37,
"rawWidth": 33,
@@ -2569,12 +2799,12 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
+ "rotated": true,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 447,
- "trimY": 0,
- "width": 33,
+ "trimX": 205,
+ "trimY": 1864,
+ "width": 25,
"height": 37,
"rawWidth": 33,
"rawHeight": 37,
@@ -2595,8 +2825,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 46,
- "trimY": 596,
+ "trimX": 154,
+ "trimY": 273,
"width": 58,
"height": 64,
"rawWidth": 58,
@@ -2618,8 +2848,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 37,
+ "trimX": 131,
+ "trimY": 1852,
"width": 33,
"height": 37,
"rawWidth": 33,
@@ -2638,12 +2868,12 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
+ "rotated": true,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 33,
- "trimY": 37,
- "width": 33,
+ "trimX": 69,
+ "trimY": 1914,
+ "width": 31,
"height": 37,
"rawWidth": 33,
"rawHeight": 37,
@@ -2661,11 +2891,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 66,
- "trimY": 37,
+ "trimX": 166,
+ "trimY": 1856,
"width": 33,
"height": 37,
"rawWidth": 33,
@@ -2687,10 +2917,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 99,
- "trimY": 37,
- "width": 33,
- "height": 37,
+ "trimX": 211,
+ "trimY": 1891,
+ "width": 31,
+ "height": 35,
"rawWidth": 33,
"rawHeight": 37,
"borderTop": 0,
@@ -2707,11 +2937,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 132,
- "trimY": 37,
+ "trimX": 131,
+ "trimY": 1916,
"width": 33,
"height": 37,
"rawWidth": 33,
@@ -2730,11 +2960,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 165,
- "trimY": 37,
+ "trimX": 170,
+ "trimY": 1917,
"width": 33,
"height": 37,
"rawWidth": 33,
@@ -2756,8 +2986,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 198,
- "trimY": 37,
+ "trimX": 209,
+ "trimY": 1928,
"width": 33,
"height": 37,
"rawWidth": 33,
@@ -2779,8 +3009,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 231,
- "trimY": 37,
+ "trimX": 122,
+ "trimY": 1974,
"width": 33,
"height": 37,
"rawWidth": 33,
@@ -2802,8 +3032,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 753,
+ "trimX": 1,
+ "trimY": 1219,
"width": 55,
"height": 93,
"rawWidth": 55,
@@ -2825,8 +3055,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 266,
- "trimY": 753,
+ "trimX": 1,
+ "trimY": 1880,
"width": 35,
"height": 97,
"rawWidth": 35,
@@ -2848,8 +3078,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 46,
- "trimY": 661,
+ "trimX": 101,
+ "trimY": 198,
"width": 50,
"height": 77,
"rawWidth": 50,
@@ -2868,11 +3098,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 214,
- "trimY": 753,
+ "trimX": 159,
+ "trimY": 132,
"width": 52,
"height": 96,
"rawWidth": 52,
@@ -2894,8 +3124,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 165,
- "trimY": 753,
+ "trimX": 1,
+ "trimY": 1501,
"width": 49,
"height": 95,
"rawWidth": 49,
@@ -2917,8 +3147,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 55,
- "trimY": 753,
+ "trimX": 1,
+ "trimY": 1124,
"width": 59,
"height": 93,
"rawWidth": 59,
@@ -2940,8 +3170,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 114,
- "trimY": 753,
+ "trimX": 1,
+ "trimY": 1598,
"width": 51,
"height": 93,
"rawWidth": 51,
@@ -2963,8 +3193,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 358,
- "trimY": 661,
+ "trimX": 1,
+ "trimY": 1314,
"width": 56,
"height": 92,
"rawWidth": 56,
@@ -2986,8 +3216,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 414,
- "trimY": 661,
+ "trimX": 1,
+ "trimY": 1693,
"width": 50,
"height": 92,
"rawWidth": 50,
@@ -3009,8 +3239,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 252,
- "trimY": 661,
+ "trimX": 1,
+ "trimY": 1408,
"width": 55,
"height": 91,
"rawWidth": 55,
@@ -3032,8 +3262,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 307,
- "trimY": 661,
+ "trimX": 1,
+ "trimY": 1787,
"width": 51,
"height": 91,
"rawWidth": 51,
@@ -3055,8 +3285,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 431,
- "trimY": 253,
+ "trimX": 168,
+ "trimY": 1519,
"width": 33,
"height": 48,
"rawWidth": 33,
@@ -3078,8 +3308,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 240,
- "trimY": 253,
+ "trimX": 183,
+ "trimY": 895,
"width": 27,
"height": 47,
"rawWidth": 27,
@@ -3101,8 +3331,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 267,
- "trimY": 253,
+ "trimX": 180,
+ "trimY": 1619,
"width": 31,
"height": 47,
"rawWidth": 31,
@@ -3121,11 +3351,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 298,
- "trimY": 253,
+ "trimX": 84,
+ "trimY": 1092,
"width": 30,
"height": 47,
"rawWidth": 30,
@@ -3147,8 +3377,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 464,
- "trimY": 253,
+ "trimX": 176,
+ "trimY": 1569,
"width": 34,
"height": 48,
"rawWidth": 34,
@@ -3167,11 +3397,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 328,
- "trimY": 253,
+ "trimX": 133,
+ "trimY": 1092,
"width": 30,
"height": 47,
"rawWidth": 30,
@@ -3193,8 +3423,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 358,
- "trimY": 253,
+ "trimX": 48,
+ "trimY": 1976,
"width": 32,
"height": 47,
"rawWidth": 32,
@@ -3216,8 +3446,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 106,
- "trimY": 301,
+ "trimX": 153,
+ "trimY": 1468,
"width": 32,
"height": 49,
"rawWidth": 32,
@@ -3239,8 +3469,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 301,
+ "trimX": 183,
+ "trimY": 944,
"width": 31,
"height": 48,
"rawWidth": 31,
@@ -3262,8 +3492,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 31,
- "trimY": 301,
+ "trimX": 168,
+ "trimY": 1036,
"width": 32,
"height": 48,
"rawWidth": 32,
@@ -3285,8 +3515,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 68,
- "trimY": 0,
+ "trimX": 187,
+ "trimY": 1488,
"width": 21,
"height": 24,
"rawWidth": 21,
@@ -3308,8 +3538,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 0,
+ "trimX": 157,
+ "trimY": 2001,
"width": 22,
"height": 18,
"rawWidth": 22,
@@ -3331,8 +3561,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 200,
- "trimY": 411,
+ "trimX": 58,
+ "trimY": 1240,
"width": 45,
"height": 57,
"rawWidth": 45,
@@ -3354,8 +3584,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 268,
- "trimY": 469,
+ "trimX": 105,
+ "trimY": 1240,
"width": 30,
"height": 59,
"rawWidth": 30,
@@ -3377,8 +3607,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 44,
- "trimY": 469,
+ "trimX": 59,
+ "trimY": 1299,
"width": 43,
"height": 58,
"rawWidth": 43,
@@ -3400,8 +3630,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 87,
- "trimY": 469,
+ "trimX": 52,
+ "trimY": 1516,
"width": 40,
"height": 58,
"rawWidth": 40,
@@ -3423,8 +3653,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 245,
- "trimY": 411,
+ "trimX": 205,
+ "trimY": 553,
"width": 48,
"height": 57,
"rawWidth": 48,
@@ -3446,8 +3676,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 293,
- "trimY": 411,
+ "trimX": 213,
+ "trimY": 433,
"width": 42,
"height": 57,
"rawWidth": 42,
@@ -3466,11 +3696,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 84,
- "trimY": 355,
+ "trimX": 199,
+ "trimY": 742,
"width": 45,
"height": 56,
"rawWidth": 45,
@@ -3492,8 +3722,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 129,
- "trimY": 355,
+ "trimX": 214,
+ "trimY": 273,
"width": 41,
"height": 56,
"rawWidth": 41,
@@ -3515,8 +3745,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 170,
- "trimY": 355,
+ "trimX": 59,
+ "trimY": 1359,
"width": 45,
"height": 56,
"rawWidth": 45,
@@ -3538,8 +3768,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 215,
- "trimY": 355,
+ "trimX": 104,
+ "trimY": 1301,
"width": 42,
"height": 56,
"rawWidth": 42,
@@ -3561,8 +3791,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 390,
- "trimY": 253,
+ "trimX": 214,
+ "trimY": 331,
"width": 41,
"height": 47,
"rawWidth": 41,
@@ -3581,13 +3811,13 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
- "offsetY": 0,
- "trimX": 417,
- "trimY": 469,
+ "offsetY": 1,
+ "trimX": 146,
+ "trimY": 736,
"width": 47,
- "height": 63,
+ "height": 51,
"rawWidth": 47,
"rawHeight": 63,
"borderTop": 0,
@@ -3607,9 +3837,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 376,
- "trimY": 532,
- "width": 47,
+ "trimX": 117,
+ "trimY": 808,
+ "width": 45,
"height": 63,
"rawWidth": 47,
"rawHeight": 63,
@@ -3630,10 +3860,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 532,
- "width": 47,
- "height": 63,
+ "trimX": 164,
+ "trimY": 1180,
+ "width": 25,
+ "height": 53,
"rawWidth": 47,
"rawHeight": 63,
"borderTop": 0,
@@ -3653,10 +3883,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 423,
- "trimY": 532,
- "width": 47,
- "height": 63,
+ "trimX": 205,
+ "trimY": 1990,
+ "width": 21,
+ "height": 25,
"rawWidth": 47,
"rawHeight": 63,
"borderTop": 0,
@@ -3675,11 +3905,11 @@
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
- "offsetY": 0,
- "trimX": 47,
- "trimY": 532,
+ "offsetY": 1,
+ "trimX": 58,
+ "trimY": 1417,
"width": 47,
- "height": 63,
+ "height": 53,
"rawWidth": 47,
"rawHeight": 63,
"borderTop": 0,
@@ -3699,8 +3929,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 94,
- "trimY": 532,
+ "trimX": 151,
+ "trimY": 611,
"width": 47,
"height": 63,
"rawWidth": 47,
@@ -3722,8 +3952,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 141,
- "trimY": 532,
+ "trimX": 200,
+ "trimY": 612,
"width": 47,
"height": 63,
"rawWidth": 47,
@@ -3743,11 +3973,11 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
- "offsetX": 0,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 188,
- "trimY": 532,
- "width": 47,
+ "trimX": 88,
+ "trimY": 874,
+ "width": 45,
"height": 63,
"rawWidth": 47,
"rawHeight": 63,
@@ -3768,8 +3998,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 235,
- "trimY": 532,
+ "trimX": 200,
+ "trimY": 677,
"width": 47,
"height": 63,
"rawWidth": 47,
@@ -3789,12 +4019,12 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
- "offsetX": 0,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 282,
- "trimY": 532,
- "width": 47,
- "height": 63,
+ "trimX": 135,
+ "trimY": 873,
+ "width": 45,
+ "height": 61,
"rawWidth": 47,
"rawHeight": 63,
"borderTop": 0,
@@ -3814,8 +4044,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 329,
- "trimY": 532,
+ "trimX": 88,
+ "trimY": 939,
"width": 47,
"height": 63,
"rawWidth": 47,
@@ -3834,13 +4064,13 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 280,
- "trimY": 207,
+ "trimX": 131,
+ "trimY": 1810,
"width": 40,
- "height": 46,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -3858,12 +4088,12 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
- "offsetX": 0,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 320,
- "trimY": 207,
- "width": 40,
- "height": 46,
+ "trimX": 190,
+ "trimY": 1283,
+ "width": 26,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -3883,10 +4113,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 360,
- "trimY": 207,
- "width": 40,
- "height": 46,
+ "trimX": 69,
+ "trimY": 1868,
+ "width": 38,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -3906,10 +4136,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 400,
- "trimY": 207,
- "width": 40,
- "height": 46,
+ "trimX": 221,
+ "trimY": 1168,
+ "width": 34,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -3929,8 +4159,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 440,
- "trimY": 207,
+ "trimX": 179,
+ "trimY": 1235,
"width": 40,
"height": 46,
"rawWidth": 40,
@@ -3950,12 +4180,12 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
- "offsetX": 0,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 0,
- "trimY": 253,
- "width": 40,
- "height": 46,
+ "trimX": 82,
+ "trimY": 1974,
+ "width": 38,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -3975,9 +4205,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 40,
- "trimY": 253,
- "width": 40,
+ "trimX": 217,
+ "trimY": 1374,
+ "width": 38,
"height": 46,
"rawWidth": 40,
"rawHeight": 46,
@@ -3998,10 +4228,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 80,
- "trimY": 253,
+ "trimX": 177,
+ "trimY": 1810,
"width": 40,
- "height": 46,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -4021,8 +4251,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 120,
- "trimY": 253,
+ "trimX": 203,
+ "trimY": 1514,
"width": 40,
"height": 46,
"rawWidth": 40,
@@ -4044,8 +4274,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 160,
- "trimY": 253,
+ "trimX": 213,
+ "trimY": 1610,
"width": 40,
"height": 46,
"rawWidth": 40,
@@ -4064,13 +4294,13 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
+ "rotated": true,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 200,
- "trimY": 253,
- "width": 40,
- "height": 46,
+ "trimX": 82,
+ "trimY": 2020,
+ "width": 16,
+ "height": 32,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -4090,8 +4320,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 257,
- "trimY": 355,
+ "trimX": 106,
+ "trimY": 1359,
"width": 40,
"height": 56,
"rawWidth": 40,
@@ -4113,9 +4343,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 297,
- "trimY": 355,
- "width": 40,
+ "trimX": 138,
+ "trimY": 1519,
+ "width": 28,
"height": 56,
"rawWidth": 40,
"rawHeight": 56,
@@ -4136,10 +4366,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 160,
- "trimY": 411,
- "width": 40,
- "height": 56,
+ "trimX": 237,
+ "trimY": 1118,
+ "width": 18,
+ "height": 48,
"rawWidth": 40,
"rawHeight": 56,
"borderTop": 0,
@@ -4159,9 +4389,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 337,
- "trimY": 355,
- "width": 40,
+ "trimX": 54,
+ "trimY": 1576,
+ "width": 38,
"height": 56,
"rawWidth": 40,
"rawHeight": 56,
@@ -4182,9 +4412,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 377,
- "trimY": 355,
- "width": 40,
+ "trimX": 138,
+ "trimY": 1577,
+ "width": 36,
"height": 56,
"rawWidth": 40,
"rawHeight": 56,
@@ -4205,8 +4435,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 417,
- "trimY": 355,
+ "trimX": 107,
+ "trimY": 1417,
"width": 40,
"height": 56,
"rawWidth": 40,
@@ -4228,9 +4458,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 457,
- "trimY": 355,
- "width": 40,
+ "trimX": 54,
+ "trimY": 1634,
+ "width": 38,
"height": 56,
"rawWidth": 40,
"rawHeight": 56,
@@ -4251,9 +4481,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 411,
- "width": 40,
+ "trimX": 110,
+ "trimY": 1124,
+ "width": 38,
"height": 56,
"rawWidth": 40,
"rawHeight": 56,
@@ -4274,8 +4504,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 40,
- "trimY": 411,
+ "trimX": 122,
+ "trimY": 1182,
"width": 40,
"height": 56,
"rawWidth": 40,
@@ -4297,8 +4527,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 80,
- "trimY": 411,
+ "trimX": 137,
+ "trimY": 1240,
"width": 40,
"height": 56,
"rawWidth": 40,
@@ -4320,8 +4550,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 120,
- "trimY": 411,
+ "trimX": 148,
+ "trimY": 1298,
"width": 40,
"height": 56,
"rawWidth": 40,
@@ -4343,8 +4573,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 96,
- "trimY": 661,
+ "trimX": 1,
+ "trimY": 1,
"width": 156,
"height": 89,
"rawWidth": 156,
@@ -4366,8 +4596,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 46,
- "trimY": 0,
+ "trimX": 205,
+ "trimY": 2017,
"width": 22,
"height": 22,
"rawWidth": 22,
diff --git a/assets/res/font/font.png b/assets/res/font/font.png
index eb741805d77e5724abc8cbf700913521ad68ccb0..58a2ca7636340ef0f8e62e14b7fa6c159e579b2d 100644
GIT binary patch
literal 96269
zcmXt9cT^M2*PcxR2|e@
{$6NJ!FK|m>@lpsZXsR9Z}3m{EEic~>BMLKxof`l^=a0w(
z6#Tr}Y~JHIuMqb%jWhwMOr$!oCj$TuObpF*E5l8)on@Jsn0g6s4yHftE`NUQAe)&S
zv@}id#q!{!$bQwPzOlZ@#Kg4mqjd5|t*<8khoVFuQI>RL;e03A`V9Ybl%k^I`ThK|
zxj=!vz#4C@V10qwTAb>IG5?>o++hEExwj;@e^tH=w$~D8KF6LN7gZhwS+NXL!E;lbW0hq1RHb-dm?w;;y@z_M%P*b|-eaYGI^MsfA4>afptMW)c
zbGwVuUI#jn#!LF&T9X!g;_h7d_MV3{)9^7&Fv3vjk|=tx^
z#s9`WFZLHqbyq)jy;)@|-|{ln#`H3&*-C_7OPqzYl6vm9q$MsN4Ia{Y`TOK#w2HLy^W4qS%rWOadG2iIUa>v(
z<=hW-1}re=KhMMW#`T-H^@63-lY;S+;obhzXU!W6#E?IP^2znSwb#W7BlCy9M|>o5
z2|vG4{FpLr*-ZVA%ND+t_N=+FY0no^pz+MP$6Qu<;?0#-hC)R5B2J?FlKsax@AVt<
znKr6T{Qm5yTYBU4j{`e(odvP(c+k}QtquSTxT2$J=KuR|bFiEFXqu8+q=?a3k4S8k
zMb>{zCSihq_^2z@tdD^n7q62RS9}MM>Y`C~+gL6k($3hu>EdufmJl3<`?T
z(fP7ztH6IXKW$g*e1<~@ZdfGMdBxsfSzu08Ib~KMX#l>0Plwkr0|P%ot#(~~G~};N
z?InTE_u1J-zbAhg{P}8zBCf@w>cfTdemUBESfM~l9s1wOh{o{5t&sIe>{@eOQ)Q(T
zLFD>lf>Zg~USyt1>;Sd58Si#m;JWT_u{=*3hq*~lyI{^<_k@A49eu(i&Dn~7`pRNP
z(1L_e!#fNxQ&Rk@`Q`LLQ2{oPP}fWY>M28-gZ+~31&AERO_OUpx+Za9I^)<%MmAIP
z8OdQPkeSNArEX-I8iY1ajxC*4a&m?mh6PqsUgDqjbM(>?i*Sh6l@~332*>=m6_Qr$
zx4RPY6d5EUizfg=1~+;RTWsDa?F_eG!{cIq^L+uGoSxdB-iSPWJF%}>
z!rABf`4iFx_9KB#j<|49QK#ad@yIjN$t%c!kWYZ{&h@b3x3@ro`9{R1Rs6#OW&1+ot=Is3-{H#%a$slQ}))
zzGSs&se&sNh?u7)WijGi9`~EF*-$5odtG;i!$8khnDU|@ZbJ{SvQDtg+j9j8iK1{%L;|0NUQO{{p~Aq*Ryh~Y7auEy7Sw%$om*;hx&%3w^e
zLDOSB2`1jyX2t{P;JB;njtcPj^YifK5b!5eT;~1?a}gcr`%&kqlXQrIQr%>}|qiXi^hhdULaovbhxwU6bf;)}Lk$-PU!XUia$@Lt{h_`35=DxIx
zg&vC_a~qQc(jX4|rVpe~=B*zX;A{ir_%>QD#?cjEK=~r%WYheB?2RU>H-c{JQ8|%2
z3xBd#>wO$W{G565>&|$DVoi_8I4Pmj(XbNbjX3qp_EELSCV3}csI!u{c7xp7?1W4<
z>@(PcyBhmKhj#&LdGa`2(b{~tz~tX-@zMD;~1#K1=R5hla)u%6UU2G6~%X
zRE@5IXgwT|A+;w1g{-`lloS)?8diTJ#&=VB8pGg-}gQ>3cq*XjmBGW@Js#%JCYOu-hoT4;NTAx=6GwuE}*vX}|?!+1PK^u|7X#Hxd
zk_OL4Tgb)#r6j87g(KCU1phmoH3ZG^ExW4s`S~&$t)=O?xjW;hxLi0OJha*DgaPGK
z@23T#Fw4s&_2PeCxxEqnyfT&^YWu-jjf0~`Pg@bJRIIZAm+RtOH3)E4)%`q|c_U1r
zw@h7_lZ+M~CD9jJrV*ehY~0aLwJ`J_&c_Gt+fO+y2{3`K-lY+Do&sR0zPIBSJ^Ma0
zL3xVB!`DFm5x~Rehd~n1IOxh|kvnc!pOP8??S-Ple
zPlC;R&txPti{JWLH+J8bHq06e%5FPVPAz`vsZynuNWWWaP79lxlXNfM=I}Hv+;Y*UcygK5
z>~_9)Hmm03jopNB{epdlzGt5|9y#~lYX@F7^u|tW_QG*pz(Z{_wi@#W
zYy?G}z!W9CcpTqYg#7znD#A&bS-Di>EJP8xIQ?dOVt@AGW?_Y>$IZrn
zMZ>f}bQXEbN?3Vf7|ps}DiX^1q{p~UCkhj{K8<!5``!aUPIS-lm*Z
zm?i@&a?PSoyJz-PP>4ZFN=j<7GAVb`g$>Q$Z#x3fl-N&uA(3Zx9zjViB;g-XE&a+=rgsG=?OUv
z_)%50ulRHNL82oQL4pwVgR32eCZ|)Z`U2^M$w#T&sMd{L&UbLcS?Y^|4dc&uRaR)Q
z7yZzu8oNEGb_sV+Bdhy7K$oLZwu8UEP|7la#mo9AW7
zO!@uU{T)bSo{MlfG*0`^F$Aj;3ECbQpUE<)X(SsGB7`7bd$m?tNh!UywO7H5?m$C-
z$JgxFuDMt3vFYHR#S^lLhMi8T_0Om81S1Dr4LsYOPn!%M&B30A&&pBY$6h*;j+0Kw
zxriC}!&rh0G6lY%+x#Y1?;@Omwcf&~*RXs$b?&Y{5=(1X1S-bvIS30RJbTzk7v9Jn
zkD&rf{A_V3yg+ICEQEF~d=b3V04ksfzS1jr!p$#EAc4r@Q|AKbwIxH~CBmP@u(Y8s
zyp;i%2T_ByZ9F2LS1TUD(%am9l@3f$2{+R{o)3W`U9?fhlBg=D6Tr^KH|j=KoYD2s
zl*UTuI}zC1qHPVm`br^eqN;!u!ol{+Wqsz;(4M+E4@#!O`Nd()Sf)j;}hgG?in8iauvJmrUeKQEFU!V{ndRL>`M7N)dCZ)tSjHXZ+iQG4g5Pc
zEu5o{mJ2WHnejfoynlx?u^NFHNDFGDjo*#ljEM
z?)SCYHCip~TzSIA!}7412c%MH9{
z_y>RFPo__v85WNCtZozX@s
z6=-n@=y||M4ad4$&2Cd;%T(+IZ4{hH?hwX}3cjEdvnoT2z*4(u49!SL^h%1x1xrDq
z7mc5y;XO1Ep{m{b{$MXh)Mu)n?&GzO#|z26E!%w>vR2~S-nIAyOen8R)a*
z5p4-0q5o{;L#%cj5l5bNYy^9OtQRi3zg>>KETbu&gqy7BKf%VTP+PF!8Ni1het)_3
z6*Ak-Dg|z{c_;90_WqE+Wc8xv>~KNH#0iLl1@T>u-wML!w!Si%Zn%G4?9HWpEO<4a
z=#O6j6A;~5za*D0*#fcA8ptf25^C9>t8pYi)CgIi0V35){KOh4WKx%ETYl)B-dlSr
zNcr<;e;PRvo}YeAl8%=R^)peXe)J>iD(}lI8^FRbIQZkd6K^(g=~GunYECca`D6OA
zojfb1&y-6jXCMb6r7o&HN-0bstZKkOe?Wd05Clswl(AjYweHy#+#ff1#ZWzx)ZildE$&Br0DH5}+91*a(zAsR!gfXzO=_C%N{+AChB0(kYC%bmSfJ
z81Dv&%92CT4_m}UhRFy%7Ej}FyKZn3=h7!=_?QPGUnZr)PjOIGDqQ~_Cm!a&U#b9T
z@h&VtX;4%-$EcbH8!JXR%n6X#vS6u>hxERO@OBZ)uTr2d{sPt$@BmXu@NDMZ74b~g
ziOh$Rr57q78SwfJn2_OYMO|HgVGgzoFA#8m8o$H>G=6=R4*z`Z9wT7<_qrE|fN_UY01ihcuQSWh~5V9(tcR8vC#2Eu_HRzlA$*6GXCY?pzKIrdi&u`V8D7r=N&~mR8%YO4hWB9fAkP+J4}c2-IdGd
z7eJEKz-aD#T7eOe_$UFEXTPTWi>=ZslfB>nGreU)7{b?fgsU-wD8{}Vo%TnO1NJj3
z7PXn_?s={cx20}|CTgEap!i^ajaTyha@T;{l%e_xUCXX#?ulyBKK=yO
zJNW8EB!w>QgaPGP7`SbI60E)R;U!!R@Pk`h+J18P&yRL3mr8u^-6AkZ(x0
zBDXkCBIhqt;PZ|_z4!6%s@hOqUc)r5yaX$;CRKF$DYntc%
z`X3+EtAY`W(81Uu4IScQE1HI=U8(_y4jVqh(-FHx;Dn+j^?B`jg#MVh)I@sAm)p8y
zZzXk|=m?(0XP2nzUqe_Kh?4M#O1>jgqx`q+-PWI_*Ro@sX$XNiWHBp&=bH-3>tVq;
z;JDfM{|j^Bc9VY4FnHe}=lWAhuyZoNf&*AA9%l02%nbRRBdI~umfCJY5YLgaC=96a
z7T4et6IeDxreHnlE~PvBCCXF@b-&q{)~m@0>+rMh-(bazCybuZPpZlJhuGCuZ}!w<
zQ+@&BCl6&O+f&};0f
zvqL>Xn1L5-0py@TvLLoEFzd2iL461AXDi?12wQMa(Q{66dKSfa&!|u?=C?>4)T^8kwswEj@mbhTGD
z%+8)_ajzVRR>KLviSVV7RVKz2yTMmw8a!r!^~#gJEm&w}0P~
z$$gmj*Zz+}zA1#Y!P9~e#v!l~`vulS`}|d9DTZy;OC>436ZR7xK;1)&2`4iFWh;_I
z<0`U^>KoA=jj(l=35Ge8`=dreARG8R-f4t|@Jld%FdTVp;!V)Mt#$8go&+4{2t@FN
zaexsP;D-0C`o-z2&*hxJR5DymNeI-VI=GlaM!;uA<1BIH4(kkVt0%rJ*EjYpfVBjX
zQ3w!|;@72B&@RS~ZR_`h9tqd}eFVkP;nYoN2qKTEu;>k%XlO6Obo7r#<2CFUS$WC_
z*wcE%*-k7Ac;xh;VjzF|{(c`1NT>V_4l-}y1%06_<+)*{*<+B~NfJR*KA^PDnYApohHA*SSm2`PZoQ9S#qTUlt#k8D
zND#$a5o+)u)iwrB_IH6|qJD~y|DYR`CoV~}>4hERHQf`W}r&i*U7FGCRwF7hs
z7+hIWcusaur#U3>(E&+D(CX^rj#C~mS{&d2>+jMD*H6k+gVcu>V2{@N>B;FnT;aX-
zr%}%uJv8K@-m?5nH~sLN?s)D+iLm`tmZXrFGN>2H06$1WBNDsLZWTZXe5CWzYo+Ls!ZFpQEEL!n>ow8FmT3km=ih=Gt6!QE
zk7LOUCP+JiV$Poy|pscd+s+6KONx-LDbQrs4MNb=!4K8)|v$IbK_#246iyg@PH
zyUnB5xwswW+Nu5~aj)_Erzuj(0|{=1j+R&7oXD_YctCdEwN3Kp_zrO{{o-`EOZPe$|7@cXxuC+q)Z5t!-X2m(1(B!OIHC+|zPck+aOb|LbpBsPjXXMli%%GCegpncd5V
zHc((@wa_kQE|)N;v7+=Qz1Z*1_D%@cAIuLTlIQ
zG=sy*@{bYI7v7Fj-`q7>&$#|FCrkMu*NJ5c@*JKlC~B#^YpchmN}K5{sWEr3H%c~%
zQj$B(ezE9;KSP8~vJbp`wrN;c=NZ~}Y_j+FYbq7W47;0`jS1af{r)|T3%u=;aT%H3
zMf!^`>G_W-OLwkwxw4Xd3t1MnV2Dvtx+iBylE0jFH|^*lO_t$wL*F`M!$hvwBC$N8
zgd}*pnt0t_|rStf1QW3B4KK@
zPEcx%8H?K4{N0-SO7h?=$VD{Rt&%b{!A7ld+!@b^mgu0a7@vl#}
z1;{}lRDqg5{?I1(u79T%CG7P}KCEzg`MVzY>zkr3pd8d`!Xl8-fNJ~xb(ikkMP_zY
zg=lzw9WfoRF=n3{*KLbT@VoRm&Z<+nNDc0+B^%;zU!|#@;)_%(hWRgz5)%TjNna(ue9uZi9menJ6Q^^DvQHu`@*9zP)%dWCJjecDB<
z8P-kxhn5oDgAwSjLiP;&Cb9H5wvY0eDWcTM56{yXR7ER22mY-$S4X5;k^Y^Q-+$Tj
z$7Yt35hdgxH2OWdn87_?`sU{|1}2a<3`YxpJ*9lS-9n}X;s7W#{9Pm>u3u=`bs<-=(|@B|t{
zfRze|=xoM>of16g@Ro8{{J`tmh=Th!#$d^0LE(c!z032Ni)45t8*!KPUBkAuCD3N^2*$TVqECCOuDc{;(t4gln`QucSfr_R_LI7of72x1TuqgR%JTB
z4)Q$S;wQHFo-;!uG~l;Fbi6+UF3@P}{&TrZ0;jw~F8eq#442Vp>V(GeQ8JCS^D3@E2N76XYJ>$)pk8yXwLpX=~cVXs#o
zF5ficdkmonPIeMY4EUml7IT2voY#i8^}GYf9P*us9s
zcSZ{}KIN6{d$p5)lj~ZH0BZLOnBEv?o#Es)
zh46;?@^H%Of9_KZ^>{8#7kci}|JMQ(LhJ7aXbLVyp;2%wd&btjeiEYMJ=0b1kP|6s
z0s_Yr-ybHGKtIxyWB~(40GODkF1x=`1V%(yKW*I8wgyv1W$gWZN^J+B_!(Ju`-sqB>bIKf
zvnZAK#ucZOC*1(YP$yq9G^U~5PfXw)3#`{3%;_{FBK}S5+iC25plpRuELaGX(bj9x
zL!ygGXsY@N{v3WXfX&Gt=^sppr=^SM{`Esh-f&q;&Y)Z~IOyX;#<>lCTPEMvVG>U>
z*};p$y1d<=;2W<1-iRn?hYk}F;Rohoj9?h?r^3#Yd%We<760aYFf+ZfM3XoyCjPL*
zi65{+V1o%@Oj3VMb{S&rp^U*zeNh^3U6;q7+E939;}+ME*Gj6FWcvqRKOsKjr9$Ow
zltL#*8a*KWoUU8t_|uH*SpBy%fziWb@iIhO@?p-xQ((xN4WSo%Cp*=YV~y~x_UXD#
zfB~>J+9wOpi#QQ^=%8P)+x5e;rO}r~a%hay^xX*lhmWmfP*=SNe7^S}TJ{x1TJKIa
znM_%*pHn(sj@Q2sKHQ7pY{Fy%KYS|FGricH7karv-p4^L9Y40Iu5Ec+GA~G18z;O@
zb;-QROVZO+e)Sh`2E%?KD9DHxuy|?Sf`TXL?+V>J%>|srRWL9nz{;^BB`R@eK~Zv*
zxw}>W(qZt{oN5`>=er8v^2JXj!ete8`V}Btlh;n3EP77={HqL&J-q;idk+3)FdZ~6
zvbag#VOhzc%OZ4|i+Ub=nQ#IG&bDxX4op$!3oLnTPGBrr-`W(jmq3}2D}fA*(WW#e
zExmNgV37;6ET`PsGk*gS$z$UvLCl3xh(_mwWD~{5oht)oX_Tx)56BdTubyp7e4yQm
zg6H7sTYiuPjQGLJAaYKZ-1Qw(UXk|P-?5!kV
zjP+Viw9j)xvTXZx)r-@su5?!fvt`H!&IM@Z14g}wNw$f3TYtFUMh>Qg>Mph+YUeyvc7V
zikAM58hk#*98NahY5sH>y>jE>tL(Q4d*w91N4o~hwD*h@HCZ3-6t|+=>skr4V*$Ep
z=Dk)cEJ_ApDhJY3uCP{}tz~HnM7gcyfaZhE>&&+%H_eU;;n@2^wCB64gn#tWtkI1u
zLUil=XB_Y^aeZnz`u3h~KN#8`ZZ2SxlX;Y1(s3xPdeb6kC!=*oN5mZzAK2c!1Ir8vH^6tvlGl{SAtNU$`Q+Jc}BRc3aCDmhQsx$P>s-r=*c|`
zVG|*p!wYJvw<>n7-L$*?3Hw+zXg97z63kn9eq*cQB4ei}E|QirBn)wJIg2tzr0$WC
z{*e(9njT-y^YX>*{}8ycRfS6)Oi$azHci`+w5@6q&!VO&UO|6VgO7GrrDwuPzRW5N
zN3$cY8D~MuHDV87^vy>vv);LrgJL*W#iIxW^%Lx+6LHhL=&($}f)^l|Whh4QUZycR
z=j?0Wy$L1vzVG~0Da`2L2W!!pb0rI2ZZ$^jUo_PxitzBB))Q;V^5r-7afE28kxTY9
zj9Et|COBJtJ05y*EPs2K@vVfh2jOi#FCrRcXjQeYFlvsEigQaaor4kl~!p)2423du8SBjy5|J2w$7p$u8_`*
z&*I@r>qy+@2-8oJzWmMA{PoZTspz+zRR4h($&Y$K5MiB3YY+auknq>J@>kYt42^!+eG=ytuvRyg
z|F`ut%8sKGQH8{JsS>tZ6=gSHY8=lmjr^|R2YYPFj;NRy4r>R^m>%#*h7qS_hzSHg
z>FtW1^BSEdq|*F$AXe~UfZM5bHXuMSBvwo;;+Y-~Y=s8o
zJwL^_URm8IMMV_}0FX&Y)OjhrNxBU8L-K$?YA!{@2nRt-K*iN8
z2xQu_5ZCFI!C%>pTVr!37gb9y;y<28e<#x$k8?!9trJ}fhWzn1SGNn9N7>!Fpj1}I
z2DAmje&XMraleIzc)Vw_aWrZtUJQx{Ej(JJo3^G*ERo8b{_O72UUW@6Tht%Y7VEnS
z`dU$VajJu7qpWL6VV-Th-`E66Ss|w%G3D2`h96uh{9NV#xQ#Wet8>}d(8&EZ)oQpw
z%O|WF+bh|P`~eUijW1AGA&0?KRhTN<9ZH@fS1kU>F1%*O
zh-il5VsTGN?DDp8AXfQGv|^;o^A+>StVgS2N-cxvVCZqQMd+*NUW@@tq1#Jyg&p4_
z^=!=tfw#~7eg7-=7+xZ4uBKLcG;dVRI}^oQ}d3RnG~-am}G;
zF&$Q65^UtP?W%2
zY`QkV;9NOa{)xx+=(`53&79LxB56Z)C*cqO8?>7Aq+dH)I`0Xz{ZUC8_X|PpmvBL4
zUN6!2$u9<2-)K@wXw#W%8du}qO-Hhzo$vE+Om=!rv678V&tSMo#Li1^?zTFF+jkm;
zH2hkAQ&pkZpN)f1r5)F1YZ4Nrc@qPioo%(=yivKHjgM7!{_91Q6?=Qmodu<5)m~qIH!s*g!;J)Zb
z{q3`VA&7kVhG)oV>*48oC@FjNlyEXi7h2E91Ok4^#%$hcPkIm!TbiD|naA%{_Hyy^
zYbrwBDR;z*z^0}TH8IVX@`)g*`i+>EoT)hbD_Az1_dfKH3v*gbKh?@T_HkWS;FQG9
z=VdrUzGC!h!-oS@O(M+vs6*5L
z=^av60Q7FKvu$nN&5tSDp$3QPmxCp51s7-(Tqb6P-Vle^KifrC{?#Zk%I`|0ErDVj
z88=?$XB@Hufgs(Lb^VU~V8cMs#=~!8o}y}m@-Qgr`n&aa%>?h8`X4y(F^W*^&HhF5
zzD*dWkj|PXbBA2hG_X&_c+YX+?E$lwAsIM4Pkx`D&1hdC0G(P2l#LnHDLH1v&dksN
zD+a{hdUS=Q!n-#P@WLeueK-5%RC8
zHugg4@axBqIvm^te36)0BkUY`34w+1=yJuhx#sT8`#~Dim^J}wQO{k|v*+*M^PX+c
z1duFY7!0`kDjzWEHBz`t-~tLiQyt;cO-O7BbdA$@httK{|9n95pxbd3r@`Al7>n)F
zfBFvb+Wt=}Lb0Tm@DL!z5aiKFz4nH-PloGGy`cDPd910Q=e0TxzA|9;!xXHcsfh{?
z-B(G>hG3+7WhERU)>6dN#;tFaz(sCuYLyAD4-Ok8>
z^tyr*0AHleCE(^qn@F9=JrliPV-OweQSo#l;>q2qJwqcOdDflqz7Y%(?c53L6IeqM
z$M#!EtqPziha0?IFv9s}n#9vXeZlcEO;!t)A#fF?UTE23?iSkk?-5{np%exUgb~Zy
zupTnx6y^7O=!$u=vm@!U`h5cd-XOo74tRx2i|^(g-1|jAejYpbC6qkv>$=nxUay(|
zigg37G%CU43YH?Q4E6SX>F^nbig;deo_uD4-h12IROh{e1K6MZHFePnv@;
zY$uglQ-juZrr#BNi!+i}(}t+DKw0lwG&7iH(wZRv30XT8)ir6K#Xzp-b7dYC6kW#`
z=OQM0#2PGy^+viufeg5z0&=IGJ_Do1}mI!a
z(ues)ph5aN77YIfHa@&Y0XB-W?+WIonU2~TH%1VNZF8@14cM^5pEK}JP_nfvd0S(f
zVBW@k2)~jy106*3nVasY`k(V0L^}wLza@bJ;{!tHiT=pipLg46yn!`1wAHRIw;j_P
zxd(#aBRVA49zQASxv=%-N3)%Mq*Bp1Ud|OjmW%_bY3$uP9}QK+0@)*dBB%k|dWSMb
zvKv~AJ)*{wc3W|GI)`L`wBhfPM94RcHBM$M!=WStw#i?%|6*bSj^`&ZCu;BdJx+G)
zTjr3MM&4dtk&s>EX*zV%Pt1Hz
zC*AeVjYUI12K`zCo6o5e4)FhtacmoFYlj#oK7BLF%&o1h?ZxOqNs0fKw+dytN(&}S
zBG&kHvsm71)bp2GKZSD;64;lPwZq6^kZ1|i3~4{r&38w$all08`|48Dqu!x*v$?X~
zpZ3kDQINc>*eQ04KjI%_uU=AE6HMeq?IZ(yRh1-;#8UWK#R_e;x>~4IV`&7
zlvY;F-o81&gCe+#^;Y|6?mLD=&!=+k^P736y}Gxgpo5XOwIdzD1ZL=0*aA6ePE%07%4*U~i4ENomHtTT`_P0QjbRcBh_uS}eP84-&NdWK1~1{7ESnU_3y^6BOVG
zPhuT`%%s}snuO@NKqM}}*FZ&jkfB|w?@x9>sl-IbRF8;baKEW5I>8R_h^qp5&
zO;>Dfq#|J@l)e;rIph0;-rgDF-$3J|FqHe;OMn0yyTQT*;*>Zy6i5L|8(cg!rT9qe
z`sphlqldpf)+D^b(%mG@exBUu$CoCSd;Z!|V257%5}bd%myBY@sq(DXRTfr!z@=F-
za#q@CWcNKZcocY)r*iF_JxF*nnRDhsm(TniF|_FFb#=DL;?zEGiH;=VPa6H+230uM
zB3(GWY}Y2t$)?ht6gp;>0_nII=2!8FQB4~uSTAiJmmD{J%PUpa9K{>tBg#Gb6gO0>
z>3#E`1st5z2~I#@w7+xix}=;ypt(Lg5czMkT#9LSa!vkTQx0;1IjjJwah#V#b&>dr
z-iK}oQR@}}2CgpgEgeW-l;2c1u)Vo@O8$W3SnxdgB-Jfe!)vzjG_f&wr98;{Hz-C?TYmrfQ!Fc4vk(2nfU@b29ObvGV7Ri|;CpA9HKhC&31av0Fu25Y$
z%RRi+(bT_oo%FpmragSYc{-Wi!nx6gB)2^;+N=KdIBFJwZ=m1*a-&N{_f{@o)pfo-
z?zr2wdrQ~+(&+
z1nHD*l3A8^uEKoVkBXe5wHU-Q3mE8*o6jchHv(q`tpYtI>O5XGab5C(<&OsMtcX(-
zB@a$?PGibGYb$lNI=;m3rXThOfA_bqh7COl^DS>NBgZR*wsAj@crw@RC{9~PCX_<+
zIaTL%QD5%^j^-J)A#Y_-IWyY8QT(kz#d~q;
zqJ{gp*S{?yBYSSq;D;zKn5paQk?Y%=qRb<)RxX~SGacNThXpJ6qvqhisSL7Yml!4n
zPQ~K2xY}N2{o<^$J7r-T$`{b0>ufVG`OF_K$;T;w>lR#ucBT7%&zashZ1*Bn_+YP^
z|3&T_iJIQFy$A4qQ697P>uo8-Kl|p?9P1906lY%!L;+r`&4-*W^QUdiXBF*62??)8
zVJWE%r06Zgkw1bT!Y(6?<>`u%*cj@88?#sWEoMe}GdrAebs)o$E`BoXAEXLhrsAYh
zkBW9j$Kb#5OuoaIW_2@j1E}aX%L*<+cUoK#i){_PZd!!_&rcB3bm7qvKE@qIBHqo`R}PX0^2
z4Hho3lAF-R#A>Sg@yCJ>28jZYNjc7pAqS9S(#b&CJIOmx#x(MY<{w*?idQj)W_%1}
zGUi!kP=2e0q0cx*{VAM>SS)UDKndoh4kf(BdL>go+26@roKE}=aI)yDKFlscMT|~(
z?KfO`iTV(}Twd2zUsSC!8Q^R0&)KE4!wHyE=lq3+(&7FZJzWb?(Z{A`
z8j9-AzMnSR$WZZop@k9!nxae$@{7w~4hCtKIF{)1!7`$0@#ManF&6*_o#>(FIMLCC
zZ~IZCZQQLq*4^-!x|oXPE)aM9n9Q?)`fFTggtDe2*gZGW587Iq|A0X+Sq()mA6mo3Aqgcp7T}em#~dTGlEb=_3;%_?XGc|ZxgaTw
z@BEk$p;Jtp@j5t2$W1Jzv1KJ7xGM0atg*MjfODCdUMHpd$0gdq<
zIhInM!*GuwwpR!%ph{I;>y1Gc|Gl?)V7^a^xP+@mdxLx~-WH|eg%C4Y(-*SO0b%83
z58rq>`nl$=5Xw?Io4uqKj{e0S@hyy@xRVZpy|w-7kll@J8OOGm3t|s#>n`!tDUi!7
z>A8gS#fv8`ER2K&o4tfW9@w@ubcb4#o=7!RjL2}
z3!;EAjC1l2zk6DWu2aW8&+amw>a6};T3R|;MDpLH5r7<8Hld^a=5c{@w7p^wCAYut
z8=dGJ2!fJcABK`CF_>?`>=De*x^2#A2eKpoh~;wIQ1ZR*KjV#uOr`0F24EMt|1OMQ
z8JC-x(ZD`$(cjxVJN}P)acF4hkZqc0a%f7PfSWJtoVmrY?=hGrH@+9xxV1F~0S0`@
zL&u(%P5PM*^56E}Ig_8bO&rg2Rz5c3
zw8jT)oWFh*L$$|YFD!V?OXB`gL>z
z@VXE9;Mq%6wpX2!;m>=PHO6_f64(QFU55~1CN>7HxKrF6{g0Gi8L^muYE4cDHSW|P
z*$|Se^pS!ko@2Ycb92ov-Gr`hXQ^=@K@}g3O2_vD
z*=k~nvX#QJ3n
zk}v41i1>RQ3EgR4>d`v*-3I!ytjSkG9Vp9-Z|Gu^f=opm2@nP`>_NoKB7kW=~8)3IsJ*IteLaTZk^HD#Eqq<1goULuH=`?H-gk7*kul{U$(v;P
zhA${&3>CImBl$iU^PJ;Fio+R?&9`ioYX!^;ES#@3x@FOMoKaP63P646pS38jJC}R+
zact0}VmN7ttekD$hbJisPJL>x#TVJM=!c|?0$QJz`uVP_1ZOrU-o1#naz<^P>lAO0
zRF+xx-eVlj>uNxl1)1J{Mj@!`gwhT8*66M1kj6du+|ogKK(HqCFV4em$wyybAAT$f
zyBX%cDyTVdCxxF7tgo%Dt%gbzMiTV8hOvJVx5TWE`HkJ~Jbka$oyDOVtC(CO78I^r
z=PnzgiS6yc1eW{ilg=2vyezN1`mg0QGL2h8qd^qs{r&b+@;69HF%(ixj{q6zF6%du
z2fx$GMTbkPsw^)Ql;OcH2^By1tyNWZA&Z1Rw>&VR&BsP=kbXdvC%+zaA!Z_xB2PB{
zL5r;1$m}-F%E`Xqf69SKR5pH9LuKKdoQWChHYr1w(mw`XQxkoB{|Wxs7v6~4PLZ+l)B_GVT3!CeJ^cz_c$eUsg4x0)mbHsgtCniXhu65u^9soTghS)5)_}Xs0Ue7_H#r;
zAE>>S@M?DYE1106Jwmh6A$D*Ahb{<8kq$WO&Eo(28o#FTD(z?}UgNzObGwi^5o&em
zcacy^)!-EWJcO0?7w>Sdsx?`GxjfSRLr)~;gOwK_7{iHkqPGufE|<x?jkoWSg1f@2DCH8h%s19r!dJGE!j(&iu{WtNUlh`Tp`R^Ns;Z9e!Z5C?i=}?u(
zA992rQh!)R8%zNKn)ReNxr%V!e>w*R9-IuBHLNwtr&@v;h^djm}5>#?yl#pueLln+CN~~FIqV(fBRv&;!qa1-fo;vC#^MTHf8x=MR
zgalf4SG2VFD=xI@DZ~i>Vhw%vuEW*%6C-^vknocO0k1vdjC!eJ%=!~kx$sHS&-hM+
zkH*SF87aO+z|idk^vj3>|JKicsi0xAEq3=G%p&UJS(rkC
zSP(08@W$9KnsicN6>AzHnQ19f!dlgRZ_KcasF>uBu#I)pjoTTR5
zUW2NNgdB_HC?P9f%Rb25oIc68AIogfC8>!Q<-lKv1Ag|LZfZgk)VR4XO~>yML*a$@
z7$X()dRQs2!N-$l3{s=CrJjX5_i56s{NX-^D5UXi$~}
zP-*|oARbD~2L~|zgmUR*%brN9-Dji+M}iyV@B+Hlvj;cHWk8CvY3MN}zhXb%dj+;B
zE@5gpVyGlhcALO>sWKK?Ult4T?0NXKW0Qi3(}VAB&{HYgY>GXy8S6qQ#`^@%zM|X_
z+Z}$w&%DpcQUHV{f6Xo<+zkXaKLd-eQ4Wtx4Ndp*TycvZ>8!|&GsC-?Q1(JE`c10`
za7?Ggc+0tT{P-s8h*2-c_iAFFFhnB*BT7HxZ!xHQ7?|aE%Cf
zBdJz}1tiEM9y}7A>Q=-B0Lv`Wb%W<7kXsi$nFSa)pGM2=Ite
zS;Zas0MSPR6~S%COAQ!Xlr$2wyE_di1*NYz0O;Ldm@9qZu`QHPy2%Kkv-Yp^U=
zVmZ#itKX^WsHT?vX-44_95iw8RqJ~0>U
zk_yFFbOqVU!<^j3BvU#Bn;+P>NZmLNE;9vjA;_q~Y~cRdBj7QlM#Oc)r+X-Y<`nbJ
zj|2#7?EiuxLnHk(>j)$;n-1-}Cxzb!@d-h0@x?X-y#y2QfYjii0a`M?ZxR=El&P@%
z8GiToJ5Tn)@^Pp8!{po>Twzqj2JNdiD=~*IlqsZgue(|vHh;q
zS47ecj3%3Jj|fns@Ff0cSle;;JD6Wu$XKOE-76#n!jG_^U)j7))b)34A*6!DHD5@E
z*o&rb0_QSs9=?7foW&s+yzTyA78Y_qU3kn>zpapseyqOHZ{&eXyI)#_i%X7+
zduAcGp|LarP<}@+Jxxu?{gr4O;+UD%tlxS+Laq>pIANXpLD%oazX6{e&DkheE>2;T{R{p-B??(&wc83-aZE;$ip)Ijhv^db7}
zxTXJZ`E6QVvfQ$*2|6k&&K*pDvVSZwl%aG81~1>=*hOk6_DJXIL4lvxmC(DKK37d&57Txh%9j89`f|eMxC4zX_7P?<{Ld_*|E11q5g*GmDI>~Y?%~PM4G$@9
zefBzyyxr9jt%%jMhAj~??WF~7HhU2yED8;Z1?I!qx56wuN}jVN8a@mX)`+oxTX_u_
z?J7J+^A;F4I?*6G&H#fPP(@2ue8W~SKciK+r2|Uknk0CCN#ghkWx_XO!7F;?8
z@9&6it#ML3K!VxRG?28}rn2MVGR@dIUV*Z4UFy?^7HOFbpyu`CCm9qD2-y-D>Tut0
z;a;T%$y$9`g}dL3!rY#SSH||*VFP>U@zQD;)N;4k#KF+`t(#U76sX0t-9LsN9&5uu
zNjOm`sG(9O`YpoSn~i{?2=(p*a!C>(C8GD1LY8!|_CTGlEyB>lt6E2;ftwZ;Pl$?>
zY74z80cg`s=Fx&=SDNBQlq@*_m@*|T&M#vGpm9!0)igSi2hiBTK~HtC6*Z_i_(p`)
z=A8`(9m!X8q9}VNI)(WtfyCjci1n+O+nU!+)F^k~y@2ZfsD^*wYT00;MH%1?
zb5(?IZAzXKAj_U-XpFRDQwMC(ryE9d*Fr7YzG%qqkGQi<@XKdUIHm;ETbZ+H
z!{b_;nCFFm>9K1V8*3ABFi@|A;w*0V+gUP9nX3ey51=tS!gdkZ`L+^J)}x$b)8#1Y
z!K{0OPw^s;U}mBhH0hcdUc!C~Hpb(XwnZk;0~-ToP7Tg9j~Y=xXZ&SNB63yG!^<5^
zT=+i<6D8ivW;s9S!R7fpC9ICn9=;AjA&E8$qP-elirNIXj^FsT3&`7}66Sz570@21JzMXK8(R#Q)lw6(U9Kq$WuR+!bpByEOBt(WTFJ{tEss`gs%N
zc6eFqdrub$bTACu>?bp^5yrQ24RRR$ux)B6&MD;N*D6m7|-#
zFb_*ykt;>0B%BNrDS+}sqjrHj{
zK`fLPk?%?eg1or7#G11()c@g)h
z&EBXyaF#ATnNqd^&g(;RO4db8QSdEaly$v^swp*6htvTUmdo~27-E0+oc0ZH-~7P_
zoOl0rXVml3#S%5F3^jkQnJ&ggKcGT0MBMPK&y{!4)35(hE%IQ1re52-cwqnk~1e=j|j`=k#+G~bvOEs4u;5)-={
zNwMQpTC~ZxY|6kLzK)M*-LDKc@`M=!lr1($cj))|r}@^a(2w%IT~2y`jP;#qFaFotAC+LKx~!9MUak#h^BTqq6$sQ>3C+swlWx`b$2G
zQQeO%ZJZr_fTR=KkX1f=3Tb+{b7Qjqj&I4;M)j9gtZTT+L;I>SM(Vyeh7V$2G&%^;
zu?~ND>!2X`fQ4Dlyz#A_52}rF*E5d(X?shBg8TDwoVz-y*4zAHS{2ZY&?qZ3Hf{#)
z6WA!|x05%C_G|fK-5_*te}ISxTF8&Evot0$88>#SrfDZAUqs`QAgQchfNcIU-1El-
zv_e}>kqY`RRm4F0#fvVlEf-vz7}(A}6CH_fIsa;`)E;T^#9V81TQY-pe1C6hjGDxX
z{wGvZ6M8tSk`03LzwIb0`N?7|jPXUyPtaN6#ssP}*^@f=9$e*8FAAO>l|64)9EmbX
zIDY5lE7M-tSt|$y>N~#8ey^!x;QF1ZG0ThAH;eadE9-5k4tb+hPSWzZK>2XvQW*JEf-2s;hw5iHm4Bb
zy>=|(tWUYj52|o+9tW)fCKrSdX$DF+$cx=S#Rk}a+1LFODAV%a*%jTFqzxD*y^Uf=
z)U<5w@7?#q7={1*7d-6-;mt+HICymu6~_>1i->sb>?#MRGBmCJ=+8L+`4SI!ziiWr
z+exKSa2&L2{PaNgmebR0{*<~@W)g?+-IL*H>)@H+vxB<%-be8WO0e_vgBNQziiY^@
zYg;1308tydyJBg^SNU*q^3w^8{=haE+sD9K>bbWxm6UxZ^ji-@ty(^*ohQ
zX2Rsh-yGuLN0mtj%_@1LH{8Pu65}FLdO^fvH$Y?*si8sY6Z>eM&K2l+OKZ_2`yP-?
z4njn)pYSHdw6@*v_>CEAkg&`pm(}4N)u_Nn?C+^c_!IZJq|HE)N|&tRis4GR5<0|s
zpXF^dX&6r#{1C9S?k$!~z{3pi0CCIxI(u%+T^av9+rN*)v0Hv*t!T88EH{lw13x0LY$AXg6}Oeh5O(tW(1J$+bW98!aCP(ES8hpm}~{@C!P9}k+<
z{6t{bhOYtCe781HQ5Zsh@z;3%5UiY5Gn%`)(Gqru%q~KNNfmE156w8o34RVTudBF=
zEg3%w^s$?|?lQQUSvy+LS=n4p_9BwL0>Tbv6-AyD~{`k
za+&bprO~P#d?n#h2r%9hz`dDGEoI>Y^;ziH&Rpcr8%R;MK_1SHs_mVfMsD>n?RI5|
zRgiuu2KjBZUv_?`PRtqZ^uF`H;
z<@Y)E5>TLdMddn4ruW5<)?QsBf%UMT-OPVI6uGB&7O_7PEohjIT-lM2{BH96^~7+C
z3205$PmWYUz&o0gtfc~2!EvcBrO}~iufWo07#y}s^Dszy<~wd50d|Z_jCnyj&f^J%
zjp=zdpLk8K
z6y&u3VUQ8zB7&v>^dXydp_5O_*1^n@7WXQNqtb4-NvllxsrpBs0I}4F5&i^6{65@`
z!o6=2n_H(k%}{p^S|ULFJoNM;>o}TgRAj*G)C<;qRud?T@2Aj@2e|&DbKPrC&8=63
zfjN91mCGy3=med-_*}(mcZDa(%nwda@3%Hlzz`o-Vt_ke3U=_#=5hPT(+>yP-(^SR
zGu@k#0&kyIbZ+fp;G|0T%t@vt$>d1!AMX>LURg3uZ$7-qt4TEX%Z>49jeQACaMC;wEB$FpYQ>)V{_sM`M)n2
z752`>Z@`S{nTn-I{H2%mb=r%a>`m9n3X-BC&w?481`Xa%+dlj;Ws+YzTrbaLHb|H^
zW%Z!OGWU{`G9J-5)#|<+a7eZa-%q;Le*e$bfn)jetDL*DLxap`T}#
zxhFP!`E}NTN{${XLXooPN~uC^ykyJ%{Evwrc%f-y^~EbTsG03M76NSt-BmB$bCso3
zpK{aWaV!;IRax4^v>$3t*w5MQ+KfT(hTlwMn8&YN$7ZU0>%<|?U}$|=d*()w@H(v=
zeMNbJ_C&8ZQGM=wdi~h3&E2qzO{k=hCVEV2AQA(ez#I85@ZQ)~|I>acoMPfl#|&7+
zomOWkK1xQ8peJud0kLUavt|@|%&tA?s8;*o?%52!7&nHxypo#PY5o(5lxn{AM7a@2
z3abM7{sj(16$-2+UeKcN!8qlV|;_C(;u#vXi@_`5(^Dnd(z~8e~3^M
zkx9IZ_M}3zm7=<@j9o6~f!-1$`~*G?uLB4i6Ye3rO=VGuZIF(|6PM7&mR#jwp=4m5
z%}6tIf6ch>H;8G`Nhl+L3cd%{X$^g0M6MJM-*)yhC~1)09r}m+-V3}mQ;78D#&UdN
z7iFYhQ*z7x{Sbg*Uj7OI3H#AQGpuCI6a(ev4S$c_&*#y`xe>j
zz50IP+L1U#4tqBW|H7iEZsEcrKRh&eJO98_t#EqzKcYkA?diKSaasKRpA{RBd_44m
zg_;t~mXB8jmX^Est4)!4E99xJ%%U1XFo~FZHA6x@ZSBFcYZy!7`|ZNLQi)?e4Nob=
zrqBV;Iq3jB>W->t
z9G~Van~0r6KG3xc!?x=Ct^wZVN{}
zhf1BkH*C5}BvVn(Bm$Y@dX8A?R%>{kZ|}XQ^I%{)h23>Pe6(Y5tpm|lzyjzp5=e6T
zrM6Gq%=77cS$YunAtKO(W$zvXw-|7+nJ6+QAOLDvCcAY&l>>BU;gg`UZmI~ZJ`Fn-
z*ndeD#sb=mk%Sy{mG3@$Yj1lo$0J(+cwRjM9fC2Dg4l)uFH#wp!8m_FQsmXHsIMcZ
zWH13leQ9Pfs2jrLp^55i7b_hp_XvxK;Jkx~b`&zZSe1&oV)g4zZ#=+4B+00}fn(=4
z{?rIrJdUnddML2bkbTD&FBxQQZ2QJ+JQX2HlfAfG+8wn3ijfZw&N6yC`aeef`y4
zSm@G(+HM!m7n&I`;)9x*v&NVRew6C!74`w~(UIK%Ci`~CfrS$OjUNzIwbPDE9Pcr!~fDkPBE9HPyk84OVN~5h11VNbSjvyU+~s
zNDxZ&`r?0HKFY829u<2YA(-`n0(n28X)
z?!tOPrb!v_ZGRv}2ut9*@Au|_JuX@R-~2^Eg9%!
zz`k
zfYBQQcHsLZpLBvhG%_&J|MD;Wx|dexp;WrTcgC;Ue$M+#Ow4kRgf{Ox6bSzA5xXk)
z^GK$sAfB4?lv_S+DTk7y&UKY#7
zr|KDiB6Ao>JF~wl#3YKny%7hPZ-*RWns?MTVlpj6J%evz@kAXASzm~dnet9JB0A!w
zJ333T{aDo^*4Q`hwIaG`0Fs|5<
zgw3XwW{I#sWCW1ybT~0(i0pD$HLaAqhr7i21c{ZDCpt=)ExpUI3B1y3Z!AvIO1g`G
zU#LRRY1_=d%Px8tGF$`ZXGng^d?Umo+CLcCi*G-5*>@%K)X(@jqIU`e7QB9G*8Ny$
z81#6+@tZUmCzKD*pE=+(#xSw=UNe@%47A4LL=)cMarhlu2bZH_hqNkLjoXk1H^P~s
zO(Y1*l2KjyUe^vVshJXQ%YEAVa}=L1p{R(Vf>Kv}Q^cOq_~&?RVE_9gXW%z)8dOhC
zJwgsP{ftF8#%j{EmGRL_F8p@Tp)KyoIySuba%^B3X%Bu1e!vrC_%%unHB%5aOTkai
z?Jp%#k3?WY#Gzu)%HexH#)E%ym&opLi@Td4_y
zpQFm`0rKE+NZyv>$*XnIBPk)_ki(hqF=lD8&9u@+#hJyz+gfg}Zu1&%I{>Jw5^zy;
zqh?@}^wfQ;Ym7)S+*N)I%SVg(3YKbT=C_E5P=s1{z`%2ElIz9DN0<)0Cm?s8_U+Am
zej5AZelOgNUXA@%HUfS3Lvzy7#;z22g^(>`Et3_uNrR8}ui--43zBy$PXni`I{VEn
z7rnJcC2Q+PUxYmUp{O
z{IBW-+HoSiYoVjz+j(ZsYo6Ap@2f+_f7NrLYz}z|LRQyGH`p$}vgAf@BW$tJ8-Tj{
zNM>B(8S<^F>0|F=RhJ9a$1!kKrQnO!ds`s3L{iKlUE
z@!4AWQjZ`T)s^5{@51%@(ua+6_A@9v}I1h*pL|4>hwN-8w+AbreX
zT<)a!_*f(l1NSimOBKP&41f{$-DMVKp^u`a3L#`JUOxWDc*@$Gt);)5t*h
z3#_mh{^t~gqfZ30?YRF4ODp8yGvwfR%rbecTKS-V?55oAl+Mp0$8XH5WS9AZa1qGW
zSq2LQ#`JJjW1KQG$!M-W!uLWa61zR=|FG4xbT5qrOWir1mh)x@yuvP)Ta;LRw872SplLz%R3L6h|+;S-PjNC%kbNGS>s%61p
zT9A(c)oj%-ERxnMk^b|GC(?OWTUr+E4_DpJ%JMJ>fsl`~nRw8&5I(E+(J%;OYWwVp
zco)Td)!n`uQx==$nGlHCs;?6e<-*#hzZhQNsQ1f}{SX_*=jBq<6t!*Tqe>&Ak^zA2RXkZc7a&t|S1l7}tJDnOBZD{DQ6
zEdq3Ho3JffhSSMyMeo!blk5GEMbg)9B^r6Z8Lu|j^JT721QhchuL538WJspYlDur?
z%w4MwvhLRTqB|1dG+H(RFHgR|bgIr-FTbQ2H%(|Q3hi0pEN+HFDo!pmEyj>X=P`R%
zq^LI=n7{S%^Su{65}G_D$(+b+LfpfGu4_^LS#wLo^dZvdH_k5atniWBbSGBbE!S
zsmtb8lY2a&{#)`y$I(<&t;}YbuT4l$Ycth^exwC>T)#f4v>}>~$C}dkQ*p%+k_7le
zVHLMdn}%sDB<|v;yQ`Vp%*t4MeeKK5NnecY0J2`>b*Z3R_DL*l^e;t>X1@JQ*0!t28FGUwSI2x#hHE(~Fu|CCaZBnhnAkJdL$
z6FT0nWs;-T^DfXrEKDD4s6x!1?@P~f`cI2tvtpt9cwV4>Ci{W$#y5TQ?Oa{0AGF#e
zafyB+8?5l=;jb2z;CUgJ;cw)?Y)wdW;ecV9Zpbm@0_wpse#?prg7C77cd~D%f0lAJ
zeM*6hM+(Qopf!U~fEO@c{CRx&d5<7_q+#-q?fYss%nsIiJ
z!Tqn0WctxU_v{@F#+#UGlm{R}N$5{$0g5
zY0HgS_~(`djw@|FH8KcT+$1SJ^h^5b#ga&gVx~UoK4M9stARjJSxYj!_daaEOf+#>
z{c`J2r87F`I0k3zP{Q+X1VXa6(4a;3zud&JrEw3Qtv5)s0gNE&S`+D>0-(*>$vBoAr_HP#ad`VE11%+Es
zpyL96LH}3kbu6p?x24{hC*fKJ`>Ix}yUe$EJlFd&Ocprp1GZMOG=p&LkW&wmb63EObFkpA%9d9~VeMU+*+{d)yNQSWW+TXjH|X!`^I-^HYBQ)s
zxgl8apPg%`*ya`zu_2Z2Dc@C=-w%yW*l&Y=DTA0e&ue#o=Na}x4lTb8MowC^Ns>oM
z73fLVF9ePwb2&LjCzudC!8c4)!0FCjia?p4ld$;7lZpeU#5P_j1{Z69`pvA|F5(wN
zn;&l9wehM>eUD<9G;{#L-?S9^QDz5?ie|3_f~%ofrM~&1glP
z4G!w;F%CMQ)P~1GqWSxt=CZ}8`IKx>iM$gX@7)P4N=4A4pWSH$$R<`Ot2avjfbGRu
zVaFK1UGvY!{SXKzPUYrljm_eev9tX+no!{-R8XhDDGu%P=_Ut+A6wTo|Kn`p)zr*#6FnwG7M5my^zF
zPw93Gu755TU!JSJwO3VE=Q|N$0_GGUSPi&LS0p)%J@8@~!rv3onH@mi_wA~^WDU~H
zJcU#GZ9=Rv@_g1_ZLepBC(`?nS;wK
zjI|QetCC5Ds}?iv7K&ZXsc
zle*#WOB$h$YBb+4ksWKM`B<_rp{;w~F4EEtaLNq?eqA5G-c=+-l|pRC_}U_g?85h)
z^2PMRRha0pK2<;{7R48keuj~M-sR#+_5!J@r3o}X2J0sF^IB+NGGhXpdse==W&
zpc_#{)aA|d988~ies~SnKHU94ySB96HFEp~+0Ox=V{m&hR{^u|_F-as^OY7}jR)l#yB}>|QBv*ZT_R#9W;%3D{
z8_mTlNn!FZ?OL!fu`&XMs1xr{!Z!ko76ip6r+h7q1!W9;ry({fCt?13^F2-HM`mr8I*9TP}J}pN~+qZ
zILb0-iIoKM#Y5lr4NWhpoxGr5S|lm-D034IHajdS*&uZnrkiU=kEkliHY4Tl)f<$R
zKX!PUD(he+24~h1VP7Xk{GK7F1Mv;5&QmWVbw5cEY9Btwyt^l>`z~Ov^3%#fnwBaS
za+V2P55RC^jrC{K=Cs1=6vaQ{)1wb2OV6~Ow6imD{SB#X4b*>5`}Ye}@&T}^21^(f
zH2YWP;q&Z;B!h&7;9yZEzguhVGwbWpB&+{6iDLBYx)TFF8T>ZQ^0T=M2`I#ZF$W$#
zX``PZ*XcTEFt^g&?3+IpJ40@6u;0rWdm=B{E%mbW_sROXTBPZboTB^}>qLG~qJmN|
zso(gdqJsr9IL1H#Psf4u^!Q5MO&VkQo>(C|Osu{%VJEHhly~DS`7F@!a9qJt{kX^4
zX&$J5PKuFH$gN+7WWM)HO6E$i{ERBN#)abTUfTe%<*rh)}e>|AvX1sChj|@sXA@mHV7*luA4*-Rh;B&F2brlC|3>VE#U*y*bnbnrW0(A#9CCBM-CHBgAr)5p@01GZeUN&hy3CPe$I
zD!wVtLrKJWKgOn6=X=clfY#c5H^4~>2I%lP$=#+KVK9R3;^|gij_
zYyR>V1Q`~#eDji-5?n~*2tPP&mo;zhV?ynanp9M=@IX)s-Evf;o{d1gZdnL@d2j{p
z${eVYgcqN!sq)6FH&+)S)2!OGMaz>XciR5XL@hM-7h>_OmFL@Pzi+5%xr`ov5L%I{
zhFc`|w1;tXL!W}OLqYtPH?t*d#fdaq?^m$m$mr=6|7fs(7h+PjTiTxN2Eu8}_RL*h
zuwGR8oOg1D7WEA6XB?^%fCnfilHM>VfQF$I3L^C+qu4uxR9!EMIOJyaXy}1I1Oa!y
zhnvN?jt50zkmXvQZ5hX^NH&}7*@*VcN6$dC!1}uC-F2o(JrlkU#L34~-*9yleX)Eg
z%ESyDAo)0jPR}PTAz;Bh>j#tI?3!QHe16SBrt4k+w;$siSac6n)|
z4wxyP+O`)hR%g{gQENk(U@{IT77}Uw%moZBu7#ROp1KLpGaqdcauGTRmCC1{aC8>me-r(e5$xV7p(Pmq?3NjmTm7m6~X}(_<5f5
z2L1ZRQX{=D8X{~KNtnL_3Mq|?^wh^kwjh5H$1W*1I~KuU1Cq&(J%uIW6P}#NMFJ5JR_=Q69Q<_g;)l{gET|Mz+-Y06
zc!YUg=i{LN2r^KjTv%-rUV>@JQ_sjkVfsdn#weDY>zF*6bu*kJU#B}+o_D4hf($rb
zml>lN2@gIV)Bss1z-(~tht$z*xXDQ`Wmlavy%NL+*_5fw?q}&o7-Y
zf>(nS{ET$QwE?(4$9@oQcbo#RMcbgD7^e>`xv!(R@z6|#F|U+_L)Whv**+D@OFrKr
z$Jfvt
zmh*Ce1W`=BBpVK?-wo`ICMG;w4vMYzy=lD4>rwQmia^?bd^KW%&Vc!a{}>ay1v<2
zNg@TZn_6t2{n5QAC%x|^#*Nx-dtrV)vXlV+{+)&1dBKT{50};UAlALC9C(*ma&&3k
z3*c(HSVw|FOS;GO$v8DCg3i(Vyb-l1@B1@!NIkqoEbLB*9_hy)Z`2y`$J>u|Xjv?t
zfk%^hBp~-LvnCMersRhZAxx!s_PHYfdR%_3uj9pcQr)fM0{rqX62P6-kuNC5jffYIV2V`@^{1F$w
zztX}>wfsM2dJ%6LPYu@($eT5EW2sbGA}~XK7X~l{Zjqyztg|!4YZH>
z{9?t{LiX(Pjl!37
zUM-vj7qXG6saK_lWyOE&Y>#}Wamt_fdUtg>)g2)Wk`9zYr_X-vFIuTuDyan*k`DDj
zK*@Jj?TK_D$jROHpmlVO<8RKn@s<_U88Brz!}!W#hrN}zmgeo5O~;f*p;Ev^fk$#$
zboI{=e1VA+fM4eY7TlO0mBE#Ee26*tGF}{8#;-h2>ozk{ajq01(we59Wst3!2eKXn
z1_>%f=bp4!C^>zhq^+Wq&aR$}OLCJ&KNeH0g{L%l*r;VJ+@S|8Yg=dS!_jZ@ME}Zr
zH$blJ8;3+q1C(3*usi?3I%6|b=A=SGhEIb@xNkGhP4lPnA57T3Av1~|y=KU3uk{Fj
z_Lvfld%Q>s>#(FIZ49kWbqf=C0sYdDc$!@r4Mngkz|@Z~whYa7Z*Ql5OgaRjY(LLX
z{1g4e5(qh|LdG@Dx=BvlBQ=ooRAHpy<9U`{13@1WHN$Vd$~fF%j__V;3|uL`;V)fK
zQgW`kC`^x(zwD@Dc%F1d&=;zwzqnIn;iBIeh>2ERg;%N-CNL-m7_!v7jM9B+(%tfk
z=VIiss(5I`#tp$5&X$NrD@w)koceqEN0wLMW;f6Pb9u1e(11VZXef+j^L3=w7qJ?_
zRvRg2WXr?-)Yn3};5hB?^*Oh^pXR|$2;#|`j1a0MhT;dX5L}BGZLtqs==WSW=jmL5
zV;7m{VZicf2E&Tc;OAFlub$ip`Cr+be^}6avb2-^;v?K-GUEXrO&?u_G9$3zUc{o@
z<5<#GNM}VEhunLAN4Iek{?A*Xm|6&MeFGQ!4D1Db%8d7no)*yAS?lMBuQ1pjCTF%D
zQ7ATl5^?1xf7*S!pQ1^y7*=iItR*Yx?ji6F7usOb>38zCXPT-6G@PEm;pk?PKC1c%
z!L;E=KBQHx#f>&f^{Sb@ECU6Pj36V!Z|c(}s09K;4L1>7H52b*#zG?TGB+dkprWO`
z5BFC#k%I2}!2%u^eLrqFOYf0k3nx&OaTrY;nrypK9QBt{_ocE+0LF%;LJ8?6{DukJ
zk4dA01lN-Y(U%Xr*F&CC-pQLCuIc;~0%`q%8I0
zurK#-Z(K%-pE{Y|`Y=uwV>2tOZ(3)y0SSHJ8N?8N(pOmM4u{dp^OSrup}fO5b1$o|
z;nvLPM|jLz&$4MZjNVL4)prx2zTQ>R{5-5WJ$8Tm9V)+n8$L2$^XYc=7Z$XB9Ge>5
zm_Q8Zg1IeR!w3N%|
zAyTRA)>JF!f*V;PFy`rfO$Z!dTFXsN>%`Him*fN>iAPulazx(FB4&Qg;yHzBdYF+<
z%OElIwcP-=peGKzBL^+5vou;}T9`U+Jogy2>#8K77|rmNR@Yb+%WNRx6_tq$y7K&p
zh_afz@%VO&&A1(*h{-(quTcH*a1c4LQmkPGJ-M(leEJfexc1Bi
zWXpAMSwQi776)ugugF-7>4PZ{ecWX+mCDOA-U@ez|QgChQYkcp(9r{4(KRmT5d{2&He}#CMi-TJ|_!!~tMQK}_kB>HOeVaU@Ka+#-fO
z7_9alQY4+J5l-7Hi}@W@iHM*%9!N5U08uI}7`0g-q!10z`2*SBAjWK~H886)HMWNi
z>fujURey)%PoEKI5;D}_=uWS&N9!q01(Mt?xshZW{YTbK%i7}uMws(5fDr{VUu+OSyIK}Bx^`d-471;3@dwnXX#0LMU#2#
z*rDF6G)#!hG#F3@WvbyNtLXB|Cq!HT?2BSs;K*DzzL3+|g~(zzF20}O1DFZ7^I|fT
zUIY3uIMj#_()@6rwvXGjAoP*_RP!$a)N>4{1alP0vto+3;uRdS^1}L{mclM2oG;Dt
zZ@DRf>P{+NWfWcA2ONZaz7^vfmQ6{cCZz|F?zepbfjE_0n}qgpEcA2=$D(FQE(BibZ>PrzFDgGM1)W$BfV%GY0frISi&JoBCQq+;dp@lblL=9zG5lSy;o%@Yn4cy|W_KQl8FWXr6A{&DyI&nP1gk(|h_pyi
zODW$|_zVkrea9G2%#E&;>;7HO
z3)F{%isYRu3L?_Q(Adr&msdV6`uek2G<#G{K=0ms=v%Aq1Qj#CyW9FQ>k1B^9C&|#
zyd2!CaJb)6@Q`EM5WS60A?~wu7-&<9o@40E6RW=tk<<0(fG^N^?#JAh@`G+F&{@@*
z0YeVdJOv~BP?Mc}954fQd}*+kw9&dJkQGdb7SWr(D2wijYaKk4>CiUQ3SVxFOK0fwKfs-y$t{?J
z7R(iLfscEW^N0_TCE42&U0j*Em0|RVBs_?$E8R4v1qDL5=vYA?==F+-ESM+TeI}CF
z@%(FHR5wDhHajO_h>t!~tUrPL!nnGA)pN!V1U>AHw&qLhRn>&~zCwxdQ7(>HmQE^#R#};sHxmER?(yTtaj^{z(4y1`&bJ$6
zKjSo6-REuHK3PvzJ-8bvT~9ht6pb0U>J$rYl}9fv+pNO$$nTCrpea3bLliqUyvYI;lCBfC?>sAmg+QOgn=Iysd&C$2u?lBxmjt!n@
zekqHh+<_-DCHm8h$
zReaEINS4>f7FgXy()ORB^jb{D&)u}UN-Ziyd$!}`q@b|#n8}jSYB!x1tML^+iq|s4
z&<6JL>g@&~`b!pV6+l$eox2k(A%-DW$bQfuHdk7HpX~6fS&iBqN)b<#!hnFB5?Z&t
z+FE0=p5kg3*fkNKVIx4As#l!Z&ZQHa9{P_H!P}FuRm35IBsGpHdVhKU3DTmv#pC3g
z^?Btz2uC7_l}DN%GU&
zw?20TmJeXS`c{7JMnrl&VFnv2C@u;Lzc$}f*!`QQX&xTEWq0l~!$d)HZ
zbz0KXK;OpwlY~UqmX&puBo)=gB{z=MXyc*s+;5Kvt@=Y6JoBpU0+fF6d`Ech&tzP5?eS
z{Ii>LI%8|lD1+*M{%wVY99NCKua-!`(l|0g^X9)E0_b&tt5EB?*)?N(K-
zzRN2xt^K7ds|9gJ@Z?vWGN_9GH%fm2ol4~~{ekpAN{PeZ_1m~jvJjmOMr~f+=lPM=
zi=z+T9bGVr_J70bJQ#ul!RDFyC$X%i3*U4TUP9uMAF=uesZuGH4HMerw?@@6=2Hyr
z6p!a}OL~$KK|9|>;4@1u2TzVn#qx{Uoyn!^gh&?2Zxhvr^m*Id<#^CtF5lVVp*b
z1W;H~QM|@DO&JJKfUY%;(7n>dUgF;8eDAETOZYKnshJ*S>O|1o!J_ho{Rn0=$SFOn
z^7hZ}&4Ug^o}yA_H>I1)?Wy>PZ9j2cF!4`Jlkm4pfXFMR24qPQx
zQp?__+8i!0>{?bZ{GB*_IMFW;QFov<+L2IOW2em(9uIBXFYd?97Q19J?Ykmc2#oMN~!luGk)PhAXy9z
z&4a;yn}ptef3b#p?FH3?U24cUCkdvzxQkD?u3B^6Q$iH~@qAe@fzB{ptaa-E8`eLH
z_uqP_M+d(;O#XMD6PoJkeD3^a5~Gi{)8U!2a_XoJrR`rkX899hR>_9V=SWJeCv%)w
zlydDJ1iDT43UQjD-1j_ljG`}uB$zyPNGmWe`pu_!wchV8`j9{7GgX!9vh|HBtB!Sla#t0&JGQMYiU!ljIR5gt-A
z%CynqVHalZiC+o)$w-U9N(TbxL^z)uVkQ;D4{Qunj(z?!nlH7>x@4FMuIQYIXLGX2
z?jqIN*5II9Xa~`3ej`;@n;V_?uWLrutdz%O!OU0^YAFv>Cp3eeFcZ~r3-T2jqnba!
zg-*SB9j3er>|A@<&!oAv;v0ku8vz)xlX+_23`wS}cje(7_(-g$pEbmFom$1KXxI*p
z3auJ7f1+i_|1|4%j@8=tamy_&$*FK_T|-P+EjM&XC}`H#e_?WAH1dW-8CgCZQ}t|U
zF`G-0RwTGY3-^FYh4a;F-};*04EyVwooPs3qqp|KC0v
zlhi_irC@!v+C@*tXJ&k4B2%@4RTkHs%gOTR6}5uoE{n%uxZZ#P?S9k`owukP0fveGD5~s#v4CgmjxE
zi_PVIa>6%!6PbZ|{<+H-0;u{GnwPRn5@WZ;vZ>I3D~0>B@{$`Y!>6A25j$~(?k@cL
z5MgiilFx})4LAQ`i{+}CWWjnUGfUci5h(oWG>!}Lbxa^GnT|;|axoYEC}pa4;PV@)
zQQ^<0t8Yiow8bVlls?VkipO(uWMv{hxmM1JS;Z{<$EbvNs|=keX+p0LbkZ9sHUANP
z3DsMkU-~)q>oLJYfk4|2?n=4>5Av#wAR5DTnksnutMA0D2Z#=5rnpJ)P--(!*L6#e
zH%;1t{3YgIt~&(YGDC``y>4WZF~oID97DLA>|g=gn~+9aadc}G|9RJ7-qYU7d&ciX
zwBBGqAEjt0)o1Kv9M^fKF_d=$1>b*DEv4!)uXc(Vr&YXOocBs;82&ea%ZUJO*pzX!
zSmYkg=UM?2C@B^^@XR3KCn_tcB3rFD87kYsFPlgrH{^XLx5m5sXWoYT*2`YE_|3b&I)1sp
z`NiHYr8#JLT56hy3o}Lo%--8k;vq<=ToF?d4Eed`Ot5+Q-N(NlEWf-a&3at=`gqqr
zi+)T;r!jnzU2U}FRbnjM#s)kfnfUKHk2{@p3;@$_epXm{N0$HRnXFyxU{yG2L6U1)
zHI2y@qtNrHN(OI+1iy43DnFg7by5S02lJ3mMI9zF
zbb0`K$Qhr`$K-5e_A~&3hoWLFhM@hyTa0*8o#3yy$Gn-;U{pBmVQsxTW^&lQ+*605+nnOH>
zgre!^Ilf|~m}5SLi2_^pWg7oaS_H6_b%=v6lwp-akQ7iQHRGVgnjbw%L
z_onvTP+=L&)3nwtL^r|mplGb)R9}%i{f|RawF>=F$lk$-6v{0+G;rs*2wnpt{b`bO
z=czBg1YD$(pq?wiu)v1+BBpSs%O9!GmYPYA*sc
zse47^HNrCL2E6?RaG5<}8Kci1pt)0;hml->xBT(cZocB|a!1{h#W%(gk65HykovWJ
z+V(=QYyxm=2|*dGX)Js*wVUJ$S+@c!H(hVk3#%kt+1PiK8vZL-wCm
zL8nvj%>TpU&ZrZEpwfz5Tq%CvFg!`8Ei-4C78*1jmsC-;4R;OwqXUSFUxa)-ZK1ET
z59Grm^7bpN<(l~NFT}f+-E$O#lRP<>9Uwq={{}=EL>qry6}lX8&3B&<(ca)jX?;(B
zKe!K;D7Rm5AdV>gkF%{STZMdQepBW7$@E%JKUbo^^=lTt*Cjc_B=eYqNV)
zT0b^2hc__iDRwLl&bK=gOr~br_DbMpbCYG*DKvSeo_?sAIcJ20iIRC!V2eO`Z2Li?
z$(tYLn|##aLL0XQDY132=mUyg{0T>Q@?Nl#D%XNX+u@%saGz@Pu)O7wY8W$bH1zYx
zay=reAUwxxMUmC|Y4O-1DIH3w`^Q@{%KMtyC>{`r$&yQgA<1kC4s<{5)T$nIUG0~=
z>VRy2uZ&&$L;shLuJIGTEno}Ig8?!wRonrh73+b{u(eKuL=)YOhq(_hY@&)i90Gm8
z_3l>e_iAvz_hJHseKQSd36OV0yL=3IkQ-ou%u`vOoC>oW^!y^Oi^)yfv|J2@35Jar
z+bJDC+t1D!R*0Ir>HBifeRoT`oi9LpfC@yzivBUn+Ep{-frzh)TAX`sVTuq9PP`He
zhKDU`!nQ!WYAZ0+~htw8;GZ8y`cYZ|xXl(lM
z29j(xS0ZfyoR8YOM&W+v5lr`WM??o+EctAnNPvmzR(F{(FBQ156L(Ak4sXPV@po^w~*xYDtQO4E4daU}ZLQTa=zrfQlZH
z^b?{Nirj$1!9++YZ>bIl&BVLXro?fDBRp8lfDO5DCwRP&Qf>aBE6ZR-NVL|ht0JZ?K=5x^%=@{Jhqa_Vs`A=fVBVgv7gowZr9
zYs%ze*wA`2Ue4yU;o4JZGD)?AxCoxJQuRCP>h5oMXX%P}Pw(4-cqu%S40HV3QiIa*
z{o!+W)gybRk{_Jch^9Hxb!KpY2i$9C@&;v|#7Ja6fi%|f-kW0a2Ge=j#HdS-B+e{x
zarE(t-N!ouP~?vOVMG9oXK41JQg@vh2QbvHSBvY;)sx_mFME{EXwzEJnashk^_kVB
z6J*5^^uJ^C>51Uuq6Yide5_6`
zYj&609BE%>5P2kd-Q!LOTz0>J36)EXA06IK<)U^_E~HvsbN6JOTn@n_a^{b6rP$zQ
z!Nf5O6cvB2ERPN9G3QbD1Lyf$kX}_#6rUm%KUUMzvLDH`BLoi#lIcKVYDn=S1{{iP
zz-j754U)1cw*DAkwHEP7V3)BV&tYIe8J_cFr$bF5?}NOtaDIc&S8dwG!5SDy{o_J~
z9F~I)HbabN7B+CRN0k>bd$p}>Zoin!golBAF`w7MpvtWVi>Z9=&_f;cQ0bY?Zto8i
z#072=*2k0?r59Q+D-T?C^jwP8tsQjZ(zvn@zIBlrD<+&Mh;RY>zGZ{c>;L99o#=Rw
z5Dok(ys7~r5m$y%0l)>D#X7x*B3>&}c8q0y#zDb90H0US#p_<_42-S)(iJ>na
z8`O04Q-W!cAGR1p+UMFg(I&PsvXa~YjYvM06b}25{fp)^DLEh;IDk+MVMsyKyF|IU
z5L7}i6g4^Oq+*Ze)eBeuxj6LtKW0bdbR;~P3zJFY(JE_v(T0Px4#7NQfQ9TM3nIS4
ztMV852l1Db`BX#zCE9I}vclN(goZxqGYXnTFCR2I$Xx{L^IEBqcOJJ>`N1N!>Hf$~lq;Tkqp6#m-VvO4|hV-R%>GK&B!Ij$8Z
zoNhU)%!W;IY{ojbdv3-@6I+;|8tQCF%jw%__>7yKOpjiX@x#9+GMd!VJaZYbh23#m
z@gn?6(F{r~%Va6c*d39qw`g`Kc~L;3R|@Nb2$KWfl?p&ymD%0U?rlgI~1Zs%X4{luUzd38Ue0
z5%GOHg6Z%?S!i^QaOk2E1UI%u~I%TJ>+3t^9S>)hREB$?>?Wqf|v&
zT~jbI!jdccT5jiKDPKnd?aNO$bc&CZ$~R#AhGqh7Q(Cm6tlo~nFWxwV}%ULxFylvo`IzEx#$#KheFbEgrr
zEXDo=BP9^8m#E$To9`DabjEE6g*AA`^XDrp*{wCm{m^D0?hz3Mq=97-h;u>SR&LaE
zYw-oSt?vD}D){
zm_m+>nGJsuhC}H>->Sj&L#SaWCp*GN2|CJ`cg4x{VPVg_+&fq0m
zi_L$g#a8fx$&vcxhx9VVw5YUOWdusP!M_Jok5Oo*Z6^+z_rFyRyrOX1!f~D_1I5nxh#8V@3)lWy8Ad*?}
zoDgIZz%7K~^KB{|Ap>wAaqoRHeqmU$dEBZ8>%2f6Ta&uQ*5NQI5GC_A#XMvY3k{?6
z-jkf)gdsb{Ex#!hhqQ+^Dbj@O2ddi9r)FgM5u+CsQ5?M{2n-BU5h-Ubll%d*Y0SS6
zrb=#P;0P2X{fi*#mSW|@AWwcT{Vv9LR2^Z=^=JA?le@;fy&NDfzx@rP3G8)BT5xtI
z>m5RItHR%F92!A3Fd(4Wzn5A6HT7?Q0$ga(OfyWHUPY#GF|T-V8pjs9rMtfw813@G
zc6st&+*fAkq5dK@py;K$d(Kzft`$9$KBB0;T&S~L??bpU-1dpp<7XYb{bBw)?g~;@
z5w>f*pFy5Cw4Ndh{Q@@ioeQd`fr(X9#YH4pM#!a`cEmRSB`=~6qhYiAZ-X~=|94qQ
z-;FTBf-5u*aHXGjv@wsRL^WNz=Fxu``ZhB1VQ9EzaXqo+QwX&|#fbh#XBDEFOT#&%
z$fM@i1j7HS&EAa}MlrUM-%^*k59-Nh(-iUDLA@DGkEg@;O`(0Ii}UX#0K~z~6$;cj%e((`$I`<;S3h;Y
zC?cW{lR1={_jzGT-6d@f?4|Gd;Y9vvz6B)T(lDLg@&&46bLUiit;e`#z5jLE>l3<_
zB2kds*Mu@KkFULbJ?ixB#{Z{E^4WR{
zNmo>qg7P$-(GG=GU|erA-g#v5F@0}}6xFPL@G*0ULqP0ZYv^wDkMGz9?=GqCYzx)8
z52D43ebKdyPZypM#+6<`*~iRR7pwIpVYVNA7D>uft>P+mX0%u}H1wc?ri|^zi|-A^
zt4Z~!peP$M2%lhCMZ4nWXW=z{D7tjxCc@({E}I?ceLCGb-Eg72z^ShJhozh&e@0pF
zy-D??TilG&B!&*hi7tFKdepS7ZoEa!xvwKV4pyp$#cQKqxjPY#Hcc3fiMSv2a$U;dM~Wj2$&j
z;3Iqcn4N;wJWO`0*^)J+!E>XNxx`W>xx@eNz1Um~e1PYac-{YCuR#T3y7c+&5A+$0
z5Sm97LiMp-gEWSzjTW^ApHrBr^E3R;+=q#@l#_%zs`3$gxX8%$l{9$GnhROeJ$$IB
z3Mz1zSXp5vP_kbUQdB&1_{8DTe~cgoh_;JK1o!4=Qq
z8vEDzM*8uzA9ibfSXkf?=H7wMrYt_i<0)Rt=8DRe%8m3G|eqE8G;e@M=?wdy{4Myjg#PtSU2)Z`cHiB32`{&A&gN~+tqM5!4w
z$&mqk3yAlGPDo-wSQusdV240~-1Z-axEH6(F+S0?Z~GwiN4!;{T3RQExI;S=YLyW%
zSiNyLEE!s)7Q)~UE%^D6>Ckv&mPQF`d93xdvX4X?$B}kerZ)R()nl^N7QqXHF|jHQ
z!VA8tes^pmM0%~n7qGAq7cYB{>whPD$N}C_ck)%@>xmTw(_Rn7qQP_>!Wm+~o@nx!
z2J@RwGNA$kU0#(`-!$!nPD;eb4X90)u%OvJ5swNL+pi^Rj{BB--%uw+P|e-w6D1(K
zS^=*sXzGV(iGTlmPxPA|AN6)RU+m%Gz4oe-vJLt=4$d-fVUdwr)irn64c{LSXgS;D*cO}F#2~UH?Rq5g{1}c
zjD^Ya_V+gl3kxYIeT8eOxF3j`y#8>M$({`ja^x(mq9y_*&`+PHvGQ&&Fcs9h4}W?p
zsB4ps=d0xwPfYV5mG?|99?}?Qrby^;RB3QgT18$8Tz&HnkmI@!aBU+HpE$1Q87t)d
zUf!qD