vibe-fabric 0.2.0 → 0.3.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.
@@ -0,0 +1,640 @@
1
+ import { z } from 'zod';
2
+ /**
3
+ * Setup step types
4
+ */
5
+ export declare const SetupStepSchema: z.ZodEnum<["prerequisites", "project-name", "project-type", "github-auth", "hub-creation", "description-capture", "claude-recommendation", "repo-planning", "requirement-capture", "prd-generation", "repo-linking", "map-generation", "framework-injection", "complete"]>;
6
+ /**
7
+ * Captured requirement from Claude
8
+ */
9
+ export declare const CapturedRequirementSchema: z.ZodObject<{
10
+ userStories: z.ZodArray<z.ZodObject<{
11
+ id: z.ZodString;
12
+ title: z.ZodString;
13
+ description: z.ZodString;
14
+ }, "strip", z.ZodTypeAny, {
15
+ description: string;
16
+ id: string;
17
+ title: string;
18
+ }, {
19
+ description: string;
20
+ id: string;
21
+ title: string;
22
+ }>, "many">;
23
+ features: z.ZodArray<z.ZodObject<{
24
+ name: z.ZodString;
25
+ description: z.ZodString;
26
+ priority: z.ZodEnum<["must-have", "should-have", "nice-to-have"]>;
27
+ }, "strip", z.ZodTypeAny, {
28
+ name: string;
29
+ description: string;
30
+ priority: "must-have" | "should-have" | "nice-to-have";
31
+ }, {
32
+ name: string;
33
+ description: string;
34
+ priority: "must-have" | "should-have" | "nice-to-have";
35
+ }>, "many">;
36
+ technicalRequirements: z.ZodArray<z.ZodString, "many">;
37
+ nonFunctionalRequirements: z.ZodArray<z.ZodString, "many">;
38
+ }, "strip", z.ZodTypeAny, {
39
+ features: {
40
+ name: string;
41
+ description: string;
42
+ priority: "must-have" | "should-have" | "nice-to-have";
43
+ }[];
44
+ userStories: {
45
+ description: string;
46
+ id: string;
47
+ title: string;
48
+ }[];
49
+ technicalRequirements: string[];
50
+ nonFunctionalRequirements: string[];
51
+ }, {
52
+ features: {
53
+ name: string;
54
+ description: string;
55
+ priority: "must-have" | "should-have" | "nice-to-have";
56
+ }[];
57
+ userStories: {
58
+ description: string;
59
+ id: string;
60
+ title: string;
61
+ }[];
62
+ technicalRequirements: string[];
63
+ nonFunctionalRequirements: string[];
64
+ }>;
65
+ /**
66
+ * Setup state for resume functionality
67
+ */
68
+ export declare const SetupStateSchema: z.ZodObject<{
69
+ version: z.ZodLiteral<1>;
70
+ projectName: z.ZodString;
71
+ projectPath: z.ZodString;
72
+ projectType: z.ZodEnum<["existing", "new"]>;
73
+ startedAt: z.ZodString;
74
+ lastUpdated: z.ZodString;
75
+ currentStep: z.ZodEnum<["prerequisites", "project-name", "project-type", "github-auth", "hub-creation", "description-capture", "claude-recommendation", "repo-planning", "requirement-capture", "prd-generation", "repo-linking", "map-generation", "framework-injection", "complete"]>;
76
+ completedSteps: z.ZodArray<z.ZodEnum<["prerequisites", "project-name", "project-type", "github-auth", "hub-creation", "description-capture", "claude-recommendation", "repo-planning", "requirement-capture", "prd-generation", "repo-linking", "map-generation", "framework-injection", "complete"]>, "many">;
77
+ data: z.ZodObject<{
78
+ description: z.ZodOptional<z.ZodObject<{
79
+ summary: z.ZodString;
80
+ goals: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
81
+ constraints: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
82
+ targetUsers: z.ZodOptional<z.ZodString>;
83
+ }, "strip", z.ZodTypeAny, {
84
+ summary: string;
85
+ goals?: string[] | undefined;
86
+ constraints?: string[] | undefined;
87
+ targetUsers?: string | undefined;
88
+ }, {
89
+ summary: string;
90
+ goals?: string[] | undefined;
91
+ constraints?: string[] | undefined;
92
+ targetUsers?: string | undefined;
93
+ }>>;
94
+ recommendation: z.ZodOptional<z.ZodObject<{
95
+ description: z.ZodString;
96
+ repos: z.ZodArray<z.ZodObject<{
97
+ alias: z.ZodString;
98
+ name: z.ZodString;
99
+ description: z.ZodString;
100
+ visibility: z.ZodDefault<z.ZodEnum<["public", "private"]>>;
101
+ techStack: z.ZodObject<{
102
+ language: z.ZodString;
103
+ runtime: z.ZodOptional<z.ZodString>;
104
+ framework: z.ZodOptional<z.ZodString>;
105
+ database: z.ZodOptional<z.ZodString>;
106
+ extras: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
107
+ }, "strip", z.ZodTypeAny, {
108
+ language: string;
109
+ runtime?: string | undefined;
110
+ framework?: string | undefined;
111
+ database?: string | undefined;
112
+ extras?: string[] | undefined;
113
+ }, {
114
+ language: string;
115
+ runtime?: string | undefined;
116
+ framework?: string | undefined;
117
+ database?: string | undefined;
118
+ extras?: string[] | undefined;
119
+ }>;
120
+ structure: z.ZodObject<{
121
+ type: z.ZodEnum<["frontend", "backend", "fullstack", "library", "monorepo", "cli", "service"]>;
122
+ features: z.ZodArray<z.ZodString, "many">;
123
+ }, "strip", z.ZodTypeAny, {
124
+ type: "frontend" | "backend" | "fullstack" | "library" | "monorepo" | "cli" | "service";
125
+ features: string[];
126
+ }, {
127
+ type: "frontend" | "backend" | "fullstack" | "library" | "monorepo" | "cli" | "service";
128
+ features: string[];
129
+ }>;
130
+ createdAt: z.ZodOptional<z.ZodString>;
131
+ url: z.ZodOptional<z.ZodString>;
132
+ }, "strip", z.ZodTypeAny, {
133
+ alias: string;
134
+ name: string;
135
+ description: string;
136
+ visibility: "public" | "private";
137
+ techStack: {
138
+ language: string;
139
+ runtime?: string | undefined;
140
+ framework?: string | undefined;
141
+ database?: string | undefined;
142
+ extras?: string[] | undefined;
143
+ };
144
+ structure: {
145
+ type: "frontend" | "backend" | "fullstack" | "library" | "monorepo" | "cli" | "service";
146
+ features: string[];
147
+ };
148
+ url?: string | undefined;
149
+ createdAt?: string | undefined;
150
+ }, {
151
+ alias: string;
152
+ name: string;
153
+ description: string;
154
+ techStack: {
155
+ language: string;
156
+ runtime?: string | undefined;
157
+ framework?: string | undefined;
158
+ database?: string | undefined;
159
+ extras?: string[] | undefined;
160
+ };
161
+ structure: {
162
+ type: "frontend" | "backend" | "fullstack" | "library" | "monorepo" | "cli" | "service";
163
+ features: string[];
164
+ };
165
+ url?: string | undefined;
166
+ visibility?: "public" | "private" | undefined;
167
+ createdAt?: string | undefined;
168
+ }>, "many">;
169
+ rationale: z.ZodString;
170
+ }, "strip", z.ZodTypeAny, {
171
+ description: string;
172
+ repos: {
173
+ alias: string;
174
+ name: string;
175
+ description: string;
176
+ visibility: "public" | "private";
177
+ techStack: {
178
+ language: string;
179
+ runtime?: string | undefined;
180
+ framework?: string | undefined;
181
+ database?: string | undefined;
182
+ extras?: string[] | undefined;
183
+ };
184
+ structure: {
185
+ type: "frontend" | "backend" | "fullstack" | "library" | "monorepo" | "cli" | "service";
186
+ features: string[];
187
+ };
188
+ url?: string | undefined;
189
+ createdAt?: string | undefined;
190
+ }[];
191
+ rationale: string;
192
+ }, {
193
+ description: string;
194
+ repos: {
195
+ alias: string;
196
+ name: string;
197
+ description: string;
198
+ techStack: {
199
+ language: string;
200
+ runtime?: string | undefined;
201
+ framework?: string | undefined;
202
+ database?: string | undefined;
203
+ extras?: string[] | undefined;
204
+ };
205
+ structure: {
206
+ type: "frontend" | "backend" | "fullstack" | "library" | "monorepo" | "cli" | "service";
207
+ features: string[];
208
+ };
209
+ url?: string | undefined;
210
+ visibility?: "public" | "private" | undefined;
211
+ createdAt?: string | undefined;
212
+ }[];
213
+ rationale: string;
214
+ }>>;
215
+ plannedRepos: z.ZodOptional<z.ZodArray<z.ZodObject<{
216
+ alias: z.ZodString;
217
+ name: z.ZodString;
218
+ description: z.ZodString;
219
+ visibility: z.ZodDefault<z.ZodEnum<["public", "private"]>>;
220
+ techStack: z.ZodObject<{
221
+ language: z.ZodString;
222
+ runtime: z.ZodOptional<z.ZodString>;
223
+ framework: z.ZodOptional<z.ZodString>;
224
+ database: z.ZodOptional<z.ZodString>;
225
+ extras: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
226
+ }, "strip", z.ZodTypeAny, {
227
+ language: string;
228
+ runtime?: string | undefined;
229
+ framework?: string | undefined;
230
+ database?: string | undefined;
231
+ extras?: string[] | undefined;
232
+ }, {
233
+ language: string;
234
+ runtime?: string | undefined;
235
+ framework?: string | undefined;
236
+ database?: string | undefined;
237
+ extras?: string[] | undefined;
238
+ }>;
239
+ structure: z.ZodObject<{
240
+ type: z.ZodEnum<["frontend", "backend", "fullstack", "library", "monorepo", "cli", "service"]>;
241
+ features: z.ZodArray<z.ZodString, "many">;
242
+ }, "strip", z.ZodTypeAny, {
243
+ type: "frontend" | "backend" | "fullstack" | "library" | "monorepo" | "cli" | "service";
244
+ features: string[];
245
+ }, {
246
+ type: "frontend" | "backend" | "fullstack" | "library" | "monorepo" | "cli" | "service";
247
+ features: string[];
248
+ }>;
249
+ createdAt: z.ZodOptional<z.ZodString>;
250
+ url: z.ZodOptional<z.ZodString>;
251
+ }, "strip", z.ZodTypeAny, {
252
+ alias: string;
253
+ name: string;
254
+ description: string;
255
+ visibility: "public" | "private";
256
+ techStack: {
257
+ language: string;
258
+ runtime?: string | undefined;
259
+ framework?: string | undefined;
260
+ database?: string | undefined;
261
+ extras?: string[] | undefined;
262
+ };
263
+ structure: {
264
+ type: "frontend" | "backend" | "fullstack" | "library" | "monorepo" | "cli" | "service";
265
+ features: string[];
266
+ };
267
+ url?: string | undefined;
268
+ createdAt?: string | undefined;
269
+ }, {
270
+ alias: string;
271
+ name: string;
272
+ description: string;
273
+ techStack: {
274
+ language: string;
275
+ runtime?: string | undefined;
276
+ framework?: string | undefined;
277
+ database?: string | undefined;
278
+ extras?: string[] | undefined;
279
+ };
280
+ structure: {
281
+ type: "frontend" | "backend" | "fullstack" | "library" | "monorepo" | "cli" | "service";
282
+ features: string[];
283
+ };
284
+ url?: string | undefined;
285
+ visibility?: "public" | "private" | undefined;
286
+ createdAt?: string | undefined;
287
+ }>, "many">>;
288
+ requirements: z.ZodOptional<z.ZodObject<{
289
+ userStories: z.ZodArray<z.ZodObject<{
290
+ id: z.ZodString;
291
+ title: z.ZodString;
292
+ description: z.ZodString;
293
+ }, "strip", z.ZodTypeAny, {
294
+ description: string;
295
+ id: string;
296
+ title: string;
297
+ }, {
298
+ description: string;
299
+ id: string;
300
+ title: string;
301
+ }>, "many">;
302
+ features: z.ZodArray<z.ZodObject<{
303
+ name: z.ZodString;
304
+ description: z.ZodString;
305
+ priority: z.ZodEnum<["must-have", "should-have", "nice-to-have"]>;
306
+ }, "strip", z.ZodTypeAny, {
307
+ name: string;
308
+ description: string;
309
+ priority: "must-have" | "should-have" | "nice-to-have";
310
+ }, {
311
+ name: string;
312
+ description: string;
313
+ priority: "must-have" | "should-have" | "nice-to-have";
314
+ }>, "many">;
315
+ technicalRequirements: z.ZodArray<z.ZodString, "many">;
316
+ nonFunctionalRequirements: z.ZodArray<z.ZodString, "many">;
317
+ }, "strip", z.ZodTypeAny, {
318
+ features: {
319
+ name: string;
320
+ description: string;
321
+ priority: "must-have" | "should-have" | "nice-to-have";
322
+ }[];
323
+ userStories: {
324
+ description: string;
325
+ id: string;
326
+ title: string;
327
+ }[];
328
+ technicalRequirements: string[];
329
+ nonFunctionalRequirements: string[];
330
+ }, {
331
+ features: {
332
+ name: string;
333
+ description: string;
334
+ priority: "must-have" | "should-have" | "nice-to-have";
335
+ }[];
336
+ userStories: {
337
+ description: string;
338
+ id: string;
339
+ title: string;
340
+ }[];
341
+ technicalRequirements: string[];
342
+ nonFunctionalRequirements: string[];
343
+ }>>;
344
+ }, "strip", z.ZodTypeAny, {
345
+ description?: {
346
+ summary: string;
347
+ goals?: string[] | undefined;
348
+ constraints?: string[] | undefined;
349
+ targetUsers?: string | undefined;
350
+ } | undefined;
351
+ recommendation?: {
352
+ description: string;
353
+ repos: {
354
+ alias: string;
355
+ name: string;
356
+ description: string;
357
+ visibility: "public" | "private";
358
+ techStack: {
359
+ language: string;
360
+ runtime?: string | undefined;
361
+ framework?: string | undefined;
362
+ database?: string | undefined;
363
+ extras?: string[] | undefined;
364
+ };
365
+ structure: {
366
+ type: "frontend" | "backend" | "fullstack" | "library" | "monorepo" | "cli" | "service";
367
+ features: string[];
368
+ };
369
+ url?: string | undefined;
370
+ createdAt?: string | undefined;
371
+ }[];
372
+ rationale: string;
373
+ } | undefined;
374
+ plannedRepos?: {
375
+ alias: string;
376
+ name: string;
377
+ description: string;
378
+ visibility: "public" | "private";
379
+ techStack: {
380
+ language: string;
381
+ runtime?: string | undefined;
382
+ framework?: string | undefined;
383
+ database?: string | undefined;
384
+ extras?: string[] | undefined;
385
+ };
386
+ structure: {
387
+ type: "frontend" | "backend" | "fullstack" | "library" | "monorepo" | "cli" | "service";
388
+ features: string[];
389
+ };
390
+ url?: string | undefined;
391
+ createdAt?: string | undefined;
392
+ }[] | undefined;
393
+ requirements?: {
394
+ features: {
395
+ name: string;
396
+ description: string;
397
+ priority: "must-have" | "should-have" | "nice-to-have";
398
+ }[];
399
+ userStories: {
400
+ description: string;
401
+ id: string;
402
+ title: string;
403
+ }[];
404
+ technicalRequirements: string[];
405
+ nonFunctionalRequirements: string[];
406
+ } | undefined;
407
+ }, {
408
+ description?: {
409
+ summary: string;
410
+ goals?: string[] | undefined;
411
+ constraints?: string[] | undefined;
412
+ targetUsers?: string | undefined;
413
+ } | undefined;
414
+ recommendation?: {
415
+ description: string;
416
+ repos: {
417
+ alias: string;
418
+ name: string;
419
+ description: string;
420
+ techStack: {
421
+ language: string;
422
+ runtime?: string | undefined;
423
+ framework?: string | undefined;
424
+ database?: string | undefined;
425
+ extras?: string[] | undefined;
426
+ };
427
+ structure: {
428
+ type: "frontend" | "backend" | "fullstack" | "library" | "monorepo" | "cli" | "service";
429
+ features: string[];
430
+ };
431
+ url?: string | undefined;
432
+ visibility?: "public" | "private" | undefined;
433
+ createdAt?: string | undefined;
434
+ }[];
435
+ rationale: string;
436
+ } | undefined;
437
+ plannedRepos?: {
438
+ alias: string;
439
+ name: string;
440
+ description: string;
441
+ techStack: {
442
+ language: string;
443
+ runtime?: string | undefined;
444
+ framework?: string | undefined;
445
+ database?: string | undefined;
446
+ extras?: string[] | undefined;
447
+ };
448
+ structure: {
449
+ type: "frontend" | "backend" | "fullstack" | "library" | "monorepo" | "cli" | "service";
450
+ features: string[];
451
+ };
452
+ url?: string | undefined;
453
+ visibility?: "public" | "private" | undefined;
454
+ createdAt?: string | undefined;
455
+ }[] | undefined;
456
+ requirements?: {
457
+ features: {
458
+ name: string;
459
+ description: string;
460
+ priority: "must-have" | "should-have" | "nice-to-have";
461
+ }[];
462
+ userStories: {
463
+ description: string;
464
+ id: string;
465
+ title: string;
466
+ }[];
467
+ technicalRequirements: string[];
468
+ nonFunctionalRequirements: string[];
469
+ } | undefined;
470
+ }>;
471
+ }, "strip", z.ZodTypeAny, {
472
+ version: 1;
473
+ projectName: string;
474
+ projectPath: string;
475
+ projectType: "existing" | "new";
476
+ startedAt: string;
477
+ lastUpdated: string;
478
+ currentStep: "prerequisites" | "project-name" | "project-type" | "github-auth" | "hub-creation" | "description-capture" | "claude-recommendation" | "repo-planning" | "requirement-capture" | "prd-generation" | "repo-linking" | "map-generation" | "framework-injection" | "complete";
479
+ completedSteps: ("prerequisites" | "project-name" | "project-type" | "github-auth" | "hub-creation" | "description-capture" | "claude-recommendation" | "repo-planning" | "requirement-capture" | "prd-generation" | "repo-linking" | "map-generation" | "framework-injection" | "complete")[];
480
+ data: {
481
+ description?: {
482
+ summary: string;
483
+ goals?: string[] | undefined;
484
+ constraints?: string[] | undefined;
485
+ targetUsers?: string | undefined;
486
+ } | undefined;
487
+ recommendation?: {
488
+ description: string;
489
+ repos: {
490
+ alias: string;
491
+ name: string;
492
+ description: string;
493
+ visibility: "public" | "private";
494
+ techStack: {
495
+ language: string;
496
+ runtime?: string | undefined;
497
+ framework?: string | undefined;
498
+ database?: string | undefined;
499
+ extras?: string[] | undefined;
500
+ };
501
+ structure: {
502
+ type: "frontend" | "backend" | "fullstack" | "library" | "monorepo" | "cli" | "service";
503
+ features: string[];
504
+ };
505
+ url?: string | undefined;
506
+ createdAt?: string | undefined;
507
+ }[];
508
+ rationale: string;
509
+ } | undefined;
510
+ plannedRepos?: {
511
+ alias: string;
512
+ name: string;
513
+ description: string;
514
+ visibility: "public" | "private";
515
+ techStack: {
516
+ language: string;
517
+ runtime?: string | undefined;
518
+ framework?: string | undefined;
519
+ database?: string | undefined;
520
+ extras?: string[] | undefined;
521
+ };
522
+ structure: {
523
+ type: "frontend" | "backend" | "fullstack" | "library" | "monorepo" | "cli" | "service";
524
+ features: string[];
525
+ };
526
+ url?: string | undefined;
527
+ createdAt?: string | undefined;
528
+ }[] | undefined;
529
+ requirements?: {
530
+ features: {
531
+ name: string;
532
+ description: string;
533
+ priority: "must-have" | "should-have" | "nice-to-have";
534
+ }[];
535
+ userStories: {
536
+ description: string;
537
+ id: string;
538
+ title: string;
539
+ }[];
540
+ technicalRequirements: string[];
541
+ nonFunctionalRequirements: string[];
542
+ } | undefined;
543
+ };
544
+ }, {
545
+ version: 1;
546
+ projectName: string;
547
+ projectPath: string;
548
+ projectType: "existing" | "new";
549
+ startedAt: string;
550
+ lastUpdated: string;
551
+ currentStep: "prerequisites" | "project-name" | "project-type" | "github-auth" | "hub-creation" | "description-capture" | "claude-recommendation" | "repo-planning" | "requirement-capture" | "prd-generation" | "repo-linking" | "map-generation" | "framework-injection" | "complete";
552
+ completedSteps: ("prerequisites" | "project-name" | "project-type" | "github-auth" | "hub-creation" | "description-capture" | "claude-recommendation" | "repo-planning" | "requirement-capture" | "prd-generation" | "repo-linking" | "map-generation" | "framework-injection" | "complete")[];
553
+ data: {
554
+ description?: {
555
+ summary: string;
556
+ goals?: string[] | undefined;
557
+ constraints?: string[] | undefined;
558
+ targetUsers?: string | undefined;
559
+ } | undefined;
560
+ recommendation?: {
561
+ description: string;
562
+ repos: {
563
+ alias: string;
564
+ name: string;
565
+ description: string;
566
+ techStack: {
567
+ language: string;
568
+ runtime?: string | undefined;
569
+ framework?: string | undefined;
570
+ database?: string | undefined;
571
+ extras?: string[] | undefined;
572
+ };
573
+ structure: {
574
+ type: "frontend" | "backend" | "fullstack" | "library" | "monorepo" | "cli" | "service";
575
+ features: string[];
576
+ };
577
+ url?: string | undefined;
578
+ visibility?: "public" | "private" | undefined;
579
+ createdAt?: string | undefined;
580
+ }[];
581
+ rationale: string;
582
+ } | undefined;
583
+ plannedRepos?: {
584
+ alias: string;
585
+ name: string;
586
+ description: string;
587
+ techStack: {
588
+ language: string;
589
+ runtime?: string | undefined;
590
+ framework?: string | undefined;
591
+ database?: string | undefined;
592
+ extras?: string[] | undefined;
593
+ };
594
+ structure: {
595
+ type: "frontend" | "backend" | "fullstack" | "library" | "monorepo" | "cli" | "service";
596
+ features: string[];
597
+ };
598
+ url?: string | undefined;
599
+ visibility?: "public" | "private" | undefined;
600
+ createdAt?: string | undefined;
601
+ }[] | undefined;
602
+ requirements?: {
603
+ features: {
604
+ name: string;
605
+ description: string;
606
+ priority: "must-have" | "should-have" | "nice-to-have";
607
+ }[];
608
+ userStories: {
609
+ description: string;
610
+ id: string;
611
+ title: string;
612
+ }[];
613
+ technicalRequirements: string[];
614
+ nonFunctionalRequirements: string[];
615
+ } | undefined;
616
+ };
617
+ }>;
618
+ /**
619
+ * Inferred types from Zod schemas
620
+ */
621
+ export type SetupStep = z.infer<typeof SetupStepSchema>;
622
+ export type CapturedRequirement = z.infer<typeof CapturedRequirementSchema>;
623
+ export type SetupState = z.infer<typeof SetupStateSchema>;
624
+ /**
625
+ * User story structure
626
+ */
627
+ export interface UserStory {
628
+ id: string;
629
+ title: string;
630
+ description: string;
631
+ }
632
+ /**
633
+ * Feature structure
634
+ */
635
+ export interface Feature {
636
+ name: string;
637
+ description: string;
638
+ priority: 'must-have' | 'should-have' | 'nice-to-have';
639
+ }
640
+ //# sourceMappingURL=state.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"state.d.ts","sourceRoot":"","sources":["../../src/types/state.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB;;GAEG;AACH,eAAO,MAAM,eAAe,4QAe1B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiBpC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAe3B,CAAC;AAEH;;GAEG;AACH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AACxD,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAC5E,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAE1D;;GAEG;AACH,MAAM,WAAW,SAAS;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,WAAW,OAAO;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,WAAW,GAAG,aAAa,GAAG,cAAc,CAAC;CACxD"}