@mimicprotocol/sdk 0.0.1-rc.17 → 0.0.1-rc.18
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/axia/validators.d.ts +546 -0
- package/dist/axia/validators.d.ts.map +1 -1
- package/dist/oracle/validators.d.ts +146 -8
- package/dist/oracle/validators.d.ts.map +1 -1
- package/dist/oracle/validators.js +1 -0
- package/dist/oracle/validators.js.map +1 -1
- package/dist/relayer/validators.d.ts +408 -0
- package/dist/relayer/validators.d.ts.map +1 -1
- package/dist/runner/validators.d.ts +226 -0
- package/dist/runner/validators.d.ts.map +1 -1
- package/dist/shared/validators/primitives.d.ts +2 -2
- package/dist/shared/validators/primitives.js +1 -1
- package/dist/shared/validators/primitives.js.map +1 -1
- package/package.json +1 -1
|
@@ -469,6 +469,144 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
469
469
|
hash: string;
|
|
470
470
|
};
|
|
471
471
|
signature: string;
|
|
472
|
+
}>, z.ZodObject<{
|
|
473
|
+
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
474
|
+
query: z.ZodObject<{
|
|
475
|
+
name: z.ZodLiteral<"SvmGetAccountsInfoQuery">;
|
|
476
|
+
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
477
|
+
params: z.ZodObject<{
|
|
478
|
+
publicKeys: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
|
|
479
|
+
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
480
|
+
}, "strip", z.ZodTypeAny, {
|
|
481
|
+
timestamp: number;
|
|
482
|
+
publicKeys: string[];
|
|
483
|
+
}, {
|
|
484
|
+
timestamp: number;
|
|
485
|
+
publicKeys: string[];
|
|
486
|
+
}>;
|
|
487
|
+
}, "strip", z.ZodTypeAny, {
|
|
488
|
+
params: {
|
|
489
|
+
timestamp: number;
|
|
490
|
+
publicKeys: string[];
|
|
491
|
+
};
|
|
492
|
+
name: "SvmGetAccountsInfoQuery";
|
|
493
|
+
hash: string;
|
|
494
|
+
}, {
|
|
495
|
+
params: {
|
|
496
|
+
timestamp: number;
|
|
497
|
+
publicKeys: string[];
|
|
498
|
+
};
|
|
499
|
+
name: "SvmGetAccountsInfoQuery";
|
|
500
|
+
hash: string;
|
|
501
|
+
}>;
|
|
502
|
+
result: z.ZodObject<{
|
|
503
|
+
value: z.ZodObject<{
|
|
504
|
+
accountsInfo: z.ZodArray<z.ZodObject<{
|
|
505
|
+
executable: z.ZodBoolean;
|
|
506
|
+
owner: z.ZodEffects<z.ZodString, string, string>;
|
|
507
|
+
lamports: z.ZodEffects<z.ZodString, string, string>;
|
|
508
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
509
|
+
rentEpoch: z.ZodEffects<z.ZodString, string, string>;
|
|
510
|
+
}, "strip", z.ZodTypeAny, {
|
|
511
|
+
data: string;
|
|
512
|
+
executable: boolean;
|
|
513
|
+
owner: string;
|
|
514
|
+
lamports: string;
|
|
515
|
+
rentEpoch: string;
|
|
516
|
+
}, {
|
|
517
|
+
data: string;
|
|
518
|
+
executable: boolean;
|
|
519
|
+
owner: string;
|
|
520
|
+
lamports: string;
|
|
521
|
+
rentEpoch: string;
|
|
522
|
+
}>, "many">;
|
|
523
|
+
slot: z.ZodEffects<z.ZodString, string, string>;
|
|
524
|
+
}, "strip", z.ZodTypeAny, {
|
|
525
|
+
accountsInfo: {
|
|
526
|
+
data: string;
|
|
527
|
+
executable: boolean;
|
|
528
|
+
owner: string;
|
|
529
|
+
lamports: string;
|
|
530
|
+
rentEpoch: string;
|
|
531
|
+
}[];
|
|
532
|
+
slot: string;
|
|
533
|
+
}, {
|
|
534
|
+
accountsInfo: {
|
|
535
|
+
data: string;
|
|
536
|
+
executable: boolean;
|
|
537
|
+
owner: string;
|
|
538
|
+
lamports: string;
|
|
539
|
+
rentEpoch: string;
|
|
540
|
+
}[];
|
|
541
|
+
slot: string;
|
|
542
|
+
}>;
|
|
543
|
+
}, "strip", z.ZodTypeAny, {
|
|
544
|
+
value: {
|
|
545
|
+
accountsInfo: {
|
|
546
|
+
data: string;
|
|
547
|
+
executable: boolean;
|
|
548
|
+
owner: string;
|
|
549
|
+
lamports: string;
|
|
550
|
+
rentEpoch: string;
|
|
551
|
+
}[];
|
|
552
|
+
slot: string;
|
|
553
|
+
};
|
|
554
|
+
}, {
|
|
555
|
+
value: {
|
|
556
|
+
accountsInfo: {
|
|
557
|
+
data: string;
|
|
558
|
+
executable: boolean;
|
|
559
|
+
owner: string;
|
|
560
|
+
lamports: string;
|
|
561
|
+
rentEpoch: string;
|
|
562
|
+
}[];
|
|
563
|
+
slot: string;
|
|
564
|
+
};
|
|
565
|
+
}>;
|
|
566
|
+
}, "strip", z.ZodTypeAny, {
|
|
567
|
+
result: {
|
|
568
|
+
value: {
|
|
569
|
+
accountsInfo: {
|
|
570
|
+
data: string;
|
|
571
|
+
executable: boolean;
|
|
572
|
+
owner: string;
|
|
573
|
+
lamports: string;
|
|
574
|
+
rentEpoch: string;
|
|
575
|
+
}[];
|
|
576
|
+
slot: string;
|
|
577
|
+
};
|
|
578
|
+
};
|
|
579
|
+
query: {
|
|
580
|
+
params: {
|
|
581
|
+
timestamp: number;
|
|
582
|
+
publicKeys: string[];
|
|
583
|
+
};
|
|
584
|
+
name: "SvmGetAccountsInfoQuery";
|
|
585
|
+
hash: string;
|
|
586
|
+
};
|
|
587
|
+
signature: string;
|
|
588
|
+
}, {
|
|
589
|
+
result: {
|
|
590
|
+
value: {
|
|
591
|
+
accountsInfo: {
|
|
592
|
+
data: string;
|
|
593
|
+
executable: boolean;
|
|
594
|
+
owner: string;
|
|
595
|
+
lamports: string;
|
|
596
|
+
rentEpoch: string;
|
|
597
|
+
}[];
|
|
598
|
+
slot: string;
|
|
599
|
+
};
|
|
600
|
+
};
|
|
601
|
+
query: {
|
|
602
|
+
params: {
|
|
603
|
+
timestamp: number;
|
|
604
|
+
publicKeys: string[];
|
|
605
|
+
};
|
|
606
|
+
name: "SvmGetAccountsInfoQuery";
|
|
607
|
+
hash: string;
|
|
608
|
+
};
|
|
609
|
+
signature: string;
|
|
472
610
|
}>]>, "many">;
|
|
473
611
|
outputs: z.ZodArray<z.ZodUnion<[z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
474
612
|
op: z.ZodNativeEnum<typeof import("../shared").OpType>;
|
|
@@ -871,6 +1009,28 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
871
1009
|
hash: string;
|
|
872
1010
|
};
|
|
873
1011
|
signature: string;
|
|
1012
|
+
} | {
|
|
1013
|
+
result: {
|
|
1014
|
+
value: {
|
|
1015
|
+
accountsInfo: {
|
|
1016
|
+
data: string;
|
|
1017
|
+
executable: boolean;
|
|
1018
|
+
owner: string;
|
|
1019
|
+
lamports: string;
|
|
1020
|
+
rentEpoch: string;
|
|
1021
|
+
}[];
|
|
1022
|
+
slot: string;
|
|
1023
|
+
};
|
|
1024
|
+
};
|
|
1025
|
+
query: {
|
|
1026
|
+
params: {
|
|
1027
|
+
timestamp: number;
|
|
1028
|
+
publicKeys: string[];
|
|
1029
|
+
};
|
|
1030
|
+
name: "SvmGetAccountsInfoQuery";
|
|
1031
|
+
hash: string;
|
|
1032
|
+
};
|
|
1033
|
+
signature: string;
|
|
874
1034
|
} | {
|
|
875
1035
|
result: {
|
|
876
1036
|
value: string;
|
|
@@ -1041,6 +1201,28 @@ export declare const RunnerExecutionResultDataValidator: z.ZodObject<{
|
|
|
1041
1201
|
hash: string;
|
|
1042
1202
|
};
|
|
1043
1203
|
signature: string;
|
|
1204
|
+
} | {
|
|
1205
|
+
result: {
|
|
1206
|
+
value: {
|
|
1207
|
+
accountsInfo: {
|
|
1208
|
+
data: string;
|
|
1209
|
+
executable: boolean;
|
|
1210
|
+
owner: string;
|
|
1211
|
+
lamports: string;
|
|
1212
|
+
rentEpoch: string;
|
|
1213
|
+
}[];
|
|
1214
|
+
slot: string;
|
|
1215
|
+
};
|
|
1216
|
+
};
|
|
1217
|
+
query: {
|
|
1218
|
+
params: {
|
|
1219
|
+
timestamp: number;
|
|
1220
|
+
publicKeys: string[];
|
|
1221
|
+
};
|
|
1222
|
+
name: "SvmGetAccountsInfoQuery";
|
|
1223
|
+
hash: string;
|
|
1224
|
+
};
|
|
1225
|
+
signature: string;
|
|
1044
1226
|
} | {
|
|
1045
1227
|
result: {
|
|
1046
1228
|
value: string;
|
|
@@ -1657,6 +1839,144 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
1657
1839
|
hash: string;
|
|
1658
1840
|
};
|
|
1659
1841
|
signature: string;
|
|
1842
|
+
}>, z.ZodObject<{
|
|
1843
|
+
signature: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1844
|
+
query: z.ZodObject<{
|
|
1845
|
+
name: z.ZodLiteral<"SvmGetAccountsInfoQuery">;
|
|
1846
|
+
hash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1847
|
+
params: z.ZodObject<{
|
|
1848
|
+
publicKeys: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
|
|
1849
|
+
timestamp: z.ZodEffects<z.ZodNumber, number, number>;
|
|
1850
|
+
}, "strip", z.ZodTypeAny, {
|
|
1851
|
+
timestamp: number;
|
|
1852
|
+
publicKeys: string[];
|
|
1853
|
+
}, {
|
|
1854
|
+
timestamp: number;
|
|
1855
|
+
publicKeys: string[];
|
|
1856
|
+
}>;
|
|
1857
|
+
}, "strip", z.ZodTypeAny, {
|
|
1858
|
+
params: {
|
|
1859
|
+
timestamp: number;
|
|
1860
|
+
publicKeys: string[];
|
|
1861
|
+
};
|
|
1862
|
+
name: "SvmGetAccountsInfoQuery";
|
|
1863
|
+
hash: string;
|
|
1864
|
+
}, {
|
|
1865
|
+
params: {
|
|
1866
|
+
timestamp: number;
|
|
1867
|
+
publicKeys: string[];
|
|
1868
|
+
};
|
|
1869
|
+
name: "SvmGetAccountsInfoQuery";
|
|
1870
|
+
hash: string;
|
|
1871
|
+
}>;
|
|
1872
|
+
result: z.ZodObject<{
|
|
1873
|
+
value: z.ZodObject<{
|
|
1874
|
+
accountsInfo: z.ZodArray<z.ZodObject<{
|
|
1875
|
+
executable: z.ZodBoolean;
|
|
1876
|
+
owner: z.ZodEffects<z.ZodString, string, string>;
|
|
1877
|
+
lamports: z.ZodEffects<z.ZodString, string, string>;
|
|
1878
|
+
data: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1879
|
+
rentEpoch: z.ZodEffects<z.ZodString, string, string>;
|
|
1880
|
+
}, "strip", z.ZodTypeAny, {
|
|
1881
|
+
data: string;
|
|
1882
|
+
executable: boolean;
|
|
1883
|
+
owner: string;
|
|
1884
|
+
lamports: string;
|
|
1885
|
+
rentEpoch: string;
|
|
1886
|
+
}, {
|
|
1887
|
+
data: string;
|
|
1888
|
+
executable: boolean;
|
|
1889
|
+
owner: string;
|
|
1890
|
+
lamports: string;
|
|
1891
|
+
rentEpoch: string;
|
|
1892
|
+
}>, "many">;
|
|
1893
|
+
slot: z.ZodEffects<z.ZodString, string, string>;
|
|
1894
|
+
}, "strip", z.ZodTypeAny, {
|
|
1895
|
+
accountsInfo: {
|
|
1896
|
+
data: string;
|
|
1897
|
+
executable: boolean;
|
|
1898
|
+
owner: string;
|
|
1899
|
+
lamports: string;
|
|
1900
|
+
rentEpoch: string;
|
|
1901
|
+
}[];
|
|
1902
|
+
slot: string;
|
|
1903
|
+
}, {
|
|
1904
|
+
accountsInfo: {
|
|
1905
|
+
data: string;
|
|
1906
|
+
executable: boolean;
|
|
1907
|
+
owner: string;
|
|
1908
|
+
lamports: string;
|
|
1909
|
+
rentEpoch: string;
|
|
1910
|
+
}[];
|
|
1911
|
+
slot: string;
|
|
1912
|
+
}>;
|
|
1913
|
+
}, "strip", z.ZodTypeAny, {
|
|
1914
|
+
value: {
|
|
1915
|
+
accountsInfo: {
|
|
1916
|
+
data: string;
|
|
1917
|
+
executable: boolean;
|
|
1918
|
+
owner: string;
|
|
1919
|
+
lamports: string;
|
|
1920
|
+
rentEpoch: string;
|
|
1921
|
+
}[];
|
|
1922
|
+
slot: string;
|
|
1923
|
+
};
|
|
1924
|
+
}, {
|
|
1925
|
+
value: {
|
|
1926
|
+
accountsInfo: {
|
|
1927
|
+
data: string;
|
|
1928
|
+
executable: boolean;
|
|
1929
|
+
owner: string;
|
|
1930
|
+
lamports: string;
|
|
1931
|
+
rentEpoch: string;
|
|
1932
|
+
}[];
|
|
1933
|
+
slot: string;
|
|
1934
|
+
};
|
|
1935
|
+
}>;
|
|
1936
|
+
}, "strip", z.ZodTypeAny, {
|
|
1937
|
+
result: {
|
|
1938
|
+
value: {
|
|
1939
|
+
accountsInfo: {
|
|
1940
|
+
data: string;
|
|
1941
|
+
executable: boolean;
|
|
1942
|
+
owner: string;
|
|
1943
|
+
lamports: string;
|
|
1944
|
+
rentEpoch: string;
|
|
1945
|
+
}[];
|
|
1946
|
+
slot: string;
|
|
1947
|
+
};
|
|
1948
|
+
};
|
|
1949
|
+
query: {
|
|
1950
|
+
params: {
|
|
1951
|
+
timestamp: number;
|
|
1952
|
+
publicKeys: string[];
|
|
1953
|
+
};
|
|
1954
|
+
name: "SvmGetAccountsInfoQuery";
|
|
1955
|
+
hash: string;
|
|
1956
|
+
};
|
|
1957
|
+
signature: string;
|
|
1958
|
+
}, {
|
|
1959
|
+
result: {
|
|
1960
|
+
value: {
|
|
1961
|
+
accountsInfo: {
|
|
1962
|
+
data: string;
|
|
1963
|
+
executable: boolean;
|
|
1964
|
+
owner: string;
|
|
1965
|
+
lamports: string;
|
|
1966
|
+
rentEpoch: string;
|
|
1967
|
+
}[];
|
|
1968
|
+
slot: string;
|
|
1969
|
+
};
|
|
1970
|
+
};
|
|
1971
|
+
query: {
|
|
1972
|
+
params: {
|
|
1973
|
+
timestamp: number;
|
|
1974
|
+
publicKeys: string[];
|
|
1975
|
+
};
|
|
1976
|
+
name: "SvmGetAccountsInfoQuery";
|
|
1977
|
+
hash: string;
|
|
1978
|
+
};
|
|
1979
|
+
signature: string;
|
|
1660
1980
|
}>]>, "many">;
|
|
1661
1981
|
outputs: z.ZodArray<z.ZodUnion<[z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
1662
1982
|
op: z.ZodNativeEnum<typeof import("../shared").OpType>;
|
|
@@ -2059,6 +2379,28 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
2059
2379
|
hash: string;
|
|
2060
2380
|
};
|
|
2061
2381
|
signature: string;
|
|
2382
|
+
} | {
|
|
2383
|
+
result: {
|
|
2384
|
+
value: {
|
|
2385
|
+
accountsInfo: {
|
|
2386
|
+
data: string;
|
|
2387
|
+
executable: boolean;
|
|
2388
|
+
owner: string;
|
|
2389
|
+
lamports: string;
|
|
2390
|
+
rentEpoch: string;
|
|
2391
|
+
}[];
|
|
2392
|
+
slot: string;
|
|
2393
|
+
};
|
|
2394
|
+
};
|
|
2395
|
+
query: {
|
|
2396
|
+
params: {
|
|
2397
|
+
timestamp: number;
|
|
2398
|
+
publicKeys: string[];
|
|
2399
|
+
};
|
|
2400
|
+
name: "SvmGetAccountsInfoQuery";
|
|
2401
|
+
hash: string;
|
|
2402
|
+
};
|
|
2403
|
+
signature: string;
|
|
2062
2404
|
} | {
|
|
2063
2405
|
result: {
|
|
2064
2406
|
value: string;
|
|
@@ -2229,6 +2571,28 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
2229
2571
|
hash: string;
|
|
2230
2572
|
};
|
|
2231
2573
|
signature: string;
|
|
2574
|
+
} | {
|
|
2575
|
+
result: {
|
|
2576
|
+
value: {
|
|
2577
|
+
accountsInfo: {
|
|
2578
|
+
data: string;
|
|
2579
|
+
executable: boolean;
|
|
2580
|
+
owner: string;
|
|
2581
|
+
lamports: string;
|
|
2582
|
+
rentEpoch: string;
|
|
2583
|
+
}[];
|
|
2584
|
+
slot: string;
|
|
2585
|
+
};
|
|
2586
|
+
};
|
|
2587
|
+
query: {
|
|
2588
|
+
params: {
|
|
2589
|
+
timestamp: number;
|
|
2590
|
+
publicKeys: string[];
|
|
2591
|
+
};
|
|
2592
|
+
name: "SvmGetAccountsInfoQuery";
|
|
2593
|
+
hash: string;
|
|
2594
|
+
};
|
|
2595
|
+
signature: string;
|
|
2232
2596
|
} | {
|
|
2233
2597
|
result: {
|
|
2234
2598
|
value: string;
|
|
@@ -2401,6 +2765,28 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
2401
2765
|
hash: string;
|
|
2402
2766
|
};
|
|
2403
2767
|
signature: string;
|
|
2768
|
+
} | {
|
|
2769
|
+
result: {
|
|
2770
|
+
value: {
|
|
2771
|
+
accountsInfo: {
|
|
2772
|
+
data: string;
|
|
2773
|
+
executable: boolean;
|
|
2774
|
+
owner: string;
|
|
2775
|
+
lamports: string;
|
|
2776
|
+
rentEpoch: string;
|
|
2777
|
+
}[];
|
|
2778
|
+
slot: string;
|
|
2779
|
+
};
|
|
2780
|
+
};
|
|
2781
|
+
query: {
|
|
2782
|
+
params: {
|
|
2783
|
+
timestamp: number;
|
|
2784
|
+
publicKeys: string[];
|
|
2785
|
+
};
|
|
2786
|
+
name: "SvmGetAccountsInfoQuery";
|
|
2787
|
+
hash: string;
|
|
2788
|
+
};
|
|
2789
|
+
signature: string;
|
|
2404
2790
|
} | {
|
|
2405
2791
|
result: {
|
|
2406
2792
|
value: string;
|
|
@@ -2575,6 +2961,28 @@ export declare const RunnerExecutionResultValidator: z.ZodObject<{
|
|
|
2575
2961
|
hash: string;
|
|
2576
2962
|
};
|
|
2577
2963
|
signature: string;
|
|
2964
|
+
} | {
|
|
2965
|
+
result: {
|
|
2966
|
+
value: {
|
|
2967
|
+
accountsInfo: {
|
|
2968
|
+
data: string;
|
|
2969
|
+
executable: boolean;
|
|
2970
|
+
owner: string;
|
|
2971
|
+
lamports: string;
|
|
2972
|
+
rentEpoch: string;
|
|
2973
|
+
}[];
|
|
2974
|
+
slot: string;
|
|
2975
|
+
};
|
|
2976
|
+
};
|
|
2977
|
+
query: {
|
|
2978
|
+
params: {
|
|
2979
|
+
timestamp: number;
|
|
2980
|
+
publicKeys: string[];
|
|
2981
|
+
};
|
|
2982
|
+
name: "SvmGetAccountsInfoQuery";
|
|
2983
|
+
hash: string;
|
|
2984
|
+
};
|
|
2985
|
+
signature: string;
|
|
2578
2986
|
} | {
|
|
2579
2987
|
result: {
|
|
2580
2988
|
value: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validators.d.ts","sourceRoot":"","sources":["../../src/relayer/validators.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAcvB,eAAO,MAAM,uBAAuB;;;;;;;;;EAGlC,CAAA;AAEF,eAAO,MAAM,kCAAkC
|
|
1
|
+
{"version":3,"file":"validators.d.ts","sourceRoot":"","sources":["../../src/relayer/validators.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAcvB,eAAO,MAAM,uBAAuB;;;;;;;;;EAGlC,CAAA;AAEF,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAY7C,CAAA;AAEF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAIzC,CAAA;AAEF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAO1C,CAAA"}
|