@kl1/contracts 1.0.43 → 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 (55) hide show
  1. package/dist/index.js +333 -25
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +333 -25
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/app/index.d.ts +17 -0
  6. package/dist/src/app/index.d.ts.map +1 -0
  7. package/dist/src/chat/index.d.ts +203 -0
  8. package/dist/src/chat/index.d.ts.map +1 -1
  9. package/dist/src/chat/schema.d.ts +44 -0
  10. package/dist/src/chat/schema.d.ts.map +1 -1
  11. package/dist/src/chat/validation.d.ts +48 -0
  12. package/dist/src/chat/validation.d.ts.map +1 -1
  13. package/dist/src/comment/index.d.ts +1540 -150
  14. package/dist/src/comment/index.d.ts.map +1 -1
  15. package/dist/src/comment/schema.d.ts +424 -22
  16. package/dist/src/comment/schema.d.ts.map +1 -1
  17. package/dist/src/contact/index.d.ts +77 -0
  18. package/dist/src/contact/index.d.ts.map +1 -1
  19. package/dist/src/contact/schema.d.ts +16 -0
  20. package/dist/src/contact/schema.d.ts.map +1 -1
  21. package/dist/src/contact/validation.d.ts +63 -0
  22. package/dist/src/contact/validation.d.ts.map +1 -1
  23. package/dist/src/contract.d.ts +9588 -950
  24. package/dist/src/contract.d.ts.map +1 -1
  25. package/dist/src/cx-log/index.d.ts +610 -0
  26. package/dist/src/cx-log/index.d.ts.map +1 -1
  27. package/dist/src/cx-log/schema.d.ts +514 -0
  28. package/dist/src/cx-log/schema.d.ts.map +1 -1
  29. package/dist/src/mail/mail-contract.d.ts +7 -0
  30. package/dist/src/mail/mail-contract.d.ts.map +1 -1
  31. package/dist/src/mail/mail-server.d.ts +216 -0
  32. package/dist/src/mail/mail-server.d.ts.map +1 -0
  33. package/dist/src/mail/room-contract.d.ts +7 -0
  34. package/dist/src/mail/room-contract.d.ts.map +1 -1
  35. package/dist/src/mail/schemas/room.schema.d.ts +5 -0
  36. package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
  37. package/dist/src/messenger/index.d.ts +24 -0
  38. package/dist/src/messenger/index.d.ts.map +1 -1
  39. package/dist/src/platform-contact/schema.d.ts +30 -0
  40. package/dist/src/platform-contact/schema.d.ts.map +1 -0
  41. package/dist/src/telephony-cdr/call-report.schema.d.ts +1753 -0
  42. package/dist/src/telephony-cdr/call-report.schema.d.ts.map +1 -0
  43. package/dist/src/telephony-cdr/index.d.ts +4378 -175
  44. package/dist/src/telephony-cdr/index.d.ts.map +1 -1
  45. package/dist/src/telephony-cdr/schema.d.ts +1050 -0
  46. package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
  47. package/dist/src/telephony-cdr/validation.d.ts +56 -0
  48. package/dist/src/telephony-cdr/validation.d.ts.map +1 -1
  49. package/dist/src/ticket/index.d.ts +2338 -171
  50. package/dist/src/ticket/index.d.ts.map +1 -1
  51. package/dist/src/ticket/schema.d.ts +327 -12
  52. package/dist/src/ticket/schema.d.ts.map +1 -1
  53. package/dist/src/upload/schema.d.ts +3 -0
  54. package/dist/src/upload/schema.d.ts.map +1 -1
  55. package/package.json +1 -1
@@ -737,6 +737,7 @@ export declare const contactContract: {
737
737
  fileSize: z.ZodNumber;
738
738
  fileKey: z.ZodString;
739
739
  fileUrl: z.ZodNullable<z.ZodString>;
740
+ status: z.ZodOptional<z.ZodString>;
740
741
  }, "strip", z.ZodTypeAny, {
741
742
  id: string;
742
743
  createdAt: Date;
@@ -747,6 +748,7 @@ export declare const contactContract: {
747
748
  bucketName: string;
748
749
  fileSize: number;
749
750
  fileUrl: string | null;
751
+ status?: string | undefined;
750
752
  }, {
751
753
  id: string;
752
754
  createdAt: Date;
@@ -757,6 +759,7 @@ export declare const contactContract: {
757
759
  bucketName: string;
758
760
  fileSize: number;
759
761
  fileUrl: string | null;
762
+ status?: string | undefined;
760
763
  }>;
761
764
  }, "strip", z.ZodTypeAny, {
762
765
  id: string;
@@ -774,6 +777,7 @@ export declare const contactContract: {
774
777
  bucketName: string;
775
778
  fileSize: number;
776
779
  fileUrl: string | null;
780
+ status?: string | undefined;
777
781
  };
778
782
  }, {
779
783
  id: string;
@@ -791,6 +795,7 @@ export declare const contactContract: {
791
795
  bucketName: string;
792
796
  fileSize: number;
793
797
  fileUrl: string | null;
798
+ status?: string | undefined;
794
799
  };
795
800
  }>, "many">;
796
801
  }, "strip", z.ZodTypeAny, {
@@ -832,6 +837,7 @@ export declare const contactContract: {
832
837
  bucketName: string;
833
838
  fileSize: number;
834
839
  fileUrl: string | null;
840
+ status?: string | undefined;
835
841
  };
836
842
  }[];
837
843
  }, {
@@ -873,6 +879,7 @@ export declare const contactContract: {
873
879
  bucketName: string;
874
880
  fileSize: number;
875
881
  fileUrl: string | null;
882
+ status?: string | undefined;
876
883
  };
877
884
  }[];
878
885
  }>, "many">;
@@ -1027,6 +1034,7 @@ export declare const contactContract: {
1027
1034
  bucketName: string;
1028
1035
  fileSize: number;
1029
1036
  fileUrl: string | null;
1037
+ status?: string | undefined;
1030
1038
  };
1031
1039
  }[];
1032
1040
  }[];
@@ -1129,6 +1137,7 @@ export declare const contactContract: {
1129
1137
  bucketName: string;
1130
1138
  fileSize: number;
1131
1139
  fileUrl: string | null;
1140
+ status?: string | undefined;
1132
1141
  };
1133
1142
  }[];
1134
1143
  }[];
@@ -1233,6 +1242,7 @@ export declare const contactContract: {
1233
1242
  bucketName: string;
1234
1243
  fileSize: number;
1235
1244
  fileUrl: string | null;
1245
+ status?: string | undefined;
1236
1246
  };
1237
1247
  }[];
1238
1248
  }[];
@@ -1342,6 +1352,7 @@ export declare const contactContract: {
1342
1352
  bucketName: string;
1343
1353
  fileSize: number;
1344
1354
  fileUrl: string | null;
1355
+ status?: string | undefined;
1345
1356
  };
1346
1357
  }[];
1347
1358
  }[];
@@ -1798,6 +1809,7 @@ export declare const contactContract: {
1798
1809
  fileSize: z.ZodNumber;
1799
1810
  fileKey: z.ZodString;
1800
1811
  fileUrl: z.ZodNullable<z.ZodString>;
1812
+ status: z.ZodOptional<z.ZodString>;
1801
1813
  }, "strip", z.ZodTypeAny, {
1802
1814
  id: string;
1803
1815
  createdAt: Date;
@@ -1808,6 +1820,7 @@ export declare const contactContract: {
1808
1820
  bucketName: string;
1809
1821
  fileSize: number;
1810
1822
  fileUrl: string | null;
1823
+ status?: string | undefined;
1811
1824
  }, {
1812
1825
  id: string;
1813
1826
  createdAt: Date;
@@ -1818,6 +1831,7 @@ export declare const contactContract: {
1818
1831
  bucketName: string;
1819
1832
  fileSize: number;
1820
1833
  fileUrl: string | null;
1834
+ status?: string | undefined;
1821
1835
  }>;
1822
1836
  }, "strip", z.ZodTypeAny, {
1823
1837
  id: string;
@@ -1835,6 +1849,7 @@ export declare const contactContract: {
1835
1849
  bucketName: string;
1836
1850
  fileSize: number;
1837
1851
  fileUrl: string | null;
1852
+ status?: string | undefined;
1838
1853
  };
1839
1854
  }, {
1840
1855
  id: string;
@@ -1852,6 +1867,7 @@ export declare const contactContract: {
1852
1867
  bucketName: string;
1853
1868
  fileSize: number;
1854
1869
  fileUrl: string | null;
1870
+ status?: string | undefined;
1855
1871
  };
1856
1872
  }>, "many">;
1857
1873
  }, "strip", z.ZodTypeAny, {
@@ -1893,6 +1909,7 @@ export declare const contactContract: {
1893
1909
  bucketName: string;
1894
1910
  fileSize: number;
1895
1911
  fileUrl: string | null;
1912
+ status?: string | undefined;
1896
1913
  };
1897
1914
  }[];
1898
1915
  }, {
@@ -1934,6 +1951,7 @@ export declare const contactContract: {
1934
1951
  bucketName: string;
1935
1952
  fileSize: number;
1936
1953
  fileUrl: string | null;
1954
+ status?: string | undefined;
1937
1955
  };
1938
1956
  }[];
1939
1957
  }>, "many">;
@@ -2088,6 +2106,7 @@ export declare const contactContract: {
2088
2106
  bucketName: string;
2089
2107
  fileSize: number;
2090
2108
  fileUrl: string | null;
2109
+ status?: string | undefined;
2091
2110
  };
2092
2111
  }[];
2093
2112
  }[];
@@ -2190,6 +2209,7 @@ export declare const contactContract: {
2190
2209
  bucketName: string;
2191
2210
  fileSize: number;
2192
2211
  fileUrl: string | null;
2212
+ status?: string | undefined;
2193
2213
  };
2194
2214
  }[];
2195
2215
  }[];
@@ -2294,6 +2314,7 @@ export declare const contactContract: {
2294
2314
  bucketName: string;
2295
2315
  fileSize: number;
2296
2316
  fileUrl: string | null;
2317
+ status?: string | undefined;
2297
2318
  };
2298
2319
  }[];
2299
2320
  }[];
@@ -2403,6 +2424,7 @@ export declare const contactContract: {
2403
2424
  bucketName: string;
2404
2425
  fileSize: number;
2405
2426
  fileUrl: string | null;
2427
+ status?: string | undefined;
2406
2428
  };
2407
2429
  }[];
2408
2430
  }[];
@@ -3112,6 +3134,7 @@ export declare const contactContract: {
3112
3134
  fileSize: z.ZodNumber;
3113
3135
  fileKey: z.ZodString;
3114
3136
  fileUrl: z.ZodNullable<z.ZodString>;
3137
+ status: z.ZodOptional<z.ZodString>;
3115
3138
  }, "strip", z.ZodTypeAny, {
3116
3139
  id: string;
3117
3140
  createdAt: Date;
@@ -3122,6 +3145,7 @@ export declare const contactContract: {
3122
3145
  bucketName: string;
3123
3146
  fileSize: number;
3124
3147
  fileUrl: string | null;
3148
+ status?: string | undefined;
3125
3149
  }, {
3126
3150
  id: string;
3127
3151
  createdAt: Date;
@@ -3132,6 +3156,7 @@ export declare const contactContract: {
3132
3156
  bucketName: string;
3133
3157
  fileSize: number;
3134
3158
  fileUrl: string | null;
3159
+ status?: string | undefined;
3135
3160
  }>;
3136
3161
  }, "strip", z.ZodTypeAny, {
3137
3162
  id: string;
@@ -3149,6 +3174,7 @@ export declare const contactContract: {
3149
3174
  bucketName: string;
3150
3175
  fileSize: number;
3151
3176
  fileUrl: string | null;
3177
+ status?: string | undefined;
3152
3178
  };
3153
3179
  }, {
3154
3180
  id: string;
@@ -3166,6 +3192,7 @@ export declare const contactContract: {
3166
3192
  bucketName: string;
3167
3193
  fileSize: number;
3168
3194
  fileUrl: string | null;
3195
+ status?: string | undefined;
3169
3196
  };
3170
3197
  }>, "many">;
3171
3198
  }, "strip", z.ZodTypeAny, {
@@ -3207,6 +3234,7 @@ export declare const contactContract: {
3207
3234
  bucketName: string;
3208
3235
  fileSize: number;
3209
3236
  fileUrl: string | null;
3237
+ status?: string | undefined;
3210
3238
  };
3211
3239
  }[];
3212
3240
  }, {
@@ -3248,6 +3276,7 @@ export declare const contactContract: {
3248
3276
  bucketName: string;
3249
3277
  fileSize: number;
3250
3278
  fileUrl: string | null;
3279
+ status?: string | undefined;
3251
3280
  };
3252
3281
  }[];
3253
3282
  }>, "many">;
@@ -3402,6 +3431,7 @@ export declare const contactContract: {
3402
3431
  bucketName: string;
3403
3432
  fileSize: number;
3404
3433
  fileUrl: string | null;
3434
+ status?: string | undefined;
3405
3435
  };
3406
3436
  }[];
3407
3437
  }[];
@@ -3504,6 +3534,7 @@ export declare const contactContract: {
3504
3534
  bucketName: string;
3505
3535
  fileSize: number;
3506
3536
  fileUrl: string | null;
3537
+ status?: string | undefined;
3507
3538
  };
3508
3539
  }[];
3509
3540
  }[];
@@ -3608,6 +3639,7 @@ export declare const contactContract: {
3608
3639
  bucketName: string;
3609
3640
  fileSize: number;
3610
3641
  fileUrl: string | null;
3642
+ status?: string | undefined;
3611
3643
  };
3612
3644
  }[];
3613
3645
  }[];
@@ -3713,6 +3745,7 @@ export declare const contactContract: {
3713
3745
  bucketName: string;
3714
3746
  fileSize: number;
3715
3747
  fileUrl: string | null;
3748
+ status?: string | undefined;
3716
3749
  };
3717
3750
  }[];
3718
3751
  }[];
@@ -4247,6 +4280,7 @@ export declare const contactContract: {
4247
4280
  fileSize: z.ZodNumber;
4248
4281
  fileKey: z.ZodString;
4249
4282
  fileUrl: z.ZodNullable<z.ZodString>;
4283
+ status: z.ZodOptional<z.ZodString>;
4250
4284
  }, "strip", z.ZodTypeAny, {
4251
4285
  id: string;
4252
4286
  createdAt: Date;
@@ -4257,6 +4291,7 @@ export declare const contactContract: {
4257
4291
  bucketName: string;
4258
4292
  fileSize: number;
4259
4293
  fileUrl: string | null;
4294
+ status?: string | undefined;
4260
4295
  }, {
4261
4296
  id: string;
4262
4297
  createdAt: Date;
@@ -4267,6 +4302,7 @@ export declare const contactContract: {
4267
4302
  bucketName: string;
4268
4303
  fileSize: number;
4269
4304
  fileUrl: string | null;
4305
+ status?: string | undefined;
4270
4306
  }>;
4271
4307
  }, "strip", z.ZodTypeAny, {
4272
4308
  id: string;
@@ -4284,6 +4320,7 @@ export declare const contactContract: {
4284
4320
  bucketName: string;
4285
4321
  fileSize: number;
4286
4322
  fileUrl: string | null;
4323
+ status?: string | undefined;
4287
4324
  };
4288
4325
  }, {
4289
4326
  id: string;
@@ -4301,6 +4338,7 @@ export declare const contactContract: {
4301
4338
  bucketName: string;
4302
4339
  fileSize: number;
4303
4340
  fileUrl: string | null;
4341
+ status?: string | undefined;
4304
4342
  };
4305
4343
  }>, "many">;
4306
4344
  }, "strip", z.ZodTypeAny, {
@@ -4342,6 +4380,7 @@ export declare const contactContract: {
4342
4380
  bucketName: string;
4343
4381
  fileSize: number;
4344
4382
  fileUrl: string | null;
4383
+ status?: string | undefined;
4345
4384
  };
4346
4385
  }[];
4347
4386
  }, {
@@ -4383,6 +4422,7 @@ export declare const contactContract: {
4383
4422
  bucketName: string;
4384
4423
  fileSize: number;
4385
4424
  fileUrl: string | null;
4425
+ status?: string | undefined;
4386
4426
  };
4387
4427
  }[];
4388
4428
  }>, "many">;
@@ -4537,6 +4577,7 @@ export declare const contactContract: {
4537
4577
  bucketName: string;
4538
4578
  fileSize: number;
4539
4579
  fileUrl: string | null;
4580
+ status?: string | undefined;
4540
4581
  };
4541
4582
  }[];
4542
4583
  }[];
@@ -4639,6 +4680,7 @@ export declare const contactContract: {
4639
4680
  bucketName: string;
4640
4681
  fileSize: number;
4641
4682
  fileUrl: string | null;
4683
+ status?: string | undefined;
4642
4684
  };
4643
4685
  }[];
4644
4686
  }[];
@@ -4743,6 +4785,7 @@ export declare const contactContract: {
4743
4785
  bucketName: string;
4744
4786
  fileSize: number;
4745
4787
  fileUrl: string | null;
4788
+ status?: string | undefined;
4746
4789
  };
4747
4790
  }[];
4748
4791
  }[];
@@ -4848,6 +4891,7 @@ export declare const contactContract: {
4848
4891
  bucketName: string;
4849
4892
  fileSize: number;
4850
4893
  fileUrl: string | null;
4894
+ status?: string | undefined;
4851
4895
  };
4852
4896
  }[];
4853
4897
  }[];
@@ -5293,6 +5337,7 @@ export declare const contactContract: {
5293
5337
  fileSize: z.ZodNumber;
5294
5338
  fileKey: z.ZodString;
5295
5339
  fileUrl: z.ZodNullable<z.ZodString>;
5340
+ status: z.ZodOptional<z.ZodString>;
5296
5341
  }, "strip", z.ZodTypeAny, {
5297
5342
  id: string;
5298
5343
  createdAt: Date;
@@ -5303,6 +5348,7 @@ export declare const contactContract: {
5303
5348
  bucketName: string;
5304
5349
  fileSize: number;
5305
5350
  fileUrl: string | null;
5351
+ status?: string | undefined;
5306
5352
  }, {
5307
5353
  id: string;
5308
5354
  createdAt: Date;
@@ -5313,6 +5359,7 @@ export declare const contactContract: {
5313
5359
  bucketName: string;
5314
5360
  fileSize: number;
5315
5361
  fileUrl: string | null;
5362
+ status?: string | undefined;
5316
5363
  }>;
5317
5364
  }, "strip", z.ZodTypeAny, {
5318
5365
  id: string;
@@ -5330,6 +5377,7 @@ export declare const contactContract: {
5330
5377
  bucketName: string;
5331
5378
  fileSize: number;
5332
5379
  fileUrl: string | null;
5380
+ status?: string | undefined;
5333
5381
  };
5334
5382
  }, {
5335
5383
  id: string;
@@ -5347,6 +5395,7 @@ export declare const contactContract: {
5347
5395
  bucketName: string;
5348
5396
  fileSize: number;
5349
5397
  fileUrl: string | null;
5398
+ status?: string | undefined;
5350
5399
  };
5351
5400
  }>, "many">;
5352
5401
  }, "strip", z.ZodTypeAny, {
@@ -5388,6 +5437,7 @@ export declare const contactContract: {
5388
5437
  bucketName: string;
5389
5438
  fileSize: number;
5390
5439
  fileUrl: string | null;
5440
+ status?: string | undefined;
5391
5441
  };
5392
5442
  }[];
5393
5443
  }, {
@@ -5429,6 +5479,7 @@ export declare const contactContract: {
5429
5479
  bucketName: string;
5430
5480
  fileSize: number;
5431
5481
  fileUrl: string | null;
5482
+ status?: string | undefined;
5432
5483
  };
5433
5484
  }[];
5434
5485
  }>, "many">;
@@ -5583,6 +5634,7 @@ export declare const contactContract: {
5583
5634
  bucketName: string;
5584
5635
  fileSize: number;
5585
5636
  fileUrl: string | null;
5637
+ status?: string | undefined;
5586
5638
  };
5587
5639
  }[];
5588
5640
  }[];
@@ -5685,6 +5737,7 @@ export declare const contactContract: {
5685
5737
  bucketName: string;
5686
5738
  fileSize: number;
5687
5739
  fileUrl: string | null;
5740
+ status?: string | undefined;
5688
5741
  };
5689
5742
  }[];
5690
5743
  }[];
@@ -5789,6 +5842,7 @@ export declare const contactContract: {
5789
5842
  bucketName: string;
5790
5843
  fileSize: number;
5791
5844
  fileUrl: string | null;
5845
+ status?: string | undefined;
5792
5846
  };
5793
5847
  }[];
5794
5848
  }[];
@@ -5894,6 +5948,7 @@ export declare const contactContract: {
5894
5948
  bucketName: string;
5895
5949
  fileSize: number;
5896
5950
  fileUrl: string | null;
5951
+ status?: string | undefined;
5897
5952
  };
5898
5953
  }[];
5899
5954
  }[];
@@ -6375,6 +6430,7 @@ export declare const contactContract: {
6375
6430
  fileSize: z.ZodNumber;
6376
6431
  fileKey: z.ZodString;
6377
6432
  fileUrl: z.ZodNullable<z.ZodString>;
6433
+ status: z.ZodOptional<z.ZodString>;
6378
6434
  }, "strip", z.ZodTypeAny, {
6379
6435
  id: string;
6380
6436
  createdAt: Date;
@@ -6385,6 +6441,7 @@ export declare const contactContract: {
6385
6441
  bucketName: string;
6386
6442
  fileSize: number;
6387
6443
  fileUrl: string | null;
6444
+ status?: string | undefined;
6388
6445
  }, {
6389
6446
  id: string;
6390
6447
  createdAt: Date;
@@ -6395,6 +6452,7 @@ export declare const contactContract: {
6395
6452
  bucketName: string;
6396
6453
  fileSize: number;
6397
6454
  fileUrl: string | null;
6455
+ status?: string | undefined;
6398
6456
  }>;
6399
6457
  }, "strip", z.ZodTypeAny, {
6400
6458
  id: string;
@@ -6412,6 +6470,7 @@ export declare const contactContract: {
6412
6470
  bucketName: string;
6413
6471
  fileSize: number;
6414
6472
  fileUrl: string | null;
6473
+ status?: string | undefined;
6415
6474
  };
6416
6475
  }, {
6417
6476
  id: string;
@@ -6429,6 +6488,7 @@ export declare const contactContract: {
6429
6488
  bucketName: string;
6430
6489
  fileSize: number;
6431
6490
  fileUrl: string | null;
6491
+ status?: string | undefined;
6432
6492
  };
6433
6493
  }>, "many">;
6434
6494
  }, "strip", z.ZodTypeAny, {
@@ -6470,6 +6530,7 @@ export declare const contactContract: {
6470
6530
  bucketName: string;
6471
6531
  fileSize: number;
6472
6532
  fileUrl: string | null;
6533
+ status?: string | undefined;
6473
6534
  };
6474
6535
  }[];
6475
6536
  }, {
@@ -6511,6 +6572,7 @@ export declare const contactContract: {
6511
6572
  bucketName: string;
6512
6573
  fileSize: number;
6513
6574
  fileUrl: string | null;
6575
+ status?: string | undefined;
6514
6576
  };
6515
6577
  }[];
6516
6578
  }>, "many">;
@@ -6665,6 +6727,7 @@ export declare const contactContract: {
6665
6727
  bucketName: string;
6666
6728
  fileSize: number;
6667
6729
  fileUrl: string | null;
6730
+ status?: string | undefined;
6668
6731
  };
6669
6732
  }[];
6670
6733
  }[];
@@ -6767,6 +6830,7 @@ export declare const contactContract: {
6767
6830
  bucketName: string;
6768
6831
  fileSize: number;
6769
6832
  fileUrl: string | null;
6833
+ status?: string | undefined;
6770
6834
  };
6771
6835
  }[];
6772
6836
  }[];
@@ -6871,6 +6935,7 @@ export declare const contactContract: {
6871
6935
  bucketName: string;
6872
6936
  fileSize: number;
6873
6937
  fileUrl: string | null;
6938
+ status?: string | undefined;
6874
6939
  };
6875
6940
  }[];
6876
6941
  }[];
@@ -6976,6 +7041,7 @@ export declare const contactContract: {
6976
7041
  bucketName: string;
6977
7042
  fileSize: number;
6978
7043
  fileUrl: string | null;
7044
+ status?: string | undefined;
6979
7045
  };
6980
7046
  }[];
6981
7047
  }[];
@@ -7787,6 +7853,7 @@ export declare const contactContract: {
7787
7853
  fileSize: z.ZodNumber;
7788
7854
  fileKey: z.ZodString;
7789
7855
  fileUrl: z.ZodNullable<z.ZodString>;
7856
+ status: z.ZodOptional<z.ZodString>;
7790
7857
  }, "strip", z.ZodTypeAny, {
7791
7858
  id: string;
7792
7859
  createdAt: Date;
@@ -7797,6 +7864,7 @@ export declare const contactContract: {
7797
7864
  bucketName: string;
7798
7865
  fileSize: number;
7799
7866
  fileUrl: string | null;
7867
+ status?: string | undefined;
7800
7868
  }, {
7801
7869
  id: string;
7802
7870
  createdAt: Date;
@@ -7807,6 +7875,7 @@ export declare const contactContract: {
7807
7875
  bucketName: string;
7808
7876
  fileSize: number;
7809
7877
  fileUrl: string | null;
7878
+ status?: string | undefined;
7810
7879
  }>;
7811
7880
  }, "strip", z.ZodTypeAny, {
7812
7881
  id: string;
@@ -7824,6 +7893,7 @@ export declare const contactContract: {
7824
7893
  bucketName: string;
7825
7894
  fileSize: number;
7826
7895
  fileUrl: string | null;
7896
+ status?: string | undefined;
7827
7897
  };
7828
7898
  }, {
7829
7899
  id: string;
@@ -7841,6 +7911,7 @@ export declare const contactContract: {
7841
7911
  bucketName: string;
7842
7912
  fileSize: number;
7843
7913
  fileUrl: string | null;
7914
+ status?: string | undefined;
7844
7915
  };
7845
7916
  }>, "many">;
7846
7917
  }, "strip", z.ZodTypeAny, {
@@ -7882,6 +7953,7 @@ export declare const contactContract: {
7882
7953
  bucketName: string;
7883
7954
  fileSize: number;
7884
7955
  fileUrl: string | null;
7956
+ status?: string | undefined;
7885
7957
  };
7886
7958
  }[];
7887
7959
  }, {
@@ -7923,6 +7995,7 @@ export declare const contactContract: {
7923
7995
  bucketName: string;
7924
7996
  fileSize: number;
7925
7997
  fileUrl: string | null;
7998
+ status?: string | undefined;
7926
7999
  };
7927
8000
  }[];
7928
8001
  }>, "many">;
@@ -8077,6 +8150,7 @@ export declare const contactContract: {
8077
8150
  bucketName: string;
8078
8151
  fileSize: number;
8079
8152
  fileUrl: string | null;
8153
+ status?: string | undefined;
8080
8154
  };
8081
8155
  }[];
8082
8156
  }[];
@@ -8179,6 +8253,7 @@ export declare const contactContract: {
8179
8253
  bucketName: string;
8180
8254
  fileSize: number;
8181
8255
  fileUrl: string | null;
8256
+ status?: string | undefined;
8182
8257
  };
8183
8258
  }[];
8184
8259
  }[];
@@ -8283,6 +8358,7 @@ export declare const contactContract: {
8283
8358
  bucketName: string;
8284
8359
  fileSize: number;
8285
8360
  fileUrl: string | null;
8361
+ status?: string | undefined;
8286
8362
  };
8287
8363
  }[];
8288
8364
  }[];
@@ -8388,6 +8464,7 @@ export declare const contactContract: {
8388
8464
  bucketName: string;
8389
8465
  fileSize: number;
8390
8466
  fileUrl: string | null;
8467
+ status?: string | undefined;
8391
8468
  };
8392
8469
  }[];
8393
8470
  }[];
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/contact/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkS3B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/contact/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkS3B,CAAC"}