@superblocksteam/sabs-types 0.0.0-oidc-test.1

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.
@@ -0,0 +1,396 @@
1
+ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
2
+ import { Message, proto3, Timestamp } from "@bufbuild/protobuf";
3
+ /**
4
+ * @generated from enum build.v1.BuildStatus
5
+ */
6
+ export declare enum BuildStatus {
7
+ /**
8
+ * @generated from enum value: BUILD_STATUS_UNSPECIFIED = 0;
9
+ */
10
+ UNSPECIFIED = 0,
11
+ /**
12
+ * @generated from enum value: BUILD_STATUS_RUNNING = 1;
13
+ */
14
+ RUNNING = 1,
15
+ /**
16
+ * @generated from enum value: BUILD_STATUS_SUCCESS = 2;
17
+ */
18
+ SUCCESS = 2,
19
+ /**
20
+ * @generated from enum value: BUILD_STATUS_FAILED = 3;
21
+ */
22
+ FAILED = 3,
23
+ /**
24
+ * @generated from enum value: BUILD_STATUS_TIMED_OUT = 4;
25
+ */
26
+ TIMED_OUT = 4
27
+ }
28
+ /**
29
+ * @generated from message build.v1.BuildRequest
30
+ */
31
+ export declare class BuildRequest extends Message<BuildRequest> {
32
+ /**
33
+ * @generated from field: string directory_hash = 1;
34
+ */
35
+ directoryHash: string;
36
+ /**
37
+ * @generated from field: build.v1.ApplicationMetadata application_metadata = 2;
38
+ */
39
+ applicationMetadata?: ApplicationMetadata;
40
+ /**
41
+ * Secret key to associate with this build (required by any subsequent
42
+ * request to change the state of the build e.g. when terminating the build)
43
+ *
44
+ * @generated from field: string build_key = 3;
45
+ */
46
+ buildKey: string;
47
+ constructor(data?: PartialMessage<BuildRequest>);
48
+ static readonly runtime: typeof proto3;
49
+ static readonly typeName = "build.v1.BuildRequest";
50
+ static readonly fields: FieldList;
51
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BuildRequest;
52
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BuildRequest;
53
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BuildRequest;
54
+ static equals(a: BuildRequest | PlainMessage<BuildRequest> | undefined, b: BuildRequest | PlainMessage<BuildRequest> | undefined): boolean;
55
+ }
56
+ /**
57
+ * Required data for constructing upload path and fetching application files
58
+ *
59
+ * @generated from message build.v1.ApplicationMetadata
60
+ */
61
+ export declare class ApplicationMetadata extends Message<ApplicationMetadata> {
62
+ /**
63
+ * @generated from field: string id = 1;
64
+ */
65
+ id: string;
66
+ /**
67
+ * @generated from field: string organization_id = 2;
68
+ */
69
+ organizationId: string;
70
+ constructor(data?: PartialMessage<ApplicationMetadata>);
71
+ static readonly runtime: typeof proto3;
72
+ static readonly typeName = "build.v1.ApplicationMetadata";
73
+ static readonly fields: FieldList;
74
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ApplicationMetadata;
75
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ApplicationMetadata;
76
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ApplicationMetadata;
77
+ static equals(a: ApplicationMetadata | PlainMessage<ApplicationMetadata> | undefined, b: ApplicationMetadata | PlainMessage<ApplicationMetadata> | undefined): boolean;
78
+ }
79
+ /**
80
+ * @generated from message build.v1.BuildResponse
81
+ */
82
+ export declare class BuildResponse extends Message<BuildResponse> {
83
+ /**
84
+ * For use to query build status
85
+ *
86
+ * @generated from field: string build_id = 1;
87
+ */
88
+ buildId: string;
89
+ /**
90
+ * @generated from field: google.protobuf.Timestamp created = 2;
91
+ */
92
+ created?: Timestamp;
93
+ /**
94
+ * @generated from field: google.protobuf.Timestamp updated = 3;
95
+ */
96
+ updated?: Timestamp;
97
+ constructor(data?: PartialMessage<BuildResponse>);
98
+ static readonly runtime: typeof proto3;
99
+ static readonly typeName = "build.v1.BuildResponse";
100
+ static readonly fields: FieldList;
101
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BuildResponse;
102
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BuildResponse;
103
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BuildResponse;
104
+ static equals(a: BuildResponse | PlainMessage<BuildResponse> | undefined, b: BuildResponse | PlainMessage<BuildResponse> | undefined): boolean;
105
+ }
106
+ /**
107
+ * @generated from message build.v1.ListRequest
108
+ */
109
+ export declare class ListRequest extends Message<ListRequest> {
110
+ /**
111
+ * @generated from field: string organization_id = 1;
112
+ */
113
+ organizationId: string;
114
+ /**
115
+ * @generated from field: string application_id = 2;
116
+ */
117
+ applicationId: string;
118
+ /**
119
+ * @generated from field: string directory_hash = 3;
120
+ */
121
+ directoryHash: string;
122
+ constructor(data?: PartialMessage<ListRequest>);
123
+ static readonly runtime: typeof proto3;
124
+ static readonly typeName = "build.v1.ListRequest";
125
+ static readonly fields: FieldList;
126
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListRequest;
127
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListRequest;
128
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListRequest;
129
+ static equals(a: ListRequest | PlainMessage<ListRequest> | undefined, b: ListRequest | PlainMessage<ListRequest> | undefined): boolean;
130
+ }
131
+ /**
132
+ * @generated from message build.v1.ListResponse
133
+ */
134
+ export declare class ListResponse extends Message<ListResponse> {
135
+ /**
136
+ * @generated from field: repeated build.v1.StatusResponse builds = 1;
137
+ */
138
+ builds: StatusResponse[];
139
+ constructor(data?: PartialMessage<ListResponse>);
140
+ static readonly runtime: typeof proto3;
141
+ static readonly typeName = "build.v1.ListResponse";
142
+ static readonly fields: FieldList;
143
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ListResponse;
144
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ListResponse;
145
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ListResponse;
146
+ static equals(a: ListResponse | PlainMessage<ListResponse> | undefined, b: ListResponse | PlainMessage<ListResponse> | undefined): boolean;
147
+ }
148
+ /**
149
+ * @generated from message build.v1.StatusRequest
150
+ */
151
+ export declare class StatusRequest extends Message<StatusRequest> {
152
+ /**
153
+ * @generated from field: string build_id = 1;
154
+ */
155
+ buildId: string;
156
+ constructor(data?: PartialMessage<StatusRequest>);
157
+ static readonly runtime: typeof proto3;
158
+ static readonly typeName = "build.v1.StatusRequest";
159
+ static readonly fields: FieldList;
160
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StatusRequest;
161
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StatusRequest;
162
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StatusRequest;
163
+ static equals(a: StatusRequest | PlainMessage<StatusRequest> | undefined, b: StatusRequest | PlainMessage<StatusRequest> | undefined): boolean;
164
+ }
165
+ /**
166
+ * @generated from message build.v1.BulkStatusRequest
167
+ */
168
+ export declare class BulkStatusRequest extends Message<BulkStatusRequest> {
169
+ /**
170
+ * @generated from field: string organization_id = 1;
171
+ */
172
+ organizationId: string;
173
+ /**
174
+ * @generated from field: string application_id = 2;
175
+ */
176
+ applicationId: string;
177
+ /**
178
+ * directory hashes will all belong to the given org id and app id
179
+ *
180
+ * @generated from field: repeated string directory_hashes = 3;
181
+ */
182
+ directoryHashes: string[];
183
+ constructor(data?: PartialMessage<BulkStatusRequest>);
184
+ static readonly runtime: typeof proto3;
185
+ static readonly typeName = "build.v1.BulkStatusRequest";
186
+ static readonly fields: FieldList;
187
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BulkStatusRequest;
188
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BulkStatusRequest;
189
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BulkStatusRequest;
190
+ static equals(a: BulkStatusRequest | PlainMessage<BulkStatusRequest> | undefined, b: BulkStatusRequest | PlainMessage<BulkStatusRequest> | undefined): boolean;
191
+ }
192
+ /**
193
+ * @generated from message build.v1.BulkStatusResponse
194
+ */
195
+ export declare class BulkStatusResponse extends Message<BulkStatusResponse> {
196
+ /**
197
+ * @generated from field: map<string, build.v1.StatusResponse> directory_hash_to_status = 1;
198
+ */
199
+ directoryHashToStatus: {
200
+ [key: string]: StatusResponse;
201
+ };
202
+ constructor(data?: PartialMessage<BulkStatusResponse>);
203
+ static readonly runtime: typeof proto3;
204
+ static readonly typeName = "build.v1.BulkStatusResponse";
205
+ static readonly fields: FieldList;
206
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BulkStatusResponse;
207
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BulkStatusResponse;
208
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BulkStatusResponse;
209
+ static equals(a: BulkStatusResponse | PlainMessage<BulkStatusResponse> | undefined, b: BulkStatusResponse | PlainMessage<BulkStatusResponse> | undefined): boolean;
210
+ }
211
+ /**
212
+ * @generated from message build.v1.StatusResponse
213
+ */
214
+ export declare class StatusResponse extends Message<StatusResponse> {
215
+ /**
216
+ * @generated from field: string build_id = 1;
217
+ */
218
+ buildId: string;
219
+ /**
220
+ * @generated from field: build.v1.BuildStatus status = 2;
221
+ */
222
+ status: BuildStatus;
223
+ /**
224
+ * @generated from field: optional string error = 3;
225
+ */
226
+ error?: string;
227
+ /**
228
+ * @generated from field: google.protobuf.Timestamp created = 4;
229
+ */
230
+ created?: Timestamp;
231
+ /**
232
+ * @generated from field: google.protobuf.Timestamp updated = 5;
233
+ */
234
+ updated?: Timestamp;
235
+ constructor(data?: PartialMessage<StatusResponse>);
236
+ static readonly runtime: typeof proto3;
237
+ static readonly typeName = "build.v1.StatusResponse";
238
+ static readonly fields: FieldList;
239
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StatusResponse;
240
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StatusResponse;
241
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StatusResponse;
242
+ static equals(a: StatusResponse | PlainMessage<StatusResponse> | undefined, b: StatusResponse | PlainMessage<StatusResponse> | undefined): boolean;
243
+ }
244
+ /**
245
+ * Step timing information for build metrics
246
+ *
247
+ * @generated from message build.v1.BuildStepTimings
248
+ */
249
+ export declare class BuildStepTimings extends Message<BuildStepTimings> {
250
+ /**
251
+ * Duration in milliseconds for each build step
252
+ *
253
+ * @generated from field: optional int64 create_temp_dir_ms = 1;
254
+ */
255
+ createTempDirMs?: bigint;
256
+ /**
257
+ * @generated from field: optional int64 fetch_app_bundle_ms = 2;
258
+ */
259
+ fetchAppBundleMs?: bigint;
260
+ /**
261
+ * @generated from field: optional int64 npm_install_ms = 3;
262
+ */
263
+ npmInstallMs?: bigint;
264
+ /**
265
+ * @generated from field: optional int64 build_ms = 4;
266
+ */
267
+ buildMs?: bigint;
268
+ /**
269
+ * @generated from field: optional int64 upload_ms = 5;
270
+ */
271
+ uploadMs?: bigint;
272
+ constructor(data?: PartialMessage<BuildStepTimings>);
273
+ static readonly runtime: typeof proto3;
274
+ static readonly typeName = "build.v1.BuildStepTimings";
275
+ static readonly fields: FieldList;
276
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BuildStepTimings;
277
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BuildStepTimings;
278
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BuildStepTimings;
279
+ static equals(a: BuildStepTimings | PlainMessage<BuildStepTimings> | undefined, b: BuildStepTimings | PlainMessage<BuildStepTimings> | undefined): boolean;
280
+ }
281
+ /**
282
+ * Size metrics for build analytics
283
+ *
284
+ * @generated from message build.v1.BuildSizeMetrics
285
+ */
286
+ export declare class BuildSizeMetrics extends Message<BuildSizeMetrics> {
287
+ /**
288
+ * Size of the fetched application source bundle in bytes
289
+ *
290
+ * @generated from field: optional int64 source_bundle_size_bytes = 1;
291
+ */
292
+ sourceBundleSizeBytes?: bigint;
293
+ /**
294
+ * Size of node_modules directory after npm install in bytes
295
+ *
296
+ * @generated from field: optional int64 node_modules_size_bytes = 2;
297
+ */
298
+ nodeModulesSizeBytes?: bigint;
299
+ /**
300
+ * Size of the final build output in bytes
301
+ *
302
+ * @generated from field: optional int64 build_output_size_bytes = 3;
303
+ */
304
+ buildOutputSizeBytes?: bigint;
305
+ /**
306
+ * Number of top-level dependencies installed
307
+ *
308
+ * @generated from field: optional int64 dependency_count = 4;
309
+ */
310
+ dependencyCount?: bigint;
311
+ constructor(data?: PartialMessage<BuildSizeMetrics>);
312
+ static readonly runtime: typeof proto3;
313
+ static readonly typeName = "build.v1.BuildSizeMetrics";
314
+ static readonly fields: FieldList;
315
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BuildSizeMetrics;
316
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BuildSizeMetrics;
317
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BuildSizeMetrics;
318
+ static equals(a: BuildSizeMetrics | PlainMessage<BuildSizeMetrics> | undefined, b: BuildSizeMetrics | PlainMessage<BuildSizeMetrics> | undefined): boolean;
319
+ }
320
+ /**
321
+ * @generated from message build.v1.TerminateRequest
322
+ */
323
+ export declare class TerminateRequest extends Message<TerminateRequest> {
324
+ /**
325
+ * @generated from field: string build_id = 1;
326
+ */
327
+ buildId: string;
328
+ /**
329
+ * @generated from field: build.v1.BuildStatus status = 2;
330
+ */
331
+ status: BuildStatus;
332
+ /**
333
+ * @generated from field: optional string error = 3;
334
+ */
335
+ error?: string;
336
+ /**
337
+ * Secret key for the build being terminated
338
+ *
339
+ * @generated from field: string build_key = 4;
340
+ */
341
+ buildKey: string;
342
+ /**
343
+ * Optional step timing information for metrics
344
+ *
345
+ * @generated from field: optional build.v1.BuildStepTimings step_timings = 5;
346
+ */
347
+ stepTimings?: BuildStepTimings;
348
+ /**
349
+ * Optional size metrics for build analytics
350
+ *
351
+ * @generated from field: optional build.v1.BuildSizeMetrics size_metrics = 6;
352
+ */
353
+ sizeMetrics?: BuildSizeMetrics;
354
+ constructor(data?: PartialMessage<TerminateRequest>);
355
+ static readonly runtime: typeof proto3;
356
+ static readonly typeName = "build.v1.TerminateRequest";
357
+ static readonly fields: FieldList;
358
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TerminateRequest;
359
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TerminateRequest;
360
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TerminateRequest;
361
+ static equals(a: TerminateRequest | PlainMessage<TerminateRequest> | undefined, b: TerminateRequest | PlainMessage<TerminateRequest> | undefined): boolean;
362
+ }
363
+ /**
364
+ * @generated from message build.v1.TerminateResponse
365
+ */
366
+ export declare class TerminateResponse extends Message<TerminateResponse> {
367
+ /**
368
+ * @generated from field: string build_id = 1;
369
+ */
370
+ buildId: string;
371
+ /**
372
+ * @generated from field: build.v1.BuildStatus status = 2;
373
+ */
374
+ status: BuildStatus;
375
+ /**
376
+ * @generated from field: optional string error = 3;
377
+ */
378
+ error?: string;
379
+ /**
380
+ * @generated from field: google.protobuf.Timestamp created = 4;
381
+ */
382
+ created?: Timestamp;
383
+ /**
384
+ * @generated from field: google.protobuf.Timestamp updated = 5;
385
+ */
386
+ updated?: Timestamp;
387
+ constructor(data?: PartialMessage<TerminateResponse>);
388
+ static readonly runtime: typeof proto3;
389
+ static readonly typeName = "build.v1.TerminateResponse";
390
+ static readonly fields: FieldList;
391
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TerminateResponse;
392
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TerminateResponse;
393
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TerminateResponse;
394
+ static equals(a: TerminateResponse | PlainMessage<TerminateResponse> | undefined, b: TerminateResponse | PlainMessage<TerminateResponse> | undefined): boolean;
395
+ }
396
+ //# sourceMappingURL=service_pb.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"service_pb.d.ts","sourceRoot":"","sources":["../../../build/v1/service_pb.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,iBAAiB,EAAE,SAAS,EAAE,eAAe,EAAE,SAAS,EAAE,cAAc,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AACjI,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAEhE;;GAEG;AACH,oBAAY,WAAW;IACrB;;OAEG;IACH,WAAW,IAAI;IAEf;;OAEG;IACH,OAAO,IAAI;IAEX;;OAEG;IACH,OAAO,IAAI;IAEX;;OAEG;IACH,MAAM,IAAI;IAEV;;OAEG;IACH,SAAS,IAAI;CACd;AAUD;;GAEG;AACH,qBAAa,YAAa,SAAQ,OAAO,CAAC,YAAY,CAAC;IACrD;;OAEG;IACH,aAAa,SAAM;IAEnB;;OAEG;IACH,mBAAmB,CAAC,EAAE,mBAAmB,CAAC;IAE1C;;;;;OAKG;IACH,QAAQ,SAAM;gBAEF,IAAI,CAAC,EAAE,cAAc,CAAC,YAAY,CAAC;IAK/C,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAE,OAAO,MAAM,CAAU;IAChD,MAAM,CAAC,QAAQ,CAAC,QAAQ,2BAA2B;IACnD,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAI9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,YAAY;IAIxF,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,YAAY;IAIvF,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,YAAY;IAI3F,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,YAAY,GAAG,YAAY,CAAC,YAAY,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,YAAY,GAAG,YAAY,CAAC,YAAY,CAAC,GAAG,SAAS,GAAG,OAAO;CAG3I;AAED;;;;GAIG;AACH,qBAAa,mBAAoB,SAAQ,OAAO,CAAC,mBAAmB,CAAC;IACnE;;OAEG;IACH,EAAE,SAAM;IAER;;OAEG;IACH,cAAc,SAAM;gBAER,IAAI,CAAC,EAAE,cAAc,CAAC,mBAAmB,CAAC;IAKtD,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAE,OAAO,MAAM,CAAU;IAChD,MAAM,CAAC,QAAQ,CAAC,QAAQ,kCAAkC;IAC1D,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAG9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,mBAAmB;IAI/F,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,mBAAmB;IAI9F,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,mBAAmB;IAIlG,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,mBAAmB,GAAG,YAAY,CAAC,mBAAmB,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,mBAAmB,GAAG,YAAY,CAAC,mBAAmB,CAAC,GAAG,SAAS,GAAG,OAAO;CAGvK;AAED;;GAEG;AACH,qBAAa,aAAc,SAAQ,OAAO,CAAC,aAAa,CAAC;IACvD;;;;OAIG;IACH,OAAO,SAAM;IAEb;;OAEG;IACH,OAAO,CAAC,EAAE,SAAS,CAAC;IAEpB;;OAEG;IACH,OAAO,CAAC,EAAE,SAAS,CAAC;gBAER,IAAI,CAAC,EAAE,cAAc,CAAC,aAAa,CAAC;IAKhD,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAE,OAAO,MAAM,CAAU;IAChD,MAAM,CAAC,QAAQ,CAAC,QAAQ,4BAA4B;IACpD,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAI9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,aAAa;IAIzF,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,aAAa;IAIxF,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,aAAa;IAI5F,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,aAAa,GAAG,YAAY,CAAC,aAAa,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,aAAa,GAAG,YAAY,CAAC,aAAa,CAAC,GAAG,SAAS,GAAG,OAAO;CAG/I;AAED;;GAEG;AACH,qBAAa,WAAY,SAAQ,OAAO,CAAC,WAAW,CAAC;IACnD;;OAEG;IACH,cAAc,SAAM;IAEpB;;OAEG;IACH,aAAa,SAAM;IAEnB;;OAEG;IACH,aAAa,SAAM;gBAEP,IAAI,CAAC,EAAE,cAAc,CAAC,WAAW,CAAC;IAK9C,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAE,OAAO,MAAM,CAAU;IAChD,MAAM,CAAC,QAAQ,CAAC,QAAQ,0BAA0B;IAClD,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAI9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,WAAW;IAIvF,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,WAAW;IAItF,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,WAAW;IAI1F,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,WAAW,GAAG,YAAY,CAAC,WAAW,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,WAAW,GAAG,YAAY,CAAC,WAAW,CAAC,GAAG,SAAS,GAAG,OAAO;CAGvI;AAED;;GAEG;AACH,qBAAa,YAAa,SAAQ,OAAO,CAAC,YAAY,CAAC;IACrD;;OAEG;IACH,MAAM,EAAE,cAAc,EAAE,CAAM;gBAElB,IAAI,CAAC,EAAE,cAAc,CAAC,YAAY,CAAC;IAK/C,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAE,OAAO,MAAM,CAAU;IAChD,MAAM,CAAC,QAAQ,CAAC,QAAQ,2BAA2B;IACnD,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAE9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,YAAY;IAIxF,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,YAAY;IAIvF,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,YAAY;IAI3F,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,YAAY,GAAG,YAAY,CAAC,YAAY,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,YAAY,GAAG,YAAY,CAAC,YAAY,CAAC,GAAG,SAAS,GAAG,OAAO;CAG3I;AAED;;GAEG;AACH,qBAAa,aAAc,SAAQ,OAAO,CAAC,aAAa,CAAC;IACvD;;OAEG;IACH,OAAO,SAAM;gBAED,IAAI,CAAC,EAAE,cAAc,CAAC,aAAa,CAAC;IAKhD,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAE,OAAO,MAAM,CAAU;IAChD,MAAM,CAAC,QAAQ,CAAC,QAAQ,4BAA4B;IACpD,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAE9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,aAAa;IAIzF,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,aAAa;IAIxF,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,aAAa;IAI5F,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,aAAa,GAAG,YAAY,CAAC,aAAa,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,aAAa,GAAG,YAAY,CAAC,aAAa,CAAC,GAAG,SAAS,GAAG,OAAO;CAG/I;AAED;;GAEG;AACH,qBAAa,iBAAkB,SAAQ,OAAO,CAAC,iBAAiB,CAAC;IAC/D;;OAEG;IACH,cAAc,SAAM;IAEpB;;OAEG;IACH,aAAa,SAAM;IAEnB;;;;OAIG;IACH,eAAe,EAAE,MAAM,EAAE,CAAM;gBAEnB,IAAI,CAAC,EAAE,cAAc,CAAC,iBAAiB,CAAC;IAKpD,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAE,OAAO,MAAM,CAAU;IAChD,MAAM,CAAC,QAAQ,CAAC,QAAQ,gCAAgC;IACxD,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAI9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,iBAAiB;IAI7F,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,iBAAiB;IAI5F,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,iBAAiB;IAIhG,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,iBAAiB,GAAG,YAAY,CAAC,iBAAiB,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,iBAAiB,GAAG,YAAY,CAAC,iBAAiB,CAAC,GAAG,SAAS,GAAG,OAAO;CAG/J;AAED;;GAEG;AACH,qBAAa,kBAAmB,SAAQ,OAAO,CAAC,kBAAkB,CAAC;IACjE;;OAEG;IACH,qBAAqB,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,cAAc,CAAA;KAAE,CAAM;gBAElD,IAAI,CAAC,EAAE,cAAc,CAAC,kBAAkB,CAAC;IAKrD,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAE,OAAO,MAAM,CAAU;IAChD,MAAM,CAAC,QAAQ,CAAC,QAAQ,iCAAiC;IACzD,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAE9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,kBAAkB;IAI9F,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,kBAAkB;IAI7F,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,kBAAkB;IAIjG,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,kBAAkB,GAAG,YAAY,CAAC,kBAAkB,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,kBAAkB,GAAG,YAAY,CAAC,kBAAkB,CAAC,GAAG,SAAS,GAAG,OAAO;CAGnK;AAED;;GAEG;AACH,qBAAa,cAAe,SAAQ,OAAO,CAAC,cAAc,CAAC;IACzD;;OAEG;IACH,OAAO,SAAM;IAEb;;OAEG;IACH,MAAM,cAA2B;IAEjC;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,OAAO,CAAC,EAAE,SAAS,CAAC;IAEpB;;OAEG;IACH,OAAO,CAAC,EAAE,SAAS,CAAC;gBAER,IAAI,CAAC,EAAE,cAAc,CAAC,cAAc,CAAC;IAKjD,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAE,OAAO,MAAM,CAAU;IAChD,MAAM,CAAC,QAAQ,CAAC,QAAQ,6BAA6B;IACrD,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAM9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,cAAc;IAI1F,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,cAAc;IAIzF,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,cAAc;IAI7F,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,cAAc,GAAG,YAAY,CAAC,cAAc,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,cAAc,GAAG,YAAY,CAAC,cAAc,CAAC,GAAG,SAAS,GAAG,OAAO;CAGnJ;AAED;;;;GAIG;AACH,qBAAa,gBAAiB,SAAQ,OAAO,CAAC,gBAAgB,CAAC;IAC7D;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IAEzB;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAE1B;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;gBAEN,IAAI,CAAC,EAAE,cAAc,CAAC,gBAAgB,CAAC;IAKnD,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAE,OAAO,MAAM,CAAU;IAChD,MAAM,CAAC,QAAQ,CAAC,QAAQ,+BAA+B;IACvD,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAM9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,gBAAgB;IAI5F,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,gBAAgB;IAI3F,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,gBAAgB;IAI/F,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,gBAAgB,GAAG,YAAY,CAAC,gBAAgB,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,gBAAgB,GAAG,YAAY,CAAC,gBAAgB,CAAC,GAAG,SAAS,GAAG,OAAO;CAG3J;AAED;;;;GAIG;AACH,qBAAa,gBAAiB,SAAQ,OAAO,CAAC,gBAAgB,CAAC;IAC7D;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAE/B;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAE9B;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAE9B;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;gBAEb,IAAI,CAAC,EAAE,cAAc,CAAC,gBAAgB,CAAC;IAKnD,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAE,OAAO,MAAM,CAAU;IAChD,MAAM,CAAC,QAAQ,CAAC,QAAQ,+BAA+B;IACvD,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAK9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,gBAAgB;IAI5F,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,gBAAgB;IAI3F,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,gBAAgB;IAI/F,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,gBAAgB,GAAG,YAAY,CAAC,gBAAgB,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,gBAAgB,GAAG,YAAY,CAAC,gBAAgB,CAAC,GAAG,SAAS,GAAG,OAAO;CAG3J;AAED;;GAEG;AACH,qBAAa,gBAAiB,SAAQ,OAAO,CAAC,gBAAgB,CAAC;IAC7D;;OAEG;IACH,OAAO,SAAM;IAEb;;OAEG;IACH,MAAM,cAA2B;IAEjC;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;;;OAIG;IACH,QAAQ,SAAM;IAEd;;;;OAIG;IACH,WAAW,CAAC,EAAE,gBAAgB,CAAC;IAE/B;;;;OAIG;IACH,WAAW,CAAC,EAAE,gBAAgB,CAAC;gBAEnB,IAAI,CAAC,EAAE,cAAc,CAAC,gBAAgB,CAAC;IAKnD,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAE,OAAO,MAAM,CAAU;IAChD,MAAM,CAAC,QAAQ,CAAC,QAAQ,+BAA+B;IACvD,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAO9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,gBAAgB;IAI5F,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,gBAAgB;IAI3F,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,gBAAgB;IAI/F,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,gBAAgB,GAAG,YAAY,CAAC,gBAAgB,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,gBAAgB,GAAG,YAAY,CAAC,gBAAgB,CAAC,GAAG,SAAS,GAAG,OAAO;CAG3J;AAED;;GAEG;AACH,qBAAa,iBAAkB,SAAQ,OAAO,CAAC,iBAAiB,CAAC;IAC/D;;OAEG;IACH,OAAO,SAAM;IAEb;;OAEG;IACH,MAAM,cAA2B;IAEjC;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,OAAO,CAAC,EAAE,SAAS,CAAC;IAEpB;;OAEG;IACH,OAAO,CAAC,EAAE,SAAS,CAAC;gBAER,IAAI,CAAC,EAAE,cAAc,CAAC,iBAAiB,CAAC;IAKpD,MAAM,CAAC,QAAQ,CAAC,OAAO,EAAE,OAAO,MAAM,CAAU;IAChD,MAAM,CAAC,QAAQ,CAAC,QAAQ,gCAAgC;IACxD,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAM9B;IAEH,MAAM,CAAC,UAAU,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAAG,iBAAiB;IAI7F,MAAM,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,iBAAiB;IAI5F,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,iBAAiB;IAIhG,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,iBAAiB,GAAG,YAAY,CAAC,iBAAiB,CAAC,GAAG,SAAS,EAAE,CAAC,EAAE,iBAAiB,GAAG,YAAY,CAAC,iBAAiB,CAAC,GAAG,SAAS,GAAG,OAAO;CAG/J"}