@seamapi/types 1.157.2 → 1.159.0
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/connect.cjs +1 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +6 -0
- package/dist/devicedb.cjs +12 -1
- package/dist/devicedb.cjs.map +1 -1
- package/dist/devicedb.d.cts +587 -22
- package/lib/seam/connect/models/acs/acs_system_capability_flags.d.ts +3 -0
- package/lib/seam/connect/models/acs/acs_system_capability_flags.js +1 -0
- package/lib/seam/connect/models/acs/acs_system_capability_flags.js.map +1 -1
- package/lib/seam/connect/models/acs/system.d.ts +3 -0
- package/lib/seam/connect/openapi.d.ts +3 -0
- package/lib/seam/connect/openapi.js +1 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -0
- package/lib/seam/devicedb/models/device-model.d.ts +110 -0
- package/lib/seam/devicedb/models/manufacturer.d.ts +33 -0
- package/lib/seam/devicedb/models/manufacturer.js +11 -0
- package/lib/seam/devicedb/models/manufacturer.js.map +1 -1
- package/lib/seam/devicedb/route-specs.d.ts +378 -0
- package/lib/seam/devicedb/route-types.d.ts +44 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs_system_capability_flags.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +1 -0
- package/src/lib/seam/connect/route-types.ts +3 -0
- package/src/lib/seam/devicedb/models/manufacturer.ts +11 -0
- package/src/lib/seam/devicedb/route-types.ts +44 -0
|
@@ -1242,6 +1242,7 @@ export interface Routes {
|
|
|
1242
1242
|
image_url: string;
|
|
1243
1243
|
image_alt_text: string;
|
|
1244
1244
|
can_automate_enrollment?: boolean | undefined;
|
|
1245
|
+
can_create_acs_access_groups?: boolean | undefined;
|
|
1245
1246
|
};
|
|
1246
1247
|
};
|
|
1247
1248
|
};
|
|
@@ -1278,6 +1279,7 @@ export interface Routes {
|
|
|
1278
1279
|
image_url: string;
|
|
1279
1280
|
image_alt_text: string;
|
|
1280
1281
|
can_automate_enrollment?: boolean | undefined;
|
|
1282
|
+
can_create_acs_access_groups?: boolean | undefined;
|
|
1281
1283
|
}>;
|
|
1282
1284
|
};
|
|
1283
1285
|
};
|
|
@@ -8596,6 +8598,7 @@ export interface Routes {
|
|
|
8596
8598
|
image_url: string;
|
|
8597
8599
|
image_alt_text: string;
|
|
8598
8600
|
can_automate_enrollment?: boolean | undefined;
|
|
8601
|
+
can_create_acs_access_groups?: boolean | undefined;
|
|
8599
8602
|
}>;
|
|
8600
8603
|
};
|
|
8601
8604
|
};
|
|
@@ -340,6 +340,17 @@ export declare const base_device_model_v1: z.ZodObject<{
|
|
|
340
340
|
message: string;
|
|
341
341
|
annotation_code: "subscription_required";
|
|
342
342
|
}>, "many">;
|
|
343
|
+
website: z.ZodOptional<z.ZodString>;
|
|
344
|
+
legal_name: z.ZodOptional<z.ZodString>;
|
|
345
|
+
parent_organization: z.ZodOptional<z.ZodString>;
|
|
346
|
+
headquarters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
347
|
+
countries_of_origin: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
348
|
+
founding_year: z.ZodOptional<z.ZodString>;
|
|
349
|
+
us_customer_support_tel: z.ZodOptional<z.ZodString>;
|
|
350
|
+
us_customer_support_email: z.ZodOptional<z.ZodString>;
|
|
351
|
+
us_customer_support_contact_url: z.ZodOptional<z.ZodString>;
|
|
352
|
+
seam_api_guide: z.ZodOptional<z.ZodString>;
|
|
353
|
+
description: z.ZodOptional<z.ZodString>;
|
|
343
354
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
344
355
|
display_name: string;
|
|
345
356
|
manufacturer_id: string;
|
|
@@ -351,11 +362,22 @@ export declare const base_device_model_v1: z.ZodObject<{
|
|
|
351
362
|
message: string;
|
|
352
363
|
annotation_code: "subscription_required";
|
|
353
364
|
}[];
|
|
365
|
+
description?: string | undefined;
|
|
354
366
|
logo?: {
|
|
355
367
|
height: number;
|
|
356
368
|
width: number;
|
|
357
369
|
url: string;
|
|
358
370
|
} | undefined;
|
|
371
|
+
website?: string | undefined;
|
|
372
|
+
legal_name?: string | undefined;
|
|
373
|
+
parent_organization?: string | undefined;
|
|
374
|
+
headquarters?: string[] | undefined;
|
|
375
|
+
countries_of_origin?: string[] | undefined;
|
|
376
|
+
founding_year?: string | undefined;
|
|
377
|
+
us_customer_support_tel?: string | undefined;
|
|
378
|
+
us_customer_support_email?: string | undefined;
|
|
379
|
+
us_customer_support_contact_url?: string | undefined;
|
|
380
|
+
seam_api_guide?: string | undefined;
|
|
359
381
|
}, {
|
|
360
382
|
display_name: string;
|
|
361
383
|
manufacturer_id: string;
|
|
@@ -367,11 +389,22 @@ export declare const base_device_model_v1: z.ZodObject<{
|
|
|
367
389
|
message: string;
|
|
368
390
|
annotation_code: "subscription_required";
|
|
369
391
|
}[];
|
|
392
|
+
description?: string | undefined;
|
|
370
393
|
logo?: {
|
|
371
394
|
height: number;
|
|
372
395
|
width: number;
|
|
373
396
|
url: string;
|
|
374
397
|
} | undefined;
|
|
398
|
+
website?: string | undefined;
|
|
399
|
+
legal_name?: string | undefined;
|
|
400
|
+
parent_organization?: string | undefined;
|
|
401
|
+
headquarters?: string[] | undefined;
|
|
402
|
+
countries_of_origin?: string[] | undefined;
|
|
403
|
+
founding_year?: string | undefined;
|
|
404
|
+
us_customer_support_tel?: string | undefined;
|
|
405
|
+
us_customer_support_email?: string | undefined;
|
|
406
|
+
us_customer_support_contact_url?: string | undefined;
|
|
407
|
+
seam_api_guide?: string | undefined;
|
|
375
408
|
}>;
|
|
376
409
|
is_device_supported: z.ZodBoolean;
|
|
377
410
|
display_name: z.ZodString;
|
|
@@ -486,11 +519,22 @@ export declare const base_device_model_v1: z.ZodObject<{
|
|
|
486
519
|
message: string;
|
|
487
520
|
annotation_code: "subscription_required";
|
|
488
521
|
}[];
|
|
522
|
+
description?: string | undefined;
|
|
489
523
|
logo?: {
|
|
490
524
|
height: number;
|
|
491
525
|
width: number;
|
|
492
526
|
url: string;
|
|
493
527
|
} | undefined;
|
|
528
|
+
website?: string | undefined;
|
|
529
|
+
legal_name?: string | undefined;
|
|
530
|
+
parent_organization?: string | undefined;
|
|
531
|
+
headquarters?: string[] | undefined;
|
|
532
|
+
countries_of_origin?: string[] | undefined;
|
|
533
|
+
founding_year?: string | undefined;
|
|
534
|
+
us_customer_support_tel?: string | undefined;
|
|
535
|
+
us_customer_support_email?: string | undefined;
|
|
536
|
+
us_customer_support_contact_url?: string | undefined;
|
|
537
|
+
seam_api_guide?: string | undefined;
|
|
494
538
|
};
|
|
495
539
|
is_device_supported: boolean;
|
|
496
540
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
@@ -535,11 +579,22 @@ export declare const base_device_model_v1: z.ZodObject<{
|
|
|
535
579
|
message: string;
|
|
536
580
|
annotation_code: "subscription_required";
|
|
537
581
|
}[];
|
|
582
|
+
description?: string | undefined;
|
|
538
583
|
logo?: {
|
|
539
584
|
height: number;
|
|
540
585
|
width: number;
|
|
541
586
|
url: string;
|
|
542
587
|
} | undefined;
|
|
588
|
+
website?: string | undefined;
|
|
589
|
+
legal_name?: string | undefined;
|
|
590
|
+
parent_organization?: string | undefined;
|
|
591
|
+
headquarters?: string[] | undefined;
|
|
592
|
+
countries_of_origin?: string[] | undefined;
|
|
593
|
+
founding_year?: string | undefined;
|
|
594
|
+
us_customer_support_tel?: string | undefined;
|
|
595
|
+
us_customer_support_email?: string | undefined;
|
|
596
|
+
us_customer_support_contact_url?: string | undefined;
|
|
597
|
+
seam_api_guide?: string | undefined;
|
|
543
598
|
};
|
|
544
599
|
is_device_supported: boolean;
|
|
545
600
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
@@ -604,6 +659,17 @@ export declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
604
659
|
message: string;
|
|
605
660
|
annotation_code: "subscription_required";
|
|
606
661
|
}>, "many">;
|
|
662
|
+
website: z.ZodOptional<z.ZodString>;
|
|
663
|
+
legal_name: z.ZodOptional<z.ZodString>;
|
|
664
|
+
parent_organization: z.ZodOptional<z.ZodString>;
|
|
665
|
+
headquarters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
666
|
+
countries_of_origin: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
667
|
+
founding_year: z.ZodOptional<z.ZodString>;
|
|
668
|
+
us_customer_support_tel: z.ZodOptional<z.ZodString>;
|
|
669
|
+
us_customer_support_email: z.ZodOptional<z.ZodString>;
|
|
670
|
+
us_customer_support_contact_url: z.ZodOptional<z.ZodString>;
|
|
671
|
+
seam_api_guide: z.ZodOptional<z.ZodString>;
|
|
672
|
+
description: z.ZodOptional<z.ZodString>;
|
|
607
673
|
}, "device_model_count">, "strip", z.ZodTypeAny, {
|
|
608
674
|
display_name: string;
|
|
609
675
|
manufacturer_id: string;
|
|
@@ -615,11 +681,22 @@ export declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
615
681
|
message: string;
|
|
616
682
|
annotation_code: "subscription_required";
|
|
617
683
|
}[];
|
|
684
|
+
description?: string | undefined;
|
|
618
685
|
logo?: {
|
|
619
686
|
height: number;
|
|
620
687
|
width: number;
|
|
621
688
|
url: string;
|
|
622
689
|
} | undefined;
|
|
690
|
+
website?: string | undefined;
|
|
691
|
+
legal_name?: string | undefined;
|
|
692
|
+
parent_organization?: string | undefined;
|
|
693
|
+
headquarters?: string[] | undefined;
|
|
694
|
+
countries_of_origin?: string[] | undefined;
|
|
695
|
+
founding_year?: string | undefined;
|
|
696
|
+
us_customer_support_tel?: string | undefined;
|
|
697
|
+
us_customer_support_email?: string | undefined;
|
|
698
|
+
us_customer_support_contact_url?: string | undefined;
|
|
699
|
+
seam_api_guide?: string | undefined;
|
|
623
700
|
}, {
|
|
624
701
|
display_name: string;
|
|
625
702
|
manufacturer_id: string;
|
|
@@ -631,11 +708,22 @@ export declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
631
708
|
message: string;
|
|
632
709
|
annotation_code: "subscription_required";
|
|
633
710
|
}[];
|
|
711
|
+
description?: string | undefined;
|
|
634
712
|
logo?: {
|
|
635
713
|
height: number;
|
|
636
714
|
width: number;
|
|
637
715
|
url: string;
|
|
638
716
|
} | undefined;
|
|
717
|
+
website?: string | undefined;
|
|
718
|
+
legal_name?: string | undefined;
|
|
719
|
+
parent_organization?: string | undefined;
|
|
720
|
+
headquarters?: string[] | undefined;
|
|
721
|
+
countries_of_origin?: string[] | undefined;
|
|
722
|
+
founding_year?: string | undefined;
|
|
723
|
+
us_customer_support_tel?: string | undefined;
|
|
724
|
+
us_customer_support_email?: string | undefined;
|
|
725
|
+
us_customer_support_contact_url?: string | undefined;
|
|
726
|
+
seam_api_guide?: string | undefined;
|
|
639
727
|
}>;
|
|
640
728
|
is_device_supported: z.ZodBoolean;
|
|
641
729
|
display_name: z.ZodString;
|
|
@@ -750,11 +838,22 @@ export declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
750
838
|
message: string;
|
|
751
839
|
annotation_code: "subscription_required";
|
|
752
840
|
}[];
|
|
841
|
+
description?: string | undefined;
|
|
753
842
|
logo?: {
|
|
754
843
|
height: number;
|
|
755
844
|
width: number;
|
|
756
845
|
url: string;
|
|
757
846
|
} | undefined;
|
|
847
|
+
website?: string | undefined;
|
|
848
|
+
legal_name?: string | undefined;
|
|
849
|
+
parent_organization?: string | undefined;
|
|
850
|
+
headquarters?: string[] | undefined;
|
|
851
|
+
countries_of_origin?: string[] | undefined;
|
|
852
|
+
founding_year?: string | undefined;
|
|
853
|
+
us_customer_support_tel?: string | undefined;
|
|
854
|
+
us_customer_support_email?: string | undefined;
|
|
855
|
+
us_customer_support_contact_url?: string | undefined;
|
|
856
|
+
seam_api_guide?: string | undefined;
|
|
758
857
|
};
|
|
759
858
|
is_device_supported: boolean;
|
|
760
859
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
@@ -799,11 +898,22 @@ export declare const device_model_v1: z.ZodIntersection<z.ZodObject<{
|
|
|
799
898
|
message: string;
|
|
800
899
|
annotation_code: "subscription_required";
|
|
801
900
|
}[];
|
|
901
|
+
description?: string | undefined;
|
|
802
902
|
logo?: {
|
|
803
903
|
height: number;
|
|
804
904
|
width: number;
|
|
805
905
|
url: string;
|
|
806
906
|
} | undefined;
|
|
907
|
+
website?: string | undefined;
|
|
908
|
+
legal_name?: string | undefined;
|
|
909
|
+
parent_organization?: string | undefined;
|
|
910
|
+
headquarters?: string[] | undefined;
|
|
911
|
+
countries_of_origin?: string[] | undefined;
|
|
912
|
+
founding_year?: string | undefined;
|
|
913
|
+
us_customer_support_tel?: string | undefined;
|
|
914
|
+
us_customer_support_email?: string | undefined;
|
|
915
|
+
us_customer_support_contact_url?: string | undefined;
|
|
916
|
+
seam_api_guide?: string | undefined;
|
|
807
917
|
};
|
|
808
918
|
is_device_supported: boolean;
|
|
809
919
|
main_connection_type: "unknown" | "wifi" | "zwave" | "zigbee";
|
|
@@ -46,6 +46,17 @@ export declare const manufacturer: z.ZodObject<{
|
|
|
46
46
|
message: string;
|
|
47
47
|
annotation_code: "subscription_required";
|
|
48
48
|
}>, "many">;
|
|
49
|
+
website: z.ZodOptional<z.ZodString>;
|
|
50
|
+
legal_name: z.ZodOptional<z.ZodString>;
|
|
51
|
+
parent_organization: z.ZodOptional<z.ZodString>;
|
|
52
|
+
headquarters: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
53
|
+
countries_of_origin: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
54
|
+
founding_year: z.ZodOptional<z.ZodString>;
|
|
55
|
+
us_customer_support_tel: z.ZodOptional<z.ZodString>;
|
|
56
|
+
us_customer_support_email: z.ZodOptional<z.ZodString>;
|
|
57
|
+
us_customer_support_contact_url: z.ZodOptional<z.ZodString>;
|
|
58
|
+
seam_api_guide: z.ZodOptional<z.ZodString>;
|
|
59
|
+
description: z.ZodOptional<z.ZodString>;
|
|
49
60
|
}, "strip", z.ZodTypeAny, {
|
|
50
61
|
display_name: string;
|
|
51
62
|
manufacturer_id: string;
|
|
@@ -63,6 +74,17 @@ export declare const manufacturer: z.ZodObject<{
|
|
|
63
74
|
width: number;
|
|
64
75
|
url: string;
|
|
65
76
|
} | undefined;
|
|
77
|
+
website?: string | undefined;
|
|
78
|
+
legal_name?: string | undefined;
|
|
79
|
+
parent_organization?: string | undefined;
|
|
80
|
+
headquarters?: string[] | undefined;
|
|
81
|
+
countries_of_origin?: string[] | undefined;
|
|
82
|
+
founding_year?: string | undefined;
|
|
83
|
+
us_customer_support_tel?: string | undefined;
|
|
84
|
+
us_customer_support_email?: string | undefined;
|
|
85
|
+
us_customer_support_contact_url?: string | undefined;
|
|
86
|
+
seam_api_guide?: string | undefined;
|
|
87
|
+
description?: string | undefined;
|
|
66
88
|
}, {
|
|
67
89
|
display_name: string;
|
|
68
90
|
manufacturer_id: string;
|
|
@@ -80,5 +102,16 @@ export declare const manufacturer: z.ZodObject<{
|
|
|
80
102
|
width: number;
|
|
81
103
|
url: string;
|
|
82
104
|
} | undefined;
|
|
105
|
+
website?: string | undefined;
|
|
106
|
+
legal_name?: string | undefined;
|
|
107
|
+
parent_organization?: string | undefined;
|
|
108
|
+
headquarters?: string[] | undefined;
|
|
109
|
+
countries_of_origin?: string[] | undefined;
|
|
110
|
+
founding_year?: string | undefined;
|
|
111
|
+
us_customer_support_tel?: string | undefined;
|
|
112
|
+
us_customer_support_email?: string | undefined;
|
|
113
|
+
us_customer_support_contact_url?: string | undefined;
|
|
114
|
+
seam_api_guide?: string | undefined;
|
|
115
|
+
description?: string | undefined;
|
|
83
116
|
}>;
|
|
84
117
|
export type Manufacturer = z.infer<typeof manufacturer>;
|
|
@@ -23,5 +23,16 @@ export const manufacturer = z.object({
|
|
|
23
23
|
requires_seam_support_to_add_account: z.boolean(),
|
|
24
24
|
device_model_count: z.number(),
|
|
25
25
|
annotations: z.array(manufacturer_annotation),
|
|
26
|
+
website: z.string().url().optional(),
|
|
27
|
+
legal_name: z.string().optional(),
|
|
28
|
+
parent_organization: z.string().optional(),
|
|
29
|
+
headquarters: z.array(z.string()).optional(),
|
|
30
|
+
countries_of_origin: z.array(z.string()).optional(),
|
|
31
|
+
founding_year: z.string().optional(),
|
|
32
|
+
us_customer_support_tel: z.string().optional(),
|
|
33
|
+
us_customer_support_email: z.string().email().optional(),
|
|
34
|
+
us_customer_support_contact_url: z.string().url().optional(),
|
|
35
|
+
seam_api_guide: z.string().optional(),
|
|
36
|
+
description: z.string().optional(),
|
|
26
37
|
});
|
|
27
38
|
//# sourceMappingURL=manufacturer.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"manufacturer.js","sourceRoot":"","sources":["../../../../src/lib/seam/devicedb/models/manufacturer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AAEtD,MAAM,CAAC,MAAM,sCAAsC,GAAG,CAAC,CAAC,IAAI,CAAC;IAC3D,QAAQ;IACR,MAAM;IACN,SAAS;IACT,aAAa;IACb,SAAS;CACV,CAAC,CAAA;AAMF,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,uBAAuB,CAAC,CAAC,CAAA;AAM7E,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9C,eAAe,EAAE,4BAA4B;IAC7C,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;CACtC,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC;IACnC,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAClC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,IAAI,EAAE,eAAe,CAAC,QAAQ,EAAE;IAChC,kBAAkB;IAClB,WAAW,EAAE,sCAAsC;IACnD,yBAAyB,EAAE,sCAAsC;IACjE,4BAA4B,EAAE,CAAC,CAAC,OAAO,EAAE;IACzC,oCAAoC,EAAE,CAAC,CAAC,OAAO,EAAE;IACjD,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,WAAW,EAAE,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"manufacturer.js","sourceRoot":"","sources":["../../../../src/lib/seam/devicedb/models/manufacturer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AAEtD,MAAM,CAAC,MAAM,sCAAsC,GAAG,CAAC,CAAC,IAAI,CAAC;IAC3D,QAAQ;IACR,MAAM;IACN,SAAS;IACT,aAAa;IACb,SAAS;CACV,CAAC,CAAA;AAMF,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,uBAAuB,CAAC,CAAC,CAAA;AAM7E,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9C,eAAe,EAAE,4BAA4B;IAC7C,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;CACtC,CAAC,CAAA;AAIF,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC;IACnC,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAClC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,IAAI,EAAE,eAAe,CAAC,QAAQ,EAAE;IAChC,kBAAkB;IAClB,WAAW,EAAE,sCAAsC;IACnD,yBAAyB,EAAE,sCAAsC;IACjE,4BAA4B,EAAE,CAAC,CAAC,OAAO,EAAE;IACzC,oCAAoC,EAAE,CAAC,CAAC,OAAO,EAAE;IACjD,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC9B,WAAW,EAAE,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC;IAC7C,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IACpC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC1C,YAAY,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;IAC5C,mBAAmB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;IACnD,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACpC,uBAAuB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9C,yBAAyB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IACxD,+BAA+B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IAC5D,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACrC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CACnC,CAAC,CAAA"}
|