@kl1/contracts 1.0.97 → 1.0.99-uat
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 +10 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -1
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +162 -54
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +24 -8
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +68 -7
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +434 -82
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +68 -7
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +68 -7
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +68 -7
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +68 -7
- package/dist/src/viber/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/line/index.d.ts
CHANGED
@@ -849,6 +849,7 @@ export declare const lineContract: {
|
|
849
849
|
createdAt: z.ZodString;
|
850
850
|
updatedAt: z.ZodString;
|
851
851
|
platformContact: z.ZodObject<{
|
852
|
+
id: z.ZodString;
|
852
853
|
channelId: z.ZodString;
|
853
854
|
socialPlatformId: z.ZodNullable<z.ZodString>;
|
854
855
|
type: z.ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
|
@@ -892,6 +893,7 @@ export declare const lineContract: {
|
|
892
893
|
}>;
|
893
894
|
}, "strip", z.ZodTypeAny, {
|
894
895
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
896
|
+
id: string;
|
895
897
|
metadata: {
|
896
898
|
id: string;
|
897
899
|
name: string;
|
@@ -910,6 +912,7 @@ export declare const lineContract: {
|
|
910
912
|
socialPlatformId: string | null;
|
911
913
|
}, {
|
912
914
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
915
|
+
id: string;
|
913
916
|
metadata: {
|
914
917
|
id: string;
|
915
918
|
name: string;
|
@@ -928,21 +931,37 @@ export declare const lineContract: {
|
|
928
931
|
socialPlatformId: string | null;
|
929
932
|
}>;
|
930
933
|
actor: z.ZodNullable<z.ZodObject<{
|
934
|
+
id: z.ZodString;
|
931
935
|
name: z.ZodString;
|
932
936
|
email: z.ZodString;
|
933
937
|
address: z.ZodNullable<z.ZodString>;
|
934
938
|
phone: z.ZodNullable<z.ZodString>;
|
935
939
|
}, "strip", z.ZodTypeAny, {
|
940
|
+
id: string;
|
936
941
|
address: string | null;
|
937
942
|
name: string;
|
938
943
|
email: string;
|
939
944
|
phone: string | null;
|
940
945
|
}, {
|
946
|
+
id: string;
|
941
947
|
address: string | null;
|
942
948
|
name: string;
|
943
949
|
email: string;
|
944
950
|
phone: string | null;
|
945
951
|
}>>;
|
952
|
+
assignee: z.ZodNullable<z.ZodObject<{
|
953
|
+
id: z.ZodString;
|
954
|
+
name: z.ZodString;
|
955
|
+
email: z.ZodString;
|
956
|
+
}, "strip", z.ZodTypeAny, {
|
957
|
+
id: string;
|
958
|
+
name: string;
|
959
|
+
email: string;
|
960
|
+
}, {
|
961
|
+
id: string;
|
962
|
+
name: string;
|
963
|
+
email: string;
|
964
|
+
}>>;
|
946
965
|
channel: z.ZodObject<{
|
947
966
|
id: z.ZodString;
|
948
967
|
name: z.ZodString;
|
@@ -1068,6 +1087,7 @@ export declare const lineContract: {
|
|
1068
1087
|
createdAt: string;
|
1069
1088
|
updatedAt: string;
|
1070
1089
|
actor: {
|
1090
|
+
id: string;
|
1071
1091
|
address: string | null;
|
1072
1092
|
name: string;
|
1073
1093
|
email: string;
|
@@ -1076,6 +1096,7 @@ export declare const lineContract: {
|
|
1076
1096
|
isLatest: boolean;
|
1077
1097
|
platformContact: {
|
1078
1098
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
1099
|
+
id: string;
|
1079
1100
|
metadata: {
|
1080
1101
|
id: string;
|
1081
1102
|
name: string;
|
@@ -1093,6 +1114,11 @@ export declare const lineContract: {
|
|
1093
1114
|
channelId: string;
|
1094
1115
|
socialPlatformId: string | null;
|
1095
1116
|
};
|
1117
|
+
assignee: {
|
1118
|
+
id: string;
|
1119
|
+
name: string;
|
1120
|
+
email: string;
|
1121
|
+
} | null;
|
1096
1122
|
lastMessage?: string | undefined;
|
1097
1123
|
handleTime?: number | undefined;
|
1098
1124
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
@@ -1126,6 +1152,7 @@ export declare const lineContract: {
|
|
1126
1152
|
createdAt: string;
|
1127
1153
|
updatedAt: string;
|
1128
1154
|
actor: {
|
1155
|
+
id: string;
|
1129
1156
|
address: string | null;
|
1130
1157
|
name: string;
|
1131
1158
|
email: string;
|
@@ -1134,6 +1161,7 @@ export declare const lineContract: {
|
|
1134
1161
|
isLatest: boolean;
|
1135
1162
|
platformContact: {
|
1136
1163
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
1164
|
+
id: string;
|
1137
1165
|
metadata: {
|
1138
1166
|
id: string;
|
1139
1167
|
name: string;
|
@@ -1151,6 +1179,11 @@ export declare const lineContract: {
|
|
1151
1179
|
channelId: string;
|
1152
1180
|
socialPlatformId: string | null;
|
1153
1181
|
};
|
1182
|
+
assignee: {
|
1183
|
+
id: string;
|
1184
|
+
name: string;
|
1185
|
+
email: string;
|
1186
|
+
} | null;
|
1154
1187
|
lastMessage?: string | undefined;
|
1155
1188
|
handleTime?: number | undefined;
|
1156
1189
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
@@ -1318,6 +1351,7 @@ export declare const lineContract: {
|
|
1318
1351
|
createdAt: string;
|
1319
1352
|
updatedAt: string;
|
1320
1353
|
actor: {
|
1354
|
+
id: string;
|
1321
1355
|
address: string | null;
|
1322
1356
|
name: string;
|
1323
1357
|
email: string;
|
@@ -1326,6 +1360,7 @@ export declare const lineContract: {
|
|
1326
1360
|
isLatest: boolean;
|
1327
1361
|
platformContact: {
|
1328
1362
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
1363
|
+
id: string;
|
1329
1364
|
metadata: {
|
1330
1365
|
id: string;
|
1331
1366
|
name: string;
|
@@ -1343,6 +1378,11 @@ export declare const lineContract: {
|
|
1343
1378
|
channelId: string;
|
1344
1379
|
socialPlatformId: string | null;
|
1345
1380
|
};
|
1381
|
+
assignee: {
|
1382
|
+
id: string;
|
1383
|
+
name: string;
|
1384
|
+
email: string;
|
1385
|
+
} | null;
|
1346
1386
|
lastMessage?: string | undefined;
|
1347
1387
|
handleTime?: number | undefined;
|
1348
1388
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
@@ -1406,6 +1446,7 @@ export declare const lineContract: {
|
|
1406
1446
|
createdAt: string;
|
1407
1447
|
updatedAt: string;
|
1408
1448
|
actor: {
|
1449
|
+
id: string;
|
1409
1450
|
address: string | null;
|
1410
1451
|
name: string;
|
1411
1452
|
email: string;
|
@@ -1414,6 +1455,7 @@ export declare const lineContract: {
|
|
1414
1455
|
isLatest: boolean;
|
1415
1456
|
platformContact: {
|
1416
1457
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
1458
|
+
id: string;
|
1417
1459
|
metadata: {
|
1418
1460
|
id: string;
|
1419
1461
|
name: string;
|
@@ -1431,6 +1473,11 @@ export declare const lineContract: {
|
|
1431
1473
|
channelId: string;
|
1432
1474
|
socialPlatformId: string | null;
|
1433
1475
|
};
|
1476
|
+
assignee: {
|
1477
|
+
id: string;
|
1478
|
+
name: string;
|
1479
|
+
email: string;
|
1480
|
+
} | null;
|
1434
1481
|
lastMessage?: string | undefined;
|
1435
1482
|
handleTime?: number | undefined;
|
1436
1483
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
@@ -1465,7 +1512,9 @@ export declare const lineContract: {
|
|
1465
1512
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1466
1513
|
lastMessage: z.ZodString;
|
1467
1514
|
handleTime: z.ZodNumber;
|
1468
|
-
|
1515
|
+
closedAt: z.ZodDate;
|
1516
|
+
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
1517
|
+
status: z.ZodNumber;
|
1469
1518
|
unreadCount: z.ZodNumber;
|
1470
1519
|
firstResponseAt: z.ZodDate;
|
1471
1520
|
firstResponseTime: z.ZodNumber;
|
@@ -3390,6 +3439,7 @@ export declare const lineContract: {
|
|
3390
3439
|
connectedUserId: string;
|
3391
3440
|
};
|
3392
3441
|
direction: "incoming" | "outgoing" | "system";
|
3442
|
+
status: number;
|
3393
3443
|
createdAt: Date;
|
3394
3444
|
updatedAt: Date;
|
3395
3445
|
deletedAt: Date | null;
|
@@ -3440,7 +3490,6 @@ export declare const lineContract: {
|
|
3440
3490
|
firstResponseTime: number;
|
3441
3491
|
lastMessage: string;
|
3442
3492
|
handleTime: number;
|
3443
|
-
closeAt: Date;
|
3444
3493
|
unreadCount: number;
|
3445
3494
|
firstResponseAt: Date;
|
3446
3495
|
isLatest: boolean;
|
@@ -3600,6 +3649,8 @@ export declare const lineContract: {
|
|
3600
3649
|
telephonySignature: string | null;
|
3601
3650
|
};
|
3602
3651
|
};
|
3652
|
+
closedAt: Date;
|
3653
|
+
lastMessageAt: Date | null;
|
3603
3654
|
cxlog: {
|
3604
3655
|
id: string;
|
3605
3656
|
channel: string | null;
|
@@ -3702,6 +3753,7 @@ export declare const lineContract: {
|
|
3702
3753
|
connectedUserId: string;
|
3703
3754
|
};
|
3704
3755
|
direction: "incoming" | "outgoing" | "system";
|
3756
|
+
status: number;
|
3705
3757
|
createdAt: Date;
|
3706
3758
|
updatedAt: Date;
|
3707
3759
|
deletedAt: Date | null;
|
@@ -3752,7 +3804,6 @@ export declare const lineContract: {
|
|
3752
3804
|
firstResponseTime: number;
|
3753
3805
|
lastMessage: string;
|
3754
3806
|
handleTime: number;
|
3755
|
-
closeAt: Date;
|
3756
3807
|
unreadCount: number;
|
3757
3808
|
firstResponseAt: Date;
|
3758
3809
|
isLatest: boolean;
|
@@ -3912,6 +3963,8 @@ export declare const lineContract: {
|
|
3912
3963
|
telephonySignature: string | null;
|
3913
3964
|
};
|
3914
3965
|
};
|
3966
|
+
closedAt: Date;
|
3967
|
+
lastMessageAt: Date | null;
|
3915
3968
|
cxlog: {
|
3916
3969
|
id: string;
|
3917
3970
|
channel: string | null;
|
@@ -5760,6 +5813,7 @@ export declare const lineContract: {
|
|
5760
5813
|
connectedUserId: string;
|
5761
5814
|
};
|
5762
5815
|
direction: "incoming" | "outgoing" | "system";
|
5816
|
+
status: number;
|
5763
5817
|
createdAt: Date;
|
5764
5818
|
updatedAt: Date;
|
5765
5819
|
deletedAt: Date | null;
|
@@ -5810,7 +5864,6 @@ export declare const lineContract: {
|
|
5810
5864
|
firstResponseTime: number;
|
5811
5865
|
lastMessage: string;
|
5812
5866
|
handleTime: number;
|
5813
|
-
closeAt: Date;
|
5814
5867
|
unreadCount: number;
|
5815
5868
|
firstResponseAt: Date;
|
5816
5869
|
isLatest: boolean;
|
@@ -5970,6 +6023,8 @@ export declare const lineContract: {
|
|
5970
6023
|
telephonySignature: string | null;
|
5971
6024
|
};
|
5972
6025
|
};
|
6026
|
+
closedAt: Date;
|
6027
|
+
lastMessageAt: Date | null;
|
5973
6028
|
cxlog: {
|
5974
6029
|
id: string;
|
5975
6030
|
channel: string | null;
|
@@ -6398,6 +6453,7 @@ export declare const lineContract: {
|
|
6398
6453
|
connectedUserId: string;
|
6399
6454
|
};
|
6400
6455
|
direction: "incoming" | "outgoing" | "system";
|
6456
|
+
status: number;
|
6401
6457
|
createdAt: Date;
|
6402
6458
|
updatedAt: Date;
|
6403
6459
|
deletedAt: Date | null;
|
@@ -6448,7 +6504,6 @@ export declare const lineContract: {
|
|
6448
6504
|
firstResponseTime: number;
|
6449
6505
|
lastMessage: string;
|
6450
6506
|
handleTime: number;
|
6451
|
-
closeAt: Date;
|
6452
6507
|
unreadCount: number;
|
6453
6508
|
firstResponseAt: Date;
|
6454
6509
|
isLatest: boolean;
|
@@ -6608,6 +6663,8 @@ export declare const lineContract: {
|
|
6608
6663
|
telephonySignature: string | null;
|
6609
6664
|
};
|
6610
6665
|
};
|
6666
|
+
closedAt: Date;
|
6667
|
+
lastMessageAt: Date | null;
|
6611
6668
|
cxlog: {
|
6612
6669
|
id: string;
|
6613
6670
|
channel: string | null;
|
@@ -7038,6 +7095,7 @@ export declare const lineContract: {
|
|
7038
7095
|
connectedUserId: string;
|
7039
7096
|
};
|
7040
7097
|
direction: "incoming" | "outgoing" | "system";
|
7098
|
+
status: number;
|
7041
7099
|
createdAt: Date;
|
7042
7100
|
updatedAt: Date;
|
7043
7101
|
deletedAt: Date | null;
|
@@ -7088,7 +7146,6 @@ export declare const lineContract: {
|
|
7088
7146
|
firstResponseTime: number;
|
7089
7147
|
lastMessage: string;
|
7090
7148
|
handleTime: number;
|
7091
|
-
closeAt: Date;
|
7092
7149
|
unreadCount: number;
|
7093
7150
|
firstResponseAt: Date;
|
7094
7151
|
isLatest: boolean;
|
@@ -7248,6 +7305,8 @@ export declare const lineContract: {
|
|
7248
7305
|
telephonySignature: string | null;
|
7249
7306
|
};
|
7250
7307
|
};
|
7308
|
+
closedAt: Date;
|
7309
|
+
lastMessageAt: Date | null;
|
7251
7310
|
cxlog: {
|
7252
7311
|
id: string;
|
7253
7312
|
channel: string | null;
|
@@ -7679,6 +7738,7 @@ export declare const lineContract: {
|
|
7679
7738
|
connectedUserId: string;
|
7680
7739
|
};
|
7681
7740
|
direction: "incoming" | "outgoing" | "system";
|
7741
|
+
status: number;
|
7682
7742
|
createdAt: Date;
|
7683
7743
|
updatedAt: Date;
|
7684
7744
|
deletedAt: Date | null;
|
@@ -7729,7 +7789,6 @@ export declare const lineContract: {
|
|
7729
7789
|
firstResponseTime: number;
|
7730
7790
|
lastMessage: string;
|
7731
7791
|
handleTime: number;
|
7732
|
-
closeAt: Date;
|
7733
7792
|
unreadCount: number;
|
7734
7793
|
firstResponseAt: Date;
|
7735
7794
|
isLatest: boolean;
|
@@ -7889,6 +7948,8 @@ export declare const lineContract: {
|
|
7889
7948
|
telephonySignature: string | null;
|
7890
7949
|
};
|
7891
7950
|
};
|
7951
|
+
closedAt: Date;
|
7952
|
+
lastMessageAt: Date | null;
|
7892
7953
|
cxlog: {
|
7893
7954
|
id: string;
|
7894
7955
|
channel: string | null;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/line/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,OAAO,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAC;AAQrD,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE3E,eAAO,MAAM,YAAY
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/line/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,OAAO,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAC;AAQrD,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE3E,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0EvB,CAAC"}
|