@kl1/contracts 1.0.44 → 1.0.45

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.
Files changed (47) hide show
  1. package/dist/index.js +97 -33
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +97 -33
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/chat/index.d.ts +193 -0
  6. package/dist/src/chat/index.d.ts.map +1 -1
  7. package/dist/src/chat/schema.d.ts +44 -0
  8. package/dist/src/chat/schema.d.ts.map +1 -1
  9. package/dist/src/chat/validation.d.ts +48 -0
  10. package/dist/src/chat/validation.d.ts.map +1 -1
  11. package/dist/src/comment/index.d.ts +1540 -150
  12. package/dist/src/comment/index.d.ts.map +1 -1
  13. package/dist/src/comment/schema.d.ts +424 -22
  14. package/dist/src/comment/schema.d.ts.map +1 -1
  15. package/dist/src/contact/index.d.ts +77 -0
  16. package/dist/src/contact/index.d.ts.map +1 -1
  17. package/dist/src/contact/schema.d.ts +16 -0
  18. package/dist/src/contact/schema.d.ts.map +1 -1
  19. package/dist/src/contact/validation.d.ts +63 -0
  20. package/dist/src/contact/validation.d.ts.map +1 -1
  21. package/dist/src/contract.d.ts +5337 -818
  22. package/dist/src/contract.d.ts.map +1 -1
  23. package/dist/src/cx-log/index.d.ts +54 -0
  24. package/dist/src/cx-log/index.d.ts.map +1 -1
  25. package/dist/src/cx-log/schema.d.ts +46 -0
  26. package/dist/src/cx-log/schema.d.ts.map +1 -1
  27. package/dist/src/mail/mail-contract.d.ts +7 -0
  28. package/dist/src/mail/mail-contract.d.ts.map +1 -1
  29. package/dist/src/mail/room-contract.d.ts +7 -0
  30. package/dist/src/mail/room-contract.d.ts.map +1 -1
  31. package/dist/src/mail/schemas/room.schema.d.ts +5 -0
  32. package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
  33. package/dist/src/messenger/index.d.ts +24 -0
  34. package/dist/src/messenger/index.d.ts.map +1 -1
  35. package/dist/src/telephony-cdr/call-report.schema.d.ts +334 -1
  36. package/dist/src/telephony-cdr/call-report.schema.d.ts.map +1 -1
  37. package/dist/src/telephony-cdr/index.d.ts +650 -1
  38. package/dist/src/telephony-cdr/index.d.ts.map +1 -1
  39. package/dist/src/telephony-cdr/schema.d.ts +670 -0
  40. package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
  41. package/dist/src/ticket/index.d.ts +2338 -171
  42. package/dist/src/ticket/index.d.ts.map +1 -1
  43. package/dist/src/ticket/schema.d.ts +327 -12
  44. package/dist/src/ticket/schema.d.ts.map +1 -1
  45. package/dist/src/upload/schema.d.ts +3 -0
  46. package/dist/src/upload/schema.d.ts.map +1 -1
  47. package/package.json +1 -1
@@ -546,6 +546,7 @@ export declare const cxLogContract: {
546
546
  fileSize: z.ZodNumber;
547
547
  fileKey: z.ZodString;
548
548
  fileUrl: z.ZodNullable<z.ZodString>;
549
+ status: z.ZodOptional<z.ZodString>;
549
550
  }, "strip", z.ZodTypeAny, {
550
551
  id: string;
551
552
  createdAt: Date;
@@ -556,6 +557,7 @@ export declare const cxLogContract: {
556
557
  bucketName: string;
557
558
  fileSize: number;
558
559
  fileUrl: string | null;
560
+ status?: string | undefined;
559
561
  }, {
560
562
  id: string;
561
563
  createdAt: Date;
@@ -566,6 +568,7 @@ export declare const cxLogContract: {
566
568
  bucketName: string;
567
569
  fileSize: number;
568
570
  fileUrl: string | null;
571
+ status?: string | undefined;
569
572
  }>;
570
573
  }, "strip", z.ZodTypeAny, {
571
574
  id: string;
@@ -583,6 +586,7 @@ export declare const cxLogContract: {
583
586
  bucketName: string;
584
587
  fileSize: number;
585
588
  fileUrl: string | null;
589
+ status?: string | undefined;
586
590
  };
587
591
  }, {
588
592
  id: string;
@@ -600,6 +604,7 @@ export declare const cxLogContract: {
600
604
  bucketName: string;
601
605
  fileSize: number;
602
606
  fileUrl: string | null;
607
+ status?: string | undefined;
603
608
  };
604
609
  }>, "many">;
605
610
  }, "strip", z.ZodTypeAny, {
@@ -641,6 +646,7 @@ export declare const cxLogContract: {
641
646
  bucketName: string;
642
647
  fileSize: number;
643
648
  fileUrl: string | null;
649
+ status?: string | undefined;
644
650
  };
645
651
  }[];
646
652
  }, {
@@ -682,6 +688,7 @@ export declare const cxLogContract: {
682
688
  bucketName: string;
683
689
  fileSize: number;
684
690
  fileUrl: string | null;
691
+ status?: string | undefined;
685
692
  };
686
693
  }[];
687
694
  }>, "many">;
@@ -836,6 +843,7 @@ export declare const cxLogContract: {
836
843
  bucketName: string;
837
844
  fileSize: number;
838
845
  fileUrl: string | null;
846
+ status?: string | undefined;
839
847
  };
840
848
  }[];
841
849
  }[];
@@ -938,6 +946,7 @@ export declare const cxLogContract: {
938
946
  bucketName: string;
939
947
  fileSize: number;
940
948
  fileUrl: string | null;
949
+ status?: string | undefined;
941
950
  };
942
951
  }[];
943
952
  }[];
@@ -1054,6 +1063,7 @@ export declare const cxLogContract: {
1054
1063
  bucketName: string;
1055
1064
  fileSize: number;
1056
1065
  fileUrl: string | null;
1066
+ status?: string | undefined;
1057
1067
  };
1058
1068
  }[];
1059
1069
  }[];
@@ -1171,6 +1181,7 @@ export declare const cxLogContract: {
1171
1181
  bucketName: string;
1172
1182
  fileSize: number;
1173
1183
  fileUrl: string | null;
1184
+ status?: string | undefined;
1174
1185
  };
1175
1186
  }[];
1176
1187
  }[];
@@ -2114,6 +2125,7 @@ export declare const cxLogContract: {
2114
2125
  bucketName: string;
2115
2126
  fileSize: number;
2116
2127
  fileUrl: string | null;
2128
+ status?: string | undefined;
2117
2129
  };
2118
2130
  }[];
2119
2131
  }[];
@@ -2397,6 +2409,7 @@ export declare const cxLogContract: {
2397
2409
  bucketName: string;
2398
2410
  fileSize: number;
2399
2411
  fileUrl: string | null;
2412
+ status?: string | undefined;
2400
2413
  };
2401
2414
  }[];
2402
2415
  }[];
@@ -2878,6 +2891,7 @@ export declare const cxLogContract: {
2878
2891
  fileSize: z.ZodNumber;
2879
2892
  fileKey: z.ZodString;
2880
2893
  fileUrl: z.ZodNullable<z.ZodString>;
2894
+ status: z.ZodOptional<z.ZodString>;
2881
2895
  }, "strip", z.ZodTypeAny, {
2882
2896
  id: string;
2883
2897
  createdAt: Date;
@@ -2888,6 +2902,7 @@ export declare const cxLogContract: {
2888
2902
  bucketName: string;
2889
2903
  fileSize: number;
2890
2904
  fileUrl: string | null;
2905
+ status?: string | undefined;
2891
2906
  }, {
2892
2907
  id: string;
2893
2908
  createdAt: Date;
@@ -2898,6 +2913,7 @@ export declare const cxLogContract: {
2898
2913
  bucketName: string;
2899
2914
  fileSize: number;
2900
2915
  fileUrl: string | null;
2916
+ status?: string | undefined;
2901
2917
  }>;
2902
2918
  }, "strip", z.ZodTypeAny, {
2903
2919
  id: string;
@@ -2915,6 +2931,7 @@ export declare const cxLogContract: {
2915
2931
  bucketName: string;
2916
2932
  fileSize: number;
2917
2933
  fileUrl: string | null;
2934
+ status?: string | undefined;
2918
2935
  };
2919
2936
  }, {
2920
2937
  id: string;
@@ -2932,6 +2949,7 @@ export declare const cxLogContract: {
2932
2949
  bucketName: string;
2933
2950
  fileSize: number;
2934
2951
  fileUrl: string | null;
2952
+ status?: string | undefined;
2935
2953
  };
2936
2954
  }>, "many">;
2937
2955
  }, "strip", z.ZodTypeAny, {
@@ -2973,6 +2991,7 @@ export declare const cxLogContract: {
2973
2991
  bucketName: string;
2974
2992
  fileSize: number;
2975
2993
  fileUrl: string | null;
2994
+ status?: string | undefined;
2976
2995
  };
2977
2996
  }[];
2978
2997
  }, {
@@ -3014,6 +3033,7 @@ export declare const cxLogContract: {
3014
3033
  bucketName: string;
3015
3034
  fileSize: number;
3016
3035
  fileUrl: string | null;
3036
+ status?: string | undefined;
3017
3037
  };
3018
3038
  }[];
3019
3039
  }>, "many">;
@@ -3168,6 +3188,7 @@ export declare const cxLogContract: {
3168
3188
  bucketName: string;
3169
3189
  fileSize: number;
3170
3190
  fileUrl: string | null;
3191
+ status?: string | undefined;
3171
3192
  };
3172
3193
  }[];
3173
3194
  }[];
@@ -3270,6 +3291,7 @@ export declare const cxLogContract: {
3270
3291
  bucketName: string;
3271
3292
  fileSize: number;
3272
3293
  fileUrl: string | null;
3294
+ status?: string | undefined;
3273
3295
  };
3274
3296
  }[];
3275
3297
  }[];
@@ -3371,6 +3393,7 @@ export declare const cxLogContract: {
3371
3393
  fileSize: z.ZodNumber;
3372
3394
  fileKey: z.ZodString;
3373
3395
  fileUrl: z.ZodNullable<z.ZodString>;
3396
+ status: z.ZodOptional<z.ZodString>;
3374
3397
  }, "strip", z.ZodTypeAny, {
3375
3398
  id: string;
3376
3399
  createdAt: Date;
@@ -3381,6 +3404,7 @@ export declare const cxLogContract: {
3381
3404
  bucketName: string;
3382
3405
  fileSize: number;
3383
3406
  fileUrl: string | null;
3407
+ status?: string | undefined;
3384
3408
  }, {
3385
3409
  id: string;
3386
3410
  createdAt: Date;
@@ -3391,6 +3415,7 @@ export declare const cxLogContract: {
3391
3415
  bucketName: string;
3392
3416
  fileSize: number;
3393
3417
  fileUrl: string | null;
3418
+ status?: string | undefined;
3394
3419
  }>>>;
3395
3420
  serialNumber: z.ZodNullable<z.ZodString>;
3396
3421
  extensionId: z.ZodNullable<z.ZodString>;
@@ -3796,6 +3821,7 @@ export declare const cxLogContract: {
3796
3821
  bucketName: string;
3797
3822
  fileSize: number;
3798
3823
  fileUrl: string | null;
3824
+ status?: string | undefined;
3799
3825
  };
3800
3826
  }[];
3801
3827
  }[];
@@ -3872,6 +3898,7 @@ export declare const cxLogContract: {
3872
3898
  bucketName: string;
3873
3899
  fileSize: number;
3874
3900
  fileUrl: string | null;
3901
+ status?: string | undefined;
3875
3902
  } | null | undefined;
3876
3903
  extension?: {
3877
3904
  id: string;
@@ -4001,6 +4028,7 @@ export declare const cxLogContract: {
4001
4028
  bucketName: string;
4002
4029
  fileSize: number;
4003
4030
  fileUrl: string | null;
4031
+ status?: string | undefined;
4004
4032
  };
4005
4033
  }[];
4006
4034
  }[];
@@ -4077,6 +4105,7 @@ export declare const cxLogContract: {
4077
4105
  bucketName: string;
4078
4106
  fileSize: number;
4079
4107
  fileUrl: string | null;
4108
+ status?: string | undefined;
4080
4109
  } | null | undefined;
4081
4110
  extension?: {
4082
4111
  id: string;
@@ -4444,6 +4473,7 @@ export declare const cxLogContract: {
4444
4473
  fileSize: z.ZodNumber;
4445
4474
  fileKey: z.ZodString;
4446
4475
  fileUrl: z.ZodNullable<z.ZodString>;
4476
+ status: z.ZodOptional<z.ZodString>;
4447
4477
  }, "strip", z.ZodTypeAny, {
4448
4478
  id: string;
4449
4479
  createdAt: Date;
@@ -4454,6 +4484,7 @@ export declare const cxLogContract: {
4454
4484
  bucketName: string;
4455
4485
  fileSize: number;
4456
4486
  fileUrl: string | null;
4487
+ status?: string | undefined;
4457
4488
  }, {
4458
4489
  id: string;
4459
4490
  createdAt: Date;
@@ -4464,6 +4495,7 @@ export declare const cxLogContract: {
4464
4495
  bucketName: string;
4465
4496
  fileSize: number;
4466
4497
  fileUrl: string | null;
4498
+ status?: string | undefined;
4467
4499
  }>;
4468
4500
  }, "strip", z.ZodTypeAny, {
4469
4501
  id: string;
@@ -4481,6 +4513,7 @@ export declare const cxLogContract: {
4481
4513
  bucketName: string;
4482
4514
  fileSize: number;
4483
4515
  fileUrl: string | null;
4516
+ status?: string | undefined;
4484
4517
  };
4485
4518
  }, {
4486
4519
  id: string;
@@ -4498,6 +4531,7 @@ export declare const cxLogContract: {
4498
4531
  bucketName: string;
4499
4532
  fileSize: number;
4500
4533
  fileUrl: string | null;
4534
+ status?: string | undefined;
4501
4535
  };
4502
4536
  }>, "many">;
4503
4537
  }, "strip", z.ZodTypeAny, {
@@ -4539,6 +4573,7 @@ export declare const cxLogContract: {
4539
4573
  bucketName: string;
4540
4574
  fileSize: number;
4541
4575
  fileUrl: string | null;
4576
+ status?: string | undefined;
4542
4577
  };
4543
4578
  }[];
4544
4579
  }, {
@@ -4580,6 +4615,7 @@ export declare const cxLogContract: {
4580
4615
  bucketName: string;
4581
4616
  fileSize: number;
4582
4617
  fileUrl: string | null;
4618
+ status?: string | undefined;
4583
4619
  };
4584
4620
  }[];
4585
4621
  }>, "many">;
@@ -4734,6 +4770,7 @@ export declare const cxLogContract: {
4734
4770
  bucketName: string;
4735
4771
  fileSize: number;
4736
4772
  fileUrl: string | null;
4773
+ status?: string | undefined;
4737
4774
  };
4738
4775
  }[];
4739
4776
  }[];
@@ -4836,6 +4873,7 @@ export declare const cxLogContract: {
4836
4873
  bucketName: string;
4837
4874
  fileSize: number;
4838
4875
  fileUrl: string | null;
4876
+ status?: string | undefined;
4839
4877
  };
4840
4878
  }[];
4841
4879
  }[];
@@ -5152,6 +5190,7 @@ export declare const cxLogContract: {
5152
5190
  bucketName: string;
5153
5191
  fileSize: number;
5154
5192
  fileUrl: string | null;
5193
+ status?: string | undefined;
5155
5194
  };
5156
5195
  }[];
5157
5196
  }[];
@@ -5359,6 +5398,7 @@ export declare const cxLogContract: {
5359
5398
  bucketName: string;
5360
5399
  fileSize: number;
5361
5400
  fileUrl: string | null;
5401
+ status?: string | undefined;
5362
5402
  };
5363
5403
  }[];
5364
5404
  }[];
@@ -5597,6 +5637,7 @@ export declare const cxLogContract: {
5597
5637
  bucketName: string;
5598
5638
  fileSize: number;
5599
5639
  fileUrl: string | null;
5640
+ status?: string | undefined;
5600
5641
  };
5601
5642
  }[];
5602
5643
  }[];
@@ -5673,6 +5714,7 @@ export declare const cxLogContract: {
5673
5714
  bucketName: string;
5674
5715
  fileSize: number;
5675
5716
  fileUrl: string | null;
5717
+ status?: string | undefined;
5676
5718
  } | null | undefined;
5677
5719
  extension?: {
5678
5720
  id: string;
@@ -5835,6 +5877,7 @@ export declare const cxLogContract: {
5835
5877
  bucketName: string;
5836
5878
  fileSize: number;
5837
5879
  fileUrl: string | null;
5880
+ status?: string | undefined;
5838
5881
  };
5839
5882
  }[];
5840
5883
  }[];
@@ -6042,6 +6085,7 @@ export declare const cxLogContract: {
6042
6085
  bucketName: string;
6043
6086
  fileSize: number;
6044
6087
  fileUrl: string | null;
6088
+ status?: string | undefined;
6045
6089
  };
6046
6090
  }[];
6047
6091
  }[];
@@ -6280,6 +6324,7 @@ export declare const cxLogContract: {
6280
6324
  bucketName: string;
6281
6325
  fileSize: number;
6282
6326
  fileUrl: string | null;
6327
+ status?: string | undefined;
6283
6328
  };
6284
6329
  }[];
6285
6330
  }[];
@@ -6356,6 +6401,7 @@ export declare const cxLogContract: {
6356
6401
  bucketName: string;
6357
6402
  fileSize: number;
6358
6403
  fileUrl: string | null;
6404
+ status?: string | undefined;
6359
6405
  } | null | undefined;
6360
6406
  extension?: {
6361
6407
  id: string;
@@ -6524,6 +6570,7 @@ export declare const cxLogContract: {
6524
6570
  bucketName: string;
6525
6571
  fileSize: number;
6526
6572
  fileUrl: string | null;
6573
+ status?: string | undefined;
6527
6574
  };
6528
6575
  }[];
6529
6576
  }[];
@@ -6731,6 +6778,7 @@ export declare const cxLogContract: {
6731
6778
  bucketName: string;
6732
6779
  fileSize: number;
6733
6780
  fileUrl: string | null;
6781
+ status?: string | undefined;
6734
6782
  };
6735
6783
  }[];
6736
6784
  }[];
@@ -6969,6 +7017,7 @@ export declare const cxLogContract: {
6969
7017
  bucketName: string;
6970
7018
  fileSize: number;
6971
7019
  fileUrl: string | null;
7020
+ status?: string | undefined;
6972
7021
  };
6973
7022
  }[];
6974
7023
  }[];
@@ -7045,6 +7094,7 @@ export declare const cxLogContract: {
7045
7094
  bucketName: string;
7046
7095
  fileSize: number;
7047
7096
  fileUrl: string | null;
7097
+ status?: string | undefined;
7048
7098
  } | null | undefined;
7049
7099
  extension?: {
7050
7100
  id: string;
@@ -7213,6 +7263,7 @@ export declare const cxLogContract: {
7213
7263
  bucketName: string;
7214
7264
  fileSize: number;
7215
7265
  fileUrl: string | null;
7266
+ status?: string | undefined;
7216
7267
  };
7217
7268
  }[];
7218
7269
  }[];
@@ -7420,6 +7471,7 @@ export declare const cxLogContract: {
7420
7471
  bucketName: string;
7421
7472
  fileSize: number;
7422
7473
  fileUrl: string | null;
7474
+ status?: string | undefined;
7423
7475
  };
7424
7476
  }[];
7425
7477
  }[];
@@ -7658,6 +7710,7 @@ export declare const cxLogContract: {
7658
7710
  bucketName: string;
7659
7711
  fileSize: number;
7660
7712
  fileUrl: string | null;
7713
+ status?: string | undefined;
7661
7714
  };
7662
7715
  }[];
7663
7716
  }[];
@@ -7734,6 +7787,7 @@ export declare const cxLogContract: {
7734
7787
  bucketName: string;
7735
7788
  fileSize: number;
7736
7789
  fileUrl: string | null;
7790
+ status?: string | undefined;
7737
7791
  } | null | undefined;
7738
7792
  extension?: {
7739
7793
  id: string;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/cx-log/index.ts"],"names":[],"mappings":"AAMA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,4BAA4B,EAAE,MAAM,cAAc,CAAC;AAC5D,OAAO,EAAE,wBAAwB,EAAE,MAAM,UAAU,CAAC;AAEpD,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC7D,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAE9E,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4BxB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/cx-log/index.ts"],"names":[],"mappings":"AAMA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,4BAA4B,EAAE,MAAM,cAAc,CAAC;AAC5D,OAAO,EAAE,wBAAwB,EAAE,MAAM,UAAU,CAAC;AAEpD,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC7D,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAE9E,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4BxB,CAAC"}