@kl1/contracts 1.0.99-uat → 1.0.99
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +80 -23
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +80 -23
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +54 -165
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +8 -24
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +7 -76
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +655 -647
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +7 -73
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +7 -73
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +7 -73
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/user/index.d.ts +388 -4
- package/dist/src/user/index.d.ts.map +1 -1
- package/dist/src/user/validation.d.ts +7 -0
- package/dist/src/user/validation.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +7 -73
- package/dist/src/viber/index.d.ts.map +1 -1
- package/package.json +1 -1
@@ -1111,7 +1111,6 @@ export declare const viberContract: {
|
|
1111
1111
|
createdAt: z.ZodString;
|
1112
1112
|
updatedAt: z.ZodString;
|
1113
1113
|
platformContact: z.ZodObject<{
|
1114
|
-
id: z.ZodString;
|
1115
1114
|
channelId: z.ZodString;
|
1116
1115
|
socialPlatformId: z.ZodNullable<z.ZodString>;
|
1117
1116
|
type: z.ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
|
@@ -1155,7 +1154,6 @@ export declare const viberContract: {
|
|
1155
1154
|
}>;
|
1156
1155
|
}, "strip", z.ZodTypeAny, {
|
1157
1156
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
1158
|
-
id: string;
|
1159
1157
|
metadata: {
|
1160
1158
|
id: string;
|
1161
1159
|
name: string;
|
@@ -1174,7 +1172,6 @@ export declare const viberContract: {
|
|
1174
1172
|
socialPlatformId: string | null;
|
1175
1173
|
}, {
|
1176
1174
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
1177
|
-
id: string;
|
1178
1175
|
metadata: {
|
1179
1176
|
id: string;
|
1180
1177
|
name: string;
|
@@ -1193,37 +1190,21 @@ export declare const viberContract: {
|
|
1193
1190
|
socialPlatformId: string | null;
|
1194
1191
|
}>;
|
1195
1192
|
actor: z.ZodNullable<z.ZodObject<{
|
1196
|
-
id: z.ZodString;
|
1197
1193
|
name: z.ZodString;
|
1198
1194
|
email: z.ZodString;
|
1199
1195
|
address: z.ZodNullable<z.ZodString>;
|
1200
1196
|
phone: z.ZodNullable<z.ZodString>;
|
1201
1197
|
}, "strip", z.ZodTypeAny, {
|
1202
|
-
id: string;
|
1203
1198
|
address: string | null;
|
1204
1199
|
name: string;
|
1205
1200
|
email: string;
|
1206
1201
|
phone: string | null;
|
1207
1202
|
}, {
|
1208
|
-
id: string;
|
1209
1203
|
address: string | null;
|
1210
1204
|
name: string;
|
1211
1205
|
email: string;
|
1212
1206
|
phone: string | null;
|
1213
1207
|
}>>;
|
1214
|
-
assignee: z.ZodNullable<z.ZodObject<{
|
1215
|
-
id: z.ZodString;
|
1216
|
-
name: z.ZodString;
|
1217
|
-
email: z.ZodString;
|
1218
|
-
}, "strip", z.ZodTypeAny, {
|
1219
|
-
id: string;
|
1220
|
-
name: string;
|
1221
|
-
email: string;
|
1222
|
-
}, {
|
1223
|
-
id: string;
|
1224
|
-
name: string;
|
1225
|
-
email: string;
|
1226
|
-
}>>;
|
1227
1208
|
channel: z.ZodObject<{
|
1228
1209
|
id: z.ZodString;
|
1229
1210
|
name: z.ZodString;
|
@@ -1318,7 +1299,6 @@ export declare const viberContract: {
|
|
1318
1299
|
phone: string | null;
|
1319
1300
|
} | undefined;
|
1320
1301
|
}>;
|
1321
|
-
messengerTags: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"post_purchase_update">, z.ZodLiteral<"account_update">, z.ZodLiteral<"confirmed_event_update">]>>;
|
1322
1302
|
}, "strip", z.ZodTypeAny, {
|
1323
1303
|
id: string;
|
1324
1304
|
channel: {
|
@@ -1349,7 +1329,6 @@ export declare const viberContract: {
|
|
1349
1329
|
createdAt: string;
|
1350
1330
|
updatedAt: string;
|
1351
1331
|
actor: {
|
1352
|
-
id: string;
|
1353
1332
|
address: string | null;
|
1354
1333
|
name: string;
|
1355
1334
|
email: string;
|
@@ -1358,7 +1337,6 @@ export declare const viberContract: {
|
|
1358
1337
|
isLatest: boolean;
|
1359
1338
|
platformContact: {
|
1360
1339
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
1361
|
-
id: string;
|
1362
1340
|
metadata: {
|
1363
1341
|
id: string;
|
1364
1342
|
name: string;
|
@@ -1376,14 +1354,8 @@ export declare const viberContract: {
|
|
1376
1354
|
channelId: string;
|
1377
1355
|
socialPlatformId: string | null;
|
1378
1356
|
};
|
1379
|
-
assignee: {
|
1380
|
-
id: string;
|
1381
|
-
name: string;
|
1382
|
-
email: string;
|
1383
|
-
} | null;
|
1384
1357
|
lastMessage?: string | undefined;
|
1385
1358
|
handleTime?: number | undefined;
|
1386
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
1387
1359
|
}, {
|
1388
1360
|
id: string;
|
1389
1361
|
channel: {
|
@@ -1414,7 +1386,6 @@ export declare const viberContract: {
|
|
1414
1386
|
createdAt: string;
|
1415
1387
|
updatedAt: string;
|
1416
1388
|
actor: {
|
1417
|
-
id: string;
|
1418
1389
|
address: string | null;
|
1419
1390
|
name: string;
|
1420
1391
|
email: string;
|
@@ -1423,7 +1394,6 @@ export declare const viberContract: {
|
|
1423
1394
|
isLatest: boolean;
|
1424
1395
|
platformContact: {
|
1425
1396
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
1426
|
-
id: string;
|
1427
1397
|
metadata: {
|
1428
1398
|
id: string;
|
1429
1399
|
name: string;
|
@@ -1441,14 +1411,8 @@ export declare const viberContract: {
|
|
1441
1411
|
channelId: string;
|
1442
1412
|
socialPlatformId: string | null;
|
1443
1413
|
};
|
1444
|
-
assignee: {
|
1445
|
-
id: string;
|
1446
|
-
name: string;
|
1447
|
-
email: string;
|
1448
|
-
} | null;
|
1449
1414
|
lastMessage?: string | undefined;
|
1450
1415
|
handleTime?: number | undefined;
|
1451
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
1452
1416
|
}>;
|
1453
1417
|
message: z.ZodObject<{
|
1454
1418
|
message: z.ZodOptional<z.ZodString>;
|
@@ -1613,7 +1577,6 @@ export declare const viberContract: {
|
|
1613
1577
|
createdAt: string;
|
1614
1578
|
updatedAt: string;
|
1615
1579
|
actor: {
|
1616
|
-
id: string;
|
1617
1580
|
address: string | null;
|
1618
1581
|
name: string;
|
1619
1582
|
email: string;
|
@@ -1622,7 +1585,6 @@ export declare const viberContract: {
|
|
1622
1585
|
isLatest: boolean;
|
1623
1586
|
platformContact: {
|
1624
1587
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
1625
|
-
id: string;
|
1626
1588
|
metadata: {
|
1627
1589
|
id: string;
|
1628
1590
|
name: string;
|
@@ -1640,14 +1602,8 @@ export declare const viberContract: {
|
|
1640
1602
|
channelId: string;
|
1641
1603
|
socialPlatformId: string | null;
|
1642
1604
|
};
|
1643
|
-
assignee: {
|
1644
|
-
id: string;
|
1645
|
-
name: string;
|
1646
|
-
email: string;
|
1647
|
-
} | null;
|
1648
1605
|
lastMessage?: string | undefined;
|
1649
1606
|
handleTime?: number | undefined;
|
1650
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
1651
1607
|
};
|
1652
1608
|
}, {
|
1653
1609
|
message: {
|
@@ -1708,7 +1664,6 @@ export declare const viberContract: {
|
|
1708
1664
|
createdAt: string;
|
1709
1665
|
updatedAt: string;
|
1710
1666
|
actor: {
|
1711
|
-
id: string;
|
1712
1667
|
address: string | null;
|
1713
1668
|
name: string;
|
1714
1669
|
email: string;
|
@@ -1717,7 +1672,6 @@ export declare const viberContract: {
|
|
1717
1672
|
isLatest: boolean;
|
1718
1673
|
platformContact: {
|
1719
1674
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
1720
|
-
id: string;
|
1721
1675
|
metadata: {
|
1722
1676
|
id: string;
|
1723
1677
|
name: string;
|
@@ -1735,14 +1689,8 @@ export declare const viberContract: {
|
|
1735
1689
|
channelId: string;
|
1736
1690
|
socialPlatformId: string | null;
|
1737
1691
|
};
|
1738
|
-
assignee: {
|
1739
|
-
id: string;
|
1740
|
-
name: string;
|
1741
|
-
email: string;
|
1742
|
-
} | null;
|
1743
1692
|
lastMessage?: string | undefined;
|
1744
1693
|
handleTime?: number | undefined;
|
1745
|
-
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
1746
1694
|
};
|
1747
1695
|
}>;
|
1748
1696
|
method: "POST";
|
@@ -1774,9 +1722,7 @@ export declare const viberContract: {
|
|
1774
1722
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1775
1723
|
lastMessage: z.ZodString;
|
1776
1724
|
handleTime: z.ZodNumber;
|
1777
|
-
|
1778
|
-
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
1779
|
-
status: z.ZodNumber;
|
1725
|
+
closeAt: z.ZodDate;
|
1780
1726
|
unreadCount: z.ZodNumber;
|
1781
1727
|
firstResponseAt: z.ZodDate;
|
1782
1728
|
firstResponseTime: z.ZodNumber;
|
@@ -3701,7 +3647,6 @@ export declare const viberContract: {
|
|
3701
3647
|
connectedUserId: string;
|
3702
3648
|
};
|
3703
3649
|
direction: "incoming" | "outgoing" | "system";
|
3704
|
-
status: number;
|
3705
3650
|
createdAt: Date;
|
3706
3651
|
updatedAt: Date;
|
3707
3652
|
deletedAt: Date | null;
|
@@ -3752,6 +3697,7 @@ export declare const viberContract: {
|
|
3752
3697
|
firstResponseTime: number;
|
3753
3698
|
lastMessage: string;
|
3754
3699
|
handleTime: number;
|
3700
|
+
closeAt: Date;
|
3755
3701
|
unreadCount: number;
|
3756
3702
|
firstResponseAt: Date;
|
3757
3703
|
isLatest: boolean;
|
@@ -3911,8 +3857,6 @@ export declare const viberContract: {
|
|
3911
3857
|
telephonySignature: string | null;
|
3912
3858
|
};
|
3913
3859
|
};
|
3914
|
-
closedAt: Date;
|
3915
|
-
lastMessageAt: Date | null;
|
3916
3860
|
cxlog: {
|
3917
3861
|
id: string;
|
3918
3862
|
channel: string | null;
|
@@ -4015,7 +3959,6 @@ export declare const viberContract: {
|
|
4015
3959
|
connectedUserId: string;
|
4016
3960
|
};
|
4017
3961
|
direction: "incoming" | "outgoing" | "system";
|
4018
|
-
status: number;
|
4019
3962
|
createdAt: Date;
|
4020
3963
|
updatedAt: Date;
|
4021
3964
|
deletedAt: Date | null;
|
@@ -4066,6 +4009,7 @@ export declare const viberContract: {
|
|
4066
4009
|
firstResponseTime: number;
|
4067
4010
|
lastMessage: string;
|
4068
4011
|
handleTime: number;
|
4012
|
+
closeAt: Date;
|
4069
4013
|
unreadCount: number;
|
4070
4014
|
firstResponseAt: Date;
|
4071
4015
|
isLatest: boolean;
|
@@ -4225,8 +4169,6 @@ export declare const viberContract: {
|
|
4225
4169
|
telephonySignature: string | null;
|
4226
4170
|
};
|
4227
4171
|
};
|
4228
|
-
closedAt: Date;
|
4229
|
-
lastMessageAt: Date | null;
|
4230
4172
|
cxlog: {
|
4231
4173
|
id: string;
|
4232
4174
|
channel: string | null;
|
@@ -6075,7 +6017,6 @@ export declare const viberContract: {
|
|
6075
6017
|
connectedUserId: string;
|
6076
6018
|
};
|
6077
6019
|
direction: "incoming" | "outgoing" | "system";
|
6078
|
-
status: number;
|
6079
6020
|
createdAt: Date;
|
6080
6021
|
updatedAt: Date;
|
6081
6022
|
deletedAt: Date | null;
|
@@ -6126,6 +6067,7 @@ export declare const viberContract: {
|
|
6126
6067
|
firstResponseTime: number;
|
6127
6068
|
lastMessage: string;
|
6128
6069
|
handleTime: number;
|
6070
|
+
closeAt: Date;
|
6129
6071
|
unreadCount: number;
|
6130
6072
|
firstResponseAt: Date;
|
6131
6073
|
isLatest: boolean;
|
@@ -6285,8 +6227,6 @@ export declare const viberContract: {
|
|
6285
6227
|
telephonySignature: string | null;
|
6286
6228
|
};
|
6287
6229
|
};
|
6288
|
-
closedAt: Date;
|
6289
|
-
lastMessageAt: Date | null;
|
6290
6230
|
cxlog: {
|
6291
6231
|
id: string;
|
6292
6232
|
channel: string | null;
|
@@ -6715,7 +6655,6 @@ export declare const viberContract: {
|
|
6715
6655
|
connectedUserId: string;
|
6716
6656
|
};
|
6717
6657
|
direction: "incoming" | "outgoing" | "system";
|
6718
|
-
status: number;
|
6719
6658
|
createdAt: Date;
|
6720
6659
|
updatedAt: Date;
|
6721
6660
|
deletedAt: Date | null;
|
@@ -6766,6 +6705,7 @@ export declare const viberContract: {
|
|
6766
6705
|
firstResponseTime: number;
|
6767
6706
|
lastMessage: string;
|
6768
6707
|
handleTime: number;
|
6708
|
+
closeAt: Date;
|
6769
6709
|
unreadCount: number;
|
6770
6710
|
firstResponseAt: Date;
|
6771
6711
|
isLatest: boolean;
|
@@ -6925,8 +6865,6 @@ export declare const viberContract: {
|
|
6925
6865
|
telephonySignature: string | null;
|
6926
6866
|
};
|
6927
6867
|
};
|
6928
|
-
closedAt: Date;
|
6929
|
-
lastMessageAt: Date | null;
|
6930
6868
|
cxlog: {
|
6931
6869
|
id: string;
|
6932
6870
|
channel: string | null;
|
@@ -7357,7 +7295,6 @@ export declare const viberContract: {
|
|
7357
7295
|
connectedUserId: string;
|
7358
7296
|
};
|
7359
7297
|
direction: "incoming" | "outgoing" | "system";
|
7360
|
-
status: number;
|
7361
7298
|
createdAt: Date;
|
7362
7299
|
updatedAt: Date;
|
7363
7300
|
deletedAt: Date | null;
|
@@ -7408,6 +7345,7 @@ export declare const viberContract: {
|
|
7408
7345
|
firstResponseTime: number;
|
7409
7346
|
lastMessage: string;
|
7410
7347
|
handleTime: number;
|
7348
|
+
closeAt: Date;
|
7411
7349
|
unreadCount: number;
|
7412
7350
|
firstResponseAt: Date;
|
7413
7351
|
isLatest: boolean;
|
@@ -7567,8 +7505,6 @@ export declare const viberContract: {
|
|
7567
7505
|
telephonySignature: string | null;
|
7568
7506
|
};
|
7569
7507
|
};
|
7570
|
-
closedAt: Date;
|
7571
|
-
lastMessageAt: Date | null;
|
7572
7508
|
cxlog: {
|
7573
7509
|
id: string;
|
7574
7510
|
channel: string | null;
|
@@ -8000,7 +7936,6 @@ export declare const viberContract: {
|
|
8000
7936
|
connectedUserId: string;
|
8001
7937
|
};
|
8002
7938
|
direction: "incoming" | "outgoing" | "system";
|
8003
|
-
status: number;
|
8004
7939
|
createdAt: Date;
|
8005
7940
|
updatedAt: Date;
|
8006
7941
|
deletedAt: Date | null;
|
@@ -8051,6 +7986,7 @@ export declare const viberContract: {
|
|
8051
7986
|
firstResponseTime: number;
|
8052
7987
|
lastMessage: string;
|
8053
7988
|
handleTime: number;
|
7989
|
+
closeAt: Date;
|
8054
7990
|
unreadCount: number;
|
8055
7991
|
firstResponseAt: Date;
|
8056
7992
|
isLatest: boolean;
|
@@ -8210,8 +8146,6 @@ export declare const viberContract: {
|
|
8210
8146
|
telephonySignature: string | null;
|
8211
8147
|
};
|
8212
8148
|
};
|
8213
|
-
closedAt: Date;
|
8214
|
-
lastMessageAt: Date | null;
|
8215
8149
|
cxlog: {
|
8216
8150
|
id: string;
|
8217
8151
|
channel: string | null;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/viber/index.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,kBAAkB,EAAE,MAAM,cAAc,CAAC;AAalD,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAErE,eAAO,MAAM,aAAa
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/viber/index.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,kBAAkB,EAAE,MAAM,cAAc,CAAC;AAalD,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAErE,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmExB,CAAC"}
|