@pelican-identity/react 2.0.8 → 2.0.10

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/index.css DELETED
@@ -1,397 +0,0 @@
1
- /* src/pelican.css */
2
- @keyframes fadeUp {
3
- from {
4
- opacity: 0;
5
- transform: translateY(20px);
6
- }
7
- to {
8
- opacity: 1;
9
- transform: translateY(0);
10
- }
11
- }
12
- @keyframes spin {
13
- to {
14
- transform: rotate(360deg);
15
- }
16
- }
17
- @keyframes successPulse {
18
- 0%, 100% {
19
- transform: scale(1);
20
- opacity: 1;
21
- }
22
- 50% {
23
- transform: scale(1.05);
24
- opacity: 0.9;
25
- }
26
- }
27
- .auth-container {
28
- width: 300px;
29
- max-width: fit-content;
30
- padding: 1rem;
31
- margin-top: 0.3rem;
32
- position: relative;
33
- animation: fadeUp 0.5s ease-out;
34
- background-color: #fcfcfc;
35
- border-radius: 2.5rem;
36
- display: flex;
37
- flex-direction: column;
38
- justify-content: space-between;
39
- align-items: center;
40
- gap: 1rem;
41
- min-height: 320px;
42
- }
43
- .js-auth-container {
44
- width: 300px;
45
- max-width: fit-content;
46
- padding: 1rem;
47
- margin-top: 0.3rem;
48
- position: relative;
49
- background-color: #fcfcfc;
50
- border-radius: 2.5rem;
51
- display: flex;
52
- flex-direction: column;
53
- justify-content: space-between;
54
- align-items: center;
55
- gap: 1rem;
56
- min-height: 320px;
57
- }
58
- .close-button {
59
- background-color: #2b2b2bff;
60
- border: none;
61
- cursor: pointer;
62
- transition: opacity 0.2s;
63
- height: 1.5rem;
64
- width: 1.5rem;
65
- display: flex;
66
- align-items: center;
67
- justify-content: center;
68
- border-radius: 50%;
69
- }
70
- .close-button:hover {
71
- opacity: 0.6;
72
- }
73
- .close-icon {
74
- width: 1.5rem;
75
- height: 1.5rem;
76
- fill: #000000;
77
- }
78
- .retry-container {
79
- text-align: center;
80
- padding: 3rem 0;
81
- }
82
- .retry-container > div:first-child {
83
- margin-bottom: 1rem;
84
- }
85
- .retry-text {
86
- font-size: 1.125rem;
87
- font-family:
88
- Onest,
89
- system-ui,
90
- Avenir,
91
- Helvetica,
92
- Arial,
93
- sans-serif;
94
- }
95
- .content-wrapper {
96
- display: flex;
97
- flex-direction: column;
98
- justify-content: center;
99
- align-items: center;
100
- gap: 2rem;
101
- }
102
- .unpaired-container {
103
- text-align: center;
104
- display: flex;
105
- flex-direction: column;
106
- }
107
- .main-heading {
108
- font-size: 0.75rem;
109
- font-weight: 600;
110
- color: #585858;
111
- font-family:
112
- Onest,
113
- system-ui,
114
- Avenir,
115
- Helvetica,
116
- Arial,
117
- sans-serif;
118
- }
119
- @media (min-width: 768px) {
120
- .main-heading {
121
- font-size: 1rem;
122
- font-family:
123
- Onest,
124
- system-ui,
125
- Avenir,
126
- Helvetica,
127
- Arial,
128
- sans-serif;
129
- }
130
- }
131
- @media (min-width: 1024px) {
132
- .main-heading {
133
- font-size: 1rem;
134
- font-family:
135
- Onest,
136
- system-ui,
137
- Avenir,
138
- Helvetica,
139
- Arial,
140
- sans-serif;
141
- }
142
- }
143
- .mobile-auth-container {
144
- display: flex;
145
- flex-direction: column;
146
- gap: 0.7rem;
147
- width: 253px;
148
- }
149
- .logo-container {
150
- display: flex;
151
- justify-content: center;
152
- padding: 2rem 0;
153
- }
154
- .open-app-link {
155
- display: inline-block;
156
- padding: 0.75rem 2rem;
157
- background-color: #2b2b2bff;
158
- width: fit-content;
159
- align-self: center;
160
- border-radius: 18px;
161
- color: #fff;
162
- font-weight: 600;
163
- font-size: 1rem;
164
- text-decoration: none;
165
- transition: background-color 0.2s;
166
- font-family:
167
- Onest,
168
- system-ui,
169
- Avenir,
170
- Helvetica,
171
- Arial,
172
- sans-serif;
173
- }
174
- .open-app-link:hover {
175
- background-color: rgba(217, 235, 27, 0.9);
176
- color: #000;
177
- }
178
- .helper-text {
179
- font-size: 0.75rem;
180
- color: #6b7280;
181
- font-family:
182
- Onest,
183
- system-ui,
184
- Avenir,
185
- Helvetica,
186
- Arial,
187
- sans-serif;
188
- }
189
- .qr-container {
190
- display: flex;
191
- justify-content: center;
192
- }
193
- .qr-wrapper {
194
- display: flex;
195
- justify-content: center;
196
- align-items: center;
197
- overflow: hidden;
198
- border-radius: 2rem;
199
- background-color: #fff;
200
- padding: 0.2rem;
201
- height: 244px;
202
- width: 244px;
203
- }
204
- .qr-image {
205
- height: 90%;
206
- width: 90%;
207
- }
208
- .loader-container {
209
- display: flex;
210
- justify-content: center;
211
- }
212
- .instruction-text {
213
- font-size: 0.875rem;
214
- color: #9ca3af;
215
- font-family:
216
- Onest,
217
- system-ui,
218
- Avenir,
219
- Helvetica,
220
- Arial,
221
- sans-serif;
222
- }
223
- .paired-container {
224
- text-align: center;
225
- display: flex;
226
- flex-direction: column;
227
- gap: 1rem;
228
- max-width: 250px;
229
- }
230
- .paired-heading {
231
- font-size: 1rem;
232
- font-weight: 800;
233
- font-family:
234
- Onest,
235
- system-ui,
236
- Avenir,
237
- Helvetica,
238
- Arial,
239
- sans-serif;
240
- }
241
- @media (min-width: 768px) {
242
- .paired-heading {
243
- font-size: 1rem;
244
- font-family:
245
- Onest,
246
- system-ui,
247
- Avenir,
248
- Helvetica,
249
- Arial,
250
- sans-serif;
251
- }
252
- }
253
- .success-message {
254
- background-color: #121212;
255
- color: #d9eb1b;
256
- padding: 0.5rem 1rem;
257
- border-radius: 1.3rem;
258
- font-weight: 700;
259
- font-size: 1rem;
260
- animation: successPulse 0.2s ease-in-out;
261
- margin: 0.5rem 0;
262
- font-family:
263
- system-ui,
264
- Avenir,
265
- Helvetica,
266
- Arial,
267
- sans-serif;
268
- width: 300px;
269
- max-width: fit-content;
270
- }
271
- .auto-renew-badge {
272
- display: inline-block;
273
- background-color: rgba(217, 235, 27, 0.2);
274
- border: 1px solid #d9eb1b;
275
- color: #d9eb1b;
276
- padding: 0.25rem 0.75rem;
277
- border-radius: 9999px;
278
- font-size: 0.75rem;
279
- font-weight: 600;
280
- margin-top: 0.5rem;
281
- }
282
- .error-wrapper {
283
- display: flex;
284
- justify-content: center;
285
- align-items: center;
286
- text-align: center;
287
- border-radius: 1.5rem;
288
- border: 1px solid rgb(255, 236, 236);
289
- background-color: rgb(255, 255, 255);
290
- width: 250px;
291
- height: 80px;
292
- }
293
- .error-message {
294
- font-size: 0.75rem;
295
- font-weight: 400;
296
- color: rgb(255, 139, 139);
297
- font-family:
298
- Onest,
299
- system-ui,
300
- Avenir,
301
- Helvetica,
302
- Arial,
303
- sans-serif;
304
- max-width: 70%;
305
- }
306
- .loader {
307
- width: 48px;
308
- height: 48px;
309
- position: relative;
310
- }
311
- .loader::before,
312
- .loader::after {
313
- content: "";
314
- position: absolute;
315
- left: 50%;
316
- top: 50%;
317
- transform: translate(-50%, -50%);
318
- width: 48em;
319
- height: 48em;
320
- background-image:
321
- radial-gradient(
322
- circle 10px,
323
- #585858 100%,
324
- transparent 0),
325
- radial-gradient(
326
- circle 10px,
327
- #585858 100%,
328
- transparent 0),
329
- radial-gradient(
330
- circle 10px,
331
- #585858 100%,
332
- transparent 0),
333
- radial-gradient(
334
- circle 10px,
335
- #585858 100%,
336
- transparent 0),
337
- radial-gradient(
338
- circle 10px,
339
- #585858 100%,
340
- transparent 0),
341
- radial-gradient(
342
- circle 10px,
343
- #585858 100%,
344
- transparent 0),
345
- radial-gradient(
346
- circle 10px,
347
- #585858 100%,
348
- transparent 0),
349
- radial-gradient(
350
- circle 10px,
351
- #585858 100%,
352
- transparent 0),
353
- radial-gradient(
354
- circle 10px,
355
- #585858 100%,
356
- transparent 0);
357
- background-position:
358
- 0em -18em,
359
- 0em 18em,
360
- 18em 0em,
361
- -18em 0em,
362
- 13em -13em,
363
- -13em -13em,
364
- 13em 13em,
365
- -13em 13em;
366
- background-repeat: no-repeat;
367
- font-size: 0.5px;
368
- border-radius: 50%;
369
- animation: blast 1s ease-in infinite;
370
- }
371
- .loader::after {
372
- font-size: 1px;
373
- background: #585858;
374
- animation: bounce 1s ease-in infinite;
375
- }
376
- @keyframes bounce {
377
- 0%, 100% {
378
- font-size: 0.75px;
379
- }
380
- 50% {
381
- font-size: 1.5px;
382
- }
383
- }
384
- @keyframes blast {
385
- 0%, 40% {
386
- font-size: 0.5px;
387
- }
388
- 70% {
389
- opacity: 1;
390
- font-size: 4px;
391
- }
392
- 100% {
393
- font-size: 6px;
394
- opacity: 0;
395
- }
396
- }
397
- /*# sourceMappingURL=index.css.map */
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../src/pelican.css"],"sourcesContent":["@keyframes fadeUp {\n from {\n opacity: 0;\n transform: translateY(20px);\n }\n to {\n opacity: 1;\n transform: translateY(0);\n }\n}\n\n@keyframes spin {\n to {\n transform: rotate(360deg);\n }\n}\n\n@keyframes successPulse {\n 0%,\n 100% {\n transform: scale(1);\n opacity: 1;\n }\n 50% {\n transform: scale(1.05);\n opacity: 0.9;\n }\n}\n\n.auth-container {\n width: 300px;\n max-width: fit-content;\n padding: 1rem;\n margin-top: 0.3rem;\n position: relative;\n animation: fadeUp 0.5s ease-out;\n background-color: #fcfcfc;\n border-radius: 2.5rem;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n align-items: center;\n gap: 1rem;\n min-height: 320px;\n}\n.js-auth-container {\n width: 300px;\n max-width: fit-content;\n padding: 1rem;\n margin-top: 0.3rem;\n position: relative;\n background-color: #fcfcfc;\n border-radius: 2.5rem;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n align-items: center;\n gap: 1rem;\n min-height: 320px;\n}\n\n.close-button {\n background-color: #2b2b2bff;\n border: none;\n cursor: pointer;\n transition: opacity 0.2s;\n height: 1.5rem;\n width: 1.5rem;\n display: flex;\n align-items: center;\n justify-content: center;\n border-radius: 50%;\n}\n\n.close-button:hover {\n opacity: 0.6;\n}\n\n.close-icon {\n width: 1.5rem;\n height: 1.5rem;\n fill: #000000;\n}\n\n.retry-container {\n text-align: center;\n padding: 3rem 0;\n}\n\n.retry-container > div:first-child {\n margin-bottom: 1rem;\n}\n\n.retry-text {\n font-size: 1.125rem;\n font-family: Onest, system-ui, Avenir, Helvetica, Arial, sans-serif;\n}\n\n.content-wrapper {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n gap: 2rem;\n}\n\n.unpaired-container {\n text-align: center;\n display: flex;\n flex-direction: column;\n}\n\n.main-heading {\n font-size: 0.75rem;\n font-weight: 600;\n color: #585858;\n font-family: Onest, system-ui, Avenir, Helvetica, Arial, sans-serif;\n}\n\n@media (min-width: 768px) {\n .main-heading {\n font-size: 1rem;\n font-family: Onest, system-ui, Avenir, Helvetica, Arial, sans-serif;\n }\n}\n\n@media (min-width: 1024px) {\n .main-heading {\n font-size: 1rem;\n font-family: Onest, system-ui, Avenir, Helvetica, Arial, sans-serif;\n }\n}\n\n.mobile-auth-container {\n display: flex;\n flex-direction: column;\n gap: 0.7rem;\n width: 253px;\n}\n\n.logo-container {\n display: flex;\n justify-content: center;\n padding: 2rem 0;\n}\n\n.open-app-link {\n display: inline-block;\n padding: 0.75rem 2rem;\n background-color: #2b2b2bff;\n width: fit-content;\n align-self: center;\n\n border-radius: 18px;\n color: #fff;\n font-weight: 600;\n font-size: 1rem;\n text-decoration: none;\n transition: background-color 0.2s;\n font-family: Onest, system-ui, Avenir, Helvetica, Arial, sans-serif;\n}\n\n.open-app-link:hover {\n background-color: rgba(217, 235, 27, 0.9);\n color: #000;\n}\n\n.helper-text {\n font-size: 0.75rem;\n color: #6b7280;\n font-family: Onest, system-ui, Avenir, Helvetica, Arial, sans-serif;\n}\n\n.qr-container {\n display: flex;\n justify-content: center;\n}\n\n.qr-wrapper {\n display: flex;\n justify-content: center;\n align-items: center;\n overflow: hidden;\n border-radius: 2rem;\n background-color: #fff;\n padding: 0.2rem;\n height: 244px;\n width: 244px;\n}\n\n.qr-image {\n height: 90%;\n width: 90%;\n}\n\n.loader-container {\n display: flex;\n justify-content: center;\n}\n\n.instruction-text {\n font-size: 0.875rem;\n color: #9ca3af;\n font-family: Onest, system-ui, Avenir, Helvetica, Arial, sans-serif;\n}\n\n.paired-container {\n text-align: center;\n display: flex;\n flex-direction: column;\n gap: 1rem;\n max-width: 250px;\n}\n\n.paired-heading {\n font-size: 1rem;\n font-weight: 800;\n font-family: Onest, system-ui, Avenir, Helvetica, Arial, sans-serif;\n}\n\n@media (min-width: 768px) {\n .paired-heading {\n font-size: 1rem;\n font-family: Onest, system-ui, Avenir, Helvetica, Arial, sans-serif;\n }\n}\n\n.success-message {\n background-color: #121212;\n color: #d9eb1b;\n padding: 0.5rem 1rem;\n border-radius: 1.3rem;\n font-weight: 700;\n font-size: 1rem;\n animation: successPulse 0.2s ease-in-out;\n margin: 0.5rem 0;\n font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;\n width: 300px;\n max-width: fit-content;\n}\n\n.auto-renew-badge {\n display: inline-block;\n background-color: rgba(217, 235, 27, 0.2);\n border: 1px solid #d9eb1b;\n color: #d9eb1b;\n padding: 0.25rem 0.75rem;\n border-radius: 9999px;\n font-size: 0.75rem;\n font-weight: 600;\n margin-top: 0.5rem;\n}\n\n.error-wrapper {\n display: flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n border-radius: 1.5rem;\n border: 1px solid rgb(255, 236, 236);\n background-color: rgb(255, 255, 255);\n width: 250px;\n height: 80px;\n}\n\n.error-message {\n font-size: 0.75rem;\n font-weight: 400;\n color: rgb(255, 139, 139);\n font-family: Onest, system-ui, Avenir, Helvetica, Arial, sans-serif;\n max-width: 70%;\n}\n\n.loader {\n width: 48px;\n height: 48px;\n position: relative;\n}\n.loader::before,\n.loader::after {\n content: \"\";\n position: absolute;\n left: 50%;\n top: 50%;\n transform: translate(-50%, -50%);\n width: 48em;\n height: 48em;\n background-image: radial-gradient(circle 10px, #585858 100%, transparent 0),\n radial-gradient(circle 10px, #585858 100%, transparent 0),\n radial-gradient(circle 10px, #585858 100%, transparent 0),\n radial-gradient(circle 10px, #585858 100%, transparent 0),\n radial-gradient(circle 10px, #585858 100%, transparent 0),\n radial-gradient(circle 10px, #585858 100%, transparent 0),\n radial-gradient(circle 10px, #585858 100%, transparent 0),\n radial-gradient(circle 10px, #585858 100%, transparent 0),\n radial-gradient(circle 10px, #585858 100%, transparent 0);\n background-position: 0em -18em, 0em 18em, 18em 0em, -18em 0em, 13em -13em,\n -13em -13em, 13em 13em, -13em 13em;\n background-repeat: no-repeat;\n font-size: 0.5px;\n border-radius: 50%;\n animation: blast 1s ease-in infinite;\n}\n.loader::after {\n font-size: 1px;\n background: #585858;\n animation: bounce 1s ease-in infinite;\n}\n\n@keyframes bounce {\n 0%,\n 100% {\n font-size: 0.75px;\n }\n 50% {\n font-size: 1.5px;\n }\n}\n@keyframes blast {\n 0%,\n 40% {\n font-size: 0.5px;\n }\n 70% {\n opacity: 1;\n font-size: 4px;\n }\n 100% {\n font-size: 6px;\n opacity: 0;\n }\n}\n"],"mappings":";AAAA,WAAW;AACT;AACE,aAAS;AACT,eAAW,WAAW;AACxB;AACA;AACE,aAAS;AACT,eAAW,WAAW;AACxB;AACF;AAEA,WAAW;AACT;AACE,eAAW,OAAO;AACpB;AACF;AAEA,WAAW;AACT;AAEE,eAAW,MAAM;AACjB,aAAS;AACX;AACA;AACE,eAAW,MAAM;AACjB,aAAS;AACX;AACF;AAEA,CAAC;AACC,SAAO;AACP,aAAW;AACX,WAAS;AACT,cAAY;AACZ,YAAU;AACV,aAAW,OAAO,KAAK;AACvB,oBAAkB;AAClB,iBAAe;AACf,WAAS;AACT,kBAAgB;AAChB,mBAAiB;AACjB,eAAa;AACb,OAAK;AACL,cAAY;AACd;AACA,CAAC;AACC,SAAO;AACP,aAAW;AACX,WAAS;AACT,cAAY;AACZ,YAAU;AACV,oBAAkB;AAClB,iBAAe;AACf,WAAS;AACT,kBAAgB;AAChB,mBAAiB;AACjB,eAAa;AACb,OAAK;AACL,cAAY;AACd;AAEA,CAAC;AACC,oBAAkB;AAClB,UAAQ;AACR,UAAQ;AACR,cAAY,QAAQ;AACpB,UAAQ;AACR,SAAO;AACP,WAAS;AACT,eAAa;AACb,mBAAiB;AACjB,iBAAe;AACjB;AAEA,CAbC,YAaY;AACX,WAAS;AACX;AAEA,CAAC;AACC,SAAO;AACP,UAAQ;AACR,QAAM;AACR;AAEA,CAAC;AACC,cAAY;AACZ,WAAS,KAAK;AAChB;AAEA,CALC,gBAKgB,EAAE,GAAG;AACpB,iBAAe;AACjB;AAEA,CAAC;AACC,aAAW;AACX;AAAA,IAAa,KAAK;AAAA,IAAE,SAAS;AAAA,IAAE,MAAM;AAAA,IAAE,SAAS;AAAA,IAAE,KAAK;AAAA,IAAE;AAC3D;AAEA,CAAC;AACC,WAAS;AACT,kBAAgB;AAChB,mBAAiB;AACjB,eAAa;AACb,OAAK;AACP;AAEA,CAAC;AACC,cAAY;AACZ,WAAS;AACT,kBAAgB;AAClB;AAEA,CAAC;AACC,aAAW;AACX,eAAa;AACb,SAAO;AACP;AAAA,IAAa,KAAK;AAAA,IAAE,SAAS;AAAA,IAAE,MAAM;AAAA,IAAE,SAAS;AAAA,IAAE,KAAK;AAAA,IAAE;AAC3D;AAEA,QAAO,WAAY;AACjB,GARD;AASG,eAAW;AACX;AAAA,MAAa,KAAK;AAAA,MAAE,SAAS;AAAA,MAAE,MAAM;AAAA,MAAE,SAAS;AAAA,MAAE,KAAK;AAAA,MAAE;AAC3D;AACF;AAEA,QAAO,WAAY;AACjB,GAfD;AAgBG,eAAW;AACX;AAAA,MAAa,KAAK;AAAA,MAAE,SAAS;AAAA,MAAE,MAAM;AAAA,MAAE,SAAS;AAAA,MAAE,KAAK;AAAA,MAAE;AAC3D;AACF;AAEA,CAAC;AACC,WAAS;AACT,kBAAgB;AAChB,OAAK;AACL,SAAO;AACT;AAEA,CAAC;AACC,WAAS;AACT,mBAAiB;AACjB,WAAS,KAAK;AAChB;AAEA,CAAC;AACC,WAAS;AACT,WAAS,QAAQ;AACjB,oBAAkB;AAClB,SAAO;AACP,cAAY;AAEZ,iBAAe;AACf,SAAO;AACP,eAAa;AACb,aAAW;AACX,mBAAiB;AACjB,cAAY,iBAAiB;AAC7B;AAAA,IAAa,KAAK;AAAA,IAAE,SAAS;AAAA,IAAE,MAAM;AAAA,IAAE,SAAS;AAAA,IAAE,KAAK;AAAA,IAAE;AAC3D;AAEA,CAhBC,aAgBa;AACZ,oBAAkB,KAAK,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE;AACrC,SAAO;AACT;AAEA,CAAC;AACC,aAAW;AACX,SAAO;AACP;AAAA,IAAa,KAAK;AAAA,IAAE,SAAS;AAAA,IAAE,MAAM;AAAA,IAAE,SAAS;AAAA,IAAE,KAAK;AAAA,IAAE;AAC3D;AAEA,CAAC;AACC,WAAS;AACT,mBAAiB;AACnB;AAEA,CAAC;AACC,WAAS;AACT,mBAAiB;AACjB,eAAa;AACb,YAAU;AACV,iBAAe;AACf,oBAAkB;AAClB,WAAS;AACT,UAAQ;AACR,SAAO;AACT;AAEA,CAAC;AACC,UAAQ;AACR,SAAO;AACT;AAEA,CAAC;AACC,WAAS;AACT,mBAAiB;AACnB;AAEA,CAAC;AACC,aAAW;AACX,SAAO;AACP;AAAA,IAAa,KAAK;AAAA,IAAE,SAAS;AAAA,IAAE,MAAM;AAAA,IAAE,SAAS;AAAA,IAAE,KAAK;AAAA,IAAE;AAC3D;AAEA,CAAC;AACC,cAAY;AACZ,WAAS;AACT,kBAAgB;AAChB,OAAK;AACL,aAAW;AACb;AAEA,CAAC;AACC,aAAW;AACX,eAAa;AACb;AAAA,IAAa,KAAK;AAAA,IAAE,SAAS;AAAA,IAAE,MAAM;AAAA,IAAE,SAAS;AAAA,IAAE,KAAK;AAAA,IAAE;AAC3D;AAEA,QAAO,WAAY;AACjB,GAPD;AAQG,eAAW;AACX;AAAA,MAAa,KAAK;AAAA,MAAE,SAAS;AAAA,MAAE,MAAM;AAAA,MAAE,SAAS;AAAA,MAAE,KAAK;AAAA,MAAE;AAC3D;AACF;AAEA,CAAC;AACC,oBAAkB;AAClB,SAAO;AACP,WAAS,OAAO;AAChB,iBAAe;AACf,eAAa;AACb,aAAW;AACX,aAAW,aAAa,KAAK;AAC7B,UAAQ,OAAO;AACf;AAAA,IAAa,SAAS;AAAA,IAAE,MAAM;AAAA,IAAE,SAAS;AAAA,IAAE,KAAK;AAAA,IAAE;AAClD,SAAO;AACP,aAAW;AACb;AAEA,CAAC;AACC,WAAS;AACT,oBAAkB,KAAK,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE;AACrC,UAAQ,IAAI,MAAM;AAClB,SAAO;AACP,WAAS,QAAQ;AACjB,iBAAe;AACf,aAAW;AACX,eAAa;AACb,cAAY;AACd;AAEA,CAAC;AACC,WAAS;AACT,mBAAiB;AACjB,eAAa;AACb,cAAY;AACZ,iBAAe;AACf,UAAQ,IAAI,MAAM,IAAI,GAAG,EAAE,GAAG,EAAE;AAChC,oBAAkB,IAAI,GAAG,EAAE,GAAG,EAAE;AAChC,SAAO;AACP,UAAQ;AACV;AAEA,CAAC;AACC,aAAW;AACX,eAAa;AACb,SAAO,IAAI,GAAG,EAAE,GAAG,EAAE;AACrB;AAAA,IAAa,KAAK;AAAA,IAAE,SAAS;AAAA,IAAE,MAAM;AAAA,IAAE,SAAS;AAAA,IAAE,KAAK;AAAA,IAAE;AACzD,aAAW;AACb;AAEA,CAAC;AACC,SAAO;AACP,UAAQ;AACR,YAAU;AACZ;AACA,CALC,MAKM;AACP,CANC,MAMM;AACL,WAAS;AACT,YAAU;AACV,QAAM;AACN,OAAK;AACL,aAAW,UAAU,IAAI,EAAE;AAC3B,SAAO;AACP,UAAQ;AACR;AAAA,IAAkB;AAAA,MAAgB,OAAO,IAAI;AAAA,MAAE,QAAQ,IAAI;AAAA,MAAE,YAAY,EAAE;AAAA,IACzE;AAAA,MAAgB,OAAO,IAAI;AAAA,MAAE,QAAQ,IAAI;AAAA,MAAE,YAAY,EAAE;AAAA,IACzD;AAAA,MAAgB,OAAO,IAAI;AAAA,MAAE,QAAQ,IAAI;AAAA,MAAE,YAAY,EAAE;AAAA,IACzD;AAAA,MAAgB,OAAO,IAAI;AAAA,MAAE,QAAQ,IAAI;AAAA,MAAE,YAAY,EAAE;AAAA,IACzD;AAAA,MAAgB,OAAO,IAAI;AAAA,MAAE,QAAQ,IAAI;AAAA,MAAE,YAAY,EAAE;AAAA,IACzD;AAAA,MAAgB,OAAO,IAAI;AAAA,MAAE,QAAQ,IAAI;AAAA,MAAE,YAAY,EAAE;AAAA,IACzD;AAAA,MAAgB,OAAO,IAAI;AAAA,MAAE,QAAQ,IAAI;AAAA,MAAE,YAAY,EAAE;AAAA,IACzD;AAAA,MAAgB,OAAO,IAAI;AAAA,MAAE,QAAQ,IAAI;AAAA,MAAE,YAAY,EAAE;AAAA,IACzD;AAAA,MAAgB,OAAO,IAAI;AAAA,MAAE,QAAQ,IAAI;AAAA,MAAE,YAAY;AACzD;AAAA,IAAqB,IAAI,KAAK;AAAA,IAAE,IAAI,IAAI;AAAA,IAAE,KAAK,GAAG;AAAA,IAAE,MAAM,GAAG;AAAA,IAAE,KAAK,KAAK;AAAA,IACvE,MAAM,KAAK;AAAA,IAAE,KAAK,IAAI;AAAA,IAAE,MAAM;AAChC,qBAAmB;AACnB,aAAW;AACX,iBAAe;AACf,aAAW,MAAM,GAAG,QAAQ;AAC9B;AACA,CA9BC,MA8BM;AACL,aAAW;AACX,cAAY;AACZ,aAAW,OAAO,GAAG,QAAQ;AAC/B;AAEA,WAHa;AAIX;AAEE,eAAW;AACb;AACA;AACE,eAAW;AACb;AACF;AACA,WAjBa;AAkBX;AAEE,eAAW;AACb;AACA;AACE,aAAS;AACT,eAAW;AACb;AACA;AACE,eAAW;AACX,aAAS;AACX;AACF;","names":[]}