@kl1/contracts 1.1.25-uat → 1.1.26-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 +13 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -3
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +3341 -22
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +528 -4
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +666 -4
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +6478 -44
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +241 -2
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +390 -4
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +333 -2
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +333 -2
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +861 -6
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +861 -6
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +287 -2
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +241 -2
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +333 -2
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +333 -2
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +333 -2
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +703 -6
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/schema.d.ts +149 -2
- package/dist/src/wrap-up-form/schema.d.ts.map +1 -1
- package/dist/src/wrap-up-form/validation.d.ts +26 -0
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/line/index.d.ts
CHANGED
@@ -3255,8 +3255,7 @@ export declare const lineContract: {
|
|
3255
3255
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
3256
3256
|
note: z.ZodNullable<z.ZodString>;
|
3257
3257
|
disposition: z.ZodNullable<z.ZodString>;
|
3258
|
-
|
3259
|
-
callTo: z.ZodNullable<z.ZodString>;
|
3258
|
+
type: z.ZodString;
|
3260
3259
|
tags: z.ZodArray<z.ZodObject<{
|
3261
3260
|
id: z.ZodString;
|
3262
3261
|
createdAt: z.ZodDate;
|
@@ -3276,12 +3275,137 @@ export declare const lineContract: {
|
|
3276
3275
|
updatedAt: Date;
|
3277
3276
|
deletedAt: Date | null;
|
3278
3277
|
}>, "many">;
|
3278
|
+
categories: z.ZodArray<z.ZodObject<{
|
3279
|
+
id: z.ZodString;
|
3280
|
+
createdAt: z.ZodDate;
|
3281
|
+
updatedAt: z.ZodDate;
|
3282
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
3283
|
+
value: z.ZodString;
|
3284
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
3285
|
+
parentId: z.ZodNullable<z.ZodString>;
|
3286
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
3287
|
+
id: z.ZodString;
|
3288
|
+
value: z.ZodString;
|
3289
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
3290
|
+
parentId: z.ZodNullable<z.ZodString>;
|
3291
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
3292
|
+
id: z.ZodString;
|
3293
|
+
value: z.ZodString;
|
3294
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
3295
|
+
parentId: z.ZodNullable<z.ZodString>;
|
3296
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
3297
|
+
}, "strip", z.ZodTypeAny, {
|
3298
|
+
id: string;
|
3299
|
+
value: string;
|
3300
|
+
level: 2 | 1 | 3;
|
3301
|
+
parentId: string | null;
|
3302
|
+
childCategoryList: any[];
|
3303
|
+
}, {
|
3304
|
+
id: string;
|
3305
|
+
value: string;
|
3306
|
+
level: 2 | 1 | 3;
|
3307
|
+
parentId: string | null;
|
3308
|
+
childCategoryList: any[];
|
3309
|
+
}>, "many">;
|
3310
|
+
}, "strip", z.ZodTypeAny, {
|
3311
|
+
id: string;
|
3312
|
+
value: string;
|
3313
|
+
level: 2 | 1 | 3;
|
3314
|
+
parentId: string | null;
|
3315
|
+
childCategoryList: {
|
3316
|
+
id: string;
|
3317
|
+
value: string;
|
3318
|
+
level: 2 | 1 | 3;
|
3319
|
+
parentId: string | null;
|
3320
|
+
childCategoryList: any[];
|
3321
|
+
}[];
|
3322
|
+
}, {
|
3323
|
+
id: string;
|
3324
|
+
value: string;
|
3325
|
+
level: 2 | 1 | 3;
|
3326
|
+
parentId: string | null;
|
3327
|
+
childCategoryList: {
|
3328
|
+
id: string;
|
3329
|
+
value: string;
|
3330
|
+
level: 2 | 1 | 3;
|
3331
|
+
parentId: string | null;
|
3332
|
+
childCategoryList: any[];
|
3333
|
+
}[];
|
3334
|
+
}>, "many">;
|
3335
|
+
}, "strip", z.ZodTypeAny, {
|
3336
|
+
id: string;
|
3337
|
+
value: string;
|
3338
|
+
createdAt: Date;
|
3339
|
+
updatedAt: Date;
|
3340
|
+
deletedAt: Date | null;
|
3341
|
+
level: 2 | 1 | 3;
|
3342
|
+
parentId: string | null;
|
3343
|
+
childCategoryList: {
|
3344
|
+
id: string;
|
3345
|
+
value: string;
|
3346
|
+
level: 2 | 1 | 3;
|
3347
|
+
parentId: string | null;
|
3348
|
+
childCategoryList: {
|
3349
|
+
id: string;
|
3350
|
+
value: string;
|
3351
|
+
level: 2 | 1 | 3;
|
3352
|
+
parentId: string | null;
|
3353
|
+
childCategoryList: any[];
|
3354
|
+
}[];
|
3355
|
+
}[];
|
3356
|
+
}, {
|
3357
|
+
id: string;
|
3358
|
+
value: string;
|
3359
|
+
createdAt: Date;
|
3360
|
+
updatedAt: Date;
|
3361
|
+
deletedAt: Date | null;
|
3362
|
+
level: 2 | 1 | 3;
|
3363
|
+
parentId: string | null;
|
3364
|
+
childCategoryList: {
|
3365
|
+
id: string;
|
3366
|
+
value: string;
|
3367
|
+
level: 2 | 1 | 3;
|
3368
|
+
parentId: string | null;
|
3369
|
+
childCategoryList: {
|
3370
|
+
id: string;
|
3371
|
+
value: string;
|
3372
|
+
level: 2 | 1 | 3;
|
3373
|
+
parentId: string | null;
|
3374
|
+
childCategoryList: any[];
|
3375
|
+
}[];
|
3376
|
+
}[];
|
3377
|
+
}>, "many">;
|
3378
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
3379
|
+
callTo: z.ZodNullable<z.ZodString>;
|
3279
3380
|
}, "strip", z.ZodTypeAny, {
|
3381
|
+
type: string;
|
3280
3382
|
id: string;
|
3281
3383
|
disposition: string | null;
|
3282
3384
|
createdAt: Date;
|
3283
3385
|
updatedAt: Date;
|
3284
3386
|
deletedAt: Date | null;
|
3387
|
+
categories: {
|
3388
|
+
id: string;
|
3389
|
+
value: string;
|
3390
|
+
createdAt: Date;
|
3391
|
+
updatedAt: Date;
|
3392
|
+
deletedAt: Date | null;
|
3393
|
+
level: 2 | 1 | 3;
|
3394
|
+
parentId: string | null;
|
3395
|
+
childCategoryList: {
|
3396
|
+
id: string;
|
3397
|
+
value: string;
|
3398
|
+
level: 2 | 1 | 3;
|
3399
|
+
parentId: string | null;
|
3400
|
+
childCategoryList: {
|
3401
|
+
id: string;
|
3402
|
+
value: string;
|
3403
|
+
level: 2 | 1 | 3;
|
3404
|
+
parentId: string | null;
|
3405
|
+
childCategoryList: any[];
|
3406
|
+
}[];
|
3407
|
+
}[];
|
3408
|
+
}[];
|
3285
3409
|
tags: {
|
3286
3410
|
id: string;
|
3287
3411
|
name: string;
|
@@ -3293,11 +3417,34 @@ export declare const lineContract: {
|
|
3293
3417
|
callTo: string | null;
|
3294
3418
|
note: string | null;
|
3295
3419
|
}, {
|
3420
|
+
type: string;
|
3296
3421
|
id: string;
|
3297
3422
|
disposition: string | null;
|
3298
3423
|
createdAt: Date;
|
3299
3424
|
updatedAt: Date;
|
3300
3425
|
deletedAt: Date | null;
|
3426
|
+
categories: {
|
3427
|
+
id: string;
|
3428
|
+
value: string;
|
3429
|
+
createdAt: Date;
|
3430
|
+
updatedAt: Date;
|
3431
|
+
deletedAt: Date | null;
|
3432
|
+
level: 2 | 1 | 3;
|
3433
|
+
parentId: string | null;
|
3434
|
+
childCategoryList: {
|
3435
|
+
id: string;
|
3436
|
+
value: string;
|
3437
|
+
level: 2 | 1 | 3;
|
3438
|
+
parentId: string | null;
|
3439
|
+
childCategoryList: {
|
3440
|
+
id: string;
|
3441
|
+
value: string;
|
3442
|
+
level: 2 | 1 | 3;
|
3443
|
+
parentId: string | null;
|
3444
|
+
childCategoryList: any[];
|
3445
|
+
}[];
|
3446
|
+
}[];
|
3447
|
+
}[];
|
3301
3448
|
tags: {
|
3302
3449
|
id: string;
|
3303
3450
|
name: string;
|
@@ -3326,11 +3473,34 @@ export declare const lineContract: {
|
|
3326
3473
|
handledTime: number | null;
|
3327
3474
|
firstResponseTime: number | null;
|
3328
3475
|
wrapUpForm: {
|
3476
|
+
type: string;
|
3329
3477
|
id: string;
|
3330
3478
|
disposition: string | null;
|
3331
3479
|
createdAt: Date;
|
3332
3480
|
updatedAt: Date;
|
3333
3481
|
deletedAt: Date | null;
|
3482
|
+
categories: {
|
3483
|
+
id: string;
|
3484
|
+
value: string;
|
3485
|
+
createdAt: Date;
|
3486
|
+
updatedAt: Date;
|
3487
|
+
deletedAt: Date | null;
|
3488
|
+
level: 2 | 1 | 3;
|
3489
|
+
parentId: string | null;
|
3490
|
+
childCategoryList: {
|
3491
|
+
id: string;
|
3492
|
+
value: string;
|
3493
|
+
level: 2 | 1 | 3;
|
3494
|
+
parentId: string | null;
|
3495
|
+
childCategoryList: {
|
3496
|
+
id: string;
|
3497
|
+
value: string;
|
3498
|
+
level: 2 | 1 | 3;
|
3499
|
+
parentId: string | null;
|
3500
|
+
childCategoryList: any[];
|
3501
|
+
}[];
|
3502
|
+
}[];
|
3503
|
+
}[];
|
3334
3504
|
tags: {
|
3335
3505
|
id: string;
|
3336
3506
|
name: string;
|
@@ -3359,11 +3529,34 @@ export declare const lineContract: {
|
|
3359
3529
|
handledTime: number | null;
|
3360
3530
|
firstResponseTime: number | null;
|
3361
3531
|
wrapUpForm: {
|
3532
|
+
type: string;
|
3362
3533
|
id: string;
|
3363
3534
|
disposition: string | null;
|
3364
3535
|
createdAt: Date;
|
3365
3536
|
updatedAt: Date;
|
3366
3537
|
deletedAt: Date | null;
|
3538
|
+
categories: {
|
3539
|
+
id: string;
|
3540
|
+
value: string;
|
3541
|
+
createdAt: Date;
|
3542
|
+
updatedAt: Date;
|
3543
|
+
deletedAt: Date | null;
|
3544
|
+
level: 2 | 1 | 3;
|
3545
|
+
parentId: string | null;
|
3546
|
+
childCategoryList: {
|
3547
|
+
id: string;
|
3548
|
+
value: string;
|
3549
|
+
level: 2 | 1 | 3;
|
3550
|
+
parentId: string | null;
|
3551
|
+
childCategoryList: {
|
3552
|
+
id: string;
|
3553
|
+
value: string;
|
3554
|
+
level: 2 | 1 | 3;
|
3555
|
+
parentId: string | null;
|
3556
|
+
childCategoryList: any[];
|
3557
|
+
}[];
|
3558
|
+
}[];
|
3559
|
+
}[];
|
3367
3560
|
tags: {
|
3368
3561
|
id: string;
|
3369
3562
|
name: string;
|
@@ -3673,11 +3866,34 @@ export declare const lineContract: {
|
|
3673
3866
|
handledTime: number | null;
|
3674
3867
|
firstResponseTime: number | null;
|
3675
3868
|
wrapUpForm: {
|
3869
|
+
type: string;
|
3676
3870
|
id: string;
|
3677
3871
|
disposition: string | null;
|
3678
3872
|
createdAt: Date;
|
3679
3873
|
updatedAt: Date;
|
3680
3874
|
deletedAt: Date | null;
|
3875
|
+
categories: {
|
3876
|
+
id: string;
|
3877
|
+
value: string;
|
3878
|
+
createdAt: Date;
|
3879
|
+
updatedAt: Date;
|
3880
|
+
deletedAt: Date | null;
|
3881
|
+
level: 2 | 1 | 3;
|
3882
|
+
parentId: string | null;
|
3883
|
+
childCategoryList: {
|
3884
|
+
id: string;
|
3885
|
+
value: string;
|
3886
|
+
level: 2 | 1 | 3;
|
3887
|
+
parentId: string | null;
|
3888
|
+
childCategoryList: {
|
3889
|
+
id: string;
|
3890
|
+
value: string;
|
3891
|
+
level: 2 | 1 | 3;
|
3892
|
+
parentId: string | null;
|
3893
|
+
childCategoryList: any[];
|
3894
|
+
}[];
|
3895
|
+
}[];
|
3896
|
+
}[];
|
3681
3897
|
tags: {
|
3682
3898
|
id: string;
|
3683
3899
|
name: string;
|
@@ -3987,11 +4203,34 @@ export declare const lineContract: {
|
|
3987
4203
|
handledTime: number | null;
|
3988
4204
|
firstResponseTime: number | null;
|
3989
4205
|
wrapUpForm: {
|
4206
|
+
type: string;
|
3990
4207
|
id: string;
|
3991
4208
|
disposition: string | null;
|
3992
4209
|
createdAt: Date;
|
3993
4210
|
updatedAt: Date;
|
3994
4211
|
deletedAt: Date | null;
|
4212
|
+
categories: {
|
4213
|
+
id: string;
|
4214
|
+
value: string;
|
4215
|
+
createdAt: Date;
|
4216
|
+
updatedAt: Date;
|
4217
|
+
deletedAt: Date | null;
|
4218
|
+
level: 2 | 1 | 3;
|
4219
|
+
parentId: string | null;
|
4220
|
+
childCategoryList: {
|
4221
|
+
id: string;
|
4222
|
+
value: string;
|
4223
|
+
level: 2 | 1 | 3;
|
4224
|
+
parentId: string | null;
|
4225
|
+
childCategoryList: {
|
4226
|
+
id: string;
|
4227
|
+
value: string;
|
4228
|
+
level: 2 | 1 | 3;
|
4229
|
+
parentId: string | null;
|
4230
|
+
childCategoryList: any[];
|
4231
|
+
}[];
|
4232
|
+
}[];
|
4233
|
+
}[];
|
3995
4234
|
tags: {
|
3996
4235
|
id: string;
|
3997
4236
|
name: string;
|
@@ -6047,11 +6286,34 @@ export declare const lineContract: {
|
|
6047
6286
|
handledTime: number | null;
|
6048
6287
|
firstResponseTime: number | null;
|
6049
6288
|
wrapUpForm: {
|
6289
|
+
type: string;
|
6050
6290
|
id: string;
|
6051
6291
|
disposition: string | null;
|
6052
6292
|
createdAt: Date;
|
6053
6293
|
updatedAt: Date;
|
6054
6294
|
deletedAt: Date | null;
|
6295
|
+
categories: {
|
6296
|
+
id: string;
|
6297
|
+
value: string;
|
6298
|
+
createdAt: Date;
|
6299
|
+
updatedAt: Date;
|
6300
|
+
deletedAt: Date | null;
|
6301
|
+
level: 2 | 1 | 3;
|
6302
|
+
parentId: string | null;
|
6303
|
+
childCategoryList: {
|
6304
|
+
id: string;
|
6305
|
+
value: string;
|
6306
|
+
level: 2 | 1 | 3;
|
6307
|
+
parentId: string | null;
|
6308
|
+
childCategoryList: {
|
6309
|
+
id: string;
|
6310
|
+
value: string;
|
6311
|
+
level: 2 | 1 | 3;
|
6312
|
+
parentId: string | null;
|
6313
|
+
childCategoryList: any[];
|
6314
|
+
}[];
|
6315
|
+
}[];
|
6316
|
+
}[];
|
6055
6317
|
tags: {
|
6056
6318
|
id: string;
|
6057
6319
|
name: string;
|
@@ -6687,11 +6949,34 @@ export declare const lineContract: {
|
|
6687
6949
|
handledTime: number | null;
|
6688
6950
|
firstResponseTime: number | null;
|
6689
6951
|
wrapUpForm: {
|
6952
|
+
type: string;
|
6690
6953
|
id: string;
|
6691
6954
|
disposition: string | null;
|
6692
6955
|
createdAt: Date;
|
6693
6956
|
updatedAt: Date;
|
6694
6957
|
deletedAt: Date | null;
|
6958
|
+
categories: {
|
6959
|
+
id: string;
|
6960
|
+
value: string;
|
6961
|
+
createdAt: Date;
|
6962
|
+
updatedAt: Date;
|
6963
|
+
deletedAt: Date | null;
|
6964
|
+
level: 2 | 1 | 3;
|
6965
|
+
parentId: string | null;
|
6966
|
+
childCategoryList: {
|
6967
|
+
id: string;
|
6968
|
+
value: string;
|
6969
|
+
level: 2 | 1 | 3;
|
6970
|
+
parentId: string | null;
|
6971
|
+
childCategoryList: {
|
6972
|
+
id: string;
|
6973
|
+
value: string;
|
6974
|
+
level: 2 | 1 | 3;
|
6975
|
+
parentId: string | null;
|
6976
|
+
childCategoryList: any[];
|
6977
|
+
}[];
|
6978
|
+
}[];
|
6979
|
+
}[];
|
6695
6980
|
tags: {
|
6696
6981
|
id: string;
|
6697
6982
|
name: string;
|
@@ -7329,11 +7614,34 @@ export declare const lineContract: {
|
|
7329
7614
|
handledTime: number | null;
|
7330
7615
|
firstResponseTime: number | null;
|
7331
7616
|
wrapUpForm: {
|
7617
|
+
type: string;
|
7332
7618
|
id: string;
|
7333
7619
|
disposition: string | null;
|
7334
7620
|
createdAt: Date;
|
7335
7621
|
updatedAt: Date;
|
7336
7622
|
deletedAt: Date | null;
|
7623
|
+
categories: {
|
7624
|
+
id: string;
|
7625
|
+
value: string;
|
7626
|
+
createdAt: Date;
|
7627
|
+
updatedAt: Date;
|
7628
|
+
deletedAt: Date | null;
|
7629
|
+
level: 2 | 1 | 3;
|
7630
|
+
parentId: string | null;
|
7631
|
+
childCategoryList: {
|
7632
|
+
id: string;
|
7633
|
+
value: string;
|
7634
|
+
level: 2 | 1 | 3;
|
7635
|
+
parentId: string | null;
|
7636
|
+
childCategoryList: {
|
7637
|
+
id: string;
|
7638
|
+
value: string;
|
7639
|
+
level: 2 | 1 | 3;
|
7640
|
+
parentId: string | null;
|
7641
|
+
childCategoryList: any[];
|
7642
|
+
}[];
|
7643
|
+
}[];
|
7644
|
+
}[];
|
7337
7645
|
tags: {
|
7338
7646
|
id: string;
|
7339
7647
|
name: string;
|
@@ -7972,11 +8280,34 @@ export declare const lineContract: {
|
|
7972
8280
|
handledTime: number | null;
|
7973
8281
|
firstResponseTime: number | null;
|
7974
8282
|
wrapUpForm: {
|
8283
|
+
type: string;
|
7975
8284
|
id: string;
|
7976
8285
|
disposition: string | null;
|
7977
8286
|
createdAt: Date;
|
7978
8287
|
updatedAt: Date;
|
7979
8288
|
deletedAt: Date | null;
|
8289
|
+
categories: {
|
8290
|
+
id: string;
|
8291
|
+
value: string;
|
8292
|
+
createdAt: Date;
|
8293
|
+
updatedAt: Date;
|
8294
|
+
deletedAt: Date | null;
|
8295
|
+
level: 2 | 1 | 3;
|
8296
|
+
parentId: string | null;
|
8297
|
+
childCategoryList: {
|
8298
|
+
id: string;
|
8299
|
+
value: string;
|
8300
|
+
level: 2 | 1 | 3;
|
8301
|
+
parentId: string | null;
|
8302
|
+
childCategoryList: {
|
8303
|
+
id: string;
|
8304
|
+
value: string;
|
8305
|
+
level: 2 | 1 | 3;
|
8306
|
+
parentId: string | null;
|
8307
|
+
childCategoryList: any[];
|
8308
|
+
}[];
|
8309
|
+
}[];
|
8310
|
+
}[];
|
7980
8311
|
tags: {
|
7981
8312
|
id: string;
|
7982
8313
|
name: string;
|
@@ -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"}
|